/* ============================================================
   ABI SABER · LEGACY LIFE — Design System
   Palette: #0D1B2A · #1B263B · #C89D4A · #F2EDE4 · #D6D6D6
   Type:    Playfair Display (display) · Montserrat (text)
   ============================================================ */

:root {
  --navy-950: #081221;
  --navy-900: #0D1B2A;
  --navy-800: #1B263B;
  --navy-700: #24334A;
  --navy-600: #31445F;

  --gold: #C89D4A;
  --gold-light: #DFBC77;
  --gold-pale: #EFE0BC;

  --cream: #F2EDE4;
  --cream-dark: #E9E1D2;
  --silver: #D6D6D6;

  --ink: #22303F;
  --muted: #5D6A7A;
  --on-dark: rgba(226, 232, 240, 0.78);
  --on-dark-strong: #F4F1EA;

  --font-display: "Playfair Display", Georgia, serif;
  --font-text: "Montserrat", "Segoe UI", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);

  --shadow-soft: 0 20px 60px -20px rgba(8, 18, 33, 0.25);
  --shadow-card: 0 30px 80px -30px rgba(8, 18, 33, 0.45);

  --nav-h: 84px;
}

/* Team opportunity follows the existing navy, gold and cream palette. */
.team__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.team__grid > *, .footer__grid > * { min-width: 0; }
.team__details {
  border-left: 2px solid var(--gold);
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
}
.team__details h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.team__details p { margin-bottom: 1.5rem; }
.team__details .btn { white-space: normal; text-align: center; }
.quote__states { font-size: 0.875rem; margin-top: 1.5rem; }
.footer__contact a, .quote__contact a { overflow-wrap: anywhere; }
.quote__contact svg { flex-shrink: 0; }
@media (max-width: 760px) {
  .team__grid { grid-template-columns: 1fr; }
}

/* ---------- Reset & base ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

.btn, .faq__q, .slider__dot, .lang__btn, .burger { touch-action: manipulation; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

ul { list-style: none; }

::selection { background: var(--gold); color: var(--navy-950); }

/* Subtle film grain over everything — kills flat digital gradients */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */

.container {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.section {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  scroll-margin-top: var(--nav-h);
}

.section--dark {
  background: var(--navy-900);
  color: var(--on-dark);
}

.section--darker {
  background: var(--navy-950);
  color: var(--on-dark);
}

.section--panel {
  background: var(--navy-800);
  color: var(--on-dark);
}

/* ---------- Typography ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

.h1, .h2, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--navy-900);
}

.section--dark .h2, .section--darker .h2, .section--panel .h2 { color: var(--on-dark-strong); }

.h1 { font-size: clamp(2.7rem, 6.2vw, 4.7rem); letter-spacing: -0.01em; }
.h2 { font-size: clamp(1.95rem, 4vw, 3rem); letter-spacing: -0.005em; }
.h3 { font-size: 1.35rem; }

.h-italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.lead {
  font-size: 1.06rem;
  font-weight: 400;
  color: var(--muted);
  max-width: 56ch;
}

.section--dark .lead, .section--darker .lead, .section--panel .lead { color: var(--on-dark); }

.section-head {
  display: grid;
  gap: 1.1rem;
  max-width: 720px;
  margin-bottom: clamp(2.6rem, 6vw, 4.2rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.06rem 2.15rem;
  font-family: var(--font-text);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
              background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  white-space: nowrap;
}

.btn svg { width: 15px; height: 15px; flex: none; transition: transform 0.4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold {
  background: linear-gradient(120deg, var(--gold) 0%, #D7AF60 55%, var(--gold) 100%);
  color: var(--navy-950);
  box-shadow: 0 14px 34px -12px rgba(200, 157, 74, 0.55);
}

.btn--gold::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -40%;
  width: 34%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease-smooth);
}

.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(200, 157, 74, 0.65); }
.btn--gold:hover::after { left: 110%; }

.btn--ghost {
  border: 1px solid rgba(200, 157, 74, 0.55);
  color: var(--gold-light);
  background: rgba(200, 157, 74, 0.04);
}

.btn--ghost:hover {
  background: rgba(200, 157, 74, 0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.btn--ghost-dark {
  border: 1px solid rgba(13, 27, 42, 0.35);
  color: var(--navy-900);
}

.btn--ghost-dark:hover { background: rgba(13, 27, 42, 0.06); transform: translateY(-3px); }

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: box-shadow 0.5s ease;
}

/* Scrolled backdrop lives on a pseudo-element: putting backdrop-filter on .nav
   itself would turn it into the containing block for the fixed .nav__panel */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(8, 18, 33, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--nav-h);
}

