/* =========================================
   L&C Royal Management — style.css
   ThatsKrispy Agency Build
   ========================================= */

/* --- Tokens --- */
:root {
  --navy:    #0B1F3A;
  --gold:    #B8975A;
  --gold-lt: #D4B07A;
  --cream:   #F8F6F1;
  --white:   #FFFFFF;
  --gray:    #6B7280;
  --gray-lt: #E9E7E2;
  --text:    #1A1A2E;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max:   1200px;
  --r:     4px;
  --trans: 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* --- Typography Scale --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-body); }
p  { color: var(--gray); line-height: 1.75; }

/* --- Containers --- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--trans);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* =========================================
   NAV
   ========================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 31, 58, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,151,90,0.18);
  transition: box-shadow var(--trans);
}
#nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.25); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-logo-text em {
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--trans);
  transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-login {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  transition: color var(--trans);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-login:hover { color: var(--gold); }
.nav-login svg { width: 14px; height: 14px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(184,151,90,0.15);
  padding: 24px;
  gap: 4px;
}
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
  transition: color var(--trans);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .mobile-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================================
   HERO
   ========================================= */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 110% 50%, rgba(184,151,90,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at -10% 80%, rgba(184,151,90,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,151,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,151,90,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow .eyebrow { color: var(--gold); }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 300;
}
.hero-content h1 strong { font-weight: 700; display: block; }
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 420px; margin: 0 auto; }
.hero-card-main {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,151,90,0.25);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(12px);
}
.hero-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(184,151,90,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.hero-card-icon svg { width: 28px; height: 28px; stroke: var(--gold); }
.hero-card-main h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-card-main p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(184,151,90,0.1);
  border: 1px solid rgba(184,151,90,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.72rem;
  color: var(--gold-lt);
  letter-spacing: 0.05em;
  margin-top: 20px;
}
.hero-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(184,151,90,0.4);
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-badge-txt {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}

/* =========================================
   TRUST BAR
   ========================================= */
#trust {
  background: var(--cream);
  padding: 40px 0;
  border-top: 1px solid var(--gray-lt);
  border-bottom: 1px solid var(--gray-lt);
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.trust-item svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--gray-lt);
}

/* =========================================
   SERVICES OVERVIEW
   ========================================= */
#services-overview { background: var(--white); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header .eyebrow { display: block; margin-bottom: 16px; }
.section-header h2 { color: var(--navy); margin-bottom: 20px; }
.section-header p { font-size: 1rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 40px 36px;
  border: 1px solid transparent;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--trans);
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--gold-lt);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.service-card-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.service-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 14px; }
.service-card p { font-size: 0.9rem; line-height: 1.75; }

/* =========================================
   ABOUT SPLIT
   ========================================= */
#about-split { background: var(--navy); }
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,151,90,0.2);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
}
.about-quote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 28px;
}
.about-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 16px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-value-icon {
  width: 36px;
  height: 36px;
  background: rgba(184,151,90,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-value-icon svg { width: 16px; height: 16px; stroke: var(--gold); }
.about-value-txt strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 2px; }
.about-value-txt span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.about-content { }
.about-content .eyebrow { margin-bottom: 16px; display: block; }
.about-content h2 { color: var(--white); margin-bottom: 24px; }
.about-content p { color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; }
.about-content p:last-of-type { margin-bottom: 36px; }
.about-milestones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.milestone { }
.milestone-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.milestone-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* =========================================
   SERVICES DETAIL
   ========================================= */
#services-detail { background: var(--cream); }
.services-detail-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.services-detail-header .left .eyebrow { display: block; margin-bottom: 16px; }
.services-detail-header .left h2 { color: var(--navy); }
.services-detail-header .right p { line-height: 1.8; margin-bottom: 20px; font-size: 0.95rem; }
.services-detail-header .right p strong { color: var(--navy); font-weight: 600; }
.services-list-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-list-item {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--gray-lt);
  transition: var(--trans);
}
.service-list-item:hover {
  border-color: var(--gold-lt);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.service-list-check {
  width: 22px;
  height: 22px;
  background: rgba(184,151,90,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-list-check svg { width: 12px; height: 12px; stroke: var(--gold); stroke-width: 2.5; }
.service-list-item p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
}

/* =========================================
   PROCESS
   ========================================= */
#process { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 6px, transparent 6px, transparent 16px);
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.process-num {
  width: 80px;
  height: 80px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--cream);
}
.process-step:nth-child(odd) .process-num { background: var(--gold); }
.process-num span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.process-step h4 { color: var(--navy); margin-bottom: 10px; }
.process-step p { font-size: 0.85rem; line-height: 1.65; }

/* =========================================
   CTA BAND
   ========================================= */
#cta-band {
  background: var(--gold);
  padding: 72px 0;
}
.cta-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band-text h2 { color: var(--white); margin-bottom: 10px; font-size: 2rem; }
.cta-band-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.cta-band-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* =========================================
   CONTACT
   ========================================= */
