/* ============================================
   SOUL KEY — BASE STYLES
   Mobile-first, sacred, grounded, not woo-woo
   ============================================ */

:root {
  --cream: #F7F3EE;
  --warm-white: #FDFAF7;
  --charcoal: #1E1E1E;
  --deep: #2A2520;
  --muted-brown: #6B5E52;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --sage: #7A8C7E;
  --dark-section: #1A1714;
  --muted-section: #F0EBE4;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', 'Arial', sans-serif;
  --max-width: 780px;
  --radius: 4px;
  --transition: 0.25s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: normal;
  line-height: 1.25;
  color: var(--deep);
}

h1 { font-size: clamp(2rem, 6vw, 3.2rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--muted-brown); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 2.5rem 0; }
.section-dark {
  background: linear-gradient(160deg, #160830 0%, #0E051F 40%, #1A0A10 100%);
  color: var(--cream);
}
.section-dark h2,
.section-dark h3 { color: var(--gold-light); }
.section-dark p { color: #C0B5AB; }
.section-dark .lead { color: var(--cream); }

.section-muted { background: var(--muted-section); }

/* ============================================
   NAV
   ============================================ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(253, 250, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--deep);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Desktop inline links — hidden on mobile */
.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-brown);
  transition: var(--transition);
}
.nav-link:hover { color: var(--deep); }

/* Hamburger button — shown on mobile, hidden on desktop */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--deep);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
.nav-dropdown {
  position: fixed;
  top: 68px; /* nav height: 1rem padding top + ~36px content + 1rem padding bottom */
  left: 0; right: 0;
  z-index: 99;
  background: rgba(253, 250, 247, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.nav-dropdown.open {
  max-height: 280px;
  padding: 0.5rem 0 1rem;
}
.nav-dropdown-link {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-brown);
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color var(--transition), background var(--transition);
}
.nav-dropdown-link:last-child { border-bottom: none; }
.nav-dropdown-link:hover { color: var(--deep); background: rgba(0,0,0,0.02); }

/* Desktop: show inline links, hide hamburger + dropdown */
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .nav-dropdown { display: none !important; }
}

.nav-cta {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  display: none; /* hidden on mobile — shown on desktop below */
}
.nav-cta:hover {
  background: var(--gold);
  color: white;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 60svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7.5rem 1.25rem 0.4rem;
  background:
    radial-gradient(ellipse at 50% 100%, #3D1200 0%, transparent 50%),
    radial-gradient(ellipse at 50% 85%, #5C1E00 0%, transparent 38%),
    radial-gradient(ellipse at 40% 40%, #2A0E4A 0%, #160830 45%, #080410 100%);
  position: relative;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: url('infinity-backdrop.png');
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

/* fireplace hearth glow at bottom + cool purple atmosphere at top */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 105%, rgba(220, 90, 10, 0.55) 0%, rgba(160, 50, 0, 0.3) 25%, transparent 52%),
    radial-gradient(ellipse at 50% 88%, rgba(255, 130, 20, 0.22) 0%, transparent 35%),
    radial-gradient(ellipse at 25% 20%, rgba(80, 20, 160, 0.45) 0%, transparent 45%),
    radial-gradient(ellipse at 75% 15%, rgba(60, 10, 130, 0.35) 0%, transparent 40%);
  pointer-events: none;
  animation: hearthPulse 4s ease-in-out infinite alternate;
}

/* soft pulsing hearth glow */
@keyframes hearthPulse {
  0%   { opacity: 0.85; }
  100% { opacity: 1; }
}

/* vignette overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

#hero-embers {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  max-width: 640px;
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  white-space: nowrap;
}

.hero h1 {
  font-style: italic;
  color: #F5EDD8;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: #C8B89A;
  margin-bottom: 2.5rem;
  line-height: 1.9;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-primary:hover { background: #b8944f; }

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-secondary:hover { background: var(--gold); color: white; }

/* ============================================
   LEAD VARIANTS
   ============================================ */

.lead-dark {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

/* ============================================
   OFFERINGS GRID (4-up)
   ============================================ */

.offerings-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (min-width: 500px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
}

.offering-card {
  background: var(--cream);
  border: 1px solid var(--gold-light);
  border-top: 3px solid var(--gold);
  padding: 1.5rem;
  border-radius: var(--radius);
}
.offering-card h3 { color: var(--deep); font-size: 0.95rem; letter-spacing: 0.02em; margin-bottom: 0.5rem; }
.offering-card p { font-size: 0.9rem; margin: 0; }

/* ============================================
   PRICE BLOCK
   ============================================ */

.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin: 2rem 0;
}

.price {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--deep);
  line-height: 1;
}

.price-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-brown);
}

