﻿/* ═══════════════════════════════════════════════════════
   WILD SOMATICS — GLOBAL STYLESHEET
   Shared across all pages. Page-specific accents live in
   each HTML file's <style> block (--accent, hero bg).
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@300;400;600&family=Share+Tech+Mono&family=Cormorant+Garamond:ital,wght@0,200;0,300;0,400;1,200;1,300;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #c01418;
  --red-dk: #7a0608;
  --amber: #d4920e;
  --amber-lt: #f0b830;
  --gold: #b08828;
  --teal: #00c8a8;
  --teal-dk: #008870;
  --blue: #5888a8;
  --blue-lt: #88b8d8;
  --fog: #ede5d5;
  --fog-dk: #b09070;
  --bone: #ccc4b0;
  --deep: #07090b;
  --deep2: #0c0102;
  --white: #f0ece2;
  --ink: #06080a;

  --ds1-amber: var(--amber);
  --ds1-amber-lt: var(--amber-lt);
  --ds1-gold: #a87010;
  --ds1-teal: var(--teal);
  --ds1-teal-dk: var(--teal-dk);
  --ds1-charcoal: #1c1e20;
  --ds1-dark: #0e1012;
  --ds1-grey: #6a7070;
  --ds1-bone: var(--bone);
  --ds2-crimson: var(--red);
  --ds2-crimson-dk: var(--red-dk);
  --ds2-blue: var(--blue);
  --ds2-blue-lt: var(--blue-lt);
  --ds2-fog: var(--fog);
  --ds2-fog-dk: var(--fog-dk);
  --ds2-deep: #080102;
  --ds2-gold: var(--gold);

  --accent: var(--red);
  --accent-rgba: rgba(192, 20, 24, 0.6);

  --title: 'Cinzel', serif;
  --mono: 'Share Tech Mono', monospace;
  --serif: 'Cormorant Garamond', Georgia, serif;

  /* UI labels / nav only (mono, uppercase). Body copy uses --text-body below. */
  --font-scale: 1;
  --text-ui: 0.52rem;

  /* Main reading size — raise this (e.g. 1.15rem, 1.2rem) for larger paragraphs. */
  --text-body: 1.35rem;
  --text-body-sm: calc(var(--text-body) * 0.92);
  --text-lead: calc(var(--text-body) * 1.08);
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  background: var(--deep);
  color: var(--white);
  font-family: var(--serif);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
}
/* NAV */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(7,9,11,0.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(192,20,24,0.1);
}
.nav-logo {
  font-family: var(--title); font-weight: 300;
  font-size: calc(0.95rem * var(--font-scale)); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--ds2-crimson); }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  font-family: var(--mono); font-size: calc(var(--text-ui) * var(--font-scale));
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,236,226,0.32); text-decoration: none;
  padding: 0.5rem 1.1rem; position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 1.1rem; right: 1.1rem;
  height: 1px; background: var(--ds2-blue);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.nav-links a:hover { color: rgba(240,236,226,0.8); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: rgba(240,236,226,0.88); }
.nav-links a.active::after { transform: scaleX(1); background: var(--accent); }
.nav-status {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: calc(0.46rem * var(--font-scale));
  letter-spacing: 0.2em; color: rgba(0,200,168,0.45);
}
.nav-blink {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ds1-teal); animation: blink 2.5s step-end infinite;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 601;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(240, 236, 226, 0.55);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* INNER HERO */
.inner-hero {
  position: relative; padding-top: 64px; min-height: 62vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.inner-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 55% 35%, #1a1208 0%, #100e06 50%, #06080a 100%);
}
/* botanical ink SVG on hero */
.hero-ink {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.1;
}
/* seam line */
.inner-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.4;
}
.inner-hero-content {
  position: relative; z-index: 5; padding: 0 5rem 5rem;
  max-width: 1280px; width: 100%;
  opacity: 0; animation: riseIn 1.4s ease forwards 0.3s;
}
.ihc-pre {
  font-family: var(--mono); font-size: 0.5rem;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--accent-rgba); opacity: 0.75;
  margin-bottom: 1rem; display: block;
}
.ihc-title {
  font-family: var(--title); font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.15em; text-transform: uppercase; line-height: 0.92;
  color: var(--white); display: block;
  text-shadow: 0 0 60px var(--accent-rgba), 0 2px 16px rgba(0,0,0,0.9);
}
.ihc-sub {
  font-family: var(--serif); font-weight: 200; font-style: italic;
  font-size: clamp(var(--text-lead), 1.6vw, 1.35rem);
  color: rgba(240,236,226,0.38); margin-top: 1.2rem; display: block;
  max-width: 52ch;
}
.ihc-bracket-tl { position: absolute; top: 5rem; left: 2rem; width: 24px; height: 24px; border-top: 1px solid var(--accent-rgba); border-left: 1px solid var(--accent-rgba); opacity: 0.4; }
.ihc-bracket-br { position: absolute; bottom: 1rem; right: 2rem; width: 24px; height: 24px; border-bottom: 1px solid var(--accent-rgba); border-right: 1px solid var(--accent-rgba); opacity: 0.4; }