.nav--scrolled {
  box-shadow: 0 10px 40px -18px rgba(0, 0, 0, 0.6);
}

.nav--scrolled::before { opacity: 1; }

/* Always-solid variant for interior pages (privacy policy etc.) */
.nav--solid::before { opacity: 1; background: var(--navy-950); }

/* Logo lockup */
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: none;
}

.brand__mark { width: 44px; height: 44px; }

.brand__text { display: grid; line-height: 1.25; }

.brand__name {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--on-dark-strong);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__tag {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.nav__link {
  position: relative;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(238, 241, 245, 0.82);
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}

.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__actions { display: flex; align-items: center; gap: 1.2rem; flex: none; }

.nav__cta { padding: 0.82rem 1.6rem; font-size: 0.7rem; }

/* Language switcher */
.lang {
  position: relative;
}

.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(238, 241, 245, 0.85);
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(214, 214, 214, 0.25);
  border-radius: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.lang__btn:hover { border-color: var(--gold); color: var(--gold-light); }

.lang__btn svg { width: 13px; height: 13px; transition: transform 0.3s ease; }
.lang.open .lang__btn svg.lang__chev { transform: rotate(180deg); }

.lang__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  background: rgba(13, 27, 42, 0.97);
  border: 1px solid rgba(200, 157, 74, 0.25);
  border-radius: 3px;
  padding: 0.45rem;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out), visibility 0.3s;
  box-shadow: var(--shadow-card);
}

.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }

.lang__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.6rem 0.8rem;
  background: none;
  border: 0;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(238, 241, 245, 0.85);
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease;
}

.lang__item:hover { background: rgba(200, 157, 74, 0.12); color: var(--gold-light); }

.lang__item.active { color: var(--gold); }
.lang__item.active::after { content: "•"; }

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.burger span {
  width: 26px;
  height: 1.6px;
  background: var(--on-dark-strong);
  transition: transform 0.4s var(--ease-out), opacity 0.3s ease;
}

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

/* Mobile panel */
.nav__panel {
  display: none;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(120% 90% at 50% 0%, var(--navy-800) 0%, var(--navy-900) 46%, var(--navy-950) 100%);
  color: var(--on-dark);
  overflow: hidden;
  padding: calc(var(--nav-h) + 3rem) 0 9rem;
}

.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(closest-side, rgba(200, 157, 74, 0.13), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.hero__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.6;
}

.hero__stars i {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold-pale);
  opacity: 0;
  animation: star-blink 6s ease-in-out infinite;
}

@keyframes star-blink {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 0.85; transform: scale(1); }
}

.hero__mountains {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  pointer-events: none;
}

.hero__mountains svg { width: 100%; height: auto; }

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 1.6rem;
  max-width: 860px;
  padding-inline: 1.5rem;
}

.hero__monogram { width: 108px; height: auto; margin-bottom: 0.4rem; }

.hero__monogram .arc {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: draw-arc 1.6s var(--ease-smooth) 0.9s forwards;
}

@keyframes draw-arc {
  to { stroke-dashoffset: 0; }
}

.hero__eyebrow { justify-content: center; }
.hero__eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

.hero .h1 { color: var(--on-dark-strong); }

.hero__sub {
  max-width: 60ch;
  font-size: 1.04rem;
  font-weight: 300;
  color: var(--on-dark);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.8rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem 2.6rem;
  margin-top: 2.4rem;
  padding-top: 1.9rem;
  border-top: 1px solid rgba(214, 214, 214, 0.14);
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.66);
}

.hero__trust svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

/* Staggered entrance */
.hero [data-hero] {
  opacity: 0;
  transform: translateY(26px);
  animation: hero-in 1.1s var(--ease-out) forwards;
}

