/* ===== header.css ===== */
/* ============================================================
   HEADER  ·  Shivoham Retreat
   Fonts  : Cormorant (display) + DM Sans (body)
   Palette: Pine & Champagne
   ============================================================ */

/* Fonts: load via <link rel="preconnect/preload"> in each HTML <head>.
   The @import previously here forced render-blocking download AFTER this
   stylesheet was fetched + parsed (~+300 ms FCP on 4G). */

/* ── Accessibility: skip-to-content + universal focus ring ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #1C3228;
  color: #fff;
  border-radius: 6px;
  z-index: 9999;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
:focus-visible {
  outline: 2px solid #B8882A;
  outline-offset: 2px;
  border-radius: 3px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #B8882A;
  outline-offset: 0;
}

/* ── Design tokens ──────────────────────────── */
:root {
  --forest:     #1C3228;
  --pine:       #2E4A3A;
  --sage:       #5C7A68;
  --gold:       #B8882A;
  --gold-hover: #9A7020;
  --gold-pale:  #D4A84C;
  --ivory:      #F4EFE4;
  --cream:      #EDE6D6;
  --stone:      #7C6E5E;
  --ink:        #111C17;
  --white:      #ffffff;

  --line:       rgba(28, 50, 40, 0.10);

  --f-serif:    'Cormorant', Georgia, serif;
  --f-sans:     'DM Sans', system-ui, sans-serif;

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:     0.22s;
  --t-med:      0.36s;

  --header-h:   92px;
  --wrap-max:   1340px;
  --wrap-pad:   clamp(1.25rem, 4vw, 3rem);
}

/* ── Global base ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--f-sans);
  color: var(--forest);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
img { display: block; max-width: 100%; }

/* Spacer so body content doesn't hide under fixed header */
body::before {
  content: '';
  display: block;
  height: var(--header-h);
}

/* ── Site header ────────────────────────────── */
.site-header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  height: var(--header-h);
  z-index: 900;
  border-radius: 12px;
  transition:
    background var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease);
}

/* Floating over hero, dark overlay */
.site-header.is-top {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Solid, once user scrolls: full width, no rounding */
.site-header.is-scrolled {
  background: #FAF8F2;
  box-shadow: 0 1px 0 var(--line), 0 6px 28px -6px rgba(28, 50, 40, 0.09);
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
}

/* ── Inner layout, 3-column grid ──────────── */
.nav-wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-inline: var(--wrap-pad);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 1.5rem;
}

/* ── Nav links ──────────────────────────────── */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 5px;
  position: relative;
  transition: color var(--t-fast) var(--ease);
}

