:root {
  --color-navy: #071422;
  --color-navy-mid: #0c2340;
  --color-navy-deep: #040b14;
  --color-ink: #121820;
  --color-paper: #f3eee4;
  --color-paper-2: #e7dfd0;
  --color-foam: #faf8f4;
  --color-muted: #5c6672;
  --color-signal: #c8102e;
  --color-signal-deep: #9a0c23;
  --color-gold: #c9a227;
  --color-forest: #006b3f;
  --color-line: #d8d0c2;
  --font-display: "Syne", "Segoe UI", system-ui, sans-serif;
  --font-sans: "Outfit", "Segoe UI", system-ui, sans-serif;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
}

  button:not(:disabled),
  [role="button"]:not(:disabled) {
    cursor: pointer;
  }

  html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
  }

  #home,
  #about,
  #services,
  #why,
  #quote,
  #contact,
  #gallery,
  #process {
    scroll-margin-top: calc(var(--header-h) + 10px);
  }

  body {
    margin: 0;
    background: var(--color-paper);
    color: var(--color-ink);
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.55;
  }

  h1,
  h2,
  h3,
  h4 {
    font-family: var(--font-display);
    text-wrap: balance;
    letter-spacing: -0.03em;
    line-height: 1.12;
  }

  p {
    text-wrap: pretty;
  }

  :focus-visible {
    outline: 2px solid var(--color-signal);
    outline-offset: 3px;
  }

  img.content-photo {
    outline: 1px solid rgb(0 0 0 / 0.1);
    outline-offset: -1px;
  }

:root {
  --header-h: 4.65rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --motion-quick: 150ms;
  --motion-fast: 250ms;
  --motion-slow: 700ms;
  --shadow-card:
    0 0 0 1px rgb(7 20 34 / 0.06),
    0 1px 2px -1px rgb(7 20 34 / 0.06),
    0 10px 28px -12px rgb(7 20 34 / 0.18);
  --shadow-card-hover:
    0 0 0 1px rgb(7 20 34 / 0.08),
    0 18px 40px -16px rgb(7 20 34 / 0.28);
}

/* ---------- Ghana / Scandinavia flag hairline ---------- */
.flag-stripe {
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #c8102e 0 33.33%,
    #fcd116 33.33% 66.66%,
    #006b3f 66.66% 100%
  );
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  background: color-mix(in oklab, var(--color-navy) 88%, transparent);
  color: var(--color-foam);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.06);
  transition:
    background-color var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out);
}

.site-header .header-bar {
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header.is-scrolled {
  background: color-mix(in oklab, var(--color-navy) 96%, transparent);
  box-shadow: 0 10px 30px -18px rgb(0 0 0 / 0.55);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgb(0 0 0 / 0.35));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--color-foam) 62%, transparent);
}

.nav-link {
  position: relative;
  color: color-mix(in oklab, var(--color-foam) 78%, transparent);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  transition: color var(--motion-fast) var(--ease-out);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-fast) var(--ease-out);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-foam);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 0;
  transition:
    background-color var(--motion-fast) var(--ease-out),
    color var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out),
    transform var(--motion-quick) var(--ease-out);
}

.btn:active:not(:disabled) {
  transform: scale(0.96);
}

.btn-signal {
  background: var(--color-signal);
  color: var(--color-foam);
  box-shadow: 0 8px 22px -10px rgb(200 16 46 / 0.7);
}

.btn-signal:hover {
  background: var(--color-signal-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--color-foam);
  box-shadow: inset 0 0 0 1px rgb(250 248 244 / 0.28);
}

.btn-ghost:hover {
  background: rgb(250 248 244 / 0.08);
}

.btn-navy {
  background: var(--color-navy);
  color: var(--color-foam);
}

.btn-navy:hover {
  background: var(--color-navy-mid);
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgb(250 248 244 / 0.08);
  color: var(--color-foam);
  transition: background-color var(--motion-fast) var(--ease-out);
}

.icon-btn:hover {
  background: rgb(250 248 244 / 0.16);
}