.hero [data-hero="1"] { animation-delay: 0.15s; }
.hero [data-hero="2"] { animation-delay: 0.3s; }
.hero [data-hero="3"] { animation-delay: 0.45s; }
.hero [data-hero="4"] { animation-delay: 0.6s; }
.hero [data-hero="5"] { animation-delay: 0.78s; }
.hero [data-hero="6"] { animation-delay: 0.95s; }

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.5);
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  background: var(--navy-950);
  border-block: 1px solid rgba(200, 157, 74, 0.18);
  overflow: hidden;
  padding: 1.15rem 0;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 3.4rem;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}

.marquee:hover .marquee__track { animation-play-state: paused; }

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

.marquee__item {
  display: flex;
  align-items: center;
  gap: 3.4rem;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-style: italic;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.55);
  white-space: nowrap;
}

.marquee__item::after {
  content: "✦";
  font-style: normal;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ============================================================
   STATS
   ============================================================ */

.stats { background: var(--cream); }

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

.stat {
  text-align: center;
  padding: 1rem 0.6rem;
  position: relative;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 58%;
  background: linear-gradient(to bottom, transparent, rgba(13, 27, 42, 0.18), transparent);
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.1;
}

.stat__num .accent { color: var(--gold); }

.stat__label {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   ABOUT
   ============================================================ */

.about__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about__visual { position: relative; }

.arch-card {
  position: relative;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  border-radius: 200px 200px 6px 6px;
  padding: clamp(3rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.4rem);
  display: grid;
  justify-items: center;
  gap: 1.8rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.arch-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(200, 157, 74, 0.35);
  border-radius: 190px 190px 4px 4px;
  pointer-events: none;
}

.arch-card__tree { width: min(210px, 60%); color: var(--gold); }

.arch-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.06rem;
  text-align: center;
  color: var(--gold-pale);
  max-width: 26ch;
  line-height: 1.6;
}

.about__badge {
  position: absolute;
  bottom: -1.6rem;
  right: -0.9rem;
  background: var(--gold);
  color: var(--navy-950);
  padding: 1.15rem 1.5rem;
  border-radius: 3px;
  display: grid;
  gap: 0.15rem;
  box-shadow: 0 18px 40px -14px rgba(200, 157, 74, 0.6);
}

.about__badge strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
}

.about__badge span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about__body { display: grid; gap: 1.15rem; }

.about__body p { color: var(--muted); max-width: 58ch; }

.about__signature {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy-800);
}

.about__signature span {
  display: block;
  font-family: var(--font-text);
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}

/* Values */
.values {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.value {
  background: #FBF8F2;
  border: 1px solid rgba(13, 27, 42, 0.07);
  border-top: 2px solid var(--gold);
  padding: 1.9rem 1.6rem;
  border-radius: 3px;
  display: grid;
  gap: 0.8rem;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.value:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-soft);
}

.value svg { width: 30px; height: 30px; color: var(--gold); }

.value h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy-900);
}

.value p { font-size: 0.88rem; color: var(--muted); }

/* ============================================================
   COVERAGE
   ============================================================ */

.coverage { position: relative; overflow: hidden; }

.coverage::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -220px;
  width: 640px;
  height: 640px;
  background: radial-gradient(closest-side, rgba(200, 157, 74, 0.08), transparent 70%);
  pointer-events: none;
}

.coverage__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.card {
  position: relative;
  background: linear-gradient(165deg, rgba(36, 51, 74, 0.65), rgba(13, 27, 42, 0.9));
  border: 1px solid rgba(214, 214, 214, 0.1);
  border-radius: 4px;
  padding: 2.1rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.55s var(--ease-out), border-color 0.4s ease, background 0.4s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  transform: translateY(-9px);
  border-color: rgba(200, 157, 74, 0.45);
}

.card:hover::before { opacity: 1; }

.card__icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(200, 157, 74, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 0.3rem;
  transition: background 0.4s ease, transform 0.5s var(--ease-out);
}

.card__icon svg { width: 22px; height: 22px; }

.card:hover .card__icon {
  background: rgba(200, 157, 74, 0.12);
  transform: scale(1.06);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--on-dark-strong);
}

.card > p { font-size: 0.9rem; color: var(--on-dark); flex-grow: 1; }

.card__list { display: grid; gap: 0.45rem; padding-block: 0.3rem 0.6rem; }

