
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 104px; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

:root {
  --navy-900: #0E1430;
  --navy-800: #161E45;
  --navy-700: #232C5C;
  --navy-600: #3A416E;
  --slate-500: #5C6275;
  --slate-400: #8A8F9E;
  --slate-300: #C1C4CD;

  --gold-700: #A8861F;
  --gold-600: #C9A24A;
  --gold-500: #D9B660;
  --gold-400: #E8D08B;
  --gold-100: #F5EBD0;

  --cream: #FAF7F2;
  --cream-warm: #F3EDE0;
  --paper: #FFFFFF;
  --ink: #1A1F33;

  --gold-gradient: linear-gradient(135deg, #C9A24A 0%, #E8D08B 50%, #C9A24A 100%);
  --navy-gradient: linear-gradient(180deg, #0E1430 0%, #161E45 100%);

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.5rem; --space-6: 2rem; --space-8: 3rem; --space-10: 4rem;
  --space-12: 6rem; --space-16: 8rem; --space-20: 10rem;

  --max-width: 1280px;
  --content-width: 920px;
  --narrow-width: 680px;

  --shadow-sm: 0 2px 8px rgba(14, 20, 48, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 20, 48, 0.08);
  --shadow-lg: 0 24px 48px rgba(14, 20, 48, 0.12);
  --shadow-gold: 0 12px 32px rgba(201, 162, 74, 0.25);

  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 16px; --radius-xl: 28px;
  --ease: cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  font-variation-settings: "SOFT" 50, "WONK" 0;
}

h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 400; }
h4 { font-size: 1.375rem; font-weight: 500; }
h5 { font-size: 1.125rem; font-weight: 600; letter-spacing: 0; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.6;
  color: var(--slate-500);
  font-weight: 300;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  display: inline-block;
}

.eyebrow::before { content: "—"; margin-right: 0.5em; color: var(--gold-600); }

.gold-line {
  display: block; width: 60px; height: 2px;
  background: var(--gold-gradient);
  margin: var(--space-4) 0;
}

.gold-line.center { margin-left: auto; margin-right: auto; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.container-narrow {
  width: 100%;
  max-width: var(--narrow-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section { padding: var(--space-16) 0; }
.section-cream { background: var(--cream-warm); }

/* --- Section divider (visual marker for the "page" boundaries in this prototype) --- */
.section-marker {
  background: var(--navy-900);
  color: var(--gold-400);
  text-align: center;
  padding: var(--space-2) 0;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-top: 1px solid var(--gold-600);
  border-bottom: 1px solid var(--gold-600);
}

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(201, 162, 74, 0.25);
  box-shadow: 0 2px 12px rgba(14, 20, 48, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600) 30%, var(--gold-600) 70%, transparent);
  opacity: 0.6;
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-5) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.brand { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.brand img { height: 44px; width: auto; }

.nav-links { display: flex; align-items: center; gap: var(--space-6); }
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--gold-400); }
.nav-links a.active { color: var(--gold-400); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold-gradient);
}

.nav-cta { display: flex; align-items: center; gap: var(--space-3); }

.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.mobile-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream); position: relative;
}
.mobile-toggle span::before, .mobile-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 22px; height: 1.5px; background: var(--cream);
}
.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after { top: 7px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--navy-900); color: var(--cream); }
.btn-primary:hover { background: var(--navy-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-gradient); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-ghost { background: transparent; color: var(--navy-900); border: 1.5px solid var(--navy-900); }
.btn-ghost:hover { background: var(--navy-900); color: var(--cream); }
.btn-ghost-light { background: transparent; color: var(--cream); border: 1.5px solid rgba(232, 208, 139, 0.5); }
.btn-ghost-light:hover { background: var(--gold-gradient); color: var(--navy-900); border-color: transparent; }
.arrow svg path {
  fill: #fff;
  transition: fill 0.2s ease;
}
.resource-meta .arrow svg path {
  fill: var(--navy-800);
  transition: fill 0.2s ease;
}

.resource-meta a:hover svg path {
  fill: var(--gold-700);
}

.btn-ghost-light:hover svg path {
  fill: var(--navy-900);
}
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1.125rem 2.25rem; font-size: 1rem; }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* --- Mobile drawer --- */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 200;
  padding: var(--space-6);
  flex-direction: column;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-10);
}
.mobile-drawer-top img { height: 44px; }
.mobile-drawer-close { color: var(--cream); width: 44px; height: 44px; font-size: 1.5rem; }
.mobile-drawer ul { display: flex; flex-direction: column; gap: var(--space-5); }
.mobile-drawer ul a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 300;
}
.mobile-drawer ul a:hover { color: var(--gold-400); }

