*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0f1419;
  --graphite: #1a2330;
  --slate: #243044;
  --steel: #2b4a6f;
  --steel-bright: #3d6191;
  --zinc: #8b9cae;
  --mist: #e8ecf1;
  --cloud: #f0f2f5;
  --paper: #fafbfc;
  --white: #fff;
  --text: #1a2330;
  --muted: #5c6b7d;
  --line: rgba(43, 74, 111, 0.12);
  --accent-glow: rgba(43, 74, 111, 0.35);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 18px;
  --shadow: 0 8px 32px rgba(15, 20, 25, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 20, 25, 0.12);
  --ease: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --font-ui: "Outfit", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --header-h: 84px;
}

html { scroll-behavior: smooth; font-size: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 22px;
}

.label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.75rem;
}

.label-on-dark { color: var(--zinc); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-title-on-dark {
  color: var(--paper);
}

.section {
  padding: clamp(72px, 12vw, 112px) 0;
}

.section-divider {
  height: 48px;
  background: linear-gradient(135deg, var(--cloud) 49.5%, var(--graphite) 50%);
  margin-top: -1px;
}

.section-divider--flip {
  background: linear-gradient(-135deg, var(--graphite) 49.5%, var(--cloud) 50%);
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  padding: 18px 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

.header.scrolled {
  background: rgba(15, 20, 25, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header.scrolled .logo-text,
.header.scrolled .nav-link { color: var(--mist); }
.header.scrolled .logo-suffix { color: var(--zinc); }
.header.scrolled .lang-btn { color: var(--zinc); }
.header.scrolled .lang-btn.is-active { color: var(--white); }
.header.scrolled .burger span { background: var(--mist); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 28px);
  min-width: 0;
  flex: 1 1 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  line-height: 1;
  flex: 0 0 auto;
}

.nav {
  display: none;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  min-height: 48px;
  margin-left: 0;
  flex: 0 1 auto;
}

@media (min-width: 900px) {
  .nav { display: flex; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 14px rgba(43, 74, 111, 0.28);
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.logo-footer .logo-mark {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.logo-text {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}

.logo-footer .logo-text { color: var(--mist); }

.logo-suffix {
  font-weight: 500;
  color: var(--muted);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 2px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
  line-height: 1;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--steel);
  transition: width var(--ease);
}

.nav-link:hover::after { width: 100%; }

.lang-sw {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
}

.lang-sep { color: var(--zinc); opacity: 0.6; }

.lang-btn {
  font-weight: 600;
  color: var(--muted);
  padding: 4px 6px;
  border-radius: 4px;
}

.lang-btn.is-active {
  color: var(--steel);
  background: rgba(43, 74, 111, 0.1);
}

.header.scrolled .lang-btn.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.burger {
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-sm);
}

@media (min-width: 900px) {
  .burger { display: none; }
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform var(--ease), opacity var(--ease);
}

.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: var(--graphite);
  z-index: 250;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform var(--ease);
  visibility: hidden;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav .nav-link {
  color: var(--mist);
  font-size: 1.25rem;
}

.mobile-lang {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.mobile-lang .lang-btn { color: var(--zinc); }
.mobile-lang .lang-btn.is-active { color: var(--white); }

@media (min-width: 900px) {
  .mobile-nav { display: none !important; }
}

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--header-h) + 32px) 0 72px;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--graphite) url("../images/roof3.jpg") center / cover no-repeat;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(15, 20, 25, 0.92) 0%,
    rgba(15, 20, 25, 0.55) 45%,
    rgba(26, 35, 48, 0.35) 100%
  );
}

.hero-angle {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  background: linear-gradient(to top right, var(--paper) 49.5%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: left;
}

.hero-copy {
  max-width: 640px;
}

.hero-eyebrow,
.hero-title,
.hero-lead {
  text-align: left;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--zinc);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.0625rem;
  color: rgba(232, 236, 241, 0.88);
  max-width: 36ch;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  justify-content: flex-start;
}

.hero-cta .btn {
  flex: 0 1 auto;
  min-height: 48px;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.btn-sm { padding: 11px 22px; font-size: 0.875rem; }

.btn-primary {
  background: var(--steel);
  color: var(--white);
  border: 2px solid var(--steel);
  box-shadow: 0 8px 28px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--steel-bright);
  border-color: var(--steel-bright);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-secondary {
  background: var(--graphite);
  color: var(--mist);
  border: 2px solid var(--graphite);
}

.btn-secondary:hover {
  background: var(--slate);
  border-color: var(--slate);
  transform: translateY(-1px);
}

.btn-block { width: 100%; }

.about {
  background: var(--cloud);
}

.about-grid {
  display: grid;
  gap: 32px;
  align-items: stretch;
}

@media (min-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr minmax(300px, 380px);
    gap: 48px;
  }
}

.about-copy .section-title { margin-bottom: 1.25rem; }

.about-copy p + p { margin-top: 1rem; }

.about-priorities {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-priorities li {
  padding-left: 1.5rem;
  position: relative;
  font-weight: 500;
  color: var(--slate);
}

.about-priorities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--steel);
  transform: rotate(45deg);
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.about-card-company {
  border: none;
  box-shadow: 0 12px 40px rgba(26, 35, 48, 0.1), 0 0 0 1px rgba(43, 74, 111, 0.08);
}

.about-card-top {
  background: linear-gradient(135deg, var(--steel) 0%, #1e3550 100%);
  padding: 20px 24px 22px;
  position: relative;
}

.about-card-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
  opacity: 0.6;
}

