*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0b2420;
  --bg-mid:    #0f2d28;
  --bg-card:   #122e29;
  --bg-light:  #163630;
  --border:    rgba(255,255,255,0.08);
  --gold:      #d4a84b;
  --gold-lt:   #e8c475;
  --gold-dim:  rgba(212,168,75,0.15);
  --white:     #f0ede6;
  --white-dim: rgba(240,237,230,0.55);
  --white-muted: rgba(240,237,230,0.35);
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;
  --radius:    6px;
  --max:       1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── AMBIENT ORB — signature element ── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  animation: breathe 8s ease-in-out infinite;
}
.orb-1 {
  width: 520px; height: 520px;
  background: rgba(212,168,75,0.07);
  top: -120px; right: -80px;
}
.orb-2 {
  width: 380px; height: 380px;
  background: rgba(16,90,70,0.35);
  bottom: -60px; left: -100px;
  animation-delay: -4s;
}
@keyframes breathe {
  0%,100% { transform: scale(1) translate(0,0); }
  50%      { transform: scale(1.08) translate(12px,-16px); }
}

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }
section { position: relative; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  background: rgba(11,36,32,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.logo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--white-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-dot { color: var(--white-muted); font-size: 4px; }
.btn-nav {
  background: var(--gold);
  color: #0b2420;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-nav:active { transform: translateY(0); }
.btn-nav:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer;
  color: var(--white);
}
.nav-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  padding: 160px 0 80px;
  overflow: hidden;
  position: relative;
}
.page-hero .eyebrow { justify-content: flex-start; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 40px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-ctas { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: #0b2420;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.btn-primary .arrow { font-size: 18px; transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  color: var(--white-dim);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(240,237,230,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(240,237,230,0.6); }
.btn-ghost:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }

/* Hero right column — testimonial */
.hero-right { padding-top: 16px; }
.hero-quote {
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
}
.hero-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 20px;
}
.quote-attr {
  display: flex; align-items: center; gap: 12px;
}
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 14px;
  color: var(--gold); font-weight: 500;
  flex-shrink: 0;
}
.quote-name { font-size: 14px; font-weight: 500; color: var(--white); }
.quote-role { font-size: 12px; color: var(--white-dim); }

/* ── TRUST BAR ── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: var(--bg-mid);
}
.trust-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-stat { text-align: center; }
.trust-num {
  font-family: var(--serif);
  font-size: 28px; font-weight: 500;
  color: var(--gold);
  display: block; margin-bottom: 4px;
}
.trust-label { font-size: 12px; color: var(--white-dim); letter-spacing: 0.01em; }

/* ── SECTION SHARED ── */
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }

.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow-num {
  font-size: 11px; color: var(--white-muted);
  font-family: var(--sans); font-weight: 400;
  letter-spacing: 0.08em;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 500; line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
}
.section-headline em { font-style: italic; color: var(--gold); }

.section-body {
  font-size: 16px; line-height: 1.75;
  color: var(--white-dim); max-width: 560px;
}

.divider { height: 1px; background: var(--border); }