/* SECTIONS */
.page-body { max-width: 1280px; margin: 0 auto; padding: 0 3.5rem 7rem; }

.section { padding: 5rem 0; border-top: 1px solid rgba(255,255,255,0.04); }
.section:first-child { border-top: none; padding-top: 6rem; }

.section-label {
  font-family: var(--mono); font-size: 0.8rem;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--accent); opacity: 0.6;
  margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::after {
  content: ''; width: 40px; height: 1px;
  background: var(--accent); opacity: 0.3;
}

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.split.fog { gap: 0; }
.split-fog {
  background: linear-gradient(135deg, #ddd0b8 0%, #b09070 100%);
  padding: 5rem 4rem 5rem 5rem; position: relative; overflow: hidden;
}
.split-fog::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.split-dark {
  background: #0e0204; padding: 5rem 4rem;
  position: relative; overflow: hidden;
}

.section-h2 {
  font-family: var(--title); font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); line-height: 1.1; margin-bottom: 1.5rem;
}
.section-h2.light { color: #1a0e08; }
.section-h2 em {
  font-style: italic; font-family: var(--serif); font-weight: 200;
  color: var(--accent); display: block; font-size: 0.7em;
  letter-spacing: 0.04em; text-transform: none; margin-top: 0.3em;
}
.section-h2.light em { color: rgba(90,6,8,0.7); }

.body-text {
  font-size: var(--text-body); line-height: 1.9; font-weight: 300;
  color: rgba(240,236,226,0.42);
}
.body-text.light { color: rgba(25,15,8,0.52); }
.body-text p + p { margin-top: 1.2rem; }
.body-text em { font-style: italic; color: rgba(240,236,226,0.65); }
.body-text.light em { color: rgba(90,6,8,0.6); }

/* Quote block */
.page-quote {
  padding: 5rem 3.5rem; text-align: center;
  border-top: 1px solid rgba(192,20,24,0.08);
  border-bottom: 1px solid rgba(192,20,24,0.08);
  background: linear-gradient(to bottom, #0c0102, #180306, #0c0102);
}
.pq-text {
  font-family: var(--serif); font-weight: 200; font-style: italic;
  font-size: clamp(calc(var(--text-body) * 1.2), 2.2vw, 2rem);
  color: rgba(240,236,226,0.62); line-height: 1.65;
  max-width: 700px; margin: 0 auto 1.5rem;
}
.pq-text em { font-style: normal; color: var(--accent); }
.pq-attr {
  font-family: var(--mono); font-size: 0.5rem;
  letter-spacing: 0.4em; text-transform: uppercase; color: rgba(88,136,168,0.35);
}

/* List items */
.item-list { display: flex; flex-direction: column; gap: 0; }
.list-item {
  display: flex; align-items: baseline; gap: 1.5rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: padding-left 0.2s;
}
.list-item:first-child { border-top: 1px solid rgba(255,255,255,0.04); }
.list-item:hover { padding-left: 0.4rem; }
.li-num {
  font-family: var(--mono); font-size: 0.46rem;
  letter-spacing: 0.2em; color: var(--accent); opacity: 0.4;
  width: 2.5rem; flex-shrink: 0;
}
.li-name {
  font-family: var(--mono); font-size: 1rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(240,236,226,0.38);
}
.li-desc {
  font-family: var(--serif); font-size: var(--text-body-sm);
  color: rgba(240,236,226,0.22); font-style: italic;
  margin-left: auto; text-align: right; max-width: 28ch;
}

/* Tags */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.tag {
  font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.35rem 0.8rem;
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
  border: 1px solid var(--accent); color: var(--accent); opacity: 0.55;
}

/* Back / CTA */
.page-cta {
  display: flex; gap: 1.5rem; align-items: center; margin-top: 3rem;
  flex-wrap: wrap;
}
.cta-btn {
  font-family: var(--mono); font-size: 0.56rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(240,236,226,0.6); background: none;
  border: 1px solid rgba(192,20,24,0.25); padding: 0.8rem 1.8rem;
  text-decoration: none; transition: all 0.25s; display: inline-block;
}
.cta-btn:hover { border-color: var(--accent); color: var(--white); }
.cta-btn.primary {
  background: var(--accent); color: #06080a;
  border-color: var(--accent);
}
.cta-btn.primary:hover { opacity: 0.85; }
.back-link {
  font-family: var(--mono); font-size: 0.52rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,236,226,0.22); text-decoration: none;
  transition: color 0.2s;
}
.back-link:hover { color: rgba(240,236,226,0.55); }

/* CONTACT STRIP */
.contact-strip {
  background: #0c0102; border-top: 1px solid rgba(192,20,24,0.12);
  padding: 5rem 3.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  max-width: 1280px; margin: 0 auto;
}
.cs-left h3 {
  font-family: var(--title); font-weight: 300;
  font-size: 2rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1rem; line-height: 1.1;
}
.cs-left h3 em { font-style: italic; font-family: var(--serif); color: var(--accent); }
.cs-left p {
  font-size: var(--text-body-sm); line-height: 1.85; font-weight: 300;
  color: rgba(240,236,226,0.38); max-width: 38ch; margin-bottom: 2rem;
}
.form-field { position: relative; border-bottom: 1px solid rgba(192,20,24,0.09); }
.form-field:first-of-type { border-top: 1px solid rgba(192,20,24,0.09); }
.form-field label {
  display: block; font-family: var(--mono); font-size: 0.46rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(88,136,168,0.3); padding-top: 1.1rem;
}
.form-field input, .form-field textarea {
  display: block; width: 100%; background: transparent;
  border: none; outline: none; color: rgba(240,236,226,0.75);
  font-family: var(--serif); font-size: var(--text-body); font-weight: 200; font-style: italic;
  padding: 0.4rem 0 1.1rem; resize: none;
}
.form-field input::placeholder, .form-field textarea::placeholder {
  color: rgba(240,236,226,0.1); font-style: italic;
}
.form-field::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 1px; width: 0; background: var(--accent); transition: width 0.4s;
}
.form-field:focus-within::after { width: 100%; }
.form-btn {
  margin-top: 2rem; display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--mono); font-size: 0.54rem;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(240,236,226,0.6); background: none;
  border: 1px solid rgba(192,20,24,0.25); padding: 0.8rem 1.8rem;
  cursor: pointer; transition: all 0.25s;
}
.form-btn:hover { border-color: var(--accent); color: var(--white); background: rgba(88,136,168,0.05); }

