/* ==========================================================================
   ELOY IMMIGRATION PLLC Design System
   Trust & Authority · Deep navy + warm gold · EB Garamond / Lato
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy-900: #0B1220;
  --navy-800: #0F172A;
  --navy-700: #16233B;
  --navy-600: #1E2E4A;
  --slate-600: #334155;
  --slate-500: #475569;
  --slate-400: #64748B;
  --slate-300: #94A3B8;

  --gold-500: #C89B3C;   /* primary accent */
  --gold-400: #D8B45E;
  --gold-300: #E8CE8A;
  --gold-600: #A67E28;

  --paper: #F7F5F0;      /* warm off-white background */
  --paper-2: #FBFAF6;
  --white: #FFFFFF;
  --line: #E6E1D6;
  --line-dark: rgba(255,255,255,0.10);

  --ink: #111827;
  --ink-soft: #3B4457;

  /* Typography */
  --serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(11,18,32,0.06), 0 1px 2px rgba(11,18,32,0.04);
  --shadow-md: 0 10px 30px -12px rgba(11,18,32,0.20);
  --shadow-lg: 0 30px 60px -20px rgba(11,18,32,0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy-800);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { max-width: 68ch; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--gold-500);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--slate-500); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.narrow { max-width: 760px; }

.section-head { max-width: 720px; margin-bottom: 3.25rem; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 0.9rem; }
.section-head p { margin-top: 1.1rem; }
.section-head.center p { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--gold { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 8px 22px -8px rgba(200,155,60,0.7); }
.btn--gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(200,155,60,0.8); }
.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-2px); }
.btn--outline { border-color: var(--line); color: var(--navy-800); background: #fff; }
.btn--outline:hover { border-color: var(--gold-500); color: var(--gold-600); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 3px; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,18,32,0.55), rgba(11,18,32,0));
  opacity: 1; transition: opacity 0.4s var(--ease); pointer-events:none;
}
.site-header.scrolled {
  background: rgba(11,18,32,0.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.5);
}
.site-header.scrolled::before { opacity: 0; }

.nav {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 84px;
}
.brand { display: flex; align-items: center; gap: 0.85rem; color: #fff; }
.brand__mark { flex: none; width: 42px; height: 42px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.28rem; letter-spacing: 0.02em; color: #fff; }
.brand__sub { font-family: var(--sans); font-weight: 700; font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-300); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 0.35rem; list-style: none; }
.nav__links a {
  position: relative; color: rgba(255,255,255,0.86); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.6rem 0.9rem; border-radius: 8px;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content:""; position:absolute; left:0.9rem; right:0.9rem; bottom:0.35rem; height:1.5px;
  background: var(--gold-400); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }

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

/* Language switcher */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16); color: #fff; padding: 0.5rem 0.75rem; border-radius: 999px;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.04em; transition: background-color 0.25s, border-color 0.25s;
}
.lang__btn:hover { background: rgba(255,255,255,0.16); border-color: var(--gold-400); }
.lang__btn svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.lang.open .lang__btn svg.chev { transform: rotate(180deg); }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 168px; background: #fff;
  border-radius: 12px; box-shadow: var(--shadow-lg); padding: 0.4rem; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.98); transform-origin: top right;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 20;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang__menu button {
  display: flex; align-items: center; gap: 0.7rem; width: 100%; text-align: left; background: none; border: 0;
  padding: 0.6rem 0.75rem; border-radius: 8px; color: var(--navy-800); font-weight: 700; font-size: 0.9rem;
  transition: background-color 0.18s;
}
.lang__menu button:hover { background: var(--paper); }
.lang__menu button[aria-current="true"] { color: var(--gold-600); }
.lang__menu button .tick { margin-left: auto; opacity: 0; width: 16px; height: 16px; color: var(--gold-600); }
.lang__menu button[aria-current="true"] .tick { opacity: 1; }
.lang__flag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; color: var(--slate-400); }