/* --- Purchase success modal --- */
.purchase-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}
.purchase-modal.open { display: flex; }
.purchase-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 20, 48, 0.72);
  backdrop-filter: blur(4px);
}
.purchase-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: purchaseModalIn 0.35s var(--ease-out);
}
.purchase-modal-dialog .eyebrow { margin-bottom: var(--space-4); }
.purchase-modal-dialog h2 { margin-bottom: var(--space-4); }
.purchase-modal-dialog .lead { margin-bottom: var(--space-6); }
.purchase-modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--slate-400);
  border-radius: var(--radius-md);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.purchase-modal-close:hover {
  color: var(--navy-900);
  background: var(--cream);
}
@keyframes purchaseModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============== HOME SECTION ============== */

.home-hero {
  position: relative;
  padding: var(--space-12) 0 var(--space-16);
  background: var(--cream);
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,74,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-10);
  align-items: center;
  z-index: 1;
}

.home-hero h1 { margin-bottom: var(--space-6); }
.home-hero h1 .accent {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, #A8861F 0%, #C9A24A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero .lead { margin-bottom: var(--space-8); max-width: 540px; }

.home-hero-cta { display: flex; gap: var(--space-4); flex-wrap: wrap; }

.home-hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy-900);
}

.home-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-hero-image::after {
  content: "";
  position: absolute;
  bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  border: 2px solid var(--gold-500);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.home-hero-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: var(--paper);
  padding: var(--space-3) var(--space-5);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.home-hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --- Featured strip --- */
.featured-strip {
  padding: var(--space-6) 0;
  background: var(--paper);
  border-top: 1px solid rgba(14,20,48,0.06);
  border-bottom: 1px solid rgba(14,20,48,0.06);
  overflow: hidden;
}

.featured-strip-inner {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
  flex-wrap: wrap;
  justify-content: center;
}

.featured-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-500);
}

.featured-logos {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
}

.featured-logos a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--slate-500);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* --- Pillars --- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.pillar {
  padding: var(--space-8) var(--space-6);
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14,20,48,0.06);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--gold-700);
}

.pillar h4 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: var(--space-3); }
.pillar p { color: var(--slate-500); font-size: 0.9375rem; line-height: 1.6; }

.pillar a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  color: var(--navy-800);
  font-weight: 600;
  font-size: 0.875rem;
}
.pillar a:hover { color: var(--gold-700); }

.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .eyebrow { margin-bottom: var(--space-4); }
.section-header h2 { margin-bottom: var(--space-4); }
.section-header .lead { margin: 0 auto; }

/* --- About preview split --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-10);
  align-items: center;
}

.about-split-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-split-image::before {
  content: "";
  position: absolute;
  top: -16px; left: -16px;
  width: 80%; height: 80%;
  background: var(--gold-gradient);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.4;
}

.about-split h2 { margin-bottom: var(--space-5); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(14,20,48,0.1);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-700);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-top: var(--space-2);
}

/* --- Testimonials --- */
.testimonials {
  background: var(--navy-900);
  color: var(--cream);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  bottom: -40%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,162,74,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.testimonials .section-header h2 { color: var(--cream); }
.testimonials .section-header .lead { color: var(--slate-300); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  position: relative;
  z-index: 1;
}

.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  backdrop-filter: blur(4px);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.55;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: var(--space-5);
  font-style: italic;
}

.testimonial-quote::before {
  content: "\201C";
  font-size: 3rem;
  color: var(--gold-500);
  display: block;
  line-height: 0.5;
  margin-bottom: var(--space-3);
}

.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
}

.testimonial-name { font-size: 0.9375rem; font-weight: 600; color: var(--cream); }
.testimonial-role { font-size: 0.8125rem; color: var(--slate-300); }

/* --- Capture --- */
.capture {
  background: var(--cream-warm);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.capture::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,162,74,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.capture-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--space-5);
}

.capture h2 { margin-bottom: var(--space-4); }
.capture .lead { margin-bottom: var(--space-8); }

.capture-form {
  display: flex;
  gap: var(--space-3);
  max-width: 520px;
  margin: 0 auto;
}

.capture-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: var(--paper);
  border: 1.5px solid rgba(14,20,48,0.1);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.capture-form input:focus { outline: none; border-color: var(--gold-600); }

/* --- Cross-promo --- */
.cross-promo {
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--gold-100) 100%);
  padding: var(--space-10) 0;
  border-top: 1px solid rgba(201,162,74,0.2);
  border-bottom: 1px solid rgba(201,162,74,0.2);
}