/* FOOTER */
.site-footer {
  background: #050001; border-top: 1px solid rgba(192,20,24,0.08);
  padding: 2rem 3.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: var(--title); font-weight: 300;
  font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(240,236,226,0.15); text-decoration: none;
}
.footer-logo span { color: rgba(192,20,24,0.4); }
.footer-mid {
  display: flex; gap: 1.5rem;
  font-family: var(--mono); font-size: 0.46rem;
  letter-spacing: 0.22em; color: rgba(240,236,226,0.1);
}
.footer-links { display: flex; gap: 0; list-style: none; }
.footer-links a {
  font-family: var(--mono); font-size: 0.46rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(240,236,226,0.14); text-decoration: none;
  padding: 0.3rem 0.8rem; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(240,236,226,0.4); }


/* â”€â”€ MEDIA SECTIONS â”€â”€ */
.media-section { padding: 5rem 0; border-top: 1px solid rgba(255,255,255,0.04); }
.media-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.04); }
.media-grid-2 { display: grid; grid-template-columns: 2fr 1fr; gap: 1px; background: rgba(255,255,255,0.04); }
.media-grid-tall { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.04); }

.photo-placeholder {
  position: relative; overflow: hidden; background: #0c0102;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer;
}
.photo-placeholder.tall { min-height: 480px; }
.photo-placeholder.medium { min-height: 320px; }
.photo-placeholder.wide { min-height: 260px; }
.photo-placeholder.square { aspect-ratio: 1; }

