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

/* ── TOKENS ── */
:root {
  --navy:     #0b1524;
  --navy2:    #132036;
  --navy3:    #1c2e4a;
  --amber:    #e8a020;
  --amber2:   #f0b340;
  --amber3:   #ffd080;
  --amber-bg: rgba(232,160,32,0.10);
  --chalk:    #f7f5f0;
  --fog:      #eeeae2;
  --smoke:    #c9c3b8;
  --steel:    #6b7a8d;
  --ink:      #0b1524;
  --white:    #ffffff;
  --line:     #ddd8cf;
  --red:      #c0392b;
  --r:        8px;
  --r-lg:     16px;
  --r-xl:     24px;
  --r-2xl:    36px;
}

*, *::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(--white);
  line-height: 1.6;
  font-size: 16px;
}

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(--amber);
  padding: 9px 0;
}
.info-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.info-strip p {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.info-strip-links { display: flex; gap: 24px; }
.info-strip-links a {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  transition: opacity 0.2s;
}
.info-strip-links a:hover { opacity: 0.7; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── LOGO ── */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-svg { display: block; height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}
.brand-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  padding: 9px 15px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-pill {
  background: var(--amber) !important;
  color: var(--navy) !important;
  border-radius: 50px !important;
  padding: 9px 20px !important;
  margin-left: 8px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-pill:hover { background: var(--amber2) !important; transform: translateY(-1px); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy2);
  padding: 12px 20px 20px;
  gap: 3px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 11px 14px; border-radius: 8px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.65); }
.mobile-menu .nav-pill { background: var(--amber) !important; color: var(--navy) !important; text-align: center; margin-top: 8px; border-radius: 50px !important; }

/* ── HERO ── */
.hero {
  min-height: 90vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 480px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1400&q=80');
  background-size: cover;
  background-position: center top;
  opacity: 0.08;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--navy) 45%, transparent 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 32px;
  width: fit-content;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.6;transform:scale(1.3);} }
.hero-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
}

.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--amber); }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 44px;
}

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