.cross-promo-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.cross-promo .eyebrow { color: var(--navy-700); }
.cross-promo .eyebrow::before { color: var(--navy-700); }
.cross-promo h3 { margin-bottom: var(--space-3); }

/* ============== ABOUT SECTION ============== */

.about-hero {
  padding: var(--space-12) 0 var(--space-10);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,162,74,0.08) 0%, transparent 60%);
}

.about-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.about-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: var(--space-5); }

.about-hero-image {
  position: relative;
  aspect-ratio: 1/1.15;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.about-story { padding: var(--space-16) 0; }

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-10);
  align-items: start;
}

.about-story-image {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-story-image img { width: 100%; height: 100%; object-fit: cover; }

.about-story-content h2 { margin-bottom: var(--space-5); }
.about-story-content h3 { margin-top: var(--space-8); margin-bottom: var(--space-3); }
.about-story-content p { color: var(--slate-500); font-size: 1.0625rem; line-height: 1.7; }
.about-story-content p strong { color: var(--ink); font-weight: 600; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-10);
}

.value-card {
  padding: var(--space-6);
  background: var(--paper);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold-500);
}

.value-card h4 { margin-bottom: var(--space-3); }
.value-card p { color: var(--slate-500); font-size: 0.9375rem; }

/* ============== SERVICES SECTION ============== */

.page-hero {
  padding: var(--space-12) 0 var(--space-10);
  background: var(--cream);
  text-align: center;
}

.page-hero h1 { margin-bottom: var(--space-5); }
.page-hero .lead { max-width: 680px; margin: 0 auto; }

.services-list { padding: var(--space-12) 0; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-10);
  align-items: center;
  padding: var(--space-10) 0;
  border-bottom: 1px solid rgba(14,20,48,0.08);
}

.service-row:last-child { border-bottom: none; }
.service-row:nth-child(even) .service-visual { order: 2; }

.service-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--navy-gradient);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201,162,74,0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(232,208,139,0.15) 0%, transparent 40%);
}

.service-visual .service-num {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 200;
  color: var(--gold-500);
  position: relative;
  z-index: 1;
}

/* Hero variant for first service row — uses Maze photo */
.service-visual.with-photo {
  background: var(--navy-900);
  aspect-ratio: 4/5;
}

.service-visual.with-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.service-visual.with-photo .photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-5);
  background: linear-gradient(0deg, rgba(14,20,48,0.85) 0%, transparent 100%);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}

.service-content .eyebrow { margin-bottom: var(--space-3); }
.service-content h3 { margin-bottom: var(--space-4); font-size: 2.25rem; }
.service-content p { color: var(--slate-500); margin-bottom: var(--space-5); font-size: 1.0625rem; }

.service-features { margin-bottom: var(--space-6); }

.service-features li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-2);
  font-size: 0.9375rem;
  color: var(--ink);
}

.service-features li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  color: var(--gold-600);
}

/* ============== PRICING SECTION ============== */

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin: var(--space-8) 0 var(--space-10);
}

.pricing-toggle button {
  padding: 0.625rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid rgba(14,20,48,0.15);
  color: var(--slate-500);
  background: transparent;
  transition: all 0.3s var(--ease);
}

.pricing-toggle button.active {
  background: var(--navy-900);
  color: var(--cream);
  border-color: var(--navy-900);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}

.pricing-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid rgba(14,20,48,0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card.featured {
  background: var(--navy-900);
  color: var(--cream);
  border: none;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-card.featured h3, .pricing-card.featured .price-amount { color: var(--cream); }
.pricing-card.featured .price-amount .currency,
.pricing-card.featured .price-amount .period { color: var(--gold-400); }
.pricing-card.featured ul li { color: var(--slate-300); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--navy-900);
  padding: 0.375rem 1rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.price-tier {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--space-3);
}

.pricing-card.featured .price-tier { color: var(--gold-400); }
.pricing-card h3 { margin-bottom: var(--space-2); font-size: 1.75rem; }

.price-desc {
  font-size: 0.9375rem;
  color: var(--slate-500);
  margin-bottom: var(--space-5);
}

.pricing-card.featured .price-desc { color: var(--slate-300); }

.price-amount {
  font-family: var(--font-display);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
}

.price-amount .currency { font-size: 1.25rem; color: var(--gold-700); font-weight: 400; }
.price-amount .num { font-size: 3.25rem; font-weight: 300; line-height: 1; letter-spacing: -0.03em; }
.price-amount .period { font-size: 0.875rem; color: var(--slate-500); font-weight: 400; font-family: var(--font-body); }

.pricing-card ul { flex: 1; margin-bottom: var(--space-6); }

.pricing-card ul li {
  padding: var(--space-2) 0;
  font-size: 0.9375rem;
  color: var(--slate-500);
  position: relative;
  padding-left: var(--space-6);
}

.pricing-card ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold-600);
  font-weight: 600;
}

