/* ============================================================
   RAXIS RECRUITMENT — Editorial Luxury · Light Theme
   Fonts: Cormorant Garamond (display) + Outfit (body)
   Palette: Warm White · Deep Navy · Champagne Gold · Sage
   ============================================================ */

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

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  /* Palette */
  --cream:      #FDFCF8;
  --parchment:  #F5F2EA;
  --linen:      #EDE8DC;
  --sand:       #DDD5C0;
  --navy:       #0D1B2A;
  --navy-md:    #1A3048;
  --navy-lt:    #2D4D68;
  --gold:       #C8952A;
  --gold-lt:    #E8B84B;
  --gold-pale:  #F5E4C0;
  --sage:       #6B8F71;
  --rust:       #C45C3A;
  --white:      #FFFFFF;
  --ink:        #1A1208;
  --mist:       #8A9BAD;
  --border:     #E2D9C8;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --font-serif2:  'Instrument Serif', Georgia, serif;

  /* Layout */
  --nav-h: 76px;
  --max:   1200px;
  --r:     6px;
  --r-lg:  16px;
  --r-xl:  28px;

  /* Shadows */
  --s1: 0 2px 8px rgba(13,27,42,.06);
  --s2: 0 8px 32px rgba(13,27,42,.10);
  --s3: 0 24px 64px rgba(13,27,42,.14);
  --s-gold: 0 8px 32px rgba(200,149,42,.25);

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --t: .3s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: var(--font-body); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Topbar ──────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: .55rem 0;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}
.topbar a { color: var(--gold-lt); transition: color var(--t); }
.topbar a:hover { color: white; }
.topbar-right { display: flex; gap: 1.5rem; align-items: center; }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(253,252,248,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease);
}
.navbar.scrolled { box-shadow: var(--s2); }

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .875rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 20px; height: 20px;
  background: var(--gold);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.logo-mark span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  letter-spacing: -.02em;
  position: relative;
  z-index: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}
.logo-text em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a, .nav-links .nav-item > span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .9rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy-lt);
  border-radius: var(--r);
  transition: all var(--t) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .nav-item:hover > span {
  background: var(--parchment);
  color: var(--navy);
}
.nav-links a.active { color: var(--gold); }

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: var(--r);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--t) var(--ease);
}
.btn-gold {
  background: var(--gold);
  color: white;
  box-shadow: 0 4px 14px rgba(200,149,42,.3);
}
.btn-gold:hover {
  background: #b8831f;
  transform: translateY(-2px);
  box-shadow: var(--s-gold);
}
.btn-navy {
  background: var(--navy);
  color: white;
}
.btn-navy:hover {
  background: var(--navy-md);
  transform: translateY(-2px);
  box-shadow: var(--s2);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: white; }
.btn-white {
  background: white;
  color: var(--navy);
}
.btn-white:hover { background: var(--parchment); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  border: none;
  background: none;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100vh;
  background: white;
  box-shadow: var(--s3);
  z-index: 500;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.mobile-drawer.open { transform: translateX(0); display: block; }
.drawer-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  border: none;
  background: var(--parchment);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.mobile-drawer a {
  display: block;
  padding: .9rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.mobile-drawer a.sub { padding-left: 1rem; font-size: .9rem; color: var(--navy-lt); }
.mobile-drawer a:last-child { border-bottom: none; }
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,.4);
  z-index: 400;
}
.drawer-overlay.open { display: block; }

/* ── Section base ─────────────────────────────────────────── */
section { padding: 5.5rem 0; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--navy);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 1rem;
  color: var(--navy-lt);
  line-height: 1.8;
  max-width: 560px;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h) - 36px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 4rem 0;
}