.hero-panel {
  position: relative;
  z-index: 2;
  background: var(--amber);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px 48px;
  overflow: hidden;
}
.hero-panel::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(11,21,36,0.12);
}
.hero-panel-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.6;
  margin-bottom: 20px;
}
.hero-stats { display: flex; flex-direction: column; gap: 28px; position: relative; z-index: 1; }
.hero-stat { border-top: 1px solid rgba(11,21,36,0.15); padding-top: 24px; }
.hero-stat:first-child { border-top: none; padding-top: 0; }
.hero-stat-val {
  font-family: 'DM Serif Display', serif;
  font-size: 46px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat-val span { font-size: 20px; }
.hero-stat-label { font-size: 13px; color: rgba(11,21,36,0.6); font-weight: 500; }
.hero-panel-cta { position: relative; z-index: 1; margin-top: 32px; }
.hero-panel-cta p { font-size: 13px; color: rgba(11,21,36,0.6); margin-bottom: 14px; line-height: 1.55; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-amber { background: var(--amber); color: var(--navy); box-shadow: 0 6px 20px rgba(232,160,32,0.35); }
.btn-amber:hover { background: var(--amber2); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(232,160,32,0.45); }
.btn-navy { background: var(--navy); color: var(--white); box-shadow: 0 6px 20px rgba(11,21,36,0.3); }
.btn-navy:hover { background: var(--navy2); transform: translateY(-1px); }
.btn-chalk { background: var(--chalk); color: var(--ink); border: 1px solid var(--line); }
.btn-chalk:hover { background: var(--fog); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.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-amber { background: transparent; color: var(--amber); border: 1.5px solid var(--amber); }
.btn-outline-amber:hover { background: var(--amber); color: var(--navy); }

/* ── MARQUEE ── */
.marquee-strip { background: var(--navy2); padding: 13px 0; overflow: hidden; white-space: nowrap; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.marquee-inner { display: inline-flex; gap: 52px; animation: marquee 28s linear infinite; }
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.marquee-item.accent { color: var(--amber); }
.marquee-item::after { content: '◆'; font-size: 5px; color: rgba(255,255,255,0.15); }
.marquee-item.accent::after { color: rgba(232,160,32,0.4); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-chalk { background: var(--chalk); }
.section-fog { background: var(--fog); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy2 { background: var(--navy2); color: #fff; }

/* ── EYEBROW ── */
.label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.label::before { content: ''; width: 22px; height: 2px; background: var(--amber); border-radius: 2px; flex-shrink: 0; }
.label.on-dark { color: var(--amber2); }
.label.on-dark::before { background: var(--amber2); }

/* ── DISPLAY HEADINGS ── */
h2.display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 16px;
}
h2.display em { font-style: italic; color: var(--amber); }
h2.display.on-dark { color: #fff; }
h2.display.on-dark em { color: var(--amber2); }

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

/* ── BENTO GRID ── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.bento-a {
  grid-column: span 7;
  background: var(--navy);
  border-radius: var(--r-2xl);
  padding: 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 290px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.bento-a::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.18), transparent 65%);
}
.bento-a-bg {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 130px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.bento-b {
  grid-column: span 5;
  background: var(--amber);
  border-radius: var(--r-2xl);
  padding: 44px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento-c {
  grid-column: span 4;
  background: var(--chalk);
  border-radius: var(--r-2xl);
  padding: 40px;
  border: 1px solid var(--line);
}
.bento-d {
  grid-column: span 4;
  background: var(--navy2);
  border-radius: var(--r-2xl);
  padding: 40px;
  color: #fff;
}
.bento-e {
  grid-column: span 4;
  background: var(--fog);
  border-radius: var(--r-2xl);
  padding: 40px;
  border: 1px solid var(--line);
}
.bento-num {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}
.bento-num.dark { color: rgba(255,255,255,0.12); }
.bento-num.navy { color: var(--navy); }
.bento-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}
.bento-body { font-size: 14px; color: var(--steel); line-height: 1.75; }
.bento-body.on-dark { color: rgba(255,255,255,0.5); }
.bento-body.on-amber { color: rgba(11,21,36,0.65); }

/* ── PRACTICE AREAS ── */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.practice-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.practice-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.practice-card:hover { border-color: var(--amber); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,21,36,0.1); }
.practice-card:hover::before { transform: scaleX(1); }
.practice-icon {
  width: 52px; height: 52px;
  background: var(--amber-bg);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.practice-icon svg { width: 26px; height: 26px; stroke: var(--amber); fill: none; stroke-width: 1.8; }
.practice-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}
.practice-card p { font-size: 14px; color: var(--steel); line-height: 1.75; }
.practice-card-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 2px;
  color: rgba(11,21,36,0.05);
  line-height: 1;
}

/* ── PROCESS STEPS ── */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 30px; left: 8%; right: 8%;
  height: 1px;
  background: var(--line);
}
.process-item { padding: 0 24px; position: relative; text-align: center; }
.process-dot {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--chalk);
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--navy);
  position: relative; z-index: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.process-item:hover .process-dot { background: var(--amber); border-color: var(--amber); color: var(--navy); }
.process-item h3 { font-family: 'DM Serif Display', serif; font-size: 18px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.process-item p { font-size: 14px; color: var(--steel); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 20px; right: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 72px;
  color: rgba(232,160,32,0.15);
  line-height: 1;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: var(--amber); font-size: 14px; }
.testimonial-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--navy);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: #fff; font-size: 14px; }
.testimonial-loc { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 1px; }

/* ── STATEMENT ── */
.statement-section {
  padding: 100px 0;
  background: var(--amber);
  position: relative;
  overflow: hidden;
}
.statement-section::before {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(11,21,36,0.08);
}
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}
.statement-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.statement-quote em { font-style: italic; color: rgba(11,21,36,0.55); }
.statement-list { display: flex; flex-direction: column; gap: 16px; }
.statement-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px;
  background: rgba(11,21,36,0.08);
  border-radius: var(--r-lg);
  border: 1px solid rgba(11,21,36,0.1);
}
.statement-icon {
  width: 38px; height: 38px;
  background: rgba(11,21,36,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.statement-icon svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 2; }
.statement-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.statement-item p { font-size: 13.5px; color: rgba(11,21,36,0.6); line-height: 1.6; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 80px 0 68px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}
.page-hero-inner { position: relative; z-index: 1; }
.ph-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.page-hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--amber2); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 580px; line-height: 1.75; }

/* ── CONTENT / LEGAL ── */
.legal-body { max-width: 800px; }
.legal-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin: 40px 0 10px;
}
.legal-body p { font-size: 15px; color: var(--steel); line-height: 1.85; margin-bottom: 12px; }
.legal-body strong { color: var(--ink); }
.legal-body a { color: var(--amber); font-weight: 600; }

