/* =========================================================
   Intencruit — Recruiting with Intention
   Brand palette derived from logo + banner:
   Royal/Navy: #0E2148 (deep), #1B2F6B (mid), #2A4796 (accent)
   Gold:       #C8A24A (primary), #E0BE6A (light), #8C6E25 (dark)
   Cream / Surface: #FAF7F0 / #FFFFFF
   ========================================================= */

:root {
  /* Color */
  --navy-900: #0B1A3F;
  --navy-800: #0E2148;
  --navy-700: #14296B;
  --navy-600: #1E3A8A;
  --navy-500: #2A4796;
  --gold-700: #8C6E25;
  --gold-600: #B4892F;
  --gold-500: #C8A24A;
  --gold-400: #DEB766;
  --gold-300: #ECD08A;
  --cream-100: #FAF7F0;
  --cream-200: #F2EBD8;
  --white: #FFFFFF;
  --ink-900: #0F172A;
  --ink-700: #334155;
  --ink-500: #64748B;
  --ink-300: #CBD5E1;
  --line: #E5E0CF;

  /* Type scale (clamp-based for fluid) */
  --text-xs: 0.8125rem;     /* 13px */
  --text-sm: 0.9375rem;     /* 15px */
  --text-base: 1.0625rem;   /* 17px */
  --text-lg: 1.25rem;       /* 20px */
  --text-xl: clamp(1.5rem, 2.2vw, 1.875rem);
  --text-2xl: clamp(1.875rem, 3vw, 2.5rem);
  --text-3xl: clamp(2.25rem, 4.5vw, 3.5rem);
  --text-hero: clamp(2.5rem, 5.6vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container: 1200px;
  --container-wide: 1320px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11,26,63,0.06), 0 1px 3px rgba(11,26,63,0.04);
  --shadow-md: 0 6px 18px rgba(11,26,63,0.08), 0 2px 6px rgba(11,26,63,0.06);
  --shadow-lg: 0 24px 60px rgba(11,26,63,0.18), 0 8px 22px rgba(11,26,63,0.10);
  --shadow-gold: 0 10px 30px rgba(200,162,74,0.28);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-600); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--navy-800);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-4);
  font-weight: 700;
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); font-family: 'Inter', sans-serif; }

p { margin: 0 0 var(--space-4); color: var(--ink-700); }

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

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.container-wide { max-width: var(--container-wide); }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--navy { background: var(--navy-800); color: var(--cream-100); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.82); }
.section--cream { background: var(--cream-100); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
}
.section--navy .eyebrow { color: var(--gold-400); }
.section--navy .eyebrow::before { background: var(--gold-400); }

.section-head { max-width: 760px; margin-bottom: var(--space-12); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { font-size: var(--text-lg); color: var(--ink-700); }
.section--navy .section-head p { color: rgba(255,255,255,0.85); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary { background: var(--navy-800); color: var(--white); }
.btn--primary:hover { background: var(--navy-700); color: var(--white); box-shadow: var(--shadow-md); }

.btn--gold { background: var(--gold-500); color: var(--navy-900); }
.btn--gold:hover { background: var(--gold-600); color: var(--navy-900); box-shadow: var(--shadow-gold); }

.btn--outline { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn--outline:hover { background: var(--navy-800); color: var(--white); }

.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost-light:hover { background: var(--white); color: var(--navy-800); border-color: var(--white); }

.btn--lg { padding: 1.1rem 1.75rem; font-size: var(--text-base); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-4) 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy-800);
}
.brand-mark { width: 42px; height: 42px; }
.brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--navy-800);
}
.brand-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 4px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: var(--space-6);
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
}
.nav-links a:hover { color: var(--navy-800); }
.nav-links a.cta-link {
  background: var(--navy-800);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
}
.nav-links a.cta-link:hover { background: var(--gold-500); color: var(--navy-900); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-800);
  margin: 4px 0;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}

