/* ============================================================
   Network Media — Global Stylesheet
   Ported and extended from reference-landing-page.html.
   Order: reset → vars → base → nav → hero → sections →
          components → page-specific → footer → responsive.
   ============================================================ */

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

/* ROOT VARS ------------------------------------------------- */
:root {
  --gold: #B8975A;
  --gold-light: #D4B47A;
  --gold-pale: #F5EDD8;

  --ink: #0E0E0E;
  --ink-mid: #2A2A2A;
  --ink-soft: #4A4A4A;
  --ink-muted: #8A8A8A;

  --rule: rgba(184,151,90,0.25);
  --surface: #FAFAF8;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.7;
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* NAV (desktop) -------------------------------------------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold-light); }

.nav-cta {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }

/* NAV — mobile hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.2s;
}
.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);
}

/* Mobile slide-down menu panel */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: 6rem 1.5rem 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu a {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: block;
  padding: 0.4rem 0;
}
.mobile-menu a[aria-current="page"] { color: var(--gold-light); }
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.9rem 1.4rem;
  text-align: center;
}

/* HERO ------------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(184,151,90,0.04) 50%, rgba(184,151,90,0.08) 100%);
  pointer-events: none;
}
.hero-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin-bottom: 2.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  max-width: 520px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 3.5rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* Reduced-height hero variant for inner pages */
.hero.hero--inner { min-height: auto; padding-bottom: 6rem; }

/* BUTTONS --------------------------------------------------- */
.btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  border: 0;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold-light); }

.btn-dark {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  background: var(--ink);
  padding: 1rem 2.5rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 0;
}
.btn-dark:hover { background: var(--ink-mid); }

/* HERO STATS ----------------------------------------------- */
.hero-stats {
  margin-top: 6rem;
  display: flex;
  gap: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
  display: block;
}

/* SECTIONS -------------------------------------------------- */
section { padding: 7rem 4rem; }

.section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.section-tag.is-centered { justify-content: center; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  max-width: 640px;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-title--centered { margin-left: auto; margin-right: auto; text-align: center; }

.section-lede {
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
  font-size: 0.95rem;
  max-width: 600px;
}

/* INTRO (2-col on home / general 2-col) -------------------- */
.intro {
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
}
.intro h2 em { font-style: italic; color: var(--gold-light); }
.intro-body {
  color: rgba(255,255,255,0.55);
  font-size: 1.0rem;
  line-height: 1.9;
}
.intro-body p + p { margin-top: 1.25rem; }

.read-more {
  display: inline-block;
  margin-top: 2rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.3rem;
  transition: color 0.3s, border-color 0.3s;
}
.read-more:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* SERVICES GRID (home teaser + landing-style grid) -------- */
.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}
.services-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
}
.services-header h2 em { font-style: italic; color: var(--gold-light); }
.services-header p {
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.service-card {
  background: var(--ink);
  padding: 3rem 2.5rem;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s ease;
}
.service-card:hover { background: rgba(184,151,90,0.04); }
.service-card:hover::after { width: 100%; }

.service-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}
.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--white);
}
.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.service-features {
  margin-top: 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-features li {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-features li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
}

/* SERVICES PAGE — expanded 2-col blocks per service */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  padding: 5rem 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.service-block:last-of-type { border-bottom: 1px solid var(--rule); }
.service-block .service-num { font-size: 0.7rem; margin-bottom: 1.25rem; }
.service-block .service-icon { width: 48px; height: 48px; opacity: 0.7; margin-bottom: 2rem; }
.service-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.service-block p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}
.service-block .service-features {
  margin-top: 0;
  gap: 0.7rem;
}
.service-block .service-features li {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}
.service-block .engagement {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.service-block .engagement-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.service-block .engagement p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

/* Cross-link cards (Services page → Process/Pricing/Who) */
.cross-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
.cross-link {
  border: 1px solid var(--rule);
  padding: 2.5rem 2rem;
  text-decoration: none;
  display: block;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
}
.cross-link:hover { background: rgba(184,151,90,0.04); border-color: var(--gold); }
.cross-link .cross-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.cross-link h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cross-link p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.cross-link::after {
  content: '→';
  position: absolute;
  bottom: 1.5rem; right: 1.75rem;
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.3s;
}
.cross-link:hover::after { transform: translateX(4px); }

/* WHO WE SERVE --------------------------------------------- */
.serve-section {
  background: rgba(184,151,90,0.03);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.serve-card {
  border: 1px solid var(--rule);
  padding: 3rem 2.5rem;
  position: relative;
}
.serve-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 60px; height: 1px;
  background: var(--gold);
}
.serve-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--gold-light);
}
.serve-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.serve-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.serve-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,151,90,0.3);
  padding: 0.25rem 0.7rem;
}

