/* ============================================
   CRÉO STUDIOS — Stylesheet
   Headings: Montserrat 300 upright
   Body: Montserrat 300 italic
   Labels/Nav: Space Mono 400
   Script accents: Symphony / Pinyon Script
   ============================================ */

@font-face {
  font-family: 'Symphony';
  src: url('../fonts/Symphony.woff2') format('woff2'),
       url('../fonts/Symphony.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ——— VARIABLES ——— */
:root {
  --bg:      #fcfbf4;
  --white:   #ffffff;
  --black:   #000000;
  --crimson: #d40909;
  --blush:   #dca1a1;
  --rust:    #7a2f00;
  --navy:    #00167a;
  --cobalt:  #0025cc;
  --muted:   #888888;
  --border:  rgba(0,0,0,0.08);

  --font-body:   'Montserrat', sans-serif;
  --font-label:  'Space Mono', monospace;
  --font-script: 'Symphony', 'Pinyon Script', cursive;

  --nav-height: 84px;
  --max-w:      1180px;
  --narrow-w:   700px;
}

/* ——— RESET ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--black);
  background: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
p   { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; font-style: normal; }

/* ——— HEADINGS — Montserrat, upright, light ——— */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.script-accent {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0;
}

/* ——— LAYOUT ——— */
.container        { width: 100%; max-width: var(--max-w);    margin: 0 auto; padding: 0 2rem; }
.container-narrow { width: 100%; max-width: var(--narrow-w); margin: 0 auto; padding: 0 2rem; }

/* ——— NAV — light, minimal ——— */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}
.nav-spacer { height: var(--nav-height); }

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 72px; width: auto; display: block; }
/* Fallback text if image fails */
.nav-logo-text { font-family: var(--font-label); font-size: 1rem; font-style: normal; color: var(--black); letter-spacing: 0.05em; }

.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-links li a {
  font-family: var(--font-label);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--black); }

.nav-cta {
  color: var(--crimson) !important;
  border: 1px solid rgba(212,9,9,0.25) !important;
  padding: 0.45rem 0.9rem;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--crimson) !important; color: var(--white) !important; border-color: var(--crimson) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--black); transition: all 0.3s; }

/* ——— BUTTONS ——— */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.85rem;
  border: none;
  cursor: pointer;
  border-radius: 1px;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary          { background: var(--crimson); color: var(--white); }