@media (max-width: 880px) {
  .nav-links {
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-4) var(--space-6) var(--space-6);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s var(--ease), opacity .2s var(--ease);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { padding: 0.65rem 0; border-bottom: 1px solid var(--line); }
  .nav-links a.cta-link { text-align: center; margin-top: var(--space-2); border-bottom: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(200,162,74,0.10), transparent 60%),
    linear-gradient(180deg, var(--cream-100) 0%, var(--white) 100%);
  overflow: hidden;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(14,33,72,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: top left;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--space-4);
  display: inline-flex; align-items: center; gap: var(--space-2);
}
.hero-eyebrow::before { content: ""; width: 36px; height: 2px; background: var(--gold-500); }

.hero h1 {
  font-size: var(--text-hero);
  margin-bottom: var(--space-6);
}
.hero h1 .accent {
  color: var(--navy-800);
  display: block;
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gold-500);
  margin-top: var(--space-4);
}
.hero-sub {
  font-size: var(--text-lg);
  color: var(--ink-700);
  max-width: 560px;
  margin-bottom: var(--space-8);
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: var(--space-8);
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: var(--ink-500);
}
.hero-meta strong { color: var(--navy-800); font-weight: 600; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-lg);
  background: var(--navy-800);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 78% center;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14,33,72,0.55) 100%);
}
.hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  z-index: 2;
  line-height: 1.2;
}
.hero-badge small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 4px;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4 / 3; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy-800);
  color: var(--white);
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.trust-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.trust-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}
.trust-text h4 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-text p { color: rgba(255,255,255,0.78); font-size: var(--text-sm); margin: 0; }

@media (max-width: 880px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}
@media (max-width: 520px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---------- Dual CTA cards (Employers / Job Seekers) ---------- */
.dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.cta-card {
  position: relative;
  padding: clamp(2rem, 3vw, 2.75rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cta-card--navy { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.cta-card--navy h3, .cta-card--navy p { color: var(--white); }
.cta-card--navy p { color: rgba(255,255,255,0.85); }

.cta-card--gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); color: var(--navy-900); border-color: transparent; }
.cta-card--gold h3 { color: var(--navy-900); }
.cta-card--gold p { color: var(--navy-900); opacity: 0.9; }

.cta-card .cta-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-6);
}
.cta-card--gold .cta-icon { background: rgba(11,26,63,0.12); }

.cta-card h3 { font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.cta-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
}
.cta-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: var(--text-base);
}
.cta-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7rem;
  width: 10px; height: 2px;
  background: var(--gold-400);
}
.cta-card--gold li::before { background: var(--navy-800); }
.cta-card .btn { align-self: flex-start; margin-top: auto; }

@media (max-width: 760px) {
  .dual-cta { grid-template-columns: 1fr; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.service-card {
  padding: var(--space-8);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}
.service-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-500);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.service-card .num::after {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold-500);
}
.service-card h3 { font-size: 1.35rem; margin-bottom: var(--space-3); }
.service-card p { color: var(--ink-700); margin-bottom: 0; }

@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Process steps ---------- */
.process {
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 15%, var(--gold-500) 85%, transparent);
  z-index: 0;
}
.process-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-500);
  color: var(--navy-800);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  box-shadow: 0 0 0 6px var(--cream-100);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.section--cream .step-num { box-shadow: 0 0 0 6px var(--cream-100); }
.process-step:hover .step-num { background: var(--gold-500); color: var(--navy-900); }
.process-step h4 { color: var(--navy-800); margin-bottom: var(--space-2); font-size: 1rem; font-weight: 700; }
.process-step p { font-size: var(--text-sm); color: var(--ink-700); }