.pricing-card .btn { width: 100%; }

/* FAQ */
.faq-list { max-width: var(--narrow-width); margin: var(--space-10) auto 0; }
.faq-item { border-bottom: 1px solid rgba(14,20,48,0.1); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  color: var(--gold-700);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item .faq-content {
  padding-bottom: var(--space-5);
  color: var(--slate-500);
  line-height: 1.7;
}

/* ============== RESOURCES SECTION ============== */

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.resource-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  border: 1px solid rgba(14,20,48,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.resource-thumb {
  aspect-ratio: 16/10;
  background: var(--navy-gradient);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  overflow: hidden;
}

.resource-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(201,162,74,0.18) 0%, transparent 50%);
}

.resource-thumb-icon {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 200;
  position: relative;
  z-index: 1;
}

.resource-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--space-3);
}

.resource-body h4 { margin-bottom: var(--space-3); font-size: 1.25rem; line-height: 1.3; }
.resource-body p { color: var(--slate-500); font-size: 0.9375rem; flex: 1; margin-bottom: var(--space-4); }

.resource-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(14,20,48,0.06);
}

.resource-meta a {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.resource-meta a:hover { color: var(--gold-700); }
.resource-meta .lock { font-size: 0.75rem; color: var(--slate-400); display: flex; align-items: center; gap: 0.25rem; }

/* ============== CONTACT SECTION ============== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-10);
  margin-top: var(--space-10);
}

.contact-info h3 { margin-bottom: var(--space-5); }

.contact-info ul li {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(14,20,48,0.08);
}

.contact-info ul li:last-child { border-bottom: none; }

.contact-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--cream-warm);
  color: var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: var(--space-1);
}

.contact-info-value { font-size: 1rem; color: var(--navy-900); font-weight: 500; }

.contact-form {
  background: var(--paper);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14,20,48,0.06);
}

.form-group { margin-bottom: var(--space-4); }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: var(--space-2);
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--paper);
  border: 1.5px solid rgba(14,20,48,0.12);
  border-radius: var(--radius-md);
  transition: border-color 0.2s var(--ease);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(201,162,74,0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

/* ============== FOOTER ============== */

.site-footer {
  background: var(--navy-900);
  color: var(--cream);
  padding: var(--space-12) 0 var(--space-6);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-4);
}

.footer-col ul li { margin-bottom: var(--space-2); }

.footer-col a {
  color: var(--slate-300);
  font-size: 0.9375rem;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: var(--gold-400); }

.footer-brand img { height: 56px; margin-bottom: var(--space-4); }
.footer-brand p { color: var(--slate-300); font-size: 0.9375rem; line-height: 1.6; max-width: 280px; }

.footer-newsletter input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  margin-bottom: var(--space-3);
}

.footer-newsletter input::placeholder { color: var(--slate-400); }
.footer-newsletter input:focus { outline: none; border-color: var(--gold-500); }

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: 0.875rem;
  color: var(--slate-400);
}

.footer-bottom a { color: var(--slate-400); margin-left: var(--space-5); }
.footer-bottom a:hover { color: var(--gold-400); }

.footer-social { display: flex; gap: var(--space-3); }

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  transition: all 0.3s var(--ease);
}

.footer-social a:hover { background: var(--gold-gradient); border-color: transparent; color: var(--navy-900); }
.footer-social svg { width: 16px; height: 16px; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.9s var(--ease-out) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.text-center { text-align: center; }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-6 { margin-bottom: var(--space-6); }
.text-slate { color: var(--slate-500); }

/* ============== LOGO PROMINENCE ==============
   The brand mark is the visual anchor of the site.
   These styles make it bigger, more visible, and weave it
   throughout as a decorative system.
================================================== */

/* Header brand — bigger, more space, subtle hover lift */
.brand img.logo-mark {
  height: 56px;
  width: auto;
  transition: transform 0.4s var(--ease-out);
  filter: drop-shadow(0 1px 12px rgba(201, 162, 74, 0.18));
}

.brand:hover img.logo-mark {
  transform: scale(1.04);
  filter: drop-shadow(0 2px 16px rgba(201, 162, 74, 0.32));
}

/* Hero watermark — giant ghost icon in the background */
.hero-watermark {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.06;
}

.home-hero .hero-watermark {
  top: 50%;
  left: -8%;
  transform: translateY(-50%);
  width: auto;
  height: 580px;
}

/* Section ornament — gold icon as a divider replacement */
.brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-8) 0;
  background: var(--navy-900);
  position: relative;
  border-top: 1px solid rgba(201, 162, 74, 0.3);
  border-bottom: 1px solid rgba(201, 162, 74, 0.3);
}