.card__list li {
  display: flex;
  gap: 0.55rem;
  align-items: baseline;
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.62);
}

.card__list li::before {
  content: "—";
  color: var(--gold);
  flex: none;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.card__link svg { width: 14px; height: 14px; transition: transform 0.35s var(--ease-out); }
.card__link:hover svg { transform: translateX(5px); }

.coverage__note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--on-dark);
}

.coverage__note a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(200, 157, 74, 0.5);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.coverage__note a:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   CTA BANNER
   ============================================================ */

.banner {
  position: relative;
  background: var(--navy-950);
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  text-align: center;
  border-block: 1px solid rgba(200, 157, 74, 0.16);
}

.banner__arc {
  position: absolute;
  left: 50%;
  bottom: -40%;
  transform: translateX(-50%);
  width: 1200px;
  opacity: 0.5;
  pointer-events: none;
}

.banner__inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.8rem;
}

.banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--on-dark-strong);
  max-width: 24ch;
}

.banner h2 em { color: var(--gold); font-style: italic; }

/* ============================================================
   PROCESS
   ============================================================ */

.process { background: var(--cream); position: relative; }

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process__grid::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(13, 27, 42, 0.12);
}

.process__grid::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 6%;
  width: 88%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s var(--ease-smooth) 0.3s;
}

.process__grid.in-view::after { transform: scaleX(1); }

.step { display: grid; gap: 1rem; justify-items: start; position: relative; }

.step__num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(13, 27, 42, 0.16);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy-900);
  position: relative;
  z-index: 1;
  transition: background 0.45s ease, color 0.45s ease, border-color 0.45s ease, transform 0.5s var(--ease-out);
}

.step:hover .step__num {
  background: var(--navy-900);
  color: var(--gold);
  border-color: var(--navy-900);
  transform: scale(1.07);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--navy-900);
}

.step p { font-size: 0.9rem; color: var(--muted); }

/* ============================================================
   WHY US
   ============================================================ */

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.why__statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--on-dark-strong);
}

.why__statement em { color: var(--gold); font-style: italic; }

.why__list { display: grid; gap: 1.3rem; }

.why__item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(214, 214, 214, 0.1);
}

.why__item:last-child { border-bottom: 0; padding-bottom: 0; }

.why__check {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(200, 157, 74, 0.5);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-top: 0.2rem;
}

.why__check svg { width: 13px; height: 13px; }

.why__item h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--on-dark-strong);
  margin-bottom: 0.25rem;
}

.why__item p { font-size: 0.88rem; color: var(--on-dark); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials { position: relative; overflow: hidden; }

.testimonials::before {
  content: "“";
  position: absolute;
  top: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 22rem;
  line-height: 1;
  color: rgba(200, 157, 74, 0.07);
  pointer-events: none;
}

.slider {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  min-height: 300px;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 1.6rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out);
  pointer-events: none;
  padding-inline: 1rem;
}

.slide.active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.slide__stars { display: flex; gap: 0.3rem; color: var(--gold); }
.slide__stars svg { width: 15px; height: 15px; }

.slide blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--on-dark-strong);
}

.slide figcaption { display: grid; gap: 0.2rem; justify-items: center; }

.slide figcaption strong {
  font-family: var(--font-text);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.slide figcaption span {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: rgba(226, 232, 240, 0.55);
}

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2.2rem;
}

/* 18px-tall hit area; the visible 3px bar is drawn by ::before */
.slider__dot {
  position: relative;
  width: 34px;
  height: 18px;
}

.slider__dot::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 2px;
  background: rgba(214, 214, 214, 0.2);
  transition: background 0.4s ease;
}

.slider__dot.active::before { background: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */

.faq__list {
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
}

.faq__item {
  background: #FBF8F2;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq__item.open {
  border-color: rgba(200, 157, 74, 0.55);
  box-shadow: var(--shadow-soft);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  text-align: left;
  padding: 1.35rem 1.6rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy-900);
  transition: color 0.3s ease;
}

.faq__q:hover { color: var(--gold); }

.faq__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(13, 27, 42, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.5s var(--ease-out), background 0.35s ease, border-color 0.35s ease;
}

.faq__icon svg { width: 12px; height: 12px; }

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-950);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-smooth);
}