/* Atmospheric gradient backgrounds â€” each placeholder has its own mood */
.photo-placeholder.mood-fog { background: radial-gradient(ellipse 80% 80% at 40% 40%, #c8b090 0%, #a08060 50%, #6a4830 100%); }
.photo-placeholder.mood-dark { background: radial-gradient(ellipse 70% 70% at 60% 50%, #2a0406 0%, #140102 60%, #050001 100%); }
.photo-placeholder.mood-teal { background: radial-gradient(ellipse 70% 70% at 40% 60%, #041410 0%, #020c08 60%, #010604 100%); }
.photo-placeholder.mood-amber { background: radial-gradient(ellipse 70% 70% at 55% 45%, #1a1208 0%, #0e0c06 60%, #06080a 100%); }
.photo-placeholder.mood-blue { background: radial-gradient(ellipse 70% 70% at 50% 40%, #060a12 0%, #040608 60%, #020304 100%); }
.photo-placeholder.mood-nature { background: radial-gradient(ellipse 80% 80% at 30% 60%, #0a1208 0%, #060e06 55%, #020402 100%); }

/* The + icon and label */
.ph-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding: 2rem; text-align: center; position: relative; z-index: 2;
}
.ph-plus {
  width: 44px; height: 44px; border: 1px solid rgba(240,236,226,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: rgba(240,236,226,0.2); flex-shrink: 0;
}
.ph-type { font-family: var(--mono); font-size: 0.48rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(240,236,226,0.22); }
.ph-hint { font-family: var(--serif); font-size: var(--text-body-sm); font-weight: 200; font-style: italic; color: rgba(240,236,226,0.15); line-height: 1.6; max-width: 22ch; }

/* How to replace a placeholder â€” shown in HTML comments for each */
/* To add a real image: replace <div class="photo-placeholder ..."> with:
   <div class="photo-placeholder [mood-class]" style="background-image:url('your-image.jpg');background-size:cover;background-position:center;">
   Keep everything inside â€” the overlay will sit on top of your photo. */

/* Overlay on hover */
.photo-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.15);
  opacity: 0; transition: opacity 0.3s;
}
.photo-placeholder:hover::after { opacity: 1; }

/* VIDEO PLACEHOLDER */
.video-placeholder {
  position: relative; overflow: hidden;
  background: #080102; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder.wide { min-height: 500px; }
/* How to add a real video:
   Replace the .video-placeholder div with:
   <div class="video-placeholder">
     <video autoplay muted loop playsinline style="width:100%;height:100%;object-fit:cover;position:absolute;inset:0;">
       <source src="your-video.mp4" type="video/mp4">
     </video>
     <div class="vp-overlay"></div>  (keep this for the text overlay)
   </div>
   Or for a YouTube/Vimeo embed, use an iframe with style="width:100%;height:100%;border:none;position:absolute;inset:0;" */
.vp-inner {
  position: relative; z-index: 2; display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem; text-align: center; padding: 3rem;
}
.vp-play {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid rgba(240,236,226,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s;
}
.video-placeholder:hover .vp-play { border-color: rgba(240,236,226,0.5); }
.vp-play svg { margin-left: 4px; }
.vp-label { font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(240,236,226,0.28); }
.vp-hint { font-family: var(--serif); font-size: var(--text-body-sm); font-weight: 200; font-style: italic; color: rgba(240,236,226,0.18); }
.video-placeholder-bg {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.01) 30px, rgba(255,255,255,0.01) 31px);
}

/* MEDIA CAPTION */
.media-caption { font-family: var(--mono); font-size: 0.44rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(240,236,226,0.15); margin-top: 0.8rem; }

/* CTA BAR */
.cta-bar {
  margin-top: 4rem; padding: 3rem 3.5rem;
  background: rgba(192,20,24,0.04); border: 1px solid rgba(192,20,24,0.1);
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cta-bar-text h4 { font-family: var(--title); font-weight: 300; font-size: 1.1rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(240,236,226,0.7); margin-bottom: 0.4rem; }
.cta-bar-text p { font-family: var(--serif); font-size: var(--text-body-sm); font-weight: 300; font-style: italic; color: rgba(240,236,226,0.28); }
.cta-bar-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }
.cta-primary { font-family: var(--mono); font-size: 0.54rem; letter-spacing: 0.25em; text-transform: uppercase; color: #06080a; background: var(--accent,#c01418); border: none; padding: 0.85rem 1.8rem; text-decoration: none; display: inline-block; transition: opacity 0.25s; clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 0 100%); }
.cta-primary:hover { opacity: 0.82; }
.cta-secondary { font-family: var(--mono); font-size: 0.54rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(240,236,226,0.45); background: none; border: 1px solid rgba(240,236,226,0.12); padding: 0.85rem 1.8rem; text-decoration: none; display: inline-block; transition: all 0.25s; }
.cta-secondary:hover { border-color: rgba(240,236,226,0.35); color: rgba(240,236,226,0.75); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.04); padding: 1.5rem 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.04); }
.faq-q { display: flex; justify-content: space-between; align-items: baseline; gap: 2rem; }
.faq-question { font-family: var(--serif); font-size: 1.05rem; font-weight: 300; color: rgba(240,236,226,0.65); line-height: 1.4; }
.faq-toggle { font-family: var(--mono); font-size: 0.8rem; color: rgba(192,20,24,0.4); flex-shrink: 0; transition: transform 0.25s, color 0.25s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); color: rgba(192,20,24,0.7); }
.faq-answer { font-family: var(--serif); font-size: var(--text-body-sm); font-weight: 300; font-style: italic; color: rgba(240,236,226,0.32); line-height: 1.85; margin-top: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, margin-top 0.3s; }
.faq-item.open .faq-answer { max-height: 300px; margin-top: 1rem; }

/* ANIMATIONS */
@keyframes riseIn { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:none} }
@keyframes blink   { 0%,100%{opacity:1} 50%{opacity:0} }
.reveal { opacity:0; transform:translateY(20px); transition:opacity 0.85s ease, transform 0.85s ease; }
.reveal.in { opacity:1; transform:none; }
/* ── BOOKING PAGE ── */
/* HERO */
.page-hero {
  position: relative; padding-top: 64px; min-height: 45vh;
  display: flex; align-items: flex-end; overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(192,20,24,0.15) 0%, transparent 65%), var(--deep2);
}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--red), transparent); opacity: 0.35; }
.hero-content { position: relative; z-index: 5; padding: 0 5rem 5rem; opacity: 0; animation: riseIn 1.4s ease forwards 0.3s; }
.hero-pre { font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.5em; text-transform: uppercase; color: rgba(192,20,24,0.6); margin-bottom: 1rem; display: block; }
.hero-title { font-family: var(--title); font-weight: 300; font-size: clamp(2.8rem, 6vw, 6rem); letter-spacing: 0.15em; text-transform: uppercase; line-height: 0.92; color: var(--white); display: block; text-shadow: 0 0 60px rgba(192,20,24,0.25), 0 2px 16px rgba(0,0,0,0.9); }
.hero-sub { font-family: var(--serif); font-weight: 200; font-style: italic; font-size: var(--text-lead); color: rgba(240,236,226,0.35); margin-top: 1.2rem; display: block; max-width: 52ch; }

/* BODY */
.page-body { max-width: 1280px; margin: 0 auto; padding: 6rem 3.5rem 7rem; }

/* BEFORE YOU BOOK */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; margin-bottom: 5rem; align-items: start; }
.intro-text { font-size: var(--text-body); line-height: 1.9; font-weight: 300; color: rgba(240,236,226,0.42); }
.intro-text p + p { margin-top: 1.2rem; }
.intro-text em { font-style: italic; color: rgba(240,236,226,0.65); }

/* SESSION TYPE SELECTOR */
.session-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(192,20,24,0.1); margin-bottom: 5rem; }
.session-type {
  background: #0c0102; padding: 2.2rem 2rem;
  cursor: pointer; position: relative; overflow: hidden;
  transition: background 0.25s;
  border: none; text-align: left; color: inherit;
}
.session-type::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.25s, box-shadow 0.25s; }
.session-type:hover, .session-type.selected { background: rgba(192,20,24,0.06); }
.session-type:hover::before, .session-type.selected::before { background: var(--red); box-shadow: 0 0 12px rgba(192,20,24,0.4); }
.session-type.selected .st-check { opacity: 1; }
.st-num { font-family: var(--mono); font-size: 0.46rem; letter-spacing: 0.3em; color: rgba(192,20,24,0.3); margin-bottom: 1.2rem; }
.st-name { font-family: var(--title); font-weight: 300; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(240,236,226,0.8); margin-bottom: 0.6rem; }
.st-desc { font-family: var(--serif); font-size: var(--text-body-sm); font-weight: 300; font-style: italic; color: rgba(240,236,226,0.3); line-height: 1.7; margin-bottom: 0.8rem; }
.st-detail { font-family: var(--mono); font-size: 0.46rem; letter-spacing: 0.18em; color: rgba(88,136,168,0.45); }
.st-check { position: absolute; top: 1rem; right: 1rem; width: 8px; height: 8px; border-radius: 50%; background: var(--red); opacity: 0; transition: opacity 0.2s; box-shadow: 0 0 8px rgba(192,20,24,0.6); }