/* WHO WE SERVE — full-page expanded blocks */
.serve-block {
  border-top: 1px solid var(--rule);
  padding: 5rem 0;
}
.serve-block:last-of-type { border-bottom: 1px solid var(--rule); }
.serve-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}
.serve-block .serve-tags { margin-bottom: 2rem; }
.serve-block .serve-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.serve-block .serve-prose {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}
.serve-block .serve-prose p + p { margin-top: 1.25rem; }
.serve-block .serve-aside {
  padding-left: 2rem;
  border-left: 1px solid var(--rule);
}
.serve-block .serve-deliverables-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.serve-block .serve-deliverables {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.serve-block .serve-deliverables li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  gap: 0.6rem;
  line-height: 1.6;
}
.serve-block .serve-deliverables li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}
.serve-block .serve-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.serve-block .serve-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: 'DM Mono', monospace;
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.serve-block .serve-quote cite strong { color: var(--gold); }

/* PROCESS — landing-style horizontal 4-col */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border: 1px solid var(--rule);
}
.process-step {
  padding: 3rem 2rem;
  border-right: 1px solid var(--rule);
  position: relative;
}
.process-step:last-child { border-right: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(184,151,90,0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.process-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--white);
}
.process-step p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
}

/* PROCESS PAGE — vertical stack */
.process-stack { margin-top: 4rem; }
.process-stage {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.process-stack .process-stage:last-of-type { border-bottom: 1px solid var(--rule); }
.process-stage .stage-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 300;
  color: rgba(184,151,90,0.18);
  line-height: 1;
}
.process-stage .stage-duration {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}
.process-stage h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.process-stage p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}
.process-stage p + p { margin-top: 1rem; }
.process-stage .stage-deliverables {
  list-style: none;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.process-stage .stage-deliverables li {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  display: flex;
  gap: 0.7rem;
}
.process-stage .stage-deliverables li::before {
  content: '→';
  color: var(--gold);
}
.process-note {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  max-width: 720px;
  font-style: italic;
}

/* TESTIMONIAL ---------------------------------------------- */
.testimonial-section {
  border-top: 1px solid var(--rule);
  text-align: center;
}
blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  position: relative;
}
blockquote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -1.5rem; left: -2rem;
  line-height: 1;
}
cite {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-style: normal;
  display: block;
}
cite strong { color: var(--gold); }

/* PRICING --------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--rule);
  padding: 3rem 2.5rem;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--gold);
  background: rgba(184,151,90,0.04);
}
.pricing-badge {
  position: absolute;
  top: -1px; right: 2rem;
  background: var(--gold);
  color: var(--ink);
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
.pricing-tier {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price span {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
}
.pricing-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.pricing-features li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.pricing-features li.dim { color: rgba(255,255,255,0.25); }
.pricing-features li.dim::before { color: rgba(255,255,255,0.15); content: '–'; }

.btn-card {
  display: block;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-card-outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
}
.btn-card-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-card-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-card-gold:hover { background: var(--gold-light); }

/* PRICING — Always-included band */
.always-included {
  margin-top: 5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.always-included h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
}
.always-included ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}
.always-included li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  gap: 0.6rem;
}
.always-included li::before {
  content: '✓';
  color: var(--gold);
}

/* PRICING — FAQ */
.faq {
  margin-top: 5rem;
}
.faq h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.faq-item {
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item dt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.faq-item dd {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-left: 0;
}

/* ABOUT — values cards (reuse serve-card vibe) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
.value-card {
  border: 1px solid var(--rule);
  padding: 2.5rem 2rem;
  position: relative;
}
.value-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 40px; height: 1px;
  background: var(--gold);
}
.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.value-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ABOUT — Principal bio */
.principal {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
}
.principal-monogram {
  width: 180px;
  height: 180px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-light);
}
.principal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.principal .principal-role {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.principal p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
}
.principal p + p { margin-top: 1rem; }

/* Generic prose block (for About sections, Process intro paragraphs) */
.prose-block {
  max-width: 720px;
  margin-top: 2rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}
.prose-block p + p { margin-top: 1.25rem; }