@media (max-width: 880px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- Industries / Roles ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.industry {
  padding: var(--space-6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.industry:hover {
  background: rgba(200,162,74,0.10);
  border-color: var(--gold-500);
  transform: translateY(-3px);
}
.industry h4 { color: var(--white); margin-bottom: var(--space-2); font-size: 1.05rem; font-weight: 600; }
.industry p { color: rgba(255,255,255,0.72); font-size: var(--text-sm); margin: 0; }

@media (max-width: 960px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .industries-grid { grid-template-columns: 1fr; } }

/* ---------- Differentiators ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.diff-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy-800);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.diff-item h4 .dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}
@media (max-width: 880px) { .diff-grid { grid-template-columns: 1fr; gap: var(--space-6); } }

/* ---------- Credentials / Certifications ---------- */
.cred-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.cred-list {
  display: grid;
  gap: var(--space-4);
}
.cred-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.cred-card .badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cred-card h4 {
  font-size: 1.05rem;
  color: var(--navy-800);
  margin-bottom: 4px;
  font-weight: 700;
}
.cred-card p { font-size: var(--text-sm); color: var(--ink-700); margin: 0; }
.cred-aside h3 { font-size: var(--text-2xl); }
.cred-aside p { font-size: var(--text-base); }

@media (max-width: 880px) { .cred-wrap { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial {
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  position: relative;
}
.testimonial::before {
  content: """;
  position: absolute;
  top: -28px; left: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold-500);
  line-height: 1;
}
.testimonial blockquote {
  margin: 0 0 var(--space-6);
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--navy-800);
  font-style: italic;
  line-height: 1.5;
}
.testimonial cite {
  font-style: normal;
  display: block;
  font-size: var(--text-sm);
}
.testimonial cite strong { color: var(--navy-800); font-weight: 700; display: block; }
.testimonial cite span { color: var(--ink-500); }

@media (max-width: 960px) { .testimonials { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-800);
  transition: color .2s var(--ease);
}
.faq-item summary:hover { color: var(--gold-600); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s var(--ease), background .25s var(--ease);
  color: var(--gold-600);
}
.faq-item[open] .icon { transform: rotate(45deg); background: var(--gold-500); color: var(--navy-900); }
.faq-item .answer {
  padding: 0 0 var(--space-6);
  max-width: 720px;
  color: var(--ink-700);
  font-size: var(--text-base);
}

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.contact-info h2 { font-size: var(--text-3xl); }
.contact-detail {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.contact-detail:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.contact-detail .ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-400);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold-400);
}
.contact-detail .label {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-detail .val { color: var(--white); font-size: var(--text-base); }
.contact-detail .val a { color: var(--white); }
.contact-detail .val a:hover { color: var(--gold-400); }

.contact-form {
  background: var(--white);
  color: var(--ink-900);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: var(--text-xl); margin-bottom: var(--space-2); }
.contact-form .form-intro { color: var(--ink-700); font-size: var(--text-sm); margin-bottom: var(--space-6); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.form-field { margin-bottom: var(--space-4); }
.form-field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: var(--text-base);
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream-100);
  color: var(--ink-900);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200,162,74,0.18);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field--radio { display: flex; gap: var(--space-4); }
.form-field--radio label.choice {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-700);
  background: var(--cream-100);
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.form-field--radio input[type="radio"] { accent-color: var(--navy-800); }
.form-field--radio label.choice:has(input:checked) {
  border-color: var(--navy-800);
  background: var(--navy-800);
  color: var(--white);
}
.form-success {
  display: none;
  background: var(--cream-200);
  border: 1.5px solid var(--gold-500);
  color: var(--navy-800);
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}
.form-success.show { display: block; }

@media (max-width: 760px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.72);
  padding: var(--space-16) 0 var(--space-8);
  font-size: var(--text-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.footer-grid h5 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 var(--space-4);
  font-weight: 700;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a { color: rgba(255,255,255,0.72); }
.footer-grid a:hover { color: var(--gold-400); }
.footer-brand p { color: rgba(255,255,255,0.72); font-size: var(--text-sm); max-width: 320px; }
.footer-brand .brand-name { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-800);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 100;
}
.skip-link:focus { left: var(--space-4); top: var(--space-4); color: var(--white); }

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}