/* SECTION LABEL */
.section-label { font-family: var(--mono); font-size: 1rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--red); opacity: 0.6; margin-bottom: 2rem; display: flex; align-items: center; gap: 0.8rem; }
.section-label::after { content: ''; width: 40px; height: 1px; background: rgba(192,20,24,0.25); }

/* CALENDLY EMBED */
.calendly-wrap {
  border: 1px solid rgba(192,20,24,0.12);
  position: relative; overflow: hidden;
  background: #0c0102;
}
.calendly-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(192,20,24,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.ch-title { font-family: var(--title); font-weight: 300; font-size: 1.1rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(240,236,226,0.7); }
.ch-status { font-family: var(--mono); font-size: 0.48rem; letter-spacing: 0.22em; color: rgba(0,200,168,0.5); display: flex; align-items: center; gap: 0.5rem; }
.ch-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); animation: blink 2.5s step-end infinite; }

/* â”€â”€ CALENDLY PLACEHOLDER
   When you have your Calendly URL, replace everything inside
   .calendly-placeholder with a real embed:

   <div class="calendly-inline-widget"
        data-url="https://calendly.com/YOUR-USERNAME"
        style="min-width:320px;height:700px;">
   </div>
   <script src="https://assets.calendly.com/assets/external/widget.js"></script>

   That's the only change needed. â”€â”€ */