/* Diagonal split background */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  background: var(--navy);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
/* Gold accent bar */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold));
  z-index: 1;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-left {
  padding-right: 3rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(200,149,42,.3);
  border-radius: 100px;
  padding: .3rem .9rem .3rem .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-pill-dot {
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-pill-dot::after { content: '✦'; font-size: .55rem; color: white; }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-h1 .line2 {
  display: block;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--navy-lt);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-actions .divider {
  font-size: .75rem;
  color: var(--mist);
  letter-spacing: .08em;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.trust-avatars { display: flex; }
.trust-avatars .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid white;
  margin-left: -10px;
  background: var(--navy-md);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: white;
}
.trust-avatars .av:first-child { margin-left: 0; }
.av-1 { background: #2D6A4F; }
.av-2 { background: #C45C3A; }
.av-3 { background: #2D4D68; }
.av-4 { background: var(--gold); }
.trust-text {}
.trust-text strong { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); }
.trust-text span { font-size: .75rem; color: var(--mist); }

/* Right panel (navy bg) */
.hero-right {
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.job-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.job-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--t) var(--ease);
}
.job-card:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.job-card:hover::after { transform: scaleY(1); }
.jc-icon {
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.jc-info { flex: 1; }
.jc-title { font-size: .9rem; font-weight: 600; color: white; margin-bottom: .15rem; }
.jc-meta { font-size: .75rem; color: rgba(255,255,255,.5); }
.jc-badge {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--gold);
  padding: .2rem .6rem;
  border-radius: 100px;
}
.jc-badge.new { background: rgba(107,143,113,.2); color: #9fcca6; }

.hero-cta-card {
  background: var(--gold);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hero-cta-card p {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  max-width: 200px;
  line-height: 1.4;
}
.hero-cta-card strong { color: white; font-weight: 700; }

/* ── MARQUEE ticker ──────────────────────────────────────── */
.ticker-wrap {
  background: var(--navy);
  padding: .9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 0 2.5rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
}
.ticker-item::after {
  content: '◆';
  font-size: .4rem;
  color: var(--gold);
  margin-left: .75rem;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── JOB CATEGORIES ──────────────────────────────────────── */
.cats-section { background: var(--parchment); }

.cats-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

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

.cat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  group: true;
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 0;
  background: var(--navy);
  transition: height .4s var(--ease);
  z-index: 0;
}
.cat-card:hover { border-color: transparent; box-shadow: var(--s3); transform: translateY(-6px); }
.cat-card:hover::before { height: 100%; }

.cat-card > * { position: relative; z-index: 1; }

.cat-icon {
  width: 54px; height: 54px;
  border-radius: var(--r);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: background var(--t);
}
.cat-card:hover .cat-icon { background: rgba(200,149,42,.2); }

.cat-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
  transition: color var(--t);
}
.cat-card:hover .cat-name { color: white; }

.cat-desc {
  font-size: .82rem;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  transition: color var(--t);
}
.cat-card:hover .cat-desc { color: rgba(255,255,255,.6); }

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--t), color var(--t);
}
.cat-card:hover .cat-link { gap: .75rem; color: var(--gold-lt); }

/* ── DUAL CTA (Employers / Candidates) ────────────────────── */
.dual-cta { padding: 0; }
.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.dc-panel {
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dc-panel-employer {
  background: var(--navy);
  color: white;
}
.dc-panel-candidate {
  background: var(--gold);
  color: white;
}

.dc-panel::before {
  content: attr(data-bg-text);
  position: absolute;
  bottom: -1rem; right: -1rem;
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
  opacity: .04;
  color: white;
  pointer-events: none;
  user-select: none;
}

.dc-eyebrow {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 1rem;
}

.dc-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 1.25rem;
}
.dc-title em { font-style: italic; }

.dc-body {
  font-size: .95rem;
  opacity: .8;
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 2.5rem;
}

.dc-list {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.dc-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .88rem;
  opacity: .85;
  line-height: 1.5;
}
.dc-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── ABOUT STRIP ──────────────────────────────────────────── */
.about-strip {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-side { position: relative; }
.about-img-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--linen);
  position: relative;
}
.about-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  mix-blend-mode: multiply;
}
.about-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.3) 0%, rgba(200,149,42,.1) 100%);
}
.about-float {
  position: absolute;
  right: -2rem;
  bottom: 2rem;
  background: white;
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--s3);
  border: 1px solid var(--border);
  min-width: 180px;
}
.about-float-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .2rem;
}
.about-float-label { font-size: .78rem; color: var(--mist); letter-spacing: .06em; }

.about-text-side {}
.why-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .3rem;
}
.why-item p { font-size: .88rem; color: var(--navy-lt); line-height: 1.65; }

/* ── STATS BAND ─────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-md) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(200,149,42,.08) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.stat-cell {
  background: transparent;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-num span { color: var(--gold-lt); }
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── SERVICE AREAS ──────────────────────────────────────── */
.areas { background: var(--parchment); }
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}
.area-tag {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .45rem 1rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--t);
  cursor: default;
}
.area-tag::before {
  content: '📍';
  font-size: .8rem;
}
.area-tag:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.map-placeholder {
  background: var(--navy);
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.map-placeholder iframe {
  width: 100%; height: 100%;
  border: none;
  filter: saturate(.5) contrast(1.1);
}

/* ── CTA FINAL BAND ─────────────────────────────────────── */
.final-cta {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(200,149,42,.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(45,77,104,.4) 0%, transparent 70%);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  color: white;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.final-cta h2 em { font-style: italic; color: var(--gold-lt); }
.final-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.final-cta .actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: -30%;
  width: 55%; height: 160%;
  background: radial-gradient(ellipse, rgba(200,149,42,.12) 0%, transparent 65%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent 60%);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--gold-lt); }