.brand-divider::before,
.brand-divider::after {
  content: "";
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--gold-600), transparent);
}

.brand-divider .ornament-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-divider .ornament-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* Pillar header icon — replaces generic SVG with brand mark */
.pillar-brand-mark {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  width: auto;
  height: 48px;
  opacity: 0.18;
  transition: opacity 0.4s var(--ease-out);
  object-fit: contain;
}

.pillar:hover .pillar-brand-mark {
  opacity: 0.5;
}

/* Service number block — brand mark watermark behind big number */
.service-visual .brand-watermark {
  position: absolute;
  width: auto;
  height: 70%;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.10;
  z-index: 0;
  object-fit: contain;
}

.service-visual .service-num { z-index: 2; }

/* Pricing featured card — gold mark watermark in upper right */
.pricing-card.featured .brand-watermark {
  position: absolute;
  top: -20px;
  right: -20px;
  width: auto;
  height: 220px;
  opacity: 0.07;
  pointer-events: none;
  object-fit: contain;
}

/* Testimonials — large gold mark as decorative anchor */
.testimonials .brand-watermark {
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
  width: auto;
  height: 460px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  object-fit: contain;
}

/* Capture (newsletter) — small inline brand mark above headline */
.capture .inline-brand-mark {
  width: auto;
  height: 80px;
  margin: 0 auto var(--space-5);
  display: block;
}

/* Cross-promo — brand mark as decorative element */
.cross-promo .brand-mark-deco {
  width: auto;
  height: 90px;
  margin-bottom: var(--space-4);
}

/* About hero — brand mark as eyebrow accent */
.about-hero .inline-brand-mark {
  width: auto;
  height: 60px;
  margin-bottom: var(--space-4);
  display: block;
}

/* Footer — bigger brand presence */
.footer-brand img.logo-mark {
  height: 72px;
  width: auto;
  margin-bottom: var(--space-5);
  display: block;
}

/* Mobile drawer — bigger logo */
.mobile-drawer-top img {
  height: 56px;
}

/* Marker card — replaces text-only "section-marker" with branded version */
.brand-section-marker {
  background: var(--navy-900);
  padding: var(--space-6) 0;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(201, 162, 74, 0.3);
  border-bottom: 1px solid rgba(201, 162, 74, 0.3);
}

.brand-section-marker::before,
.brand-section-marker::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.brand-section-marker::before { left: calc(50% - 240px); }
.brand-section-marker::after  { left: calc(50% + 120px); }

.brand-section-marker .icon-wrap {
  width: auto;
  height: 64px;
  margin: 0 auto var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-section-marker .icon-wrap img {
  width: auto;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(201, 162, 74, 0.4));
}

.brand-section-marker .label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
}

@media (max-width: 600px) {
  .brand-section-marker::before { left: 4%; width: 30%; }
  .brand-section-marker::after { left: 66%; width: 30%; }
  .brand img.logo-mark { height: 44px; }
  .home-hero .hero-watermark { width: auto; height: 360px; left: -20%; }
}

/* Back-to-top floater */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 48px; height: 48px;
  background: var(--navy-900);
  color: var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  z-index: 50;
}

.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--gold-gradient); color: var(--navy-900); transform: translateY(-3px); }

/* ============== RESPONSIVE ============== */

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta .btn:not(.mobile-toggle) { display: none; }
  .mobile-toggle { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .cross-promo-inner { grid-template-columns: 1fr; text-align: center; }
  .section { padding: var(--space-12) 0; }

  .home-hero-grid,
  .about-hero-grid,
  .about-split,
  .about-story-grid,
  .service-row,
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-8); }

  .service-row:nth-child(even) .service-visual { order: 0; }
  .about-story-image { position: static; max-width: 400px; }

  .pillars,
  .testimonial-grid,
  .pricing-grid,
  .resource-grid,
  .values-grid { grid-template-columns: 1fr; }

  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }

  .about-stats { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .home-hero-image { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-brand { grid-column: auto; }
  .footer-bottom { justify-content: center; text-align: center; }
  .capture-form { flex-direction: column; }
  .home-hero-cta { flex-direction: column; }
  .home-hero-cta .btn { width: 100%; }
  .pricing-card { padding: var(--space-6); }
}