.faq__a p {
  padding: 0 1.6rem 1.5rem;
  font-size: 0.93rem;
  color: var(--muted);
  max-width: 62ch;
}

/* ============================================================
   QUOTE / LEAD FORM
   ============================================================ */

.quote { position: relative; overflow: hidden; }

.quote::before {
  content: "";
  position: absolute;
  bottom: -340px;
  left: -240px;
  width: 700px;
  height: 700px;
  background: radial-gradient(closest-side, rgba(200, 157, 74, 0.09), transparent 70%);
  pointer-events: none;
}

.quote__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.6rem, 6vw, 5rem);
  align-items: center;
}

.quote__pitch { display: grid; gap: 1.4rem; }

.quote__bullets { display: grid; gap: 0.9rem; margin-top: 0.4rem; }

.quote__bullets li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--on-dark);
}

.quote__bullets svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

.quote__contact {
  margin-top: 1.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(214, 214, 214, 0.12);
  display: grid;
  gap: 0.7rem;
}

.quote__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--on-dark-strong);
  transition: color 0.3s ease;
  width: fit-content;
}

.quote__contact a:hover { color: var(--gold-light); }
.quote__contact svg { width: 16px; height: 16px; color: var(--gold); }

/* Form card */
.form-card {
  position: relative;
  background: var(--cream);
  border-radius: 5px;
  padding: clamp(1.9rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-card);
  color: var(--ink);
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(200, 157, 74, 0.4);
  border-radius: 3px;
  pointer-events: none;
}

.form-card__head { display: grid; gap: 0.4rem; margin-bottom: 1.8rem; position: relative; }

.form-card__head h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-900);
}

.form-card__head p { font-size: 0.85rem; color: var(--muted); }

.form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field { position: relative; display: grid; gap: 0.35rem; }

.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-800);
}

.field input,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-text);
  font-size: 0.92rem;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid rgba(13, 27, 42, 0.16);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235D6A7A' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
  cursor: pointer;
}

.field input:focus,
.field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 157, 74, 0.18);
}

.field input.invalid,
.field select.invalid {
  border-color: #B4452F;
  box-shadow: 0 0 0 3px rgba(180, 69, 47, 0.12);
}

.field .field__error {
  font-size: 0.72rem;
  color: #B4452F;
  display: none;
}

.field.show-error .field__error { display: block; }

.form__submit {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0.4rem;
}

.form__privacy {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  color: var(--muted);
  text-align: center;
}

.form__privacy svg { width: 13px; height: 13px; color: var(--gold); flex: none; }

.form__privacy a,
.form__consent a {
  color: var(--navy-800);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__privacy a:hover,
.form__consent a:hover { color: var(--gold); }

.form__consent {
  grid-column: 1 / -1;
  font-size: 0.68rem;
  line-height: 1.55;
  color: #8B93A1;
  text-align: center;
}

/* Honeypot anti-spam: fora da tela para humanos, visível para bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Success state */
.form-success {
  display: none;
  position: relative;
  text-align: center;
  padding: 2.5rem 1rem;
  animation: hero-in 0.8s var(--ease-out);
}

.form-card.sent .form,
.form-card.sent .form-card__head { display: none; }

.form-card.sent .form-success { display: grid; justify-items: center; gap: 1rem; }

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200, 157, 74, 0.14);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.form-success__icon svg { width: 26px; height: 26px; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy-900);
}

.form-success p { font-size: 0.92rem; color: var(--muted); max-width: 34ch; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy-950);
  color: var(--on-dark);
  padding: 4.5rem 0 0;
  border-top: 1px solid rgba(200, 157, 74, 0.15);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.2rem;
}

.footer__about { display: grid; gap: 1.2rem; align-content: start; }

.footer__about p { font-size: 0.88rem; max-width: 34ch; color: rgba(226, 232, 240, 0.6); }

.footer h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer__col ul { display: grid; gap: 0.7rem; }

.footer__col a {
  font-size: 0.88rem;
  color: rgba(226, 232, 240, 0.66);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer__col a:hover { color: var(--gold-light); padding-left: 5px; }

.footer__contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(226, 232, 240, 0.66);
}

.footer__contact svg { width: 15px; height: 15px; color: var(--gold); flex: none; margin-top: 0.25rem; }