/* Mobile toggle */
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16); border-radius: 10px;
}
.nav__toggle span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.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 panel */
.mobile-menu {
  position: fixed; inset: 84px 0 0 0; z-index: 90; background: var(--navy-900);
  padding: 2rem clamp(1.25rem, 6vw, 2.5rem); transform: translateX(100%);
  transition: transform 0.4s var(--ease); visibility: hidden; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu a {
  display: block; color: #fff; font-family: var(--serif); font-size: 1.6rem; padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { color: var(--gold-300); }
.mobile-menu .btn { margin-top: 1.75rem; width: 100%; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; overflow: hidden; padding-top: 84px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::after {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(200,155,60,0.14), transparent 55%),
    linear-gradient(180deg, rgba(11,18,32,0.72) 0%, rgba(11,18,32,0.86) 55%, rgba(11,18,32,0.96) 100%);
}
.hero__bg svg { width: 100%; height: 100%; object-fit: cover; }
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 760px; }
.hero h1 { color: #fff; margin-top: 1.4rem; }
.hero h1 .accent { color: var(--gold-300); font-style: italic; }
.hero .lede { color: rgba(255,255,255,0.82); margin-top: 1.5rem; max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.75rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.14); }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta .num { font-family: var(--serif); font-size: 2rem; color: var(--gold-300); line-height: 1; }
.hero__meta .lbl { font-size: 0.8rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.65); margin-top: 0.4rem; text-transform: uppercase; }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-cue .mouse { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content:""; position:absolute; left:50%; top:7px; width:3px; height:6px; background: var(--gold-300); border-radius: 2px; transform: translateX(-50%); animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity:0; transform: translate(-50%, 0);} 30%{opacity:1;} 60%{opacity:0; transform: translate(-50%, 10px);} 100%{opacity:0;} }

/* Trust bar */
.trustbar { background: var(--navy-800); color: rgba(255,255,255,0.9); }
.trustbar__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 2.5rem; padding-block: 1.6rem; }
.trustbar__item { display: flex; align-items: center; gap: 0.7rem; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em; }
.trustbar__item svg { width: 22px; height: 22px; color: var(--gold-400); flex: none; }

/* ==========================================================================
   Generic surfaces
   ========================================================================== */
.bg-paper2 { background: var(--paper-2); }
.bg-navy { background: var(--navy-800); color: rgba(255,255,255,0.86); }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy .lede { color: rgba(255,255,255,0.78); }
.hr-fade { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); border: 0; }

/* Two-column intro */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split__media { position: relative; }
.frame {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.frame svg { width: 100%; height: 100%; }
.frame__badge {
  position: absolute; left: -18px; bottom: 26px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-md);
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.85rem; max-width: 260px;
}
.frame__badge .ico { width: 42px; height: 42px; border-radius: 10px; background: var(--navy-800); display: grid; place-items: center; flex: none; }
.frame__badge .ico svg { width: 22px; height: 22px; color: var(--gold-400); }
.frame__badge .t { font-family: var(--serif); font-size: 1.05rem; color: var(--navy-800); font-weight: 600; }
.frame__badge .s { font-size: 0.78rem; color: var(--slate-500); }

.checklist { list-style: none; margin-top: 1.75rem; display: grid; gap: 1rem; }
.checklist li { display: flex; gap: 0.85rem; align-items: flex-start; }
.checklist li svg { width: 24px; height: 24px; color: var(--gold-600); flex: none; margin-top: 2px; }
.checklist li b { color: var(--navy-800); }

/* ==========================================================================
   Feature / service cards
   ========================================================================== */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
/* Center a lone trailing card so a 7-item grid stays balanced */
.grid--3 > :last-child:nth-child(3n+1) { grid-column: 2; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.85rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content:""; position:absolute; inset:0 0 auto 0; height:3px; background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__ico { width: 56px; height: 56px; border-radius: 14px; background: var(--paper); display: grid; place-items: center; margin-bottom: 1.35rem; transition: background-color 0.35s var(--ease); }
.card__ico svg { width: 28px; height: 28px; color: var(--navy-700); transition: color 0.35s var(--ease); }
.card:hover .card__ico { background: var(--navy-800); }
.card:hover .card__ico svg { color: var(--gold-400); }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.98rem; color: var(--slate-500); }
.card__link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.1rem; color: var(--gold-600); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.card__link svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* Numbered process */
.steps { counter-reset: step; display: grid; gap: 1.25rem; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.25rem 1.75rem 1.75rem; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-500); line-height: 1; opacity: 0.9; }
.step h3 { font-size: 1.15rem; margin: 0.75rem 0 0.5rem; }
.step p { font-size: 0.92rem; color: var(--slate-500); }

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--gold-300); line-height: 1; }
.stat .lbl { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 0.6rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.85rem;
  display: flex; flex-direction: column; gap: 1rem; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.testi:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testi__stars { display: flex; gap: 3px; color: var(--gold-500); }
.testi__stars svg { width: 20px; height: 20px; }
.testi__quote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; color: var(--navy-800); font-style: italic; }
.testi__by { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.testi__av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy-800); color: var(--gold-300); display: grid; place-items: center; font-family: var(--serif); font-weight: 600; flex: none; }
.testi__name { font-weight: 700; color: var(--navy-800); font-size: 0.95rem; }
.testi__role { font-size: 0.8rem; color: var(--slate-400); }