/* ── FORM ── */
.form-page {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.form-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 48px;
  box-shadow: 0 20px 60px rgba(11,21,36,0.08);
}
.form-box h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}
.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(--ink);
  margin: 18px 0 7px;
}
.field {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  font: 500 15px/1.5 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--chalk);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.field:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(232,160,32,0.12);
  background: var(--white);
}
textarea.field { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.consent-wrap {
  margin-top: 26px;
  padding-top: 22px;
  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: 15px 17px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 10px;
  background: var(--chalk);
  transition: all 0.2s;
}
.consent-box:has(input:checked) { border-color: var(--amber); background: rgba(232,160,32,0.06); }
.consent-box input[type="checkbox"] {
  width: 17px; height: 17px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--navy);
}
.consent-copy { font-size: 12.5px; color: var(--steel); line-height: 1.65; }
.consent-copy strong { display: block; color: var(--ink); font-size: 13px; margin-bottom: 4px; }
.consent-copy a { color: var(--amber); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

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

.form-success {
  display: none;
  margin-top: 16px;
  background: rgba(232,160,32,0.1);
  border: 1px solid var(--amber);
  color: var(--navy);
  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.65; text-align: center; }

/* ── SIDE STACK ── */
.side-stack { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 84px; }
.side-block {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px;
}
.side-block.dark { background: var(--navy); border-color: var(--navy); color: #fff; }
.side-block h3 { font-family: 'DM Serif Display', serif; font-size: 18px; font-weight: 400; color: var(--ink); 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.5); }
.side-block a { color: var(--amber); font-weight: 600; }
.side-block-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }

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

/* ── ABOUT GRID BLOCKS ── */
.about-block {
  background: var(--navy);
  border-radius: var(--r-2xl);
  padding: 36px;
  color: #fff;
  position: relative; overflow: hidden;
}
.about-block::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,160,32,0.14), transparent 65%);
}
.about-block-amber {
  background: var(--amber);
  border-radius: var(--r-2xl);
  padding: 36px;
}
.about-block-chalk {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 36px;
}

/* ── IMAGE CARD ── */
.image-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-2xl);
  height: 420px;
}
.image-section img { width: 100%; height: 100%; object-fit: cover; }
.image-section-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,21,36,0.7) 0%, transparent 60%);
}
.image-section-text {
  position: absolute; bottom: 32px; left: 36px; right: 36px;
  color: #fff;
}
.image-section-text h3 { font-family: 'DM Serif Display', serif; font-size: 26px; margin-bottom: 6px; }
.image-section-text p { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ── CTA BAR ── */
.cta-bar {
  padding: 60px 0;
  background: var(--navy2);
}
.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-bar p { font-family: 'DM Serif Display', serif; font-size: 28px; color: #fff; font-weight: 400; letter-spacing: -0.2px; line-height: 1.25; }
.cta-bar small { font-family: 'DM Sans', sans-serif; font-size: 14px; color: rgba(255,255,255,0.45); margin-top: 6px; display: block; font-weight: 400; }
.cta-bar-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { background: var(--navy); padding: 72px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.75; max-width: 265px; margin-top: 16px; }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--amber);
  margin-bottom: 18px;
}
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.42); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 13.5px; color: rgba(255,255,255,0.42); line-height: 1.75; margin-bottom: 6px; }
.footer-bottom {
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.18);
}

/* ── RESPONSIVE ── */
@media (max-width: 1050px) {
  .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; }
  .practice-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .statement-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-row { grid-template-columns: 1fr 1fr; }
  .process-row::before { display: none; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel { min-height: 340px; }
  .hero-main { padding: 64px 0 40px; }
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .form-page { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .side-stack { position: static; }
  .section { padding: 72px 0; }
  .bento { grid-template-columns: 1fr; }
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e { grid-column: span 1; }
  .testimonials { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 42px; }
  .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: 28px 20px; }
  .hero-panel { padding: 44px 28px; }
  .process-row { grid-template-columns: 1fr; }
}

/* ── HERO IMAGE OVERLAY UPDATE ── */
.hero-bg {
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80');
}

/* ── SECTION IMAGE ROWS ── */
.img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.img-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.img-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 280px;
}
.img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.img-card:hover img { transform: scale(1.04); }
.img-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,21,36,0.75) 0%, rgba(11,21,36,0.1) 60%);
}
.img-card-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 24px;
}
.img-card-text h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}
.img-card-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.img-card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--amber);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

/* ── FULL-WIDTH IMAGE BAND ── */
.img-band {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.img-band img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.img-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,21,36,0.88) 40%, rgba(11,21,36,0.3) 100%);
  display: flex; align-items: center;
}
.img-band-content {
  width: min(1160px, 90vw);
  margin: 0 auto;
  padding: 0;
}
.img-band-content .label { color: var(--amber2); }
.img-band-content .label::before { background: var(--amber2); }
.img-band-content h2 { color: #fff; }
.img-band-content h2 em { color: var(--amber2); }
.img-band-content p { color: rgba(255,255,255,0.6); max-width: 480px; margin: 16px 0 32px; font-size: 16px; line-height: 1.8; }

/* ── PRACTICE CARD IMAGE VARIANT ── */
.practice-card-img {
  height: 200px;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  margin: -36px -32px 24px;
  position: relative;
}
.practice-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.practice-card:hover .practice-card-img img { transform: scale(1.05); }
.practice-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(11,21,36,0.4) 100%);
}

@media (max-width: 860px) {
  .img-row, .img-row-3 { grid-template-columns: 1fr; }
  .img-band { height: auto; min-height: 360px; }
}