#contact { background: var(--cream); }
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info { }
.contact-info .eyebrow { display: block; margin-bottom: 16px; }
.contact-info h2 { color: var(--navy); margin-bottom: 20px; }
.contact-info p { margin-bottom: 36px; font-size: 0.95rem; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.contact-detail-txt strong { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 2px; }
.contact-detail-txt a, .contact-detail-txt span {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
  transition: color var(--trans);
}
.contact-detail-txt a:hover { color: var(--gold); }
.contact-login-box {
  margin-top: 36px;
  background: var(--navy);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}
.contact-login-box p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 16px; }
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-lt);
}
.contact-form h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.4rem; }
.contact-form .form-sub { font-size: 0.85rem; color: var(--gray); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; font-size: 0.85rem; padding: 16px; }
#form-success, #form-error { display: none; padding: 14px 18px; border-radius: var(--r); font-size: 0.88rem; margin-top: 12px; }
#form-success { background: #d1fae5; color: #065f46; }
#form-error { background: #fee2e2; color: #991b1b; }

/* =========================================
   MAP
   ========================================= */
#map-section { padding: 0; }
#map-section iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: var(--navy);
  padding: 64px 0 0;
  border-top: 3px solid var(--gold);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-mark span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 28px;
}
.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  transition: color var(--trans);
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  transition: color var(--trans);
}
.footer-legal a:hover { color: var(--gold); }

/* =========================================
   PAGE HEADERS
   ========================================= */
.page-hero {
  background: var(--navy);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 100% 50%, rgba(184,151,90,0.1) 0%, transparent 60%);
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.page-hero .eyebrow { display: block; margin-bottom: 16px; }
.page-hero h1 { color: var(--white); max-width: 640px; margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.55); max-width: 540px; font-size: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* =========================================
   PRIVACY / LEGAL
   ========================================= */
#legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 96px 24px;
}
#legal-content h2 { color: var(--navy); margin: 48px 0 16px; font-size: 1.5rem; }
#legal-content h2:first-child { margin-top: 0; }
#legal-content p { font-size: 0.92rem; margin-bottom: 16px; }
#legal-content ul { margin: 12px 0 20px 24px; list-style: disc; }
#legal-content ul li { font-size: 0.92rem; color: var(--gray); margin-bottom: 8px; }

/* =========================================
   COOKIE BANNER
   ========================================= */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 20px 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.3);
}
#cookie-banner p { font-size: 0.82rem; color: rgba(255,255,255,0.7); max-width: 640px; }
#cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  section { padding: 72px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-detail-header { grid-template-columns: 1fr; gap: 32px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-links, .nav-login { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .about-milestones { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .trust-divider { display: none; }
  .trust-inner { gap: 20px; }
}

/* =========================================
   RESPONSIVE FIXES — Inline grid overrides
   ========================================= */

/* About page grids */
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-3col { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4col { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }

/* Services detail block */
.svc-detail-block { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }
.svc-list-2col    { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-intro-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

@media (max-width: 900px) {
  .grid-2col      { grid-template-columns: 1fr; gap: 48px; }
  .svc-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail-block { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .grid-3col      { grid-template-columns: 1fr; }
  .grid-4col      { grid-template-columns: 1fr 1fr; }
  .svc-list-2col  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-4col      { grid-template-columns: 1fr; }
}

/* =========================================
   ADA / ACCESSIBILITY WIDGET
   ========================================= */
#ada-widget {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 500;
}
#ada-toggle {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--trans);
}
#ada-toggle:hover { background: var(--gold); }
#ada-toggle svg { width: 22px; height: 22px; stroke: #fff; }
#ada-panel {
  display: none;
  position: absolute;
  bottom: 56px;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: 12px;
  padding: 20px;
  width: 240px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
#ada-panel.open { display: block; }
#ada-panel h6 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 14px;
}
.ada-btn {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--text);
  background: var(--cream);
  margin-bottom: 6px;
  border: 1px solid var(--gray-lt);
  cursor: pointer;
  transition: var(--trans);
  display: block;
  font-family: var(--font-body);
}
.ada-btn:hover { border-color: var(--gold); background: var(--white); }

/* High-contrast mode */
body.hc-mode {
  filter: contrast(1.5) grayscale(0.2);
}
/* Large text mode */
body.large-text { font-size: 20px; }
/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
body.reduce-motion *, body.reduce-motion *::before, body.reduce-motion *::after {
  transition: none !important;
  animation: none !important;
}