/* ==========================================================================
   CTA / Booking
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--navy-900); color: #fff; }
.cta-band::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(90% 120% at 100% 0%, rgba(200,155,60,0.18), transparent 50%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cta-inner h2 { color: #fff; }
.cta-inner .lede { color: rgba(255,255,255,0.8); margin-top: 1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.contact-cards { display: grid; gap: 1rem; }
.contact-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 1.5rem; transition: border-color 0.3s, background-color 0.3s; }
.contact-card:hover { border-color: var(--gold-400); background: rgba(255,255,255,0.08); }
.contact-card .loc { font-family: var(--serif); font-size: 1.2rem; color: var(--gold-300); }
.contact-card .addr { color: rgba(255,255,255,0.78); font-size: 0.95rem; margin-top: 0.4rem; }
.contact-card .tel { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; color: #fff; font-weight: 700; }
.contact-card .tel svg { width: 18px; height: 18px; color: var(--gold-400); }

/* Calendly embed */
.calendly-wrap { position: relative; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; min-height: 700px; }
.calendly-inline-widget { min-width: 320px; height: 700px; }
/* Branded overlay shown while the calendar loads, and as the fallback if it cannot (e.g. opened as a file:// page) */
.calendly-fallback {
  position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 1rem; padding: 2rem;
  background: linear-gradient(180deg, #fbfaf6, #f7f5f0); color: var(--slate-500);
}
.calendly-fallback svg { width: 56px; height: 56px; color: var(--gold-500); }
.calendly-fallback strong { font-family: var(--serif); font-size: 1.4rem; color: var(--navy-800); }
.calendly-fallback .btn { margin-top: 0.5rem; }
.calendly-wrap.calendly-loaded .calendly-fallback { display: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .brand { margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: grid; gap: 0.7rem; }
.footer-col a, .footer-col address { font-style: normal; font-size: 0.95rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-300); }
.footer-col address { line-height: 1.6; }
.socials { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: grid; place-items: center; transition: background-color 0.25s, border-color 0.25s, transform 0.25s; }
.socials a:hover { background: var(--gold-500); border-color: var(--gold-500); transform: translateY(-3px); }
.socials a:hover svg { color: var(--navy-900); }
.socials svg { width: 18px; height: 18px; color: rgba(255,255,255,0.8); transition: color 0.25s; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--gold-300); }
.disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-top: 1.5rem; max-width: 90ch; }

/* ==========================================================================
   Floating call button
   ========================================================================== */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 80; display: inline-flex; align-items: center; gap: 0.65rem;
  background: var(--gold-500); color: var(--navy-900); font-weight: 700; padding: 0.9rem 1.25rem; border-radius: 999px;
  box-shadow: 0 14px 34px -10px rgba(200,155,60,0.7); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fab svg { width: 20px; height: 20px; }
.fab:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 40px -10px rgba(200,155,60,0.85); }
.fab .fab__txt { display: inline; }
.fab::after { content:""; position:absolute; inset:0; border-radius:999px; box-shadow: 0 0 0 0 rgba(200,155,60,0.5); animation: ring 2.4s ease-out infinite; }
@keyframes ring { 0% { box-shadow: 0 0 0 0 rgba(200,155,60,0.45);} 70%{ box-shadow: 0 0 0 16px rgba(200,155,60,0);} 100%{ box-shadow: 0 0 0 0 rgba(200,155,60,0);} }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero { position: relative; color: #fff; padding: calc(84px + clamp(3rem,7vw,6rem)) 0 clamp(3rem,7vw,5.5rem); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(11,18,32,0.8), rgba(11,18,32,0.94)); }
.page-hero__bg svg { width: 100%; height: 100%; object-fit: cover; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-top: 1rem; max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,0.8); margin-top: 1.1rem; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.6); letter-spacing: 0.03em; }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb svg { width: 14px; height: 14px; opacity: 0.6; }