/* CONTACT page --------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}

.form-field {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-field label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-field label .req { color: var(--gold-light); margin-left: 0.25rem; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Archivo', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  color: var(--white);
  padding: 0.7rem 0;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 14px) 1.1rem, calc(100% - 8px) 1.1rem;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}
.form-field select option { background: var(--ink); color: var(--white); }
.form-field textarea { resize: vertical; min-height: 8rem; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-field .error-msg {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d97a7a;
  min-height: 0.9rem;
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: #d97a7a; }

.form-submit { margin-top: 1rem; }
.form-status {
  margin-top: 1.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.form-status.is-error { color: #d97a7a; }
.form-status.is-ok { color: var(--gold-light); }

.form-success {
  padding: 3rem 2.5rem;
  border: 1px solid var(--gold);
  background: rgba(184,151,90,0.04);
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.form-success p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.contact-sidebar { padding-left: 2rem; border-left: 1px solid var(--rule); }
.contact-sidebar .info-block { margin-bottom: 2.5rem; }
.contact-sidebar .info-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.contact-sidebar .info-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}
.contact-sidebar .info-body a { color: var(--gold-light); text-decoration: none; border-bottom: 1px solid rgba(212,180,122,0.4); }
.contact-sidebar .info-body a:hover { color: var(--white); border-color: var(--white); }
.contact-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--gold);
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  line-height: 1.7;
}

/* LEGAL PAGES ---------------------------------------------- */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}
.legal-content > section,
.legal-content > article {
  padding: 0;
  margin-bottom: 3rem;
}
.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}
.legal-content h2 .legal-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-right: 0.75rem;
  vertical-align: middle;
}
.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}
.legal-content p + p { margin-top: 1rem; }
.legal-content ul,
.legal-content ol { padding-left: 1.5rem; margin-top: 0.75rem; }
.legal-content li + li { margin-top: 0.4rem; }
.legal-content a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,180,122,0.4);
}
.legal-content a:hover { color: var(--white); border-color: var(--white); }

/* CTA STRIP ------------------------------------------------- */
.cta-strip {
  background: var(--gold);
  padding: 5rem 4rem;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.cta-strip p {
  color: rgba(14,14,14,0.65);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
}

/* FOOTER ---------------------------------------------------- */
footer {
  padding: 3rem 4rem;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 300;
}
.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  justify-content: center;
}
.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover,
.footer-links a[aria-current="page"] { color: var(--gold-light); }
.footer-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: right;
  line-height: 1.9;
}
.footer-address { color: rgba(255,255,255,0.4); }
.footer-jurisdiction { color: rgba(184,151,90,0.4); }

/* SVG icon shared stroke */
.icon-svg {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ANIMATIONS ------------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-rule    { animation: fadeUp 0.8s 0.05s ease both; }
.hero-eyebrow { animation: fadeUp 0.8s ease both; }
.hero h1      { animation: fadeUp 0.8s 0.15s ease both; }
.hero-sub     { animation: fadeUp 0.8s 0.3s  ease both; }
.hero-actions { animation: fadeUp 0.8s 0.45s ease both; }
.hero-stats   { animation: fadeUp 0.8s 0.6s  ease both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}

/* RESPONSIVE — single breakpoint at 768px ------------------ */
@media (max-width: 768px) {
  nav { padding: 1.1rem 1.25rem; }
  .nav-links,
  .nav > .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  section { padding: 4rem 1.5rem; }

  .hero { padding: 6rem 1.5rem 3rem; min-height: auto; }
  .hero-stats { gap: 2rem; margin-top: 4rem; }
  .stat-num { font-size: 2.2rem; }

  .intro { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--rule); }
  .process-step:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cross-links { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .service-block { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 0; }
  .serve-block .serve-body { grid-template-columns: 1fr; gap: 2rem; }
  .serve-block .serve-aside { padding-left: 0; border-left: none; padding-top: 2rem; border-top: 1px solid var(--rule); }
  .process-stage { grid-template-columns: 1fr; gap: 1.5rem; padding: 3rem 0; }
  .process-stage .stage-num { font-size: 4rem; }

  .always-included { grid-template-columns: 1fr; gap: 1.5rem; }
  .always-included ul { grid-template-columns: 1fr; }

  .principal { grid-template-columns: 1fr; gap: 2rem; }
  .principal-monogram { width: 140px; height: 140px; font-size: 3rem; }

  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-sidebar { padding-left: 0; border-left: none; padding-top: 2.5rem; border-top: 1px solid var(--rule); }

  blockquote::before { left: 0; top: -1rem; font-size: 4rem; }

  .cta-strip { padding: 4rem 1.5rem; }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
  }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-meta { text-align: center; }
}