.btn-primary:hover    { background: #b50808; }
.btn-ghost            { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost:hover      { border-color: var(--white); }
.btn-ghost-light      { background: transparent; color: var(--white); border: 1px solid rgba(220,161,161,0.4); }
.btn-ghost-light:hover{ background: var(--blush); color: var(--black); border-color: var(--blush); }
.btn-outline-dark     { background: transparent; color: var(--black); border: 1px solid rgba(0,0,0,0.3); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-outline-light    { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn-outline-light:hover { background: var(--white); color: var(--black); }
.btn-full             { width: 100%; text-align: center; }
.btn-sm               { padding: 0.45rem 0.9rem; font-size: 0.68rem; }

/* ——— LABELS ——— */
.section-label {
  display: block;
  font-family: var(--font-label);
  font-style: normal;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.section-label.light { color: rgba(255,255,255,0.45); }

.section-title        { font-size: clamp(1.7rem, 3vw, 2.6rem); margin-bottom: 1.5rem; line-height: 1.15; }
.section-title.light  { color: var(--white); }

/* ======================================
   HERO — split layout
   ====================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-height));
}

.hero-text {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
}

.hero-logo-img {
  width: 200px;
  margin-bottom: 2rem;
}

.hero-tagline {
  font-family: var(--font-label);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.hero-copy {
  font-size: 1rem;
  color: #555;
  max-width: 380px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-image {
  background-size: cover;
  background-position: center;
  min-height: 520px;
}

/* ——— COUNTDOWN — minimal, in-page ——— */
.countdown-section {
  background: var(--white);
  color: var(--black);
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--border);
}
.countdown-section--page { padding: 3.5rem 2rem; border-top: 1px solid var(--border); }
.countdown-inner { max-width: 760px; margin: 0 auto; text-align: center; }

.countdown-eyebrow,
.countdown-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.countdown-title   { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 1.75rem; }
.countdown-timer   { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.countdown-unit    { display: flex; flex-direction: column; align-items: center; min-width: 72px; }
.countdown-num     { font-family: var(--font-body); font-style: normal; font-weight: 300; font-size: clamp(2.25rem, 5vw, 3.5rem); color: var(--black); line-height: 1; display: block; }
.countdown-lbl     { font-family: var(--font-label); font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blush); margin-top: 0.35rem; }
.countdown-sep     { font-family: var(--font-body); font-size: 1.5rem; color: #ddd; padding-bottom: 1.4rem; font-style: normal; }
.countdown-sub     { color: var(--muted); font-size: 0.85rem; margin: 0; }
.countdown-sub a   { color: var(--rust); }
.countdown-sub a:hover { color: var(--crimson); }
.countdown-details { font-family: var(--font-label); font-size: 0.68rem; color: #bbb; margin-bottom: 1.5rem; }
.countdown-waitlist-prompt { font-size: 0.82rem; color: var(--muted); margin-top: 1.25rem; }

.slot-preview h3   { font-family: var(--font-label); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); margin: 1.75rem 0 0.9rem; }
.slot-cards        { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.slot-card         { background: var(--bg); border: 1px solid var(--border); padding: 0.9rem 1.35rem; text-align: center; min-width: 140px; }
.slot-tier         { display: block; font-family: var(--font-label); font-size: 0.7rem; color: var(--black); margin-bottom: 0.35rem; }
.slot-count        { display: block; font-size: 0.7rem; color: #bbb; margin-bottom: 0.2rem; }
.slot-price        { display: block; font-family: var(--font-label); color: var(--rust); font-size: 0.78rem; }

/* ——— INTRO ——— */
.intro-section { padding: 9rem 2rem; background: var(--bg); }
.intro-grid { display: grid; grid-template-columns: 1fr 320px; gap: 6rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.intro-text h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.25; margin: 1rem 0 1.5rem; }
.intro-text p  { font-size: 0.95rem; color: #555; margin-bottom: 1.1rem; max-width: 480px; }
.intro-text .btn { margin-top: 1rem; }
.intro-portrait { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; display: block; }

/* ——— EDITORIAL STATEMENT ——— */
.editorial-statement { padding: 8rem 2rem; background: var(--white); border-top: 1px solid var(--border); text-align: center; overflow: hidden; }
.editorial-statement-text { display: block; font-family: var(--font-body); font-size: clamp(2.8rem, 7.5vw, 8rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.025em; color: var(--black); }
.editorial-statement-script { font-family: var(--font-script); font-size: 1.1em; color: var(--blush); font-style: normal; display: block; margin-top: 0.15em; }

/* ——— SERVICE TIERS PREVIEW ——— */
.services-preview { padding: 6rem 2rem; background: var(--white); }
.services-preview .section-title { text-align: center; margin-bottom: 2.5rem; }
.services-preview .section-label { text-align: center; }

.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tier-card {
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}
.tier-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.07); }
.tier-card--featured { background: var(--cobalt); color: var(--white); border-color: var(--cobalt); }

.tier-card-img  { height: 240px; background-size: cover; background-position: center; flex-shrink: 0; }
.tier-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.tier-price     { font-family: var(--font-label); font-style: normal; font-size: 0.75rem; color: var(--rust); letter-spacing: 0.04em; display: block; margin-bottom: 0.4rem; }
.tier-name      { font-size: 1.2rem; margin-bottom: 0.5rem; }
.tier-card-body p { font-size: 0.85rem; color: #777; flex: 1; margin-bottom: 1.15rem; }
.tier-card--featured .tier-card-body p { color: rgba(255,255,255,0.5); }
.tier-link { font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.tier-card--featured .tier-link { color: rgba(255,255,255,0.4); }
.tier-link:hover { color: var(--crimson); }

.services-preview-cta { text-align: center; margin-top: 2.5rem; }

/* ——— PROCESS SNIPPET — dark editorial ——— */
.process-snippet { background: var(--navy); padding: 9rem 2rem; text-align: center; }
.process-snippet-inner { max-width: 680px; margin: 0 auto; }
.process-snippet-label { display: block; font-family: var(--font-label); font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 2rem; }
.process-snippet-heading { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 300; color: var(--white); line-height: 1.05; margin-bottom: 2.25rem; }
.process-snippet-heading .script-accent { color: var(--blush); display: block; font-size: 1.15em; }
.process-snippet-body { font-size: 0.95rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 500px; margin: 0 auto 2.75rem; }

/* ——— EDITORIAL STRIP ——— */
.editorial-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 420px; }
.strip-img { background-size: cover; background-position: center; filter: grayscale(15%); transition: filter 0.4s; }
.strip-img:hover { filter: none; }

/* ——— WHO SECTION ——— */
.who-section { padding: 8rem 2rem; background: var(--white); text-align: center; }
.who-section .section-title { font-size: clamp(1.3rem, 2.3vw, 1.9rem); max-width: 580px; margin: 0 auto 2.75rem; }
.who-list { list-style: none; max-width: 480px; margin: 0 auto 2.75rem; text-align: left; }
.who-list li { padding: 1rem 0 1rem 1.5rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: #555; position: relative; line-height: 1.5; }
.who-list li::before { content: '—'; position: absolute; left: 0; color: #ccc; }

/* ——— PAGE HERO ——— */
.page-hero           { padding: 7rem 2rem 4rem; text-align: center; }
.page-hero--black    { background: var(--black); color: var(--white); }
.page-hero--navy     { background: var(--navy);  color: var(--white); }
.page-hero--rust     { background: var(--rust);  color: var(--white); }
.page-hero--minimal  { background: var(--bg);    color: var(--black); padding-top: 5rem; }
.page-hero-title     { font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1.05; color: var(--white); margin-bottom: 0.85rem; }
.page-hero--minimal .page-hero-title { color: var(--black); }
.page-hero-sub       { color: rgba(255,255,255,0.5); font-size: 0.92rem; max-width: 500px; margin: 0 auto; }
.page-hero--minimal .page-hero-sub { color: var(--muted); }

/* ======================================
   ABOUT
   ====================================== */
.about-intro { padding: 6rem 2rem; background: var(--bg); }
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.about-img-block   { position: relative; }
.about-img-main    { width: 100%; height: 600px; background-size: cover; background-position: center top; display: block; }
.about-img-accent  {
  width: 52%;
  height: 280px;
  background-size: cover;
  background-position: center top;
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  border: 5px solid var(--bg);
  display: block;
}

.about-text h2  { font-size: clamp(1.35rem, 2.2vw, 1.85rem); line-height: 1.3; margin-bottom: 1.35rem; }
.about-text p   { font-size: 0.95rem; color: #555; }

/* Principles */
.principles-section { padding: 5.5rem 2rem; background: var(--white); }
.principles-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin-top: 2rem; border-top: 1px solid var(--border); }
.principle-card     { padding: 2rem 1.75rem; border-right: 1px solid var(--border); }
.principle-card:last-child { border-right: none; }
.principle-num      { display: block; font-family: var(--font-script); font-size: 2.5rem; color: var(--blush); margin-bottom: 0.5rem; line-height: 1; }
.principle-card h3  { font-size: 0.9rem; font-weight: 400; margin-bottom: 0.6rem; }
.principle-card p   { font-size: 0.85rem; color: #888; margin: 0; }

.about-full-img         { height: 440px; background-size: cover; background-position: center; position: relative; }
.about-full-img-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.42); display: flex; align-items: center; justify-content: center; padding: 3rem; }
.about-quote            { font-family: var(--font-script); font-size: clamp(1.25rem, 2.5vw, 1.85rem); color: var(--white); text-align: center; line-height: 1.65; max-width: 600px; font-weight: normal; }

/* Profile photo strip */
.about-photo-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.about-strip-img   { height: 360px; object-fit: cover; object-position: center top; width: 100%; display: block; }

.ideal-section { padding: 5.5rem 2rem; background: var(--bg); text-align: center; }
.ideal-section p { font-size: 0.95rem; color: #666; max-width: 520px; margin: 0 auto 1.75rem; }
.ideal-list   { list-style: none; text-align: left; max-width: 440px; margin: 0 auto 2.5rem; }
.ideal-list li { padding: 0.65rem 0 0.65rem 1.35rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: #555; position: relative; }
.ideal-list li::before { content: '—'; position: absolute; left: 0; color: #ccc; font-style: normal; }
.ideal-cta    { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ======================================
   SERVICES
   ====================================== */
.service-section      { padding: 6rem 2rem; background: var(--bg); }
.service-section--alt { background: var(--white); }
.service-grid         { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.service-grid--reversed .service-text    { order: 2; }
.service-grid--reversed .service-gallery { order: 1; }

.service-tier-label { display: block; font-family: var(--font-label); font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: #bbb; margin-bottom: 0.5rem; }
.service-title      { font-size: clamp(1.85rem, 3.3vw, 2.8rem); margin-bottom: 0.4rem; }
.service-price      { display: block; font-family: var(--font-label); font-size: 1rem; color: var(--rust); margin-bottom: 1.1rem; }
.service-tagline    { font-size: 0.98rem; color: #555; margin-bottom: 1.1rem; }
.service-section p  { font-size: 0.9rem; color: #666; margin-bottom: 1.1rem; }

.service-includes             { list-style: none; margin: 1.5rem 0 2rem; border-top: 1px solid var(--border); }
.service-includes li          { padding: 0.95rem 0; border-bottom: 1px solid var(--border); }
.service-includes li strong   { display: block; font-size: 0.8rem; margin-bottom: 0.28rem; font-style: normal; font-weight: 500; }
.service-includes li span     { font-size: 0.8rem; color: #999; }

.service-gallery            { position: relative; }
.service-img-main           { width: 100%; height: 480px; background-size: contain; background-position: center; background-repeat: no-repeat; background-color: var(--bg); display: block; }
.service-section--alt .service-img-main { background-color: var(--white); }
.service-img-secondary      { width: 50%; height: 220px; background-size: cover; background-position: center; display: block; position: absolute; bottom: -2.5rem; right: -2.5rem; border: 5px solid var(--bg); }
.service-section--alt .service-img-secondary { border-color: var(--white); left: -2.5rem; right: auto; }

/* Compare */
.compare-section { padding: 5.5rem 2rem; background: var(--white); border-top: 1px solid var(--border); }
.compare-section .section-title { color: var(--black); margin-bottom: 2.5rem; }
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.compare-table th, .compare-table td { padding: 0.85rem 1.1rem; text-align: center; border-bottom: 1px solid var(--border); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: #aaa; font-weight: 300; font-style: italic; }
.compare-table thead th { font-family: var(--font-body); font-style: normal; font-weight: 400; font-size: 0.82rem; border-bottom: 1px solid #ccc; color: var(--black); }
.compare-table thead th span { display: block; margin-bottom: 0.2rem; }
.compare-table thead th em   { font-style: normal; color: var(--rust); font-size: 0.85rem; }
.compare-table tbody tr:hover { background: var(--bg); }
.compare-featured             { background: rgba(212,9,9,0.03); }
.compare-table thead th.compare-featured { border-top: 1px solid var(--crimson); }

.services-footer-cta { padding: 5rem 2rem; background: var(--bg); text-align: center; }
.services-footer-cta p { margin: 0.6rem auto 1.5rem; font-size: 0.95rem; color: #777; max-width: 440px; }
.services-footer-cta .btn { margin: 0.4rem; }

/* ======================================
   PROCESS
   ====================================== */
.process-overview  { padding: 4.5rem 2rem; background: var(--bg); text-align: center; }
.process-intro-text { font-size: 1rem; color: #555; line-height: 1.85; margin: 0; }

.process-steps-section { padding: 4rem 2rem 6rem; background: var(--white); }
.process-steps         { display: flex; flex-direction: column; max-width: 720px; margin: 0 auto; }
.process-step-full     { display: grid; grid-template-columns: 56px 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.process-step-full:last-child { border-bottom: none; }
.process-step-num      { font-family: var(--font-label); font-size: 0.58rem; color: #ddd; letter-spacing: 0.1em; padding-top: 0.5rem; font-style: normal; }
.process-step-content h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.process-step-content p  { font-size: 0.9rem; color: #666; }
.process-step-note       { background: var(--bg); border-left: 2px solid #e8e2dc; padding: 0.7rem 0.9rem; font-size: 0.8rem !important; color: #aaa !important; margin-top: 0.9rem !important; }

.timeline-section { padding: 5.5rem 2rem; background: var(--navy); color: var(--white); }
.timeline-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.timeline-text p  { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.timeline-text p + p { margin-top: 0.9rem; }
.timeline-text strong { color: var(--white); }
.timeline-visual  { display: flex; flex-direction: column; }
.timeline-item    { display: flex; gap: 1.15rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.timeline-item:last-child { border-bottom: none; }
.timeline-marker  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 0.4rem; }
.timeline-item--ideal .timeline-marker { background: #77dd77; }
.timeline-item--good .timeline-marker  { background: var(--blush); }
.timeline-item--min .timeline-marker   { background: #f0c040; }
.timeline-item--no .timeline-marker    { background: var(--crimson); }
.timeline-item strong { display: block; font-size: 0.8rem; color: var(--white); margin-bottom: 0.2rem; }
.timeline-item p      { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin: 0; }

.who-best-section { padding: 5.5rem 2rem; background: var(--bg); }
.who-best-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.who-best-card    { padding: 2rem; border-top: 1px solid; }
.who-best-card--yes { border-color: var(--black); background: var(--white); }
.who-best-card--no  { border-color: var(--border); background: var(--bg); }
.who-best-card h3   { font-size: 0.85rem; font-weight: 400; font-style: normal; margin-bottom: 1.15rem; }
.who-best-card--yes h3 { color: var(--black); }
.who-best-card--no h3  { color: #bbb; }
.who-best-card li   { padding: 0.5rem 0 0.5rem 1.2rem; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.85rem; color: #666; position: relative; }
.who-best-card li::before { position: absolute; left: 0; font-style: normal; }
.who-best-card--yes li::before { content: '✓'; color: var(--black); }
.who-best-card--no li::before  { content: '×'; color: #ccc; }

.process-full-img { height: 360px; background-size: cover; background-position: center; filter: grayscale(10%); }

.faq-section    { padding: 5.5rem 2rem; background: var(--white); }
.faq-list       { margin-top: 2rem; }
.faq-item       { border-bottom: 1px solid var(--border); }
.faq-item summary { padding: 1rem 0; cursor: pointer; font-style: normal; font-weight: 400; font-size: 0.88rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1rem; flex-shrink: 0; color: #ccc; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p  { padding: 0 0 1.15rem; font-size: 0.88rem; color: #777; }
.faq-item a  { color: var(--rust); }
.faq-item a:hover { color: var(--crimson); }

.process-cta { padding: 5.5rem 2rem; background: var(--navy); color: var(--white); text-align: center; }
.process-cta h2 { color: var(--white); margin-bottom: 1.75rem; font-size: 1.75rem; }
.process-cta .btn { margin: 0.4rem; }

/* ======================================
   CONSULTATION
   ====================================== */
.booking-section { padding: 5rem 2rem 6rem; background: var(--bg); }
.booking-grid    { display: grid; grid-template-columns: 260px 1fr; gap: 4rem; align-items: start; }

.booking-sidebar h3   { font-family: var(--font-label); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin-bottom: 0.85rem; font-style: normal; }
.booking-details-list { list-style: none; }
.booking-details-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px solid var(--border); font-size: 0.78rem; }
.booking-details-list strong { font-style: normal; color: #bbb; font-weight: 400; white-space: nowrap; }
.booking-details-list span   { color: var(--black); text-align: right; }
.booking-policy-note { margin-top: 1.5rem; background: var(--white); padding: 0.9rem; font-size: 0.75rem; color: #aaa; border: 1px solid var(--border); }
.booking-policy-note a { color: var(--rust); }

.booking-form-wrap h2  { font-size: 1.6rem; margin-bottom: 0.4rem; }
.booking-intro         { color: #aaa; font-size: 0.85rem; margin-bottom: 2rem; }

/* Forms */
.form-section-label { font-family: var(--font-label); font-style: normal; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: #bbb; margin-bottom: 1rem; margin-top: 1.75rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--border); display: block; }
.form-section-label:first-child { margin-top: 0; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; display: flex; flex-direction: column; }
.form-group label { font-family: var(--font-label); font-style: normal; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: #bbb; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.7rem 0.85rem; background: var(--white); border: 1px solid #e0dbd6; font-family: var(--font-body); font-style: italic; font-weight: 300; font-size: 0.88rem; color: var(--black); border-radius: 1px; transition: border-color 0.2s; outline: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--black); }
.form-group select  { font-style: normal; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-hint   { font-size: 0.7rem; color: #bbb; margin-top: 0.3rem; font-style: italic; }
.form-hint a { color: var(--rust); }

.tier-radio-group  { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.2rem; }
.tier-radio        { cursor: pointer; }
.tier-radio input  { position: absolute; opacity: 0; width: 0; height: 0; }
.tier-radio-inner  { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 1rem; border: 1px solid #e0dbd6; background: var(--white); transition: border-color 0.2s; }
.tier-radio:hover .tier-radio-inner { border-color: var(--black); }
.tier-radio input:checked + .tier-radio-inner { border-color: var(--black); border-width: 1.5px; }
.tier-radio--unavailable { opacity: 0.35; pointer-events: none; }
.tier-radio-inner strong { font-style: normal; font-weight: 400; font-size: 0.82rem; flex: 1; }
.tier-radio-inner span   { font-family: var(--font-label); color: var(--rust); font-size: 0.75rem; font-style: normal; }
.tier-radio-inner em     { font-size: 0.7rem; color: #ccc; flex: 2; }
.sold-out { font-family: var(--font-label); font-style: normal !important; font-size: 0.58rem; color: var(--crimson); border: 1px solid rgba(212,9,9,0.2); padding: 0.1rem 0.45rem; letter-spacing: 0.08em; }

.form-error   { background: rgba(212,9,9,0.05); border: 1px solid rgba(212,9,9,0.2); color: #c00; padding: 0.65rem 0.85rem; font-size: 0.8rem; margin-bottom: 0.9rem; display: none; }
.form-error.visible { display: block; }
.form-success { background: rgba(0,22,122,0.04); border: 1px solid rgba(0,22,122,0.12); color: var(--navy); padding: 0.65rem 0.85rem; font-size: 0.8rem; margin-top: 0.9rem; display: none; }
.form-success.visible { display: block; }
.form-small-print { font-size: 0.7rem !important; color: #ccc; margin-top: 0.5rem; text-align: center; }
.form-small-print a { color: var(--rust); }

/* Waitlist section */
.waitlist-section { background: #0f0c08; color: var(--white); padding: 5.5rem 2rem; }
.waitlist-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.waitlist-text .section-title.light { font-size: clamp(1.35rem, 2.6vw, 2rem); }
.waitlist-text p     { color: rgba(255,255,255,0.45); font-size: 0.9rem; }
.waitlist-note       { font-size: 0.75rem !important; color: rgba(255,255,255,0.25) !important; margin-top: 0.6rem; }
.waitlist-form .form-group input,
.waitlist-form .form-group select,
.waitlist-form .form-group textarea { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); color: var(--white); }
.waitlist-form .form-group input::placeholder,
.waitlist-form .form-group textarea::placeholder { color: rgba(255,255,255,0.18); }
.waitlist-form .form-group input:focus,
.waitlist-form .form-group select:focus,
.waitlist-form .form-group textarea:focus { border-color: rgba(255,255,255,0.3); }
.waitlist-form .form-group label { color: rgba(255,255,255,0.28); }
.waitlist-form .form-group select option { background: #1a140e; color: var(--white); }

/* ======================================
   POLICIES
   ====================================== */
.policies-section { padding: 5rem 2rem; background: var(--bg); }
.policy-block     { padding: 2.75rem 0; border-bottom: 1px solid var(--border); }
.policy-block:last-child { border-bottom: none; }
.policy-block h2  { font-size: 1.4rem; margin-bottom: 1rem; }
.policy-block h3  { font-size: 0.85rem; font-weight: 400; font-style: normal; margin: 1.35rem 0 0.55rem; color: var(--muted); }
.policy-block p   { font-size: 0.9rem; color: #666; }
.policy-list      { list-style: none; margin: 0.6rem 0; }
.policy-list li   { padding: 0.5rem 0 0.5rem 1.35rem; border-bottom: 1px solid var(--border); font-size: 0.85rem; color: #666; position: relative; }
.policy-list li::before { content: '—'; position: absolute; left: 0; color: #ccc; font-style: normal; }
.policy-callout   { background: var(--white); border-left: 2px solid #e8e2dc; padding: 1rem 1.25rem; margin: 1.15rem 0; font-size: 0.85rem; color: #888; font-style: italic; }

/* ======================================
   FOOTER
   ====================================== */
.footer       { background: var(--black); color: rgba(255,255,255,0.4); padding: 5rem 2rem 2rem; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; max-width: var(--max-w); margin: 0 auto; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo  { display: block; margin-bottom: 0.5rem; }
.footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.75; }
.footer-logo-text { font-family: var(--font-label); font-style: normal; font-size: 0.9rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; }
.footer-tagline { font-size: 0.8rem; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a { font-family: var(--font-label); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color 0.2s; font-style: normal; }
.footer-social a:hover { color: var(--blush); }

.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-col h4 { font-family: var(--font-label); font-size: 0.58rem; font-style: normal; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.85rem; font-weight: 400; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.4rem; }
.footer-col a  { color: rgba(255,255,255,0.3); font-size: 0.8rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }

.footer-newsletter { display: flex; margin-bottom: 0.55rem; }
.footer-newsletter input { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-right: none; padding: 0.6rem 0.8rem; font-family: var(--font-body); font-style: italic; font-weight: 300; color: var(--white); font-size: 0.8rem; outline: none; }
.footer-newsletter input:focus { border-color: rgba(255,255,255,0.2); }
.footer-newsletter button { background: var(--blush); border: none; color: var(--black); padding: 0.6rem 0.9rem; font-family: var(--font-body); font-style: normal; font-weight: 400; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.footer-newsletter button:hover { background: var(--white); }
.footer-newsletter-note { font-size: 0.7rem; line-height: 1.5; }
.footer-newsletter-msg  { font-size: 0.75rem; margin-top: 0.4rem; color: var(--blush); }

.footer-bottom { max-width: var(--max-w); margin: 2rem auto 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.7rem; }
.footer-bottom a { color: rgba(255,255,255,0.2); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* Booking success */
.booking-success    { text-align: center; padding: 4rem 2rem; max-width: 500px; margin: 0 auto; }
.booking-success h2 { font-size: 1.7rem; margin-bottom: 0.9rem; }
.booking-success p  { font-size: 0.92rem; color: #777; margin-bottom: 1.75rem; }

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { height: 55vw; min-height: 300px; }
  .hero-text { padding: 3.5rem 2.5rem; }
  .hero-logo-img { width: 160px; }

  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-portrait { aspect-ratio: 4/3; }
  .about-grid, .service-grid,
  .timeline-grid, .booking-grid, .waitlist-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-img-accent, .service-img-secondary { display: none; }
  .service-grid--reversed .service-text   { order: 1; }
  .service-grid--reversed .service-gallery { order: 2; }
  .about-img-main { height: 360px; }
  .service-img-main { height: 320px; }
  .who-best-grid { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }
  .editorial-strip { grid-template-columns: repeat(2, 1fr); height: 380px; }
  .process-snippet { padding: 6rem 2rem; }
  .tier-cards { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .principles-grid .principle-card:nth-child(2n) { border-right: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--bg); padding: 1.5rem 2rem; gap: 1.15rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav { padding: 0 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.75rem; }
  .compare-table th, .compare-table td { padding: 0.6rem 0.45rem; }
  .editorial-strip { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .container, .container-narrow { padding: 0 1.25rem; }
  .page-hero { padding: 5rem 1.25rem 3rem; }
  .about-photo-strip { grid-template-columns: 1fr; }
  .about-strip-img { height: 280px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid .principle-card { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; max-width: 260px; text-align: center; }
}