.breadcrumb span { opacity: .4; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  color: white;
  letter-spacing: -.025em;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  line-height: 1.7;
}

/* Contact cards + form */
.contact-section {}
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.contact-sidebar {}
.info-card {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  color: white;
  margin-bottom: 1.5rem;
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.info-card > p { font-size: .88rem; opacity: .6; margin-bottom: 2rem; line-height: 1.65; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ci-icon {
  width: 40px; height: 40px;
  background: rgba(200,149,42,.15);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .45;
  margin-bottom: .25rem;
}
.ci-value { font-size: .9rem; opacity: .9; line-height: 1.5; }
.ci-value a { color: var(--gold-lt); }

.hours-card {
  background: var(--gold);
  border-radius: var(--r-xl);
  padding: 1.75rem 2.25rem;
  color: white;
}
.hours-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-size: .85rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 600; opacity: .9; }

/* Form */
.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.75rem;
  box-shadow: var(--s1);
}
.form-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}
.form-card > p {
  font-size: .9rem;
  color: var(--mist);
  margin-bottom: 2.25rem;
  line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy-lt);
  margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--navy);
  background: var(--cream);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--sand); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,149,42,.1);
  background: white;
}
.form-group textarea { min-height: 130px; resize: vertical; }

.form-status {
  margin-top: 1rem;
  padding: .85rem 1.1rem;
  border-radius: var(--r);
  font-size: .88rem;
  display: none;
}
.form-status.success { background: #edf7ee; color: #2e7d32; border: 1px solid #c8e6c9; display: block; }
.form-status.error   { background: #fce9e9; color: #b71c1c; border: 1px solid #ffcdd2; display: block; }

/* ── INNER PAGE LAYOUT ──────────────────────────────────── */
.inner-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.inner-content {}
.inner-content h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2rem 0 .75rem;
  letter-spacing: -.02em;
}
.inner-content h2:first-child { margin-top: 0; }
.inner-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.75rem 0 .65rem;
}
.inner-content p { color: var(--navy-lt); line-height: 1.8; margin-bottom: 1rem; }
.inner-content ul, .inner-content ol {
  margin: 0 0 1.5rem;
  padding-left: 0;
}
.inner-content li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--navy-lt);
  font-size: .93rem;
  line-height: 1.65;
}
.inner-content li:last-child { border-bottom: none; }
.inner-content li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.inner-content strong { color: var(--navy); font-weight: 600; }

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.promise-item {
  background: var(--parchment);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  border-left: 3px solid var(--gold);
}
.promise-item h5 { font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: .3rem; }
.promise-item p { font-size: .82rem; color: var(--mist); margin: 0; line-height: 1.55; }

/* Sidebar */
.sidebar {}
.sidebar-nav {
  background: var(--navy);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.sidebar-nav-header {
  background: var(--gold);
  padding: 1rem 1.5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: white;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.5rem;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all var(--t);
}
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: white;
  padding-left: 1.75rem;
}
.sidebar-nav a.active { color: var(--gold-lt); font-weight: 600; }
.sidebar-nav a::after { content: '→'; opacity: .35; font-size: .8rem; }

.sidebar-contact {
  background: var(--gold);
  border-radius: var(--r-xl);
  padding: 2rem;
  color: white;
}
.sidebar-contact h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .65rem;
}
.sidebar-contact p { font-size: .85rem; opacity: .85; margin-bottom: 1.5rem; line-height: 1.6; }
.sidebar-contact .sc-phone {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  display: block;
  margin-bottom: .3rem;
}
.sidebar-contact .sc-email { font-size: .82rem; opacity: .8; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.25rem;
}
.footer-logo .logo-mark { background: var(--gold); }
.footer-logo .logo-mark::after { display: none; }
.footer-logo .logo-text strong { color: white; }
.footer-logo .logo-text em { color: rgba(255,255,255,.45); }

.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .5rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  transition: all var(--t);
  border: 1px solid rgba(255,255,255,.08);
}
.social-btn:hover { background: var(--gold); color: white; border-color: var(--gold); }

.footer-col h5 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--t);
}
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-col p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .65rem;
  line-height: 1.65;
}
.footer-col a { color: var(--gold-lt); }

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: var(--gold-lt); }

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .inner-grid { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero::before { display: none; }
  .hero::after { display: none; }
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding-right: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-side { display: none; }
  .about-float { display: none; }
  .dual-cta-grid { grid-template-columns: 1fr; }
  .dc-panel { padding: 3.5rem 2rem; }
  .areas-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .topbar-right { display: none; }
  .nav-burger { display: flex; }
  .btn.nav-cta { display: none; }
  section { padding: 3.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 1.25rem; }
  .hero-h1 { font-size: 2.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