/* Service detail rows */
.svc-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.svc-row.reverse .svc-row__media { order: 2; }
.svc-row + .svc-row { margin-top: clamp(3rem, 6vw, 5rem); }
.svc-panel { background: var(--navy-800); border-radius: var(--radius); padding: clamp(2rem,4vw,3rem); color: #fff; position: relative; overflow: hidden; }
.svc-panel::before { content:""; position:absolute; right:-40px; top:-40px; width:180px; height:180px; border-radius:50%; background: radial-gradient(circle, rgba(200,155,60,0.25), transparent 70%); }
.svc-panel .num { font-family: var(--serif); font-size: 3.5rem; color: rgba(200,155,60,0.5); line-height:1; }
.svc-panel h3 { color:#fff; margin: 0.5rem 0 1rem; }
.svc-panel p { color: rgba(255,255,255,0.8); }
.svc-panel ul { list-style: none; margin-top: 1.25rem; display: grid; gap: 0.7rem; }
.svc-panel li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; }
.svc-panel li svg { width: 20px; height: 20px; color: var(--gold-400); flex: none; margin-top: 2px; }

/* FAQ / accordion */
.faq { display: grid; gap: 0.9rem; max-width: 840px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow 0.3s, border-color 0.3s; }
.faq__item.open { box-shadow: var(--shadow-md); border-color: transparent; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 1.35rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--serif); font-size: 1.15rem; color: var(--navy-800); font-weight: 600; }
.faq__q .icon { flex: none; width: 24px; height: 24px; position: relative; }
.faq__q .icon::before, .faq__q .icon::after { content:""; position:absolute; background: var(--gold-600); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq__q .icon::before { left: 4px; right: 4px; top: 11px; height: 2px; }
.faq__q .icon::after { top: 4px; bottom: 4px; left: 11px; width: 2px; }
.faq__item.open .faq__q .icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a-inner { padding: 0 1.5rem 1.5rem; color: var(--slate-500); }

/* Fee table */
.fee-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.fee-table th, .fee-table td { text-align: left; padding: 1.1rem 1.5rem; border-bottom: 1px solid var(--line); }
.fee-table thead th { background: var(--navy-800); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.fee-table tbody tr:last-child td { border-bottom: 0; }
.fee-table tbody tr { transition: background-color 0.2s; }
.fee-table tbody tr:hover { background: var(--paper); }
.fee-table td:first-child { font-weight: 700; color: var(--navy-800); }
.fee-table .price { font-family: var(--serif); font-size: 1.15rem; color: var(--gold-600); white-space: nowrap; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.pill-note { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(200,155,60,0.12); color: var(--gold-600); border: 1px solid rgba(200,155,60,0.3); padding: 0.5rem 1rem; border-radius: 999px; font-weight: 700; font-size: 0.82rem; }
.pill-note svg { width: 16px; height: 16px; }

/* ==========================================================================
   Scroll-reveal animations
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scroll-cue .mouse::after, .fab::after { animation: none !important; }
  .btn:hover, .card:hover, .testi:hover, .step:hover, .fab:hover { transform: none !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__actions > .btn--gold { display: none; } /* redundant with mobile menu CTA */
  .nav { height: 72px; }
  .mobile-menu { inset-block-start: 72px; }
  .split { grid-template-columns: 1fr; }
  .split__media { max-width: 480px; margin-inline: auto; order: -1; }
  .grid--3, .grid--2, .testi-grid { grid-template-columns: 1fr; }
  .grid--3 > :last-child:nth-child(3n+1) { grid-column: auto; }
  .cta-inner { grid-template-columns: 1fr; }
  .svc-row, .svc-row.reverse .svc-row__media { grid-template-columns: 1fr; order: 0; }
  .svc-row__media { max-width: 520px; margin-inline: auto; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero__meta { gap: 1.25rem 1.5rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fab .fab__txt { display: none; }
  .fab { padding: 1rem; }
  .frame__badge { left: 12px; right: 12px; max-width: none; }
}