/* ---------- Mobile drawer ---------- */
.mobile-drawer {
  position: fixed;
  inset: calc(4px + var(--header-h)) 0 0 0;
  z-index: 48;
  background: var(--color-navy);
  color: var(--color-foam);
  padding: 1.25rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--motion-fast) var(--ease-out),
    transform var(--motion-fast) var(--ease-out);
}

.mobile-drawer.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mobile-drawer a {
  color: var(--color-foam);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgb(250 248 244 / 0.08);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy);
  color: var(--color-foam);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease-out) both;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(7 20 34 / 0.92) 0%, rgb(7 20 34 / 0.72) 48%, rgb(7 20 34 / 0.45) 100%),
    linear-gradient(180deg, rgb(7 20 34 / 0.35) 0%, rgb(7 20 34 / 0.15) 40%, rgb(7 20 34 / 0.72) 100%);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.05s forwards;
}

.hero-kicker .dot-route {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-signal);
  box-shadow: 0 0 0 0 rgb(200 16 46 / 0.55);
  animation: pulseDot 2.2s ease-out infinite;
}

.hero-title {
  margin: 0.85rem 0 1.1rem;
  font-size: clamp(2.35rem, 6.4vw, 5.1rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  translate: 0 115%;
  animation: riseIn 0.9s var(--ease-out) forwards;
  animation-delay: calc(0.18s + var(--i) * 0.07s);
}

.hero-title .accent {
  color: color-mix(in oklab, var(--color-foam) 92%, var(--color-gold));
  position: relative;
}

.hero-title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.08em;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 0.7s var(--ease-out) 1.15s forwards;
}

.hero-lead {
  max-width: 38rem;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: color-mix(in oklab, var(--color-foam) 78%, transparent);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.85s forwards;
}

.cycle-slot {
  display: inline-grid;
  vertical-align: baseline;
}

.cycle-slot span {
  grid-area: 1 / 1;
  color: var(--color-gold);
  font-weight: 600;
  opacity: 0;
  transform: translateY(0.45em);
  filter: blur(4px);
  animation: cycleWord 12s var(--ease-out) infinite;
}

.cycle-slot span:nth-child(1) { animation-delay: 0s; }
.cycle-slot span:nth-child(2) { animation-delay: 3s; }
.cycle-slot span:nth-child(3) { animation-delay: 6s; }
.cycle-slot span:nth-child(4) { animation-delay: 9s; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.05s forwards;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.7rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgb(250 248 244 / 0.08);
  box-shadow: inset 0 0 0 1px rgb(250 248 244 / 0.12);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-portrait {
  position: relative;
  justify-self: end;
  width: min(100%, 380px);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.45s forwards;
}

.hero-portrait .frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-navy-mid);
  padding: 8px;
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.08),
    0 30px 60px -24px rgb(0 0 0 / 0.65);
}

.hero-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 8px);
}

.float-badge {
  position: absolute;
  left: -1.1rem;
  bottom: 12%;
  background: var(--color-foam);
  color: var(--color-navy);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  animation: floatY 4.5s var(--ease-out) infinite;
}

.float-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.float-badge span {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.scroll-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: color-mix(in oklab, var(--color-foam) 55%, transparent);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.6s forwards;
}

.scroll-hint .mouse {
  width: 18px;
  height: 28px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgb(250 248 244 / 0.35);
  position: relative;
}

.scroll-hint .mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-gold);
  translate: -50% 0;
  animation: mouseWheel 1.6s var(--ease-out) infinite;
}

/* ---------- Marquee ---------- */
.route-marquee {
  background: var(--color-navy-mid);
  color: var(--color-foam);
  overflow: hidden;
  border-block: 1px solid rgb(255 255 255 / 0.06);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 36s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.6rem;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.marquee-item .sep {
  color: var(--color-gold);
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.section-navy {
  background: var(--color-navy);
  color: var(--color-foam);
}

.section-paper {
  background: var(--color-paper);
  color: var(--color-ink);
}

.section-foam {
  background: var(--color-foam);
  color: var(--color-ink);
}

.kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-signal);
  margin-bottom: 0.7rem;
}

.section-navy .kicker {
  color: var(--color-gold);
}

.section-title {
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  font-weight: 750;
  margin: 0 0 0.75rem;
}

