/* ============================================================
   Vaught Advisory — Modern Editorial
   ============================================================ */

:root {
  --navy: #1B2A4A;
  --coral: #FF5A5F;
  --coral-dark: #E84449;
  --cream: #FAF6F0;
  --cream-2: #F3ECE1;
  --slate: #6B7280;
  --slate-line: rgba(107, 114, 128, 0.22);
  --navy-soft: rgba(27, 42, 74, 0.08);

  --font-display: "DM Serif Display", "Cormorant Garamond", Georgia, serif;
  --font-script: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1160px;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --radius: 14px;
  --shadow-card: 0 1px 2px rgba(27,42,74,.04), 0 12px 30px rgba(27,42,74,.06);
  --shadow-lift: 0 8px 18px rgba(27,42,74,.10), 0 22px 50px rgba(27,42,74,.14);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { color: var(--navy); font-family: var(--font-display); font-weight: 400; line-height: 1.1; margin: 0; }
p { margin: 0; }
a { color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy); color: var(--cream); padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Focus states ---------- */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  letter-spacing: .01em; text-decoration: none;
  padding: .85rem 1.5rem; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn-sm { padding: .6rem 1.15rem; font-size: 14px; }
.btn-lg { padding: 1rem 1.9rem; font-size: 16px; }

.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 6px 16px rgba(255,90,95,.28); }
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(255,90,95,.34); }
.btn-coral:active { transform: translateY(0); }

.btn-cream { background: var(--cream); color: var(--navy); }
.btn-cream:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }

.text-link {
  font-weight: 600; font-size: 15px; color: var(--navy); text-decoration: none;
  border-bottom: 2px solid var(--slate-line); padding-bottom: 2px;
  transition: border-color .18s ease, color .18s ease;
}
.text-link:hover { border-color: var(--coral); color: var(--coral); }

/* ---------- Hairline dividers ---------- */
.hairline { border: 0; height: 1px; background: var(--slate-line); margin: 0; max-width: var(--maxw); margin-inline: auto; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,240,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--slate-line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; flex-shrink: 0; }
.brand-badge { display: inline-flex; }
.badge-v { font-family: var(--font-display); font-size: 34px; fill: var(--cream); }
.brand-word { font-family: var(--font-display); font-size: 22px; color: var(--navy); line-height: 1; }

.nav { display: flex; align-items: center; gap: 1.75rem; margin-left: auto; }
.nav a {
  text-decoration: none; color: var(--navy); font-size: 15px; font-weight: 500;
  position: relative; padding-bottom: 3px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--coral); transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }

.header-cta { margin-left: .25rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; padding: 9px; margin-left: auto; }
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; margin: 4px 0; transition: transform .25s ease, opacity .25s ease; }

