/* ═══════════════════════════════════════════════════════════
   Miss Visas MX — Design System
   Base: warm cream · Accents: deep gold + magenta/pink gradient
   Type: Playfair Display (headings) + Figtree (body)
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Neutrals */
  --cream: #FDF9F3;
  --blush: #FAF0EA;
  --white: #FFFFFF;
  --ink: #3A2C28;
  --ink-soft: #5D4C46;
  --line: #EADFCF;

  /* Gold */
  --gold: #B08A3E;
  --gold-deep: #8A6420;      /* text-safe on cream (≥4.5:1) */
  --gold-pale: #F3E7CE;

  /* Magenta / pink */
  --magenta: #B92E72;
  --magenta-deep: #9A2560;   /* text-safe */
  --pink: #E56BA5;
  --pink-soft: #F9D9E7;

  --grad-magenta: linear-gradient(135deg, #A82565 0%, #C2337A 100%);
  --grad-gold: linear-gradient(135deg, #C9A054 0%, #B08A3E 100%);

  /* Type */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", system-ui, sans-serif;

  /* System */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(58, 44, 40, .06);
  --shadow-md: 0 10px 30px rgba(58, 44, 40, .10);
  --shadow-lg: 0 24px 60px rgba(58, 44, 40, .14);
  --container: 1160px;
  --ease: cubic-bezier(.22, .8, .36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; }
h1 em, h2 em { font-style: italic; color: var(--magenta-deep); }

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

a { color: var(--magenta-deep); }

:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }
.container-narrow { max-width: 820px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  min-height: 48px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-magenta);
  color: #fff;
  box-shadow: 0 8px 24px rgba(194, 51, 122, .32);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(194, 51, 122, .42); }

.btn-ghost {
  background: transparent;
  color: var(--gold-deep);
  border: 1.5px solid var(--gold);
}
.btn-ghost:hover { background: rgba(176, 138, 62, .08); }

.btn-light { background: #fff; color: var(--magenta-deep); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.7); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

.btn-sm { padding: 11px 22px; min-height: 44px; font-size: 15px; }
.btn-block { width: 100%; }

/* ── Announcement bar ────────────────────────────────────── */
.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  background: linear-gradient(135deg, #9A7228 0%, #8A6420 100%);
  color: #FFF9EC;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: center;
}
.announce-icon { width: 14px; height: 14px; flex: none; }

/* ── Navbar ──────────────────────────────────────────────── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 249, 243, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav-wrap.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.nav {
  max-width: var(--container);
  margin-inline: auto;
  padding: 14px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-seal { width: 42px; height: 42px; color: var(--gold); }
.brand-seal svg { width: 100%; height: 100%; }
.brand-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}
.brand-name em { font-style: italic; color: var(--magenta-deep); }

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15.5px;
  text-decoration: none;
  transition: color .2s, background-color .2s;
}
.nav-links a:hover { color: var(--magenta-deep); background: var(--pink-soft); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 24px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  padding: 14px 12px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  border-radius: 10px;
}
.mobile-menu a:hover { background: var(--pink-soft); }
.mobile-menu .btn { margin-top: 10px; }
.mobile-menu.open { display: flex; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 110px) 0 clamp(64px, 8vw, 100px);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.aurora { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.aurora-1 { width: 560px; height: 560px; top: -220px; right: -120px; background: radial-gradient(circle, #F6C9DE 0%, transparent 70%); }
.aurora-2 { width: 480px; height: 480px; bottom: -200px; left: -160px; background: radial-gradient(circle, #F0DFB8 0%, transparent 70%); }
.aurora-3 { width: 380px; height: 380px; top: 30%; left: 42%; background: radial-gradient(circle, #FBE3EE 0%, transparent 70%); opacity: .45; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--gold-pale);
  color: var(--gold-deep);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.eyebrow svg { width: 16px; height: 16px; flex: none; }

.hero h1 {
  margin: 26px 0 20px;
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 700;
  letter-spacing: -.01em;
}
.hero h1 em { display: block; }

.hero-sub {
  max-width: 54ch;
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--ink-soft);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 36px;
  list-style: none;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.hero-trust strong { color: var(--ink); }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .divider { width: 1px; height: 18px; background: var(--line); padding: 0; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }

/* Hero visual */
.hero-visual { position: relative; min-height: 420px; }

.passport-card {
  position: relative;
  z-index: 2;
  width: min(330px, 86%);
  margin-inline: auto;
  border-radius: 22px;
  background: linear-gradient(160deg, #8A2957 0%, #B92E72 55%, #D14C8E 100%);
  color: #FCE9F2;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.25);
  overflow: hidden;
  transform: rotate(-3deg);
}
.passport-top { padding: 40px 30px 28px; text-align: center; }
.passport-crest { width: 88px; height: 88px; margin: 0 auto 18px; color: #F2CE8B; }
.passport-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #F2CE8B;
}
.passport-name {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  color: #fff;
}
.passport-strip {
  padding: 14px 22px;
  background: rgba(20, 6, 14, .25);
  font-family: "Courier New", monospace;
  font-size: 11.5px;
  letter-spacing: .12em;
  line-height: 1.8;
  color: rgba(255, 236, 245, .85);
  white-space: nowrap;
  overflow: hidden;
}
.passport-strip span { display: block; }

.stamp-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(234, 223, 207, .8);
  font-size: 13.5px;
}
.stamp-card svg { width: 34px; height: 34px; padding: 7px; border-radius: 50%; flex: none; }
.stamp-card strong { display: block; color: var(--ink); font-size: 14.5px; }
.stamp-card span { color: var(--ink-soft); }

.float-1 { top: -2%; right: -2%; animation: floaty 5s ease-in-out infinite; }
.float-1 svg { background: #E8F6EC; color: #1F7A3D; }
.float-2 { bottom: 12%; left: 0; animation: floaty 6s ease-in-out 1.2s infinite; }
.float-2 svg { background: var(--gold-pale); color: var(--gold-deep); }

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

.hero-bridge {
  position: absolute;
  z-index: 1;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  color: var(--gold);
  opacity: .22;
}

/* Sparkles */
.sparkles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.sparkle {
  position: absolute;
  width: 14px;
  height: 14px;
  color: var(--gold);
  opacity: 0;
  animation: twinkle 4s ease-in-out infinite;
}
.sparkles-light .sparkle { color: rgba(255, 255, 255, .9); }
.sparkle svg { width: 100%; height: 100%; }
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(.4) rotate(0deg); }
  50% { opacity: .8; transform: scale(1) rotate(20deg); }
}