.section-lead {
  max-width: 40rem;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.section-navy .section-lead {
  color: color-mix(in oklab, var(--color-foam) 70%, transparent);
}

.gold-rule {
  width: 3.2rem;
  height: 2px;
  background: var(--color-gold);
  margin: 1rem 0 1.5rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-out);
}

.gold-rule.mx-auto {
  transform-origin: center;
}

.is-in .gold-rule,
.gold-rule.is-in {
  transform: scaleX(1);
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(5px);
  transition:
    opacity var(--motion-slow) var(--ease-out),
    transform var(--motion-slow) var(--ease-out),
    filter var(--motion-slow) var(--ease-out);
  transition-delay: var(--d, 0ms);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ---------- Cards ---------- */
.service-card,
.reason-card,
.contact-card {
  background: var(--color-foam);
  color: var(--color-ink);
  text-decoration: none;
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.3rem 1.4rem;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--motion-fast) var(--ease-out),
    box-shadow var(--motion-fast) var(--ease-out);
}

.service-card:hover,
.reason-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.icon-tile {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: var(--color-navy);
  color: var(--color-foam);
  margin-bottom: 1rem;
}

.service-card h3,
.reason-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
}

.service-card p,
.reason-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ---------- About mosaic ---------- */
.photo-mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  min-height: 420px;
}

.photo-mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-navy-mid);
}

.photo-mosaic figure:first-child {
  grid-row: 1 / span 2;
  border-radius: var(--radius-xl);
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.photo-mosaic figure:hover img {
  transform: scale(1.05);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.mission-card {
  background: color-mix(in oklab, var(--color-navy) 4%, var(--color-foam));
  border-radius: var(--radius-md);
  padding: 1.05rem 1.1rem;
  box-shadow: 0 0 0 1px rgb(7 20 34 / 0.06);
}

.mission-card h3 {
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
  color: var(--color-signal);
}

.mission-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.process-step {
  position: relative;
  padding: 1.3rem 1.2rem 1.4rem;
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--color-foam) 6%, transparent);
  box-shadow: inset 0 0 0 1px rgb(250 248 244 / 0.1);
}

.process-step .num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.process-step h3 {
  font-size: 1.12rem;
  margin: 0 0 0.4rem;
}

.process-step p {
  margin: 0;
  color: color-mix(in oklab, var(--color-foam) 68%, transparent);
  font-size: 0.95rem;
}

/* ---------- Quote form ---------- */
.quote-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.quote-panel {
  background: var(--color-foam);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.95rem;
}

.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-paper);
  color: var(--color-ink);
  padding: 0.7rem 0.9rem;
  font: inherit;
  box-shadow: inset 0 0 0 1px rgb(7 20 34 / 0.08);
  transition:
    box-shadow var(--motion-fast) var(--ease-out),
    background-color var(--motion-fast) var(--ease-out);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px var(--color-navy-mid),
    0 0 0 3px rgb(12 35 64 / 0.15);
}

.phone-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.55rem;
}

.form-note {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.form-note.ok {
  background: #e8f6ee;
  color: #14532d;
}

.form-note.err {
  background: #fde8ea;
  color: #9a0c23;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-navy);
  cursor: pointer;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.06);
  filter: brightness(0.82);
}

.gallery-item .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--color-foam);
}

.play-orb {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgb(200 16 46 / 0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px -8px rgb(0 0 0 / 0.5);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgb(4 11 20 / 0.92);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-fast) var(--ease-out);
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img,
.lightbox video {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px -20px rgb(0 0 0 / 0.7);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* ---------- Contact ---------- */
.contact-card a.phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.85rem;
  color: var(--color-foam);
  background: var(--color-navy);
  text-decoration: none;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background-color var(--motion-fast) var(--ease-out);
}

.contact-card a.phone:hover {
  background: var(--color-signal);
}

.contact-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
}

.contact-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy-deep);
  color: color-mix(in oklab, var(--color-foam) 78%, transparent);
  padding: 3.2rem 0 1.4rem;
}

.site-footer h3,
.site-footer h4 {
  color: var(--color-foam);
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color var(--motion-fast) var(--ease-out);
}