.calendly-placeholder {
  padding: 5rem 3rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 2rem; min-height: 420px;
  background: repeating-linear-gradient(
    90deg, transparent 0px, transparent 60px,
    rgba(192,20,24,0.03) 60px, rgba(192,20,24,0.03) 61px
  ),
  repeating-linear-gradient(
    0deg, transparent 0px, transparent 60px,
    rgba(192,20,24,0.03) 60px, rgba(192,20,24,0.03) 61px
  );
}
.cp-icon { opacity: 0.2; }
.cp-heading { font-family: var(--title); font-weight: 300; font-size: 1.4rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(240,236,226,0.5); }
.cp-body { font-family: var(--serif); font-size: var(--text-body); font-weight: 300; font-style: italic; color: rgba(240,236,226,0.25); max-width: 45ch; line-height: 1.8; }
.cp-instructions {
  background: rgba(192,20,24,0.06); border: 1px solid rgba(192,20,24,0.15);
  padding: 1.5rem 2rem; max-width: 550px; text-align: left;
}
.cp-instructions p { font-family: var(--mono); font-size: 0.52rem; letter-spacing: 0.15em; color: rgba(240,236,226,0.35); line-height: 2; }
.cp-instructions strong { color: rgba(192,20,24,0.6); font-weight: 400; }
.cp-link { display: inline-block; margin-top: 1.5rem; font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white); background: var(--red); padding: 0.85rem 2rem; text-decoration: none; transition: background 0.25s; }
.cp-link:hover { background: var(--amber); color: #06080a; }

/* AVAILABILITY NOTE */
.availability-note {
  margin-top: 3rem; padding: 2rem 2.5rem;
  border: 1px solid rgba(212,146,14,0.12);
  background: rgba(212,146,14,0.03);
  display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start;
}
.an-icon { font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.15em; color: rgba(212,146,14,0.5); padding-top: 0.15rem; white-space: nowrap; }
.an-text { font-family: var(--serif); font-size: var(--text-body-sm); font-weight: 300; line-height: 1.85; color: rgba(240,236,226,0.38); }
.an-text strong { color: rgba(212,146,14,0.6); font-weight: 300; }

/* WHAT HAPPENS NEXT */
.next-steps { margin-top: 5rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.04); margin-top: 2.5rem; }
.step { background: #07090b; padding: 2rem 1.8rem; }
.step-num { font-family: var(--title); font-size: 2.5rem; font-weight: 300; color: rgba(192,20,24,0.2); line-height: 1; margin-bottom: 1rem; }
.step-title { font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(240,236,226,0.45); margin-bottom: 0.6rem; }
.step-body { font-family: var(--serif); font-size: var(--text-body-sm); font-weight: 300; font-style: italic; color: rgba(240,236,226,0.25); line-height: 1.7; }

/* NOT SURE? */
.not-sure {
  margin-top: 5rem; padding: 4rem 5rem;
  background: linear-gradient(135deg, #ccc0a8 0%, #9a7850 100%);
  display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center;
}
.ns-text h3 { font-family: var(--title); font-weight: 300; font-size: 1.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: #1a0e08; margin-bottom: 0.8rem; }
.ns-text h3 em { font-style: italic; font-family: var(--serif); color: rgba(90,6,8,0.65); }
.ns-text p { font-family: var(--serif); font-size: var(--text-body); font-weight: 300; color: rgba(25,15,8,0.52); line-height: 1.85; max-width: 45ch; }
.ns-btn { font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.28em; text-transform: uppercase; color: #1a0e08; background: none; border: 1px solid rgba(25,15,8,0.3); padding: 0.9rem 2rem; text-decoration: none; white-space: nowrap; transition: all 0.25s; display: inline-block; }
.ns-btn:hover { background: rgba(25,15,8,0.08); }


/* ── ENQUIRY PAGE ── */
/* HERO â€” fog split */
.enquiry-hero {
  position: relative; padding-top: 64px; min-height: 100vh;
  display: flex; overflow: hidden;
}
.eh-fog {
  width: 44%; position: relative;
  background: radial-gradient(ellipse 110% 120% at 20% 60%, #eee5d2 0%, #d4bfa0 50%, #9a7255 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 4rem 8rem 5.5rem; overflow: hidden;
}
.eh-fog::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, rgba(192,20,24,0.5), transparent); }
.eh-dark {
  width: 56%; background: radial-gradient(ellipse 60% 80% at 70% 35%, #2a0406 0%, #140102 55%, #050001 100%);
  display: flex; align-items: center; padding: 8rem 5rem;
}

.eh-fog h1 { font-family: var(--title); font-weight: 300; font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: 0.1em; text-transform: uppercase; color: #1a0e08; line-height: 1.1; margin-bottom: 1rem; }
.eh-fog h1 em { font-style: italic; font-family: var(--serif); color: rgba(90,6,8,0.65); }
.eh-fog .fog-body { font-family: var(--serif); font-size: var(--text-body); font-weight: 300; color: rgba(25,15,8,0.48); line-height: 1.9; max-width: 38ch; margin-bottom: 2.5rem; }
.eh-fog .fog-body em { font-style: italic; color: rgba(90,6,8,0.55); }

/* Contact meta */
.contact-details { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2.5rem; }
.cd-row { display: flex; gap: 1rem; align-items: center; font-family: var(--mono); font-size: 0.48rem; letter-spacing: 0.2em; }
.cd-key { color: rgba(90,6,8,0.4); width: 5.5rem; flex-shrink: 0; }
.cd-val { color: rgba(25,15,8,0.38); }

.response-note { font-family: var(--mono); font-size: 0.48rem; letter-spacing: 0.18em; color: rgba(25,15,8,0.25); border-top: 1px solid rgba(25,15,8,0.1); padding-top: 1.2rem; }

/* FORM */
.enquiry-form { width: 100%; display: flex; flex-direction: column; gap: 0; }

.form-field { position: relative; border-bottom: 1px solid rgba(192,20,24,0.1); }
.form-field:first-of-type { border-top: 1px solid rgba(192,20,24,0.1); }
.form-field label { display: block; font-family: var(--mono); font-size: 0.46rem; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(88,136,168,0.32); padding-top: 1.2rem; }
.form-field input, .form-field textarea, .form-field select {
  display: block; width: 100%; background: transparent; border: none; outline: none;
  color: rgba(240,236,226,0.78); font-family: var(--serif); font-size: var(--text-body); font-weight: 200; font-style: italic;
  padding: 0.4rem 0 1.2rem; resize: none;
}
.form-field select option { background: #0c0102; color: var(--white); font-style: normal; }
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(240,236,226,0.1); font-style: italic; }
.form-field::after { content: ''; position: absolute; bottom: 0; left: 0; height: 1px; width: 0; background: var(--blue); transition: width 0.4s; }
.form-field:focus-within::after { width: 100%; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
.form-grid .form-field { border-bottom: 1px solid rgba(192,20,24,0.1); }

.form-btn { margin-top: 2.5rem; display: inline-flex; align-items: center; gap: 1rem; font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--white); background: var(--red); border: none; padding: 1rem 2.2rem; cursor: pointer; transition: background 0.25s; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%); }
.form-btn:hover { background: var(--amber); color: #06080a; }

/* CONFIRMATION (hidden by default) */
.form-confirm { display: none; text-align: center; padding: 3rem 2rem; }
.form-confirm.visible { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.fc-icon { width: 40px; height: 40px; border: 1px solid rgba(0,200,168,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.fc-title { font-family: var(--title); font-weight: 300; font-size: 1.4rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(240,236,226,0.7); }
.fc-body { font-family: var(--serif); font-size: var(--text-body); font-weight: 300; font-style: italic; color: rgba(240,236,226,0.35); line-height: 1.8; max-width: 40ch; }

/* OFFERINGS GRID (lower section) */
.offerings-prompt { max-width: 1280px; margin: 0 auto; padding: 7rem 3.5rem; }
.op-label { font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--red); opacity: 0.6; margin-bottom: 2.5rem; display: flex; align-items: center; gap: 0.8rem; }
.op-label::after { content: ''; width: 40px; height: 1px; background: rgba(192,20,24,0.25); }
.op-intro { font-family: var(--serif); font-size: var(--text-body); font-weight: 300; font-style: italic; color: rgba(240,236,226,0.38); max-width: 55ch; line-height: 1.85; margin-bottom: 3rem; }
.op-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(192,20,24,0.08); }
.op-card { background: #0c0102; padding: 2rem 1.8rem; text-decoration: none; display: block; position: relative; overflow: hidden; transition: background 0.25s; }
.op-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: transparent; transition: background 0.25s; }
.op-card:hover { background: rgba(192,20,24,0.05); }
.op-card:hover::before { background: var(--red); }
.op-card-num { font-family: var(--mono); font-size: 0.44rem; letter-spacing: 0.3em; color: rgba(192,20,24,0.28); margin-bottom: 1rem; }
.op-card-title { font-family: var(--title); font-weight: 300; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(240,236,226,0.75); margin-bottom: 0.5rem; }
.op-card-body { font-family: var(--serif); font-size: var(--text-body-sm); font-weight: 300; font-style: italic; color: rgba(240,236,226,0.25); line-height: 1.7; }
.op-card-arrow { position: absolute; bottom: 1.5rem; right: 1.5rem; font-family: var(--mono); font-size: 0.6rem; color: rgba(240,236,226,0.15); transition: color 0.2s; }
.op-card:hover .op-card-arrow { color: rgba(192,20,24,0.5); }


/* ── UTILITIES ────────────────────────────────────────── */
.body-text.max-55ch { max-width: 55ch; }
.body-text.max-58ch { max-width: 58ch; }
.body-text.max-60ch { max-width: 60ch; }
.body-text.max-65ch { max-width: 65ch; }
.body-text.max-68ch { max-width: 68ch; }
.body-text.mb-3 { margin-bottom: 3rem; }
.body-text.mt-2-5 { margin-top: 2.5rem; }
.body-text.muted-70 { opacity: 0.7; }
.intro-text.muted { color: rgba(240, 236, 226, 0.3); }
.media-grid-flush { margin-bottom: 1px; }
.media-stack { display: flex; flex-direction: column; gap: 1px; }
.contact-strip.plain { padding: 0; max-width: 100%; background: none; }
.fade-rise-1 { opacity: 0; animation: riseIn 1.4s ease forwards 0.2s; }
.fade-rise-2 { opacity: 0; animation: riseIn 1.6s ease forwards 0.5s; }
.link-inline-red { color: rgba(192, 20, 24, 0.6); text-decoration: none; border-bottom: 1px solid rgba(192, 20, 24, 0.2); }
.link-inline-fog { color: rgba(90, 6, 8, 0.6); text-decoration: none; border-bottom: 1px solid rgba(90, 6, 8, 0.2); }
.link-return { font-family: var(--mono); font-size: 0.52rem; letter-spacing: 0.22em; color: rgba(240, 236, 226, 0.25); text-decoration: none; margin-top: 0.5rem; }
.media-cover video,
.media-cover iframe { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; border: none; }
.calendly-inline-widget { min-width: 320px; height: 700px; }

.page-quote.in-split {
  padding: 3rem;
  background: color-mix(in srgb, var(--accent) 4%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 8%, transparent);
  border-top: 2px solid color-mix(in srgb, var(--accent) 40%, transparent);
}
.pq-text.lead { font-size: var(--text-lead); margin-bottom: 1.2rem; }
.pq-text.lead-sm { font-size: var(--text-body); margin-bottom: 1rem; }

.cta-bar {
  border-color: color-mix(in srgb, var(--accent) 15%, transparent);
  background: color-mix(in srgb, var(--accent) 3%, transparent);
}
.vp-label { color: color-mix(in srgb, var(--accent) 40%, transparent); }
.cta-primary { background: var(--accent); color: var(--ink); }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
  }
  .nav-toggle { display: flex; }
  .nav-status { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    margin-top: 0;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid rgba(192, 20, 24, 0.12);
    background: rgba(7, 9, 11, 0.98);
    backdrop-filter: blur(10px);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: calc(var(--text-ui) * var(--font-scale) * 1.15);
  }
  .nav-links a::after {
    left: 0.25rem;
    right: auto;
    width: 2rem;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .inner-hero-content { padding: 0 1.8rem 4rem; }
  .ihc-title { font-size: clamp(2rem, 10vw, 4rem); }
  .page-body { padding: 0 1.8rem 5rem; }
  .split { grid-template-columns: 1fr; }
  .split-fog, .split-dark { padding: 4rem 2rem; }
  .contact-strip { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 2rem; }
  .media-grid-3, .media-grid-2, .media-grid-tall { grid-template-columns: 1fr; }
  .cta-bar { flex-direction: column; align-items: flex-start; padding: 2rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .session-types { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .not-sure { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2rem; }
  .eh-fog, .eh-dark { width: 100%; }
  .enquiry-hero { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .op-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-content { padding: 0 1.8rem 4rem; }
  .page-hero { min-height: 40vh; }
}