.book-container { text-align: center; }
.book-container .lead-dark { margin-bottom: 0; }

/* ============================================
   JOURNEY STEPS
   ============================================ */

.journey-steps { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 2.5rem; }

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  min-width: 2.5rem;
  padding-top: 0.1rem;
}

.step h3 { color: var(--gold-light); margin-bottom: 0.4rem; }
.step p { font-size: 0.95rem; }

/* ============================================
   WHO THIS IS FOR
   ============================================ */

.for-you-grid {
  display: grid;
  gap: 1rem;
  margin: 2.5rem 0;
}

@media (min-width: 600px) {
  .for-you-grid { grid-template-columns: repeat(2, 1fr); }
}

.for-you-item {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
}
.for-you-item p { font-size: 0.95rem; margin: 0; }

.centered-note {
  text-align: center;
  font-style: italic;
  font-size: 1rem;
  color: var(--charcoal) !important;
  margin-top: 2rem;
  padding: 0 1rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 600px) {
  .testimonials { grid-template-columns: repeat(2, 1fr); }
}

blockquote {
  background: white;
  border: 1px solid #E0D8D0;
  padding: 1.75rem;
  border-radius: var(--radius);
  position: relative;
}

blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--deep);
  margin-bottom: 1rem;
  line-height: 1.6;
}

blockquote cite {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

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


.img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--muted-section);
  border: 1px dashed var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { font-size: 0.97rem; }
.about-text em { color: var(--charcoal); font-style: italic; }

/* ============================================
   FAQ
   ============================================ */

.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-light);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  transition: var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: rgba(201,169,110,0.05); }

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: #C0B5AB;
  margin: 0;
}

.faq-cta {
  margin-top: 3.5rem;
  text-align: center;
}
.faq-cta p { color: var(--cream); margin-bottom: 1.25rem; font-size: 1rem; }

/* ============================================
   BOOKING
   ============================================ */

.book-container { text-align: center; }
.book-container .lead { margin-bottom: 3rem; }

.book-steps {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
  .book-steps { grid-template-columns: repeat(2, 1fr); }
}

.book-step {
  background: var(--cream);
  border: 1px solid var(--gold-light);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.book-step p { color: var(--muted-brown); font-size: 0.95rem; margin: 0; }

.step-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.value-stack {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 2rem auto;
  max-width: 480px;
  text-align: left;
}

.value-item {
  font-size: 0.95rem;
  color: var(--muted-brown);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gold-light);
}

.nav-logo-img {
  width: 56px;
  height: 56px;
  vertical-align: middle;
  margin-right: 6px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.about-closing {
  font-style: italic;
  color: var(--muted-brown);
  margin-bottom: 1.75rem;
}

.faq-list-items {
  margin: 0.75rem 0 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.faq-list-items li {
  font-size: 0.95rem;
  color: #C0B5AB;
  line-height: 1.5;
}

.martin-card {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 6px;
  background: rgba(201, 169, 110, 0.04);
}
.martin-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-brown);
  margin-bottom: 0.25rem;
}
.martin-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 0.2rem;
}
.martin-subtitle {
  font-size: 0.78rem;
  color: var(--muted-brown);
  margin-bottom: 1rem;
}
.martin-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.martin-highlight {
  font-size: 0.85rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.martin-divider {
  margin-top: 1.5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.5), transparent);
  box-shadow: 0 0 6px rgba(201, 169, 110, 0.2);
}

.practitioner-byline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.about-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  border: 1px solid var(--gold);
  flex-shrink: 0;
}

.practitioner-name {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
  font-style: italic;
}
.practitioner-title {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-brown);
  margin-bottom: 1.25rem;
}