.about-card-company .about-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.about-card .about-dl {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 24px 20px;
}

.about-dl-legal {
  padding: 22px 0 20px;
  border-bottom: 1px solid var(--line);
}

.about-dl-legal dt {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 8px;
}

.about-dl-legal dd {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-dl-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 400px) {
  .about-dl-metrics {
    grid-template-columns: 1fr;
  }

  .about-metric {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }

  .about-metric:last-child {
    border-bottom: none;
  }
}

.about-metric {
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.about-metric:last-child {
  border-right: none;
}

.about-metric dt {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
}

.about-metric dd {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--steel);
  font-variant-numeric: tabular-nums;
  word-break: break-word;
}

.about-dl-address {
  padding: 18px 0 4px;
}

.about-dl-address dt {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}

.about-dl-address dd {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.5;
  padding: 14px 16px;
  background: var(--cloud);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.about-note {
  margin-top: auto;
  margin-left: 24px;
  margin-right: 24px;
  margin-bottom: 24px;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
  padding: 12px 14px;
  background: rgba(43, 74, 111, 0.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--steel);
}

.services { background: var(--paper); }

.services-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.services-head .label {
  text-align: center;
}

.services-intro {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 52ch;
}

.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .svc-card:nth-child(1),
  .svc-card:nth-child(2),
  .svc-card:nth-child(3) {
    grid-column: span 4;
  }

  .svc-card:nth-child(4),
  .svc-card:nth-child(5) {
    grid-column: span 6;
  }
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.svc-card:hover {
  border-color: rgba(43, 74, 111, 0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.svc-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.svc-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.inspection {
  background: var(--graphite);
  color: var(--mist);
  position: relative;
  overflow: hidden;
}

.inspection::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(43, 74, 111, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.inspection-inner {
  position: relative;
  display: grid;
  gap: 36px;
  align-items: center;
}

@media (min-width: 880px) {
  .inspection-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
  }
}

.inspection-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 5;
  max-height: 520px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 880px) {
  .inspection-visual {
    margin: 0;
    max-height: none;
    height: 100%;
    max-width: none;
    min-height: 280px;
    aspect-ratio: auto;
  }
}

.inspection-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

@media (min-width: 880px) {
  .inspection-visual img {
    min-height: 100%;
  }
}

.inspection-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insp-lead {
  color: var(--zinc);
  margin: 1rem 0 1.5rem;
  font-size: 1.05rem;
  max-width: 52ch;
}

.insp-list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insp-list li {
  padding-left: 1.75rem;
  position: relative;
  color: rgba(232, 236, 241, 0.92);
}

.insp-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--steel-bright);
  font-weight: 700;
}

.gallery-block { background: var(--cloud); }

.gallery-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
  align-items: center;
  text-align: center;
}

@media (min-width: 720px) {
  .gallery-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .gallery-head > div {
    text-align: left;
  }
}

.gallery-sub { margin-top: 0.75rem; color: var(--muted); max-width: 42ch; }

.gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
  }
}

.gal-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--slate);
  aspect-ratio: 1;
  min-height: 0;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gal-item:hover img { transform: scale(1.04); }

.gal-zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 20, 25, 0.55);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}

.gal-item:hover .gal-zoom,
.gal-item:focus .gal-zoom { opacity: 1; }

.gal-item:focus {
  outline: 3px solid var(--steel);
  outline-offset: 2px;
}

.contact { background: var(--paper); }

.contact-grid {
  display: grid;
  gap: 32px;
  margin-top: 28px;
  align-items: stretch;
}

@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.contact-form-wrap {
  min-width: 0;
}

.contact-lead {
  color: var(--muted);
  margin: 1rem 0 1.75rem;
  max-width: 52ch;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--slate);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(43, 74, 111, 0.15);
}

.form-group input.input-error,
.form-group textarea.input-error {
  border-color: #b83232;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: var(--muted);
}

.form-check input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--steel);
  flex-shrink: 0;
}

.form-check input.input-error {
  outline: 2px solid #b83232;
  outline-offset: 2px;
}

.form-check a {
  color: var(--steel);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit { margin-top: 8px; }

.success-card {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px;
  background: var(--cloud);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  margin-top: 8px;
}

.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--steel);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.success-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  flex: 1;
  min-height: 280px;
  background: var(--mist);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.address-box {
  padding: 18px;
  background: var(--cloud);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.address-box strong { display: block; margin-bottom: 8px; color: var(--ink); }

.address-box .small {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer {
  background: var(--ink);
  color: var(--zinc);
  padding: 48px 0 40px;
}

.footer-grid {
  display: grid;
  gap: 36px;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

.footer-tag {
  margin-top: 12px;
  max-width: 32ch;
  font-size: 0.9rem;
}

.footer-h {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mist);
  margin-bottom: 14px;
}

.footer-links li + li { margin-top: 8px; }

.footer-links a {
  color: var(--zinc);
  transition: color var(--ease);
}

.footer-links a:hover { color: var(--white); }

.footer-small {
  font-size: 0.875rem;
  line-height: 1.6;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(15, 20, 25, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }

.privacy-page {
  padding: calc(var(--header-h) + 48px) 0 80px;
  max-width: 720px;
}

.privacy-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.privacy-date {
  color: var(--muted);
  margin-bottom: 2rem;
}

.privacy-page h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--steel);
}

.privacy-page p,
.privacy-page li {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.privacy-page ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.privacy-page a {
  color: var(--steel);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--steel);
}