/* ── Stats band ──────────────────────────────────────────── */
.stats { border-block: 1px solid var(--line); background: #fff; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-block: 34px;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--gold-deep);
}
.stat span { font-size: 14.5px; color: var(--ink-soft); }

/* ── Sections ────────────────────────────────────────────── */
.section { padding-block: clamp(72px, 9vw, 110px); }
.section-blush { background: var(--blush); }

.section-head { max-width: 680px; margin: 0 auto clamp(44px, 5vw, 60px); text-align: center; }
.eyebrow-center { margin-inline: auto; }
.section-head h2 {
  margin: 20px 0 16px;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 700;
}
.section-sub { font-size: 17px; }

/* ── Services ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  padding: 30px 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-pale), #FBEFDA);
  color: var(--gold-deep);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { font-size: 15px; }

.service-featured { border: 1.5px solid var(--gold); }
.service-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--grad-magenta);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
}

/* ── Process steps ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  list-style: none;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  opacity: .5;
}
.step { position: relative; text-align: center; padding: 0 6px; }
.step-seal {
  position: relative;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px var(--blush), var(--shadow-sm);
}
.step-seal::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed var(--gold);
  opacity: .6;
}
.step-seal span {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-deep);
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 14.5px; }

/* ── Testimonials marquee ────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding-block: 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.t-card {
  width: 360px;
  flex: none;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.t-card blockquote {
  font-size: 15.5px;
  color: var(--ink-soft);
  flex: 1;
}
.t-card figcaption strong { display: block; color: var(--ink); font-size: 15.5px; }
.t-card figcaption span { font-size: 13.5px; color: var(--gold-deep); font-weight: 500; }

/* ── Team ────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.team-card {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-photo {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--pink-soft), var(--gold-pale));
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--gold), var(--shadow-sm);
}
.team-initials {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  color: var(--magenta-deep);
}
.photo-note {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 10.5px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.team-card h3 { font-size: 21px; }
.team-role {
  margin: 6px 0 12px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--magenta-deep);
}
.team-bio { font-size: 15px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 18.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold-deep);
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 500;
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 22px; font-size: 15.5px; }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% 115%, rgba(242, 206, 139, .35), transparent 60%),
    linear-gradient(135deg, #8A2957 0%, #B92E72 55%, #C94D89 100%);
  color: #fff;
  text-align: center;
  padding-block: clamp(72px, 9vw, 104px);
}
.cta-inner { position: relative; z-index: 2; max-width: 720px; }
.cta-seal { width: 64px; height: 64px; margin: 0 auto 24px; color: #F2CE8B; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}
.cta-band p { font-size: 17.5px; color: rgba(255, 240, 248, .92); max-width: 52ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.contact-info h2 { font-size: clamp(30px, 3.6vw, 42px); margin: 18px 0 14px; }

.contact-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.contact-list li { display: flex; gap: 16px; }
.contact-list svg {
  width: 44px;
  height: 44px;
  padding: 11px;
  flex: none;
  border-radius: 12px;
  background: var(--gold-pale);
  color: var(--gold-deep);
}
.contact-list strong { display: block; color: var(--ink); font-size: 15.5px; margin-bottom: 2px; }
.contact-list span { font-size: 15px; }

.contact-form {
  padding: clamp(28px, 3.5vw, 40px);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.field label span { color: var(--magenta); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #A8968E; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(185, 46, 114, .14);
}
.field textarea { resize: vertical; min-height: 110px; }
.helper { font-size: 13px; color: #77665C; }
.field input.error { border-color: #C0392B; }
.field-error { font-size: 13.5px; color: #B03225; font-weight: 500; }

.form-status { font-size: 15px; font-weight: 600; color: #1F7A3D; min-height: 1em; }
.form-note { font-size: 12.5px; color: #77665C; text-align: center; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #2E2220;
  color: #C9B8B0;
  padding-top: clamp(56px, 7vw, 80px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: 48px;
}
.brand-footer, .brand-footer .brand-name { color: #F5EAE2; }
.brand-footer .brand-seal { color: #D9B36A; }
.footer-brand p { margin-top: 18px; font-size: 15px; max-width: 40ch; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h3 {
  color: #D9B36A;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-links a { color: #C9B8B0; text-decoration: none; font-size: 15px; transition: color .2s; }
.footer-links a:hover { color: #fff; }

.footer-legal {
  border-top: 1px solid rgba(217, 179, 106, .2);
  padding-block: 26px 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.disclaimer { color: #9C8A82; max-width: 90ch; }

/* ── Reveal on scroll ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .nav { gap: 14px; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 10px 10px; font-size: 15px; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .mobile-menu[hidden] { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .steps::before { display: none; }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 em { display: inline; }
  .hero-visual { min-height: 400px; margin-top: 10px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .services-grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .t-card { width: 300px; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
  .reveal { opacity: 1; transform: none; }
}