/* Ember section */
.journey-ember-section {
  position: relative;
  overflow: hidden;
}
#ember-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.journey-ember-section .container {
  position: relative;
  z-index: 1;
}

.scarcity-note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
  margin: 1rem 0 1.75rem;
}

.book-note {
  font-size: 0.9rem;
  color: var(--muted-brown);
}
.book-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Cal.com button reset */
button.btn-primary {
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

/* What happens next — 3-step post-booking flow */
.after-booking {
  margin: 2.5rem auto 0;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.after-booking-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.9rem 1.5rem 0.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--gold-light);
}

.after-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--gold-light);
}
.after-step:last-child { border-bottom: none; }

.after-step-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.7;
  min-width: 1.4rem;
  line-height: 1.4;
}

.after-step-text {
  font-size: 0.88rem;
  color: var(--muted-brown);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  text-align: left;
}

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

footer {
  background: linear-gradient(160deg, #160830 0%, #0E051F 50%, #1A0A10 100%);
  padding: 4rem 1.25rem 2.5rem;
  text-align: center;
}
.footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.footer-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  mix-blend-mode: screen;
}
.footer-info {
  margin-bottom: 1.5rem;
}
.footer-phone a {
  color: var(--gold-light);
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.footer-phone a:hover { color: var(--gold); }

.footer-contact-form {
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.footer-contact-title {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5A5450;
  margin-bottom: 1rem;
}
.contact-input,
.contact-textarea {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.75rem;
  outline: none;
  transition: border-color 0.2s;
}
.contact-input::placeholder,
.contact-textarea::placeholder { color: #4A4440; }
.contact-input:focus,
.contact-textarea:focus { border-color: var(--gold); }
.contact-textarea { resize: vertical; }
.contact-submit {
  width: 100%;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.25s ease;
}
.contact-submit:hover {
  background: var(--gold);
  color: var(--deep);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-email {
  margin-bottom: 0.75rem;
}
.footer-email a {
  color: var(--gold-light);
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.footer-email a:hover {
  color: var(--gold);
}

.footer-copy {
  color: #5A5450;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.footer-note {
  font-size: 0.72rem;
  color: #5A5450;
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================
   VIDEO PLACEHOLDER
   ============================================ */

.video-section {
  background: var(--cream);
  padding: 4rem 1.25rem;
  text-align: center;
}

.video-section h2 {
  margin-bottom: 1rem;
}

.video-section p {
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: 0.97rem;
}

.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.video-placeholder {
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2A1540 0%, #1A0D2E 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,169,110,0.3);
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.08) 0%, transparent 70%);
}

.video-mute-btn {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.5);
  background: rgba(20, 10, 35, 0.8);
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  z-index: 5;
}
.video-mute-btn:hover {
  background: rgba(20, 10, 35, 0.95);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--gold);
  margin-left: 4px;
}

.video-placeholder-label {
  position: absolute;
  bottom: 1rem;
  left: 0; right: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.5);
  z-index: 1;
}

/* ============================================
   DESKTOP LAYOUT (960px+)
   ============================================ */

@media (min-width: 960px) {
  /* Wider container */
  .container {
    max-width: 960px;
    padding: 0 2.5rem;
  }

  /* More breathing room in sections */
  .section { padding: 5rem 0; }

  /* Taller hero */
  .hero { min-height: 75svh; }

  /* Show Book a Session button in nav on desktop */
  .nav-cta { display: inline-block; }

  /* Offerings: 4 columns */
  .offerings-grid { grid-template-columns: repeat(4, 1fr); }

  /* Journey steps: horizontal 3-up */
  .journey-steps {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }
  .step { flex-direction: column; flex: 1; gap: 0.75rem; }
  .step-num { font-size: 2.5rem; }

  /* Testimonials: 3 columns */
  .testimonials { grid-template-columns: repeat(3, 1fr); }

  /* About: 2-column (bio left, Martin card right) */
  .about-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .about-text h2 { grid-column: 1 / -1; }
  .about-bio { grid-column: 1; }
  .martin-card { grid-column: 2; margin-top: 0; }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1100px;
  }
}