/* Underline slide-in on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0.85rem;
  right: 0.85rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}

.nav-link:hover           { color: rgba(255,255,255,0.7); }
.nav-link:hover::after    { transform: scaleX(1); }
.nav-link.is-active       { color: #ffffff; }
.nav-link.is-active::after{ transform: scaleX(1); }

/* Scrolled, dark text */
.site-header.is-scrolled .nav-link        { color: #1C3228; }
.site-header.is-scrolled .nav-link:hover  { color: #5A4C40; }
.site-header.is-scrolled .logo__wordmark  { color: #1C3228; }
.site-header.is-scrolled .logo__tagline   { color: #7C6E5E; }
.site-header.is-scrolled .menu-toggle span{ background: #1C3228; }
.site-header.is-scrolled .btn-book        { border-color: rgba(0,0,0,0.15); }

/* ── Logo, centre column ───────────────────── */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
  text-align: center;
  transition: opacity var(--t-fast);
}
.logo:hover { opacity: 0.78; }

.logo__img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo__wordmark {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
}

.logo__tagline {
  font-family: var(--f-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

/* Invert logo text over dark hero */
.site-header.is-top .logo__wordmark {
  color: var(--white);
}
.site-header.is-top .logo__tagline {
  color: rgba(200, 169, 110, 0.88);
}

/* ── Right column ───────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

/* Book Now CTA */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 1rem;
  padding: 0.68rem 1.45rem;
  background-image: linear-gradient(to right, #1C3228 50%, var(--white) 50%);
  background-size: 200% 100%;
  background-position: right center;
  color: var(--forest);
  border: 1px solid rgba(28, 56, 41, 0.15);
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 5px;
  flex-shrink: 0;
  transition:
    background-position var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    transform  var(--t-fast) var(--ease),
    box-shadow var(--t-fast) var(--ease);
}

.btn-book:hover {
  background-position: left center;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.12);
}

/* Over transparent header, keep white */
.site-header.is-top .btn-book {
  background-image: linear-gradient(to right, #1C3228 50%, var(--white) 50%);
  background-size: 200% 100%;
  background-position: right center;
  color: var(--forest);
  border-color: rgba(255, 255, 255, 0.6);
}
.site-header.is-top .btn-book:hover {
  background-position: left center;
  color: #ffffff;
  border-color: var(--white);
}

/* ── Hamburger toggle ───────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  margin-left: 0.65rem;
  transition: background var(--t-fast);
}

.menu-toggle:hover { background: rgba(0, 0, 0, 0.06); }

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--forest);
  border-radius: 2px;
  transition:
    transform var(--t-med) var(--ease),
    opacity   var(--t-fast),
    width     var(--t-med)  var(--ease);
  transform-origin: center;
}

.site-header.is-top .menu-toggle span { background: var(--white); }

/* Animated X when open */
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile drawer ──────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 90vw);
  height: 100dvh;
  background: var(--white);
  z-index: 910;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem 2.5rem;
  overflow-y: auto;
  transform: translateX(105%);
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  box-shadow: -20px 0 60px -20px rgba(0, 0, 0, 0.22);
}

.mobile-nav.is-open { transform: none; }

/* Nav items */
.mobile-nav__list { flex: 1; }

.mobile-nav__list li {
  border-bottom: 1px solid var(--line);
}

.mobile-nav__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: var(--f-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: 0.01em;
  transition: color var(--t-fast), padding-left var(--t-fast) var(--ease);
}

.mobile-nav__list a::after {
  content: '→';
  font-family: var(--f-sans);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--t-fast), transform var(--t-fast) var(--ease);
}

.mobile-nav__list a:hover {
  color: var(--gold);
  padding-left: 0.4rem;
}
.mobile-nav__list a:hover::after {
  opacity: 1;
  transform: none;
}

/* CTA inside drawer */
.mobile-nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1.1rem;
  background: var(--forest);
  color: var(--white);
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 7px;
  transition: background var(--t-fast);
}
.mobile-nav__cta:hover { background: var(--pine); }

/* Contact row */
.mobile-nav__info {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav__info span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.2rem;
}

.mobile-nav__info a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
  transition: color var(--t-fast);
}
.mobile-nav__info a:hover { color: var(--gold); }

/* ── Overlay ────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 21, 16, 0.42);
  z-index: 905;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .nav-left .nav-list,
  .nav-right .nav-list,
  .btn-book {
    display: none;
  }
  .menu-toggle { display: flex; }

  /* Dark overlay over hero, no blur */
  .site-header.is-top {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }

  /* Solid warm-white full-width on scroll */
  .site-header.is-scrolled {
    background: #FAF8F2 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 1px 0 rgba(28,50,40,0.08) !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
  }

  .site-header.is-scrolled .logo__wordmark  { color: #1C3228; }
  .site-header.is-scrolled .logo__tagline   { color: #7C6E5E; }
  .site-header.is-scrolled .menu-toggle span { background: #1C3228; }
}

@media (max-width: 480px) {
  :root { --header-h: 78px; }
  .logo__img      { width: 38px; height: 38px; }
  .logo__wordmark { font-size: 1rem; }
}

/* ── Sticky right, Send Query ──────────────── */
.sticky-query {
  display: none;
}

@media (max-width: 768px) {
  .sticky-query {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 940;
    background: #B8882A;
    color: #ffffff;
    text-decoration: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 1rem 0.6rem;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 0 16px rgba(0,0,0,0.15);
  }

  .sticky-query__text {
    font-family: var(--f-sans, sans-serif);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    transform: rotate(180deg);
  }
}

/* ── Sticky bottom CTA ──────────────────────── */
.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    background: #FAF8F2;
    box-shadow: 0 -1px 0 rgba(28,50,40,0.08), 0 -8px 24px -8px rgba(28,50,40,0.1);
    gap: 0.75rem;
  }

  .sticky-cta__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-family: var(--f-sans, sans-serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .sticky-cta__btn:active { opacity: 0.75; }

  .sticky-cta__btn--call {
    background-image: linear-gradient(to right, #B8882A 50%, #1C3228 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: #ffffff;
    transition: background-position 0.38s ease, opacity 0.2s ease;
  }
  .sticky-cta__btn--call:hover { background-position: left center; }

  .sticky-cta__btn--whatsapp {
    background-image: linear-gradient(to right, #1EAD52 50%, #25D366 50%);
    background-size: 200% 100%;
    background-position: right center;
    color: #ffffff;
    transition: background-position 0.38s ease, opacity 0.2s ease;
  }
  .sticky-cta__btn--whatsapp:hover { background-position: left center; }
}

/* mobile nav close (X) button */
.mobile-nav__top{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.5rem;padding-bottom:1.1rem;border-bottom:1px solid rgba(46,74,58,.12);}
.mobile-nav__brand{font-family:var(--f-serif,Georgia,serif);font-size:1.4rem;font-weight:600;color:var(--forest,#1C3228);letter-spacing:.02em;}
.mobile-nav__close{width:42px;height:42px;display:flex;align-items:center;justify-content:center;background:rgba(46,74,58,.06);border:none;border-radius:50%;color:var(--forest,#1C3228);cursor:pointer;padding:0;line-height:0;flex-shrink:0;transition:background .2s;}
.mobile-nav__close:hover{background:rgba(46,74,58,.14);}

/* ===== ttc-page.css ===== */
/* ===== shared .page-hero (copied so this page is self-contained) ===== */
.page-hero {
  margin: 1rem;
  width: calc(100% - 2rem);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 42vh;
  min-height: 280px;
  background: #111C17;
}
.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.6;
}
.page-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.page-hero__eyebrow {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
}
.page-hero__title {
  font-family: var(--f-sans, sans-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.page-hero__sub {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.88rem;
  color: rgba(255,255,255, 0.72);
  margin-top: 0.75rem;
  max-width: 48ch;
  line-height: 1.6;
}
.page-hero { height: 36vh; min-height: 220px; }
@media (max-width: 540px) {
  .page-hero { height: 36vh; min-height: 220px; }

  .xp-page__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
  }
  .xp-page__grid::-webkit-scrollbar { display: none; }
  .xp-page__grid .xp-card {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .xp-how__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   YOGA TEACHER TRAINING PAGE  ·  Shivoham Retreat
   Reuses the site's panel language: 1rem gutter, 16px radius.
   ============================================================ */

.ttc-intro {
  margin: 1rem; width: calc(100% - 2rem);
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.25rem, 3vw, 2.5rem);
}
.ttc-intro__inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start;
}
.ttc-eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--f-sans, sans-serif); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: #7A6C5C; margin-bottom: 0.9rem;
}
.ttc-title {
  font-family: var(--f-sans, sans-serif); font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; color: #1C3228;
}
.ttc-title em { font-style: normal; font-weight: 300; color: #5A4C40; }
.ttc-text {
  font-family: var(--f-sans, sans-serif); font-size: clamp(0.86rem, 1vw, 0.92rem);
  line-height: 1.8; color: #5A4C40; max-width: 68ch;
}
.ttc-text + .ttc-text { margin-top: 0.85rem; }

/* ── Key facts strip ─────────────────────────── */
.ttc-facts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #E0D8CA; border-bottom: 1px solid #E0D8CA;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.ttc-fact {
  padding: clamp(1.25rem, 2.5vw, 1.85rem) clamp(0.9rem, 2vw, 1.6rem);
  border-right: 1px solid #E0D8CA;
}
.ttc-fact:last-child { border-right: 0; }
.ttc-fact strong {
  display: block; font-family: var(--f-sans, sans-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem); font-weight: 700; color: #1C3228;
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 0.45rem;
}
.ttc-fact span {
  display: block; font-family: var(--f-sans, sans-serif); font-size: 0.6rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #8A7A6A; line-height: 1.5;
}

/* ── Curriculum (dark panel) ─────────────────── */
.ttc-curriculum {
  margin: 1rem; width: calc(100% - 2rem); background: #111C17; border-radius: 16px;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.25rem, 3vw, 2.5rem);
}
.ttc-curriculum .ttc-eyebrow { color: #ffffff; }
.ttc-curriculum .ttc-title { color: #ffffff; }
.ttc-curriculum .ttc-title em { color: rgba(255,255,255,0.6); }
.ttc-curriculum .ttc-text { color: rgba(255,255,255,0.66); }
.ttc-modules {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.ttc-module {
  background: #ffffff; border: 1px solid #E0D8CA;
  border-radius: 12px; padding: clamp(1.1rem, 2vw, 1.5rem);
}
.ttc-module__num {
  font-family: var(--f-sans, sans-serif); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.22em; color: #B8882A; display: block; margin-bottom: 0.6rem;
}
.ttc-module h3 {
  font-family: var(--f-sans, sans-serif); font-size: 1rem; font-weight: 600;
  color: #1C3228; margin-bottom: 0.45rem; line-height: 1.3;
}
.ttc-module p {
  font-family: var(--f-sans, sans-serif); font-size: 0.82rem; line-height: 1.7;
  color: #6A5E50;
}

/* ── Daily rhythm ────────────────────────────── */
.ttc-day {
  margin: 1rem; width: calc(100% - 2rem); background: #FAF8F2; border-radius: 16px;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.25rem, 3vw, 2.5rem);
}
.ttc-schedule { border-top: 1px solid #E0D8CA; margin-top: clamp(1.5rem, 3vw, 2.25rem); }
.ttc-slot {
  display: grid; grid-template-columns: 130px 1fr; gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(0.9rem, 1.8vw, 1.25rem) 0; border-bottom: 1px solid #E0D8CA;
}
.ttc-slot__time {
  font-family: var(--f-sans, sans-serif); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #B8882A; padding-top: 0.15rem;
}
.ttc-slot__what {
  font-family: var(--f-sans, sans-serif); font-size: clamp(0.86rem, 1vw, 0.92rem);
  line-height: 1.7; color: #5A4C40;
}
.ttc-slot__what strong { color: #1C3228; font-weight: 600; }

/* ── FAQ ─────────────────────────────────────── */
.ttc-faq {
  margin: 1rem; width: calc(100% - 2rem); padding: clamp(2rem, 4vw, 3.25rem) clamp(1.25rem, 3vw, 2.5rem);
}
.ttc-faq__list { border-top: 1px solid #E0D8CA; margin-top: clamp(1.5rem, 3vw, 2.25rem); }
.ttc-faq__item { border-bottom: 1px solid #E0D8CA; padding: clamp(1.1rem, 2vw, 1.5rem) 0; }
.ttc-faq__q {
  font-family: var(--f-sans, sans-serif); font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 600; color: #1C3228; margin-bottom: 0.5rem; line-height: 1.35;
}
.ttc-faq__a {
  font-family: var(--f-sans, sans-serif); font-size: clamp(0.86rem, 1vw, 0.92rem);
  line-height: 1.8; color: #5A4C40; max-width: 78ch;
}
.ttc-faq__a a { color: #B8882A; border-bottom: 1px solid rgba(184,136,42,0.4); }

.ttc-cta {
  display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.5rem;
  background-image: linear-gradient(to right, #B8882A 50%, #111C17 50%);
  background-size: 200% 100%; background-position: right center; color: #ffffff;
  font-family: var(--f-sans, sans-serif); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 0.85rem 1.6rem;
  border-radius: 6px; transition: background-position 0.38s ease, transform 0.22s ease;
}
.ttc-cta:hover { background-position: left center; transform: translateY(-1px); }

@media (max-width: 960px) {
  .ttc-intro__inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .ttc-modules { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .ttc-facts { grid-template-columns: repeat(2, 1fr); }
  .ttc-fact { border-bottom: 1px solid #E0D8CA; }
  .ttc-fact:nth-child(2n) { border-right: 0; }
  .ttc-fact:nth-child(n+3) { border-bottom: 0; }
  .ttc-modules { grid-template-columns: 1fr; }
  .ttc-slot { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* ── Long-form content sections (2026-08-18 SEO build) ───────── */
.ttc-sec {
  margin: 1rem; width: calc(100% - 2rem);
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.25rem, 3vw, 2.5rem);
}
.ttc-sec--cream { background: #FAF8F2; border-radius: 16px; }
.ttc-sec--dark  { background: #111C17; border-radius: 16px; }
.ttc-sec--dark .ttc-eyebrow,
.ttc-sec--dark .ttc-title { color: #ffffff; }
.ttc-sec--dark .ttc-title em { color: rgba(255,255,255,0.6); }
.ttc-sec--dark .ttc-text,
.ttc-sec--dark .ttc-list li { color: rgba(255,255,255,0.66); }
.ttc-sec--dark .ttc-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.09); }
.ttc-sec--dark .ttc-card h3 { color: #ffffff; }
.ttc-sec--dark .ttc-card p { color: rgba(255,255,255,0.62); }

.ttc-lead {
  font-family: var(--f-sans, sans-serif); font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.75; color: #5A4C40; max-width: 68ch; margin-bottom: 1rem;
}
.ttc-list { list-style: none; margin: 1rem 0 0; padding: 0; max-width: 68ch; }
.ttc-list li {
  font-family: var(--f-sans, sans-serif); font-size: clamp(0.86rem, 1vw, 0.92rem);
  line-height: 1.8; color: #5A4C40; padding-left: 1.35rem; position: relative;
}
.ttc-list li::before {
  content: ''; position: absolute; left: 0; top: 0.72em;
  width: 5px; height: 5px; border-radius: 50%; background: #B8882A;
}

.ttc-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.ttc-cards--2 { grid-template-columns: repeat(2, 1fr); }
.ttc-card {
  background: #ffffff; border: 1px solid #E0D8CA; border-radius: 12px;
  padding: clamp(1.1rem, 2vw, 1.5rem);
}
.ttc-card h3 {
  font-family: var(--f-sans, sans-serif); font-size: 1rem; font-weight: 600;
  color: #1C3228; margin-bottom: 0.45rem; line-height: 1.3;
}
.ttc-card p {
  font-family: var(--f-sans, sans-serif); font-size: 0.85rem; line-height: 1.7; color: #6A5E50;
}

/* highlights pill row */
.ttc-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.ttc-pills span {
  font-family: var(--f-sans, sans-serif); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: #6A5E50;
  background: #EDE6D8; padding: 0.42rem 0.9rem; border-radius: 4px;
}

/* course details definition grid */
.ttc-details {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid #E0D8CA; margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.ttc-detail {
  padding: clamp(0.9rem, 1.8vw, 1.2rem) 0; border-bottom: 1px solid #E0D8CA; padding-right: 1.5rem;
}
.ttc-detail dt {
  font-family: var(--f-sans, sans-serif); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: #8A7A6A; margin-bottom: 0.35rem;
}
.ttc-detail dd {
  font-family: var(--f-sans, sans-serif); font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 600; color: #1C3228; margin: 0;
}

.ttc-ctarow { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-top: 1.5rem; }
.ttc-cta--ghost {
  display: inline-flex; align-items: center; gap: 0.45rem;
  border: 1.5px solid #1C3228; color: #1C3228; background: none;
  font-family: var(--f-sans, sans-serif); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 0.8rem 1.5rem;
  border-radius: 6px; transition: background 0.25s ease, color 0.25s ease;
}
.ttc-cta--ghost:hover { background: #1C3228; color: #ffffff; }
.ttc-sec--dark .ttc-cta--ghost { border-color: #ffffff; color: #ffffff; }
.ttc-sec--dark .ttc-cta--ghost:hover { background: #ffffff; color: #111C17; }

@media (max-width: 960px) { .ttc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) {
  .ttc-cards, .ttc-cards--2 { grid-template-columns: 1fr; }
  .ttc-details { grid-template-columns: 1fr; }
}


/* Dark-panel variant of the module card. Kept scoped so the same markup can
   sit on a cream section without turning white-on-cream (which it did). */
.ttc-sec--dark .ttc-module,
.ttc-curriculum .ttc-module {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.09);
}
.ttc-sec--dark .ttc-module h3,
.ttc-curriculum .ttc-module h3 { color: #ffffff; }
.ttc-sec--dark .ttc-module p,
.ttc-curriculum .ttc-module p { color: rgba(255,255,255,0.62); }
.ttc-sec--dark .ttc-module__num,
.ttc-curriculum .ttc-module__num { color: #D4A84C; }

/* Batch options. The course runs ONE two-hour session per day, six days a week,
   and a student picks either the morning or the evening batch (not both) - that
   is what makes 200 hours land on four months. Light by default so the cards stay
   legible on the page background; dark variant scoped, same lesson as .ttc-module. */
.ttc-batches {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.1rem);
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.ttc-batch {
  background: #ffffff; border: 1px solid #E0D8CA;
  border-radius: 12px; padding: clamp(1.1rem, 2vw, 1.5rem);
}
.ttc-batch__label {
  font-family: var(--f-sans, sans-serif); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: #B8882A;
  margin-bottom: 0.55rem;
}
.ttc-batch h3 {
  font-family: var(--f-sans, sans-serif); font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 600; color: #1C3228; margin: 0 0 0.4rem; line-height: 1.3;
}
.ttc-batch p {
  font-family: var(--f-sans, sans-serif); font-size: clamp(0.86rem, 1vw, 0.92rem);
  line-height: 1.7; color: #6A5E50; margin: 0;
}
.ttc-subhead {
  font-family: var(--f-sans, sans-serif); font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 600; color: #1C3228; line-height: 1.35;
  margin: clamp(1.6rem, 3vw, 2.25rem) 0 0;
}
.ttc-sec--dark .ttc-batch  { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.09); }
.ttc-sec--dark .ttc-batch h3 { color: #ffffff; }
.ttc-sec--dark .ttc-batch p  { color: rgba(255,255,255,0.62); }
.ttc-sec--dark .ttc-subhead  { color: #ffffff; }

/* ── Enquiry banner ───────────────────────────────
   Dark full-width band with the form card on the right. Every CTA on this page
   now anchors here instead of bouncing the visitor to /contact, where the
   generic form asks about rooms and guest counts rather than the course.
   Posts to /api/contact.php (honeypot + timing trap + per-IP rate limit). */
.ttc-enq {
  background: #111C17; border-radius: 16px;
  margin: 1rem; width: calc(100% - 2rem);
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.25rem, 3vw, 2.5rem);
  scroll-margin-top: 96px;
}
.ttc-enq__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3.5vw, 3rem); align-items: center;
}
.ttc-enq .ttc-eyebrow { color: #D4A84C; }
.ttc-enq .ttc-title { color: #ffffff; }
.ttc-enq .ttc-title em { color: rgba(255,255,255,0.6); }
.ttc-enq__lead {
  font-family: var(--f-sans, sans-serif); font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.75; color: rgba(255,255,255,0.72); margin-top: 0.9rem;
}
.ttc-enq__steps { list-style: none; margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0; padding: 0; }
.ttc-enq__steps li {
  display: grid; grid-template-columns: 26px 1fr; gap: 0.7rem; align-items: start;
  font-family: var(--f-sans, sans-serif); font-size: 0.86rem; line-height: 1.65;
  color: rgba(255,255,255,0.62); padding: 0.55rem 0;
}
.ttc-enq__steps span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(212,168,76,0.5); color: #D4A84C;
  font-size: 0.7rem; font-weight: 700;
}
.ttc-enq__alt {
  font-family: var(--f-sans, sans-serif); font-size: 0.86rem; line-height: 1.7;
  color: rgba(255,255,255,0.62); margin-top: 1.25rem;
}
.ttc-enq__alt a { color: #D4A84C; text-decoration: none; border-bottom: 1px solid rgba(212,168,76,0.4); }
.ttc-enq__alt a:hover { color: #ffffff; border-bottom-color: #ffffff; }

.ttc-enq__form {
  background: #ffffff; border-radius: 12px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.enqf { display: grid; gap: 0.85rem; }
.enqf__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.enqf__field { display: grid; gap: 0.35rem; }
.enqf label {
  font-family: var(--f-sans, sans-serif); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: #6A5E50;
}
.enqf__opt { font-weight: 400; letter-spacing: 0.06em; text-transform: none; color: #9A8E80; }
.enqf input,
.enqf select,
.enqf textarea {
  width: 100%; box-sizing: border-box;
  font-family: var(--f-sans, sans-serif); font-size: 0.9rem; line-height: 1.5;
  color: #1C3228; background: #FAF8F2;
  border: 1px solid #E0D8CA; border-radius: 8px;
  padding: 0.7rem 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.enqf textarea { resize: vertical; min-height: 82px; }
.enqf input::placeholder,
.enqf textarea::placeholder { color: #A99C8D; }
.enqf input:focus,
.enqf select:focus,
.enqf textarea:focus {
  outline: none; background: #ffffff;
  border-color: #B8882A; box-shadow: 0 0 0 3px rgba(184,136,42,0.16);
}
.enqf__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  width: 100%; margin-top: 0.35rem; cursor: pointer; border: 0;
  background-image: linear-gradient(to right, #B8882A 50%, #111C17 50%);
  background-size: 200% 100%; background-position: right center; color: #ffffff;
  font-family: var(--f-sans, sans-serif); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.95rem 1.6rem; border-radius: 6px;
  transition: background-position 0.38s ease, transform 0.22s ease, opacity 0.2s ease;
}
.enqf__btn:hover:not(:disabled) { background-position: left center; transform: translateY(-1px); }
.enqf__btn:disabled { opacity: 0.6; cursor: default; }
.enqf__msg {
  font-family: var(--f-sans, sans-serif); font-size: 0.82rem; line-height: 1.55;
  margin: 0; min-height: 0;
}
.enqf__msg.is-err { color: #A33A2A; }
.enqf__msg.is-ok  { color: #2E6B4F; }
.enqf__note {
  font-family: var(--f-sans, sans-serif); font-size: 0.74rem; line-height: 1.6;
  color: #9A8E80; margin: 0;
}
.enqf__note a { color: #6A5E50; }
/* Honeypot: off-screen rather than display:none, which some bots skip. */
.enqf__hp {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

@media (max-width: 900px) {
  .ttc-enq__inner { grid-template-columns: 1fr; gap: 1.75rem; }
}
@media (max-width: 520px) {
  .enqf__row { grid-template-columns: 1fr; }
}

/* ── CTA row alignment ────────────────────────────
   .ttc-cta carries margin-top: 1.5rem for standalone use. Inside .ttc-ctarow
   (which already has its own margin-top) that extra margin pushed the solid
   button down relative to the ghost button beside it, so the pair sat on
   different baselines. In a row, the row owns the spacing.
   The ghost's padding is also reduced by its 1.5px border so both buttons
   compute to exactly the same height instead of differing by ~1.4px. */
.ttc-ctarow { align-items: stretch; }
.ttc-ctarow .ttc-cta,
.ttc-ctarow .ttc-cta--ghost {
  box-sizing: border-box; margin-top: 0; line-height: 1.15;
}
.ttc-cta--ghost { padding: calc(0.85rem - 1.5px) calc(1.6rem - 1.5px); }

/* ── Mobile: full-width, thumb-sized CTAs ───────── */
@media (max-width: 560px) {
  .ttc-ctarow { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .ttc-ctarow .ttc-cta,
  .ttc-ctarow .ttc-cta--ghost {
    width: 100%; justify-content: center; padding-top: 1rem; padding-bottom: 1rem;
  }
}

/* ══ MOBILE OPTIMISATION ═══════════════════════════
   Measured at 390px (iPhone 14/15 width) over CDP. The page had no horizontal
   overflow, but three real problems showed up:

   1. Form fields at 0.9rem (14.4px). iOS Safari force-zooms the viewport when
      a focused input is under 16px, and it does NOT zoom back out - the visitor
      is left on a horizontally-scrolling page mid-enquiry. 16px is the fix.
   2. Uppercase micro-labels rendering at 9.6-11.5px: eyebrows, slot times,
      detail terms and form labels. Letter-spaced uppercase at that size is
      where "legible font sizes" audits start failing.
   3. Tap targets: handled with the full-width CTA rule further up.
   ══════════════════════════════════════════════════ */
@media (max-width: 700px) {
  /* 1. Never below 16px, or iOS zooms on focus. */
  .enqf input,
  .enqf select,
  .enqf textarea { font-size: 16px; }

  /* 2. Micro-labels back into legible range. */
  .enqf label        { font-size: 0.75rem; letter-spacing: 0.1em; }
  .enqf__opt         { font-size: 0.73rem; }
  .enqf__note        { font-size: 0.78rem; }
  .enqf__msg         { font-size: 0.86rem; }
  .ttc-eyebrow       { font-size: 0.7rem;  letter-spacing: 0.22em; }
  .page-hero__eyebrow{ font-size: 0.7rem;  letter-spacing: 0.22em; }
  .ttc-detail dt     { font-size: 0.7rem;  letter-spacing: 0.14em; }
  .ttc-slot__time    { font-size: 0.75rem; letter-spacing: 0.1em; }
  .ttc-batch__label  { font-size: 0.72rem; }
  .ttc-module__num   { font-size: 0.72rem; }
  .ttc-enq__steps li { font-size: 0.9rem; }
  .ttc-pills span   { font-size: 0.72rem; letter-spacing: 0.08em; }

  /* 3. Comfortable hit area for the submit button. */
  .enqf__btn { padding-top: 1.05rem; padding-bottom: 1.05rem; font-size: 0.68rem; }

  /* Schedule rows read better stacked than as a 130px label column. */
  .ttc-slot { grid-template-columns: 1fr; gap: 0.35rem; }
}

/* Stack the batch cards early: side-by-side at 240px min they get cramped
   before the 900px banner breakpoint. */
@media (max-width: 620px) {
  .ttc-batches { grid-template-columns: 1fr; }
}

/* ===== footer.css ===== */
/* ============================================================
   FOOTER  ·  Shivoham Retreat
   ============================================================ */

.site-footer {
  margin: 1rem;
  width: calc(100% - 2rem);
  background: #111C17;
  border-radius: 16px;
  padding: clamp(3rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) 0;
  overflow: hidden;
}

/* ── Top grid ────────────────────────────── */
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem 4rem;
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid #1E2E22;
}

/* ── Brand column ────────────────────────── */
.footer__brand .footer__logo {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.footer__logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer__logo-word {
  font-family: var(--f-serif, Georgia, serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
}

.footer__logo-tag {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer__brand p {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.85rem;
  line-height: 1.75;
  color: #A89888;
  max-width: 28ch;
  margin-bottom: 1.75rem;
  text-shadow: 0 0 20px rgba(255,255,255,0.08);
}

/* Social icons */
.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: border-color 0.22s ease, color 0.22s ease;
}

.footer__social a:hover {
  border-color: #ffffff;
  color: #ffffff;
}

/* ── Nav columns ─────────────────────────── */
.footer__col h4,
.footer__col .footer__col-title {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
}

.footer__col ul a {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.88rem;
  color: #B0A090;
  text-decoration: none;
  transition: color 0.2s ease;
  text-shadow: 0 0 16px rgba(255,255,255,0.06);
}

.footer__col ul a:hover { color: #ffffff; }

/* ── Contact column ──────────────────────── */
.footer__contact h4,
.footer__contact .footer__col-title {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.footer__contact-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255, 0.65);
}

.footer__contact-item span,
.footer__contact-item a {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.85rem;
  color: #B0A090;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
  text-shadow: 0 0 16px rgba(255,255,255,0.06);
}

.footer__contact-item a:hover { color: #ffffff; }

/* ── Bottom bar ──────────────────────────── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.footer__copy {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.72rem;
  color: rgba(255,255,255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.05em;
}

.footer__legal a:hover { color: #ffffff; }

/* ── Responsive ─────────────────────────── */
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .site-footer {
    margin: 0.5rem;
    width: calc(100% - 1rem);
    border-radius: 12px;
    padding: 2.5rem 1.25rem 0;
  }

  /* Brand, centered */
  .footer__brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__brand p { max-width: 100%; }
  .footer__social { justify-content: center; }

  /* Contact, full width, stacked items */
  .footer__contact {
    grid-column: 1 / -1;
    display: block;
  }
  .footer__contact h4,
.footer__contact .footer__col-title { text-align: left; }
  .footer__contact-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
  }
  /* Prevent long email/address from overflowing */
  .footer__contact-item a,
  .footer__contact-item span {
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
  }

  /* Bottom bar */
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .footer__legal { gap: 1rem; flex-wrap: wrap; }
}

@media (max-width: 380px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ── Mobile tap targets ───────────────────────────
   TAP TARGETS, measured at 390px over CDP:
     footer nav links   18px tall + 14px clear = 32px effective
     phone links        22px tall +  4px clear = 26px effective
   The two phone numbers sit in a flex column with a 0.25rem gap, so they were
   4px apart - easy to call the wrong number. Guidance is ~44px. Padding grows
   the hit area; the list gap shrinks to keep the footer from getting taller
   than it needs to be. Phone/mail icons are nudged to stay level with the
   first line of text now that the link carries top padding. */
@media (max-width: 600px) {
  .footer__col ul { gap: 0.15rem; }
  .footer__col ul a {
    display: block;
    padding: 0.8rem 0;
  }
  .footer__contact-item a {
    display: block;
    padding: 0.62rem 0;
  }
  .footer__contact-item:has(a) svg { margin-top: 0.75rem; }
}

/* ===== booking-modal.css ===== */
/* ============================================================
   BOOKING MODAL  ·  Shivoham Retreat
   Premium quick-book popup triggered by "Book Now" in header
   ============================================================ */

/* ── Overlay ──────────────────────────────────────────────── */
.bkm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 16, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s var(--ease), visibility 0.32s var(--ease);
}
.bkm-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ── Modal shell ──────────────────────────────────────────── */
.bkm {
  background: var(--ivory);
  border-radius: 20px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: 0 32px 80px rgba(10, 22, 16, 0.35), 0 0 0 1px rgba(184,136,42,0.18);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.36s var(--ease);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-pale) transparent;
}
.bkm-overlay.is-open .bkm {
  transform: translateY(0) scale(1);
}

/* ── Header bar ───────────────────────────────────────────── */
.bkm__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem 1.1rem;
  border-bottom: 1px solid rgba(184,136,42,0.15);
  position: sticky;
  top: 0;
  background: var(--ivory);
  z-index: 2;
  border-radius: 20px 20px 0 0;
}
.bkm__head-text {}
.bkm__eyebrow {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.22rem;
}
.bkm__title {
  font-family: var(--f-serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.2;
}
.bkm__title em { font-style: italic; color: var(--gold); }
.bkm__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(28,50,40,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  transition: background 0.18s;
  flex-shrink: 0;
}
.bkm__close:hover { background: rgba(184,136,42,0.15); color: var(--gold); }

/* ── Body ─────────────────────────────────────────────────── */
.bkm__body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* ── Section label ────────────────────────────────────────── */
.bkm__section-label {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
  display: block;
}

/* ── Date + guests row ────────────────────────────────────── */
.bkm__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 600px) {
  .bkm__row { grid-template-columns: 1fr 1fr; }
  .bkm__row .bkm__field:last-child { grid-column: span 2; }
}

/* ── Field ────────────────────────────────────────────────── */
.bkm__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.bkm__field label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--stone);
  text-transform: uppercase;
}
.bkm__field input,
.bkm__field select,
.bkm__field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid rgba(28,50,40,0.15);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--f-sans);
  font-size: 0.9rem;
  color: var(--forest);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}
.bkm__field input:focus,
.bkm__field select:focus,
.bkm__field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,136,42,0.12);
}
.bkm__field textarea {
  resize: none;
  min-height: 76px;
}
.bkm__field .optional {
  font-size: 0.65rem;
  color: var(--sage);
  margin-left: 0.3rem;
  text-transform: none;
  letter-spacing: 0;
}

/* ── Contact row ──────────────────────────────────────────── */
.bkm__contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 520px) {
  .bkm__contact-row { grid-template-columns: 1fr; }
}

/* ── Room selector ────────────────────────────────────────── */
.bkm__rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
@media (max-width: 640px) {
  .bkm__rooms { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .bkm__rooms { grid-template-columns: 1fr; }
}

.bkm__room {
  border: 1.5px solid rgba(28,50,40,0.13);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  background: var(--white);
  position: relative;
}
.bkm__room:hover {
  border-color: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,22,16,0.10);
}
.bkm__room.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184,136,42,0.20), 0 6px 20px rgba(10,22,16,0.10);
}
.bkm__room img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
}
.bkm__room-noimg {
  width: 100%;
  height: 72px;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(184,136,42,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--gold-pale);
}
.bkm__room-body {
  padding: 0.55rem 0.65rem 0.6rem;
}
.bkm__room-name {
  font-family: var(--f-serif);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.25;
}
.bkm__room-price {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.15rem;
}
.bkm__room-check {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.18s, transform 0.18s;
}
.bkm__room.is-selected .bkm__room-check {
  opacity: 1;
  transform: scale(1);
}

/* ── Divider ──────────────────────────────────────────────── */
.bkm__divider {
  height: 1px;
  background: rgba(28,50,40,0.08);
  margin: 0 -1.75rem;
}

/* ── Submit row ───────────────────────────────────────────── */
.bkm__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.bkm__note {
  font-size: 0.75rem;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.bkm__submit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--forest);
  color: var(--ivory);
  font-family: var(--f-sans);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.75rem 1.6rem;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.bkm__submit:hover { background: var(--pine); transform: translateY(-1px); }
.bkm__submit:active { transform: translateY(0); }
.bkm__submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── Success state ────────────────────────────────────────── */
.bkm__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.75rem 2rem;
  gap: 0.9rem;
}
.bkm__success.is-show { display: flex; }
.bkm__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(184,136,42,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.bkm__success h3,
.bkm__success .bkm__success-title {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
}
.bkm__success h3,
.bkm__success .bkm__success-title em { font-style: italic; color: var(--gold); }
.bkm__success p { font-size: 0.9rem; color: var(--stone); max-width: 380px; line-height: 1.6; }
.bkm__success-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-top: 0.4rem; }
.bkm__success-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.3rem;
  border-radius: 9px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.18s;
}
.bkm__success-btn--primary { background: var(--forest); color: var(--ivory); }
.bkm__success-btn--primary:hover { background: var(--pine); }
.bkm__success-btn--ghost { border: 1.5px solid rgba(28,50,40,0.2); color: var(--forest); }
.bkm__success-btn--ghost:hover { background: rgba(28,50,40,0.05); }