.site-footer a:hover {
  color: var(--color-gold);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-copy {
  margin-top: 2.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgb(250 248 244 / 0.08);
  font-size: 0.85rem;
  text-align: center;
}

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 5.4rem;
  z-index: 45;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #128c7e;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -10px rgb(18 140 126 / 0.7);
  transition: transform var(--motion-fast) var(--ease-out);
}

.wa-fab:hover {
  transform: translateY(-3px) scale(1.04);
}

.wa-fab:active {
  transform: scale(0.96);
}

body:has(.mobile-drawer.is-open) .wa-fab {
  opacity: 0;
  pointer-events: none;
}

/* ---------- Keyframes ---------- */
@keyframes riseIn {
  to {
    translate: 0 0;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes drawLine {
  to {
    transform: scaleX(1);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgb(200 16 46 / 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgb(200 16 46 / 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgb(200 16 46 / 0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes mouseWheel {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes cycleWord {
  0% {
    opacity: 0;
    transform: translateY(0.45em);
    filter: blur(4px);
  }
  4% {
    opacity: 1;
    transform: none;
    filter: none;
  }
  22% {
    opacity: 1;
    transform: none;
    filter: none;
  }
  26% {
    opacity: 0;
    transform: translateY(-0.35em);
    filter: blur(4px);
  }
  100% {
    opacity: 0;
  }
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.2rem 0 4.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .quote-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 2.2rem 0 3.4rem;
  }

  .hero-portrait {
    justify-self: center;
    width: min(100%, 280px);
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgb(7 20 34 / 0.55) 0%, rgb(7 20 34 / 0.82) 42%, rgb(7 20 34 / 0.94) 100%);
  }

  .process-grid,
  .cards-3,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-mosaic {
    min-height: 340px;
  }

  .scroll-hint {
    display: none;
  }

  .float-badge {
    left: -0.4rem;
    bottom: 8%;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 4.25rem;
  }

  /* .brand-copy span {
    display: none;
  } */

  .hero-grid {
    padding: 1.35rem 0 2.4rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 9.2vw, 2.45rem);
    margin: 0.55rem 0 0.8rem;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .process-grid,
  .cards-3,
  .cards-2,
  .gallery-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .photo-mosaic figure:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .photo-mosaic figure {
    aspect-ratio: 4 / 5;
  }

  .quote-panel {
    padding: 1.15rem;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .btn-compact {
    padding-inline: 0.9rem;
    font-size: 0.82rem;
    min-height: 40px;
  }

  .wa-fab {
    right: 0.85rem;
    bottom: 5.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg img,
  .hero-kicker,
  .hero-title .word,
  .hero-title .accent::after,
  .hero-lead,
  .hero-actions,
  .trust-row,
  .hero-portrait,
  .scroll-hint,
  .float-badge,
  .pulse-dot,
  .marquee-track {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    translate: 0 !important;
  }

  .cycle-slot span {
    animation: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 0 !important;
  }

  .cycle-slot span:first-child {
    opacity: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .gold-rule {
    transform: none;
  }
}


/* ---------- Layout helpers (no Tailwind needed) ---------- */
.header-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
.menu-btn { display: inline-flex; }
.wa-header { display: none; }
.quote-full { display: none; }
.quote-short { display: inline; }
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
.stack { display: flex; flex-direction: column; gap: 0.75rem; }
.muted { color: var(--color-muted); }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-10 { margin-bottom: 2.5rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xs { max-width: 20rem; }
.text-sm { font-size: 0.9rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.font-semibold { font-weight: 600; }
.text-navy { color: var(--color-navy); }
.text-signal { color: var(--color-signal); }
.inline-flex { display: inline-flex; align-items: center; gap: 0.5rem; }
.cta-card { display: flex; flex-direction: column; justify-content: space-between; text-decoration: none; }
.icon-svg { display: block; }

@media (min-width: 640px) {
  .wa-header { display: inline-flex; }
  .quote-full { display: inline; }
  .quote-short { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-btn { display: none; }
  .mobile-drawer { display: none !important; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

#lightbox-media { display: contents; }
.menu-btn .icon-close[hidden],
.menu-btn .icon-menu[hidden] { display: none; }