.mobile-nav { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(27,42,74,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 880px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em; font-size: 12.5px; font-weight: 600;
  color: var(--coral); margin-bottom: 1.4rem;
}
.hero-title {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.hero-sub { font-size: clamp(17px, 2vw, 20px); line-height: 1.6; color: var(--slate); max-width: 60ch; margin-bottom: 2.4rem; }
.hero-actions { display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-head { max-width: 56ch; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-title { font-size: clamp(30px, 4vw, 48px); line-height: 1.05; margin-bottom: .75rem; }
.section-title--center { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-intro { font-size: 18px; color: var(--slate); }

/* ---------- Service cards 2x2 ---------- */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.service-card {
  background: var(--cream);
  border: 1px solid var(--slate-line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: rgba(255,90,95,.4); }
.service-num {
  font-family: var(--font-display); font-size: 30px; color: var(--coral);
  display: block; margin-bottom: .9rem; line-height: 1;
}
.service-card h3 { font-size: 25px; margin-bottom: .55rem; }
.service-card p { font-size: 16.5px; }

/* ---------- Steps ---------- */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem;
  position: relative;
}
.steps::before {
  content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px;
  background: var(--slate-line); z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--navy);
  font-family: var(--font-display); font-size: 28px; color: var(--navy);
  margin-bottom: 1.1rem;
}
.step h3 { font-size: 20px; margin-bottom: .45rem; line-height: 1.15; }
.step-meta { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--slate); }
.step p { font-size: 15.5px; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.75rem); align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--cream); border: 1px solid var(--slate-line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card--featured {
  border: 2px solid var(--coral);
  box-shadow: var(--shadow-lift);
  transform: translateY(-10px);
}
.price-flag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--coral); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .3rem .65rem; border-radius: 999px;
}
.price-band { background: var(--navy); color: var(--cream); padding: 1.75rem 1.65rem 1.6rem; }
.price-band h3 { color: var(--cream); font-size: 24px; line-height: 1.12; margin-bottom: .7rem; min-height: 2.24em; display: flex; align-items: flex-start; }
.price { font-family: var(--font-body); font-weight: 700; font-size: 17px; color: var(--coral); letter-spacing: .01em; }
.price-body { padding: 1.5rem 1.65rem .5rem; flex: 1; }
.price-body p { font-size: 16px; }
.price-best { padding: 1rem 1.65rem 1.75rem; font-size: 14.5px; color: var(--slate); border-top: 1px solid var(--slate-line); margin-top: 1.25rem; }
.price-best span { font-weight: 700; color: var(--navy); }
.offer-cta { text-align: center; margin-top: clamp(2.25rem, 4vw, 3.25rem); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.about-text p { font-size: 18px; line-height: 1.7; margin-bottom: 1.25rem; max-width: 60ch; }
.about-text p:last-child { margin-bottom: 0; }
.about-text em { font-style: italic; color: var(--navy); }

.about-aside { position: sticky; top: 100px; }
.pull-quote {
  margin: 0 0 1.75rem; background: var(--navy); border-radius: var(--radius);
  padding: 2rem 1.9rem; position: relative;
}
.pull-quote::before {
  content: "\201C"; position: absolute; top: -.15em; left: .35rem;
  font-family: var(--font-display); font-size: 80px; color: var(--coral); line-height: 1; opacity: .9;
}
.pull-quote blockquote {
  margin: 0; font-family: var(--font-script); font-weight: 600;
  font-size: 27px; line-height: 1.25; color: var(--cream); position: relative; padding-top: .75rem;
}
.stat-block { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.stat-block li {
  display: flex; align-items: baseline; gap: 1rem;
  border-bottom: 1px solid var(--slate-line); padding-bottom: 1.1rem;
}
.stat-block li:last-child { border-bottom: 0; padding-bottom: 0; }
.stat-num { font-family: var(--font-display); font-size: 40px; color: var(--coral); line-height: 1; min-width: 72px; }
.stat-label { font-size: 15px; color: var(--slate); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--coral); color: #fff; padding: clamp(3.5rem, 8vw, 6rem) 0; }
.cta-inner { text-align: center; max-width: 720px; }
.cta-eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 1rem; }
.cta-title { color: #fff; font-size: clamp(34px, 5vw, 60px); line-height: 1.05; margin-bottom: 1.1rem; }
.cta-sub { color: rgba(255,255,255,.92); font-size: 18px; line-height: 1.6; margin: 0 auto 2.2rem; max-width: 54ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: var(--cream); padding: 2.75rem 0; }
.footer-inner { display: flex; }
.footer-brand { display: flex; align-items: flex-start; gap: 1rem; }
.footer-lines { display: grid; gap: .35rem; }
.footer-name { font-size: 15.5px; color: var(--cream); font-weight: 500; }
.footer-contact { font-size: 15px; display: flex; gap: .6rem; align-items: center; flex-wrap: wrap; }
.footer-contact a { color: var(--coral); text-decoration: none; font-weight: 500; }
.footer-contact a:hover { text-decoration: underline; }
.footer-contact span { color: rgba(250,246,240,.4); }
.footer-copy { font-size: 13.5px; color: rgba(250,246,240,.6); margin-top: .35rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-aside { position: static; }
  .steps { grid-template-columns: repeat(5, 1fr); gap: .75rem; }
  .step h3 { font-size: 17px; }
}

@media (max-width: 820px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav {
    display: grid; gap: .25rem; padding: 0 var(--pad);
    max-height: 0; overflow: hidden; background: var(--cream);
    border-bottom: 1px solid transparent;
    transition: max-height .3s ease, padding .3s ease, border-color .3s ease;
  }
  .mobile-nav.open { max-height: 360px; padding: 1rem var(--pad) 1.5rem; border-color: var(--slate-line); }
  .mobile-nav a { text-decoration: none; color: var(--navy); font-weight: 500; padding: .65rem 0; font-size: 17px; }
  .mobile-nav .btn { margin-top: .5rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

@media (max-width: 760px) {
  .service-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps::before { display: none; }
  .step { display: grid; grid-template-columns: 56px 1fr; column-gap: 1.1rem; row-gap: .2rem; padding-bottom: 1.75rem; position: relative; }
  .step:not(:last-child)::after {
    content: ""; position: absolute; left: 27px; top: 60px; bottom: 8px; width: 2px; background: var(--slate-line);
  }
  .step-num { margin-bottom: 0; }
  .step h3 { grid-column: 2; align-self: center; font-size: 19px; }
  .step p { grid-column: 2; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .brand-word { display: none; }
  .hero-actions { gap: 1.1rem; }
  .btn-lg { width: 100%; }
  .hero-actions .text-link { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition: none !important; }
}
