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

/* ── TOKENS ── */
:root {
  --navy:     #0a1628;
  --navy2:    #132040;
  --cobalt:   #1a3a6b;
  --cobalt2:  #204680;
  --sky:      #4a90d9;
  --sky2:     #3a7bc8;
  --gold:     #c8943a;
  --gold2:    #b5832e;
  --cream:    #f8f5ef;
  --paper:    #fdfcfa;
  --fog:      #eeeae2;
  --smoke:    #d5d0c6;
  --steel:    #6b7280;
  --ink:      #0d1117;
  --white:    #ffffff;
  --line:     #e4dfd6;
  --sky-tint: #dfeaf8;
  --gold-tint:#fdf3e3;
  --r:        10px;
  --r-lg:     18px;
  --r-xl:     26px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  border-left: 5px solid var(--gold);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(1160px, 90vw); margin: 0 auto; }

/* ── INFO STRIP ── */
.info-strip {
  background: var(--navy);
  padding: 9px 0;
}
.info-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.info-strip p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.info-strip-links {
  display: flex;
  gap: 20px;
}
.info-strip-links a {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s;
}
.info-strip-links a:hover { color: #fff; }

/* ── LOGO ── */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  position: relative;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.brand-text-group strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.15;
}

.brand-text-group em {
  font-style: normal;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 1px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(10,22,40,0.06);
}

.header-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--steel);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--navy);
  background: var(--fog);
}
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  margin-left: 8px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--cobalt) !important;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--paper);
  padding: 12px 20px 20px;
  gap: 3px;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 14px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--steel); }
.mobile-menu .nav-cta { background: var(--navy) !important; color: #fff !important; text-align: center; margin-top: 6px; border-radius: 50px !important; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 50px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 20px rgba(10,22,40,0.28);
}
.btn-navy:hover { background: var(--cobalt); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(10,22,40,0.36); }

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 20px rgba(200,148,58,0.3);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); }

.btn-cream {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-cream:hover { background: var(--fog); transform: translateY(-1px); }

.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--smoke);
}
.btn-outline:hover { border-color: var(--ink); background: var(--fog); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  overflow: hidden;
  background: var(--paper);
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 0;
  position: relative;
}

.hero-main::before {
  content: 'SAG';
  position: absolute;
  top: 50%;
  left: -36px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--smoke);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-label-dot {
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin-bottom: 28px;
}
.hero h1 i {
  font-style: italic;
  color: var(--cobalt);
  font-weight: 400;
}
.hero h1 .highlight {
  background: var(--gold-tint);
  border-radius: 6px;
  padding: 0 10px;
  color: var(--gold2);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  color: var(--steel);
  line-height: 1.78;
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-aside {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 44px;
  position: relative;
  overflow: hidden;
}
.hero-aside::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,148,58,0.1), transparent 65%);
}
.hero-aside-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-stat {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
}
.hero-stat:first-child { border-top: none; padding-top: 0; }
.hero-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-val span {
  font-size: 20px;
  color: var(--gold);
  font-weight: 400;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.hero-aside-cta {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.hero-aside-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  margin-bottom: 14px;
  line-height: 1.55;
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.marquee-item::after {
  content: '◆';
  font-size: 6px;
  color: rgba(255,255,255,0.5);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SECTION BASE ── */
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-cream { background: var(--cream); }
.section-fog { background: var(--fog); }
.section-navy { background: var(--navy); color: #fff; }
.section-ink { background: var(--ink); color: #fff; }

/* ── EYEBROW ── */
.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.label::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.label.on-dark { color: var(--gold); }
.label.on-dark::before { background: var(--gold); }

/* ── DISPLAY HEADING ── */
h2.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--navy);
  margin-bottom: 18px;
}
h2.display i { font-style: italic; color: var(--cobalt); font-weight: 400; }
h2.display.on-dark { color: #fff; }
h2.display.on-dark i { color: var(--gold); }

.body-lg {
  font-size: 17px;
  color: var(--steel);
  line-height: 1.78;
  max-width: 540px;
}
.body-lg.on-dark { color: rgba(255,255,255,0.58); }

/* ── BENTO GRID ── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.bento-a {
  grid-column: span 7;
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bento-a::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,148,58,0.14), transparent 65%);
}
.bento-a-bg {
  position: absolute;
  top: 24px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.bento-b {
  grid-column: span 5;
  background: var(--gold-tint);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(200,148,58,0.2);
}
.bento-c {
  grid-column: span 4;
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 36px;
  border: 1px solid var(--line);
}
.bento-d {
  grid-column: span 4;
  background: var(--cobalt);
  border-radius: var(--r-xl);
  padding: 36px;
  color: #fff;
}
.bento-e {
  grid-column: span 4;
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: 36px;
  border: 1px solid var(--line);
}
.bento-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.bento-num.dark { color: rgba(255,255,255,0.12); }
.bento-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}
.bento-body {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.72;
}
.bento-body.on-dark { color: rgba(255,255,255,0.52); }
.bento-body.on-gold { color: var(--gold2); }

/* ── SERVICE STRIP ── */
.service-strip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 48px;
}
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  cursor: default;
}
.service-row:hover {
  background: var(--cream);
  border-color: var(--smoke);
  transform: translateX(6px);
}
.service-row-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--smoke);
  line-height: 1;
}
.service-row h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.service-row p {
  font-size: 13.5px;
  color: var(--steel);
  line-height: 1.55;
}
.service-row-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold2);
  background: var(--gold-tint);
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
  border: 1px solid rgba(200,148,58,0.25);
}

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--gold-tint);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
  pointer-events: none;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testimonial-stars span { color: var(--gold); font-size: 16px; }