.footer__bottom {
  border-top: 1px solid rgba(214, 214, 214, 0.09);
  padding: 1.6rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__legal {
  font-size: 0.72rem;
  color: rgba(226, 232, 240, 0.4);
  max-width: 72ch;
}

.footer__copy { font-size: 0.74rem; color: rgba(226, 232, 240, 0.5); }

.footer__langs { display: flex; gap: 1.1rem; }

.footer__langs a,
.footer__langs button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.5);
  transition: color 0.3s ease;
}

.footer__langs a:hover, .footer__langs a.active,
.footer__langs button:hover, .footer__langs button.active { color: var(--gold); }

/* Back to top */
.to-top {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid rgba(200, 157, 74, 0.45);
  color: var(--gold);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out), visibility 0.4s, background 0.3s ease;
}

.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--navy-700); }
.to-top svg { width: 17px; height: 17px; }

/* ============================================================
   LEGAL PAGES (privacy policy)
   ============================================================ */

.legal {
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 5rem));
}

.legal__body {
  max-width: 760px;
  display: grid;
  gap: 1.05rem;
}

.legal__body h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 1.6rem;
}

.legal__body p, .legal__body li { color: var(--muted); font-size: 0.95rem; }

.legal__body ul { display: grid; gap: 0.5rem; padding-left: 1.2rem; }
.legal__body ul li { list-style: disc; }

.legal__body a { color: var(--navy-800); text-decoration: underline; text-underline-offset: 2px; }
.legal__body a:hover { color: var(--gold); }

.legal__updated {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.94); }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .coverage__grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.6rem 1.5rem; }
  .stat + .stat::before { display: none; }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 2.6rem; }
  .process__grid::before, .process__grid::after { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .burger { display: flex; }

  .nav__panel {
    display: block;
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--navy-950);
    padding: calc(var(--nav-h) + 2rem) 2rem 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s;
    overflow-y: auto;
  }

  .nav__panel.open { opacity: 1; visibility: visible; }

  .nav__panel-links { display: grid; gap: 0.4rem; }

  .nav__panel-links a {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--on-dark-strong);
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(214, 214, 214, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s ease;
  }

  .nav__panel.open .nav__panel-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav__panel-links a:nth-child(1) { transition-delay: 0.08s; }
  .nav__panel-links a:nth-child(2) { transition-delay: 0.14s; }
  .nav__panel-links a:nth-child(3) { transition-delay: 0.2s; }
  .nav__panel-links a:nth-child(4) { transition-delay: 0.26s; }
  .nav__panel-links a:nth-child(5) { transition-delay: 0.32s; }
  .nav__panel-links a:nth-child(6) { transition-delay: 0.38s; }

  .nav__panel-links a:hover { color: var(--gold); }

  .nav__panel .btn { margin-top: 2rem; width: 100%; }
}

@media (max-width: 860px) {
  .about__grid, .why__grid, .quote__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 420px; margin-inline: auto; }
  .why__statement { max-width: 30ch; }
  .hero { padding-bottom: 7.5rem; }
}

@media (max-width: 640px) {
  :root { --nav-h: 72px; }

  .nav__cta { display: none; }

  /* Inputs at 16px so iOS Safari doesn't auto-zoom on focus */
  .field input,
  .field select { font-size: 16px; }
  .coverage__grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero__trust { gap: 0.9rem 1.6rem; }
  .hero__trust li { font-size: 0.68rem; }
  .brand__name { font-size: 0.92rem; letter-spacing: 0.24em; }
  .brand__mark { width: 38px; height: 38px; }
  .slider { min-height: 380px; }
  .about__badge { right: 0; padding: 0.9rem 1.2rem; }
  .container { width: calc(100% - 2.4rem); }
  .footer__bottom { padding-bottom: 5rem; }
}

@media (max-width: 480px) {
  .section { padding: 4.25rem 0; }

  .hero__ctas {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn { width: 100%; }

  .hero__monogram { width: 92px; }

  .stats__grid { gap: 2rem 1rem; }

  .banner .btn { align-self: center; }

  .to-top { width: 44px; height: 44px; right: 1.1rem; bottom: 1.1rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@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;
  }

  [data-reveal], .hero [data-hero] {
    opacity: 1 !important;
    transform: none !important;
  }

  .marquee__track { animation: none; }
}