/* ── PROBLEM SECTION ── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.problem-right { }
.problem-body {
  font-size: 16px; line-height: 1.8;
  color: var(--white-dim);
}
.problem-body p + p { margin-top: 20px; }
.problem-callout {
  margin-top: 36px;
  background: var(--gold-dim);
  border: 1px solid rgba(212,168,75,0.2);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.problem-callout p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px; line-height: 1.55;
  color: var(--white);
}

/* ── SERVICES ── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  margin-bottom: 72px;
}
.services-intro-right .section-body { max-width: 100%; font-size: 17px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--bg-card);
  padding: 48px 44px;
  transition: background 0.25s;
  position: relative;
}
.service-card:hover { background: var(--bg-light); }
.service-num {
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--white-muted); font-weight: 500;
  margin-bottom: 32px;
  display: block;
}
.service-title {
  font-family: var(--serif);
  font-size: 24px; font-weight: 500;
  line-height: 1.2; letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 8px;
}
.service-sub {
  font-size: 12px; font-weight: 500;
  color: var(--gold); letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 20px;
}
.service-body {
  font-size: 14px; line-height: 1.75;
  color: var(--white-dim);
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 44px; right: 44px;
  height: 1px; background: var(--border);
}
.services-grid .service-card:nth-child(3)::after,
.services-grid .service-card:nth-child(4)::after { display: none; }

/* ── WHO WE SERVE ── */
.serve-bg { background: var(--bg-mid); }
.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.serve-list { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.serve-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.serve-item:first-child { border-top: 1px solid var(--border); }
.serve-item-dot {
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0; margin-top: 7px;
}
.serve-item-title {
  font-size: 16px; font-weight: 500; color: var(--white);
  margin-bottom: 4px;
}
.serve-item-body { font-size: 14px; color: var(--white-dim); line-height: 1.65; }
.exclusivity-badge {
  margin-top: 48px;
  background: var(--gold-dim);
  border: 1px solid rgba(212,168,75,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; gap: 14px; align-items: flex-start;
}
.badge-icon { color: var(--gold); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.badge-text { font-size: 14px; color: var(--white-dim); line-height: 1.65; }
.badge-text strong { color: var(--white); font-weight: 500; }

/* ── PROCESS ── */
.process-steps {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 28px; right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
}
.process-step { padding: 0 20px 0 0; position: relative; }
.step-num {
  width: 56px; height: 56px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: var(--gold);
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.step-title {
  font-size: 15px; font-weight: 500;
  color: var(--white); margin-bottom: 10px;
  line-height: 1.3;
}
.step-body { font-size: 13px; color: var(--white-dim); line-height: 1.65; }

/* ── RESULTS ── */
.results-bg { background: var(--bg-mid); }
.results-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 72px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  align-self: center;
}
.stat-block {
  background: var(--bg-card);
  padding: 44px 40px;
}
.stat-big {
  font-family: var(--serif);
  font-size: 52px; font-weight: 500;
  color: var(--gold); line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.stat-label { font-size: 14px; color: var(--white-dim); line-height: 1.5; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 72px; }
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 24px;
}
.testi-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px; line-height: 1.7;
  color: var(--white);
}
.testi-attr { display: flex; flex-direction: column; gap: 4px; }
.testi-name { font-size: 13px; font-weight: 500; color: var(--white); }
.testi-role { font-size: 12px; color: var(--white-dim); }
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }

/* ── PRICING ── */
.pricing-intro { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.pricing-intro .section-headline { margin-bottom: 16px; }
.pricing-intro .section-body { max-width: 100%; text-align: center; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px 36px;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  transition: border-color 0.2s;
}
.price-card:hover { border-color: rgba(212,168,75,0.3); }
.price-card.featured {
  border-color: var(--gold);
  background: var(--bg-light);
}
.featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0b2420;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}
.price-tier { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.price-for { font-size: 13px; color: var(--white-dim); margin-bottom: 28px; font-style: italic; }
.price-amount {
  font-family: var(--serif); font-size: 44px; font-weight: 500;
  color: var(--white); letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 6px;
}
.price-note { font-size: 13px; color: var(--white-dim); margin-bottom: 36px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.price-features li {
  font-size: 14px; color: var(--white-dim); line-height: 1.5;
  display: flex; gap: 10px; align-items: flex-start;
}
.price-features li::before {
  content: '✓';
  color: var(--gold); font-size: 13px;
  flex-shrink: 0; margin-top: 1px; font-weight: 600;
}
.price-cta {
  margin-top: 36px;
  display: block; text-align: center;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  padding: 14px 24px; border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.price-cta:hover { background: var(--gold); color: #0b2420; transform: translateY(-1px); }
.price-cta:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.price-card.featured .price-cta { background: var(--gold); color: #0b2420; }
.price-card.featured .price-cta:hover { background: var(--gold-lt); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-methods { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.contact-method {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-method:first-child { border-top: 1px solid var(--border); }
.contact-method-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--gold); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method-title { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.contact-method-body { font-size: 14px; color: var(--white-dim); line-height: 1.6; }
.contact-method-body a { color: var(--gold); text-decoration: none; }
.contact-method-body a:hover { text-decoration: underline; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white-muted); margin-bottom: 10px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color 0.2s;
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: var(--white-muted); }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: #0b2420;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  padding: 16px; border: none; border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }
.form-submit:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.form-note { font-size: 12px; color: var(--white-muted); text-align: center; margin-top: 16px; }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.final-cta .orb-cta {
  position: absolute; width: 600px; height: 600px;
  background: rgba(212,168,75,0.05);
  border-radius: 50%; filter: blur(100px);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta .section-headline { margin-bottom: 20px; max-width: 720px; margin-left: auto; margin-right: auto; }
.final-cta .section-body { max-width: 520px; margin: 0 auto 48px; text-align: center; }
.final-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.final-note { font-size: 13px; color: var(--white-muted); }

/* ── FOOTER ── */
footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 16px; display: inline-flex; }
.footer-tagline { font-size: 13px; color: var(--white-dim); line-height: 1.7; max-width: 220px; }
.footer-col h5 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; color: var(--white-dim); text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--white-muted); }
.footer-disc { font-size: 11px; color: var(--white-muted); max-width: 500px; text-align: right; line-height: 1.5; }

/* ── AUDIT MODAL ── */
body.modal-open { overflow: hidden; }

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(6,18,15,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }

.modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,168,75,0.06);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white-dim);
  font-size: 18px; line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.modal-close:hover { background: var(--gold); color: #0b2420; transform: scale(1.06); }
.modal-close:active { transform: scale(0.96); }
.modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.modal-header { margin-bottom: 24px; padding-right: 28px; }
.modal-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.modal-title {
  font-family: var(--serif);
  font-size: 26px; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.15;
  color: var(--white);
  margin-bottom: 10px;
}
.modal-sub { font-size: 13px; color: var(--white-dim); line-height: 1.6; }

.modal .contact-form {
  background: transparent;
  border: none;
  padding: 0;
}
.modal .form-row { margin-bottom: 16px; }
.modal .form-submit { margin-top: 2px; }
.modal .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}
.modal .form-grid .form-row { min-width: 0; }

@media (min-width: 560px) {
  .modal .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 14px;
  }
}

.modal-success {
  display: none;
  text-align: center;
  padding: 24px 0 12px;
}
.modal-success.is-visible { display: block; }
.modal-success-icon {
  width: 52px; height: 52px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(212,168,75,0.3);
  color: var(--gold);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}
.modal-success h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--white); margin-bottom: 10px;
}
.modal-success p { font-size: 14px; color: var(--white-dim); line-height: 1.6; }

@media (max-width: 480px) {
  .modal { padding: 32px 22px 24px; border-radius: 14px; }
  .modal-title { font-size: 22px; }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-mid);
    border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start;
    gap: 4px; padding: 16px 24px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; width: 100%; }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--gold); }
  .nav-dot { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child::after { display: none; }
  .services-grid .service-card:nth-child(3)::after { display: block; }
  .services-intro { grid-template-columns: 1fr; gap: 24px; }
  .serve-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .results-header { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-disc { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