.testimonial-quote {
  font-size: 15px;
  color: var(--steel);
  line-height: 1.78;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
}
.testimonial-location {
  font-size: 12px;
  color: var(--steel);
  margin-top: 2px;
}

/* ── STATEMENT SECTION ── */
.statement-section {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.statement-section::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,148,58,0.07), transparent 65%);
}
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.statement-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.3px;
}
.statement-quote em { font-style: italic; color: var(--gold); font-weight: 400; }

.statement-list { display: flex; flex-direction: column; gap: 20px; }
.statement-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.07);
}
.statement-item-icon {
  width: 36px; height: 36px;
  background: rgba(200,148,58,0.14);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.statement-item-icon svg {
  width: 17px; height: 17px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}
.statement-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.statement-item p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.44);
  line-height: 1.6;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--gold);
}
.ph-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}
.page-hero h1 i { font-style: italic; color: var(--cobalt); font-weight: 400; }
.page-hero p {
  font-size: 17px;
  color: var(--steel);
  max-width: 580px;
  line-height: 1.72;
}

/* ── FORM ── */
.form-page {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.form-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: 0 16px 48px rgba(10,22,40,0.06);
}
.form-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.form-box .form-sub {
  font-size: 14px;
  color: var(--steel);
  padding-bottom: 24px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy);
  margin: 18px 0 7px;
}
.field {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  font: 500 14.5px/1.5 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.field:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,148,58,0.1);
  background: var(--white);
}
textarea.field { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── CONSENT CHECKBOXES ── */
.consent-wrap {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.consent-wrap h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 14px;
}
.consent-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 10px;
  background: var(--cream);
  transition: all 0.2s;
}
.consent-box:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-tint);
}
.consent-box input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--navy);
}
.consent-copy { font-size: 12.5px; color: var(--steel); line-height: 1.6; }
.consent-copy strong { display: block; color: var(--navy); font-size: 13px; margin-bottom: 4px; font-weight: 700; }
.consent-copy a { color: var(--cobalt); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.submit-btn {
  width: 100%;
  margin-top: 22px;
  padding: 16px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50px;
  font: 700 14.5px/1 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 20px rgba(10,22,40,0.28);
}
.submit-btn:hover { background: var(--cobalt); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(10,22,40,0.36); }

.form-success {
  display: none;
  margin-top: 14px;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  color: #1b5e20;
  padding: 16px 20px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}
.form-fine {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--steel);
  line-height: 1.6;
  text-align: center;
}

/* ── SIDE STACK ── */
.side-stack { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 82px; }
.side-block {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.side-block.dark {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.side-block h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.side-block.dark h3 { color: #fff; }
.side-block p { font-size: 13.5px; color: var(--steel); line-height: 1.65; margin-bottom: 6px; }
.side-block.dark p { color: rgba(255,255,255,0.52); }
.side-block a { color: var(--cobalt); font-weight: 600; }
.side-block.dark a { color: var(--gold); }
.side-block-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }

/* ── FAQ ── */
.faq-col { max-width: 760px; margin: 0 auto; }
details.faq-entry { border-bottom: 1px solid var(--line); }
details.faq-entry summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
}
details.faq-entry summary::-webkit-details-marker { display: none; }
details.faq-entry summary::marker { display: none; }
details.faq-entry summary::after {
  content: '+';
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
  font-family: serif;
}
details.faq-entry[open] summary::after { content: '−'; }
.faq-answer {
  font-size: 15px;
  color: var(--steel);
  line-height: 1.82;
  padding-bottom: 22px;
}

/* ── PROCESS ── */
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 52px;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%; right: 8%;
  height: 1px;
  background: var(--line);
}
.process-item {
  padding: 0 28px;
  position: relative;
  text-align: center;
}
.process-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  position: relative;
  z-index: 1;
  transition: background 0.2s, border-color 0.2s;
}
.process-item:hover .process-dot { background: var(--navy); border-color: var(--navy); color: #fff; }
.process-item h3 { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-item p { font-size: 14px; color: var(--steel); line-height: 1.7; }

/* ── LEGAL ── */
.legal-body { max-width: 800px; }
.legal-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 10px;
  letter-spacing: -0.1px;
}
.legal-body p { font-size: 15px; color: var(--steel); line-height: 1.82; margin-bottom: 12px; }
.legal-body strong { color: var(--navy); }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.36);
  line-height: 1.75;
  max-width: 270px;
  margin-top: 14px;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.43);
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 13.5px; color: rgba(255,255,255,0.43); line-height: 1.72; margin-bottom: 6px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-a { grid-column: span 2; }
  .bento-b { grid-column: span 2; }
  .bento-c, .bento-d, .bento-e { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .statement-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  body { border-left: none; border-top: 5px solid var(--gold); }
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-aside { min-height: 360px; }
  .hero-main { padding: 60px 0 40px; }
  .hero-main::before { display: none; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .service-row { grid-template-columns: 40px 1fr; }
  .service-row-tag { display: none; }
  .process-row { grid-template-columns: 1fr; }
  .process-row::before { display: none; }
  .process-item { text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .process-dot { flex-shrink: 0; margin: 0; width: 44px; height: 44px; font-size: 14px; }
  .form-page { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .side-stack { position: static; }
  .section { padding: 64px 0; }
  .bento { grid-template-columns: 1fr; }
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e { grid-column: span 1; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 40px; }
  .info-strip-inner { flex-direction: column; gap: 4px; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-box { padding: 24px; }
  .hero-aside { padding: 40px 28px; }
}
