/* ============================================
   NAKED BY JANELLE — Sugaring Studio, San Jose
   ============================================ */

:root {
  --ink: #211C17;
  --ink-soft: #3A332B;
  --paper: #F7F2EB;
  --sand: #EFE7DB;
  --bronze: #9E7448;
  --bronze-deep: #7E5A35;
  --bronze-soft: #D8C3A5;
  --muted: #6F6457;
  --line: rgba(33, 28, 23, 0.14);
  --dark: #1D1813;
  --dark-line: rgba(240, 231, 219, 0.16);
  --dark-muted: #B3A693;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background-color: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

::selection {
  background: var(--bronze-soft);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 2000;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  font-size: 0.8rem;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 12px;
}

/* ============================================
   Typography
   ============================================ */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 22px;
}

.eyebrow::after {
  content: '';
  width: 44px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.eyebrow-light {
  color: var(--bronze-soft);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 22px;
}

.section-title em,
.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.section-desc {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.75;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 40px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 34px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}

.btn-solid {
  background: var(--bronze);
  color: #FFF9F1;
  border-color: var(--bronze);
}

.btn-solid:hover {
  background: var(--bronze-deep);
  border-color: var(--bronze-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(126, 90, 53, 0.28);
}

.btn-ghost {
  background: transparent;
  color: #FFF9F1;
  border-color: rgba(255, 249, 241, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 249, 241, 0.12);
  border-color: #FFF9F1;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background-color 0.4s var(--ease), padding 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(247, 242, 235, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #FFF9F1;
  transition: color 0.4s var(--ease);
}

.nav-logo span {
  font-style: italic;
  font-weight: 300;
}

.nav.scrolled .nav-logo,
.nav.menu-open .nav-logo {
  color: var(--ink);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 249, 241, 0.82);
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav-menu a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--bronze-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-menu a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-menu a:hover {
  color: #FFF9F1;
}

.nav.scrolled .nav-menu a {
  color: var(--muted);
}

.nav.scrolled .nav-menu a:hover {
  color: var(--ink);
}

.nav.scrolled .nav-menu a:not(.nav-cta)::after {
  background: var(--bronze);
}

.nav-cta {
  background: var(--bronze);
  color: #FFF9F1 !important;
  padding: 12px 24px;
  transition: background-color 0.3s var(--ease), transform 0.3s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--bronze-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1100;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 1.5px;
  background: #FFF9F1;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease),
              top 0.35s var(--ease);
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 23px; }

.nav.scrolled .nav-toggle span,
.nav.menu-open .nav-toggle span {
  background: var(--ink);
}

.nav.menu-open .nav-toggle span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.nav.menu-open .nav-toggle span:nth-child(2) {
  top: 19px;
  transform: rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.04);
  animation: heroSettle 2.4s var(--ease) forwards;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    200deg,
    rgba(29, 24, 19, 0.18) 0%,
    rgba(29, 24, 19, 0.42) 46%,
    rgba(29, 24, 19, 0.78) 100%
  );
}

.hero-content {
  position: relative;
  width: 100%;
  padding-bottom: 48px;
}

.hero-eyebrow {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 26px;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease) 0.25s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 6.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: #FFF9F1;
  margin-bottom: 24px;
  max-width: 12ch;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease) 0.45s forwards;
}

.hero-tagline {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 249, 241, 0.82);
  max-width: 46ch;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease) 0.65s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease) 0.85s forwards;
}

.hero-meta {
  position: relative;
  border-top: 1px solid rgba(255, 249, 241, 0.22);
  opacity: 0;
  animation: heroFade 1s var(--ease) 1.2s forwards;
}

.hero-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.hero-meta span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 249, 241, 0.72);
}

/* ============================================
   Marquee
   ============================================ */

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee-group {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-group i {
  font-style: normal;
  color: var(--bronze);
  padding: 0 18px;
}

/* ============================================
   About
   ============================================ */

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 88px;
  align-items: center;
}

.about-image {
  position: relative;
  margin: 0;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 22px;
  left: -22px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--bronze-soft);
}

.about-image img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-image figcaption {
  position: absolute;
  right: -18px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  box-shadow: 0 20px 40px rgba(33, 28, 23, 0.1);
}

.about-image figcaption span {
  color: var(--bronze);
}

.about-content p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 18px;
  font-size: 0.97rem;
}

.about-content strong {
  font-weight: 500;
  color: var(--ink-soft);
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--bronze);
  line-height: 1.05;
}

.stat-unit {
  font-size: 1.05rem;
  font-style: italic;
  margin-left: 3px;
  color: var(--bronze);
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================
   Services
   ============================================ */

.services {
  background: var(--sand);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 44px;
}

.service-card {
  background: transparent;
}

.service-image {
  overflow: hidden;
  margin-bottom: 26px;
}

.service-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-index {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--bronze);
  margin-bottom: 10px;
}

.service-body h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease);
}

.service-card:hover .service-body h3 {
  color: var(--bronze-deep);
}

.service-body p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 46ch;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  border-bottom: 1px solid var(--bronze-soft);
  padding-bottom: 5px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-link .arrow {
  transition: transform 0.35s var(--ease);
}

.service-link:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.service-link:hover .arrow {
  transform: translateX(5px);
}

/* ============================================
   Why Sugaring (dark)
   ============================================ */

.why {
  background: var(--dark);
  color: #F0E7DB;
}

.why-head {
  max-width: 640px;
  margin-bottom: 72px;
}

.why-head .section-title {
  color: #F0E7DB;
  margin-bottom: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.why-item {
  border-top: 1px solid var(--dark-line);
  padding-top: 26px;
}

.why-index {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--bronze-soft);
  margin-bottom: 18px;
}

.why-item h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.why-item p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--dark-muted);
  line-height: 1.75;
}

/* ============================================
   Training
   ============================================ */

.training {
  background: var(--paper);
}

.training-grid {
  max-width: 900px;
}

.training-content > p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.97rem;
  margin-bottom: 36px;
  max-width: 52ch;
}

.training-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 56px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.training-option {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.training-option-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.training-option-head h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.training-option-head span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  white-space: nowrap;
}

.training-option p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 52ch;
}

/* ============================================
   Shop
   ============================================ */

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.shop-content > p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.97rem;
  line-height: 1.85;
  margin: 26px 0 38px;
}

.product-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.product-head h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.product-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--bronze-deep);
}

.product-variant {
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

.product-specs {
  margin: 22px 0 34px;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.product-specs li span:first-child {
  color: var(--muted);
  font-weight: 300;
}

.product-specs li span:last-child {
  text-align: right;
}

.product-notes {
  margin-top: 18px;
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--muted);
}

.product-media {
  position: relative;
}

.product-media-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-media-alt {
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 36%;
  border: 8px solid var(--paper);
  box-shadow: 0 26px 60px rgba(33, 28, 23, 0.28);
}

.product-media-alt img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

/* ============================================
   Reviews
   ============================================ */

.reviews {
  background: var(--sand);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(33, 28, 23, 0.08);
}

.review-stars {
  color: var(--bronze);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  margin-bottom: 22px;
}

.review-card p {
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 26px;
  flex: 1;
}

.review-card footer {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews-cta {
  text-align: center;
  margin-top: 52px;
}

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

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 88px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-lede {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.97rem;
  max-width: 40ch;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s var(--ease);
}

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

.faq-item summary:hover {
  color: var(--bronze-deep);
}

.faq-marker {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}

.faq-marker::before,
.faq-marker::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--bronze);
  transition: transform 0.35s var(--ease);
}

.faq-marker::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-marker::after {
  transform: rotate(0deg);
}

.faq-item p {
  padding: 0 48px 26px 0;
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 60ch;
}

/* ============================================
   Contact
   ============================================ */

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: stretch;
}

.contact-details {
  margin: 34px 0 40px;
}

.contact-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-item dt {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 8px;
}

.contact-item dd {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
}

.contact-item dd a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--bronze-soft);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.contact-item dd a:hover {
  color: var(--bronze-deep);
  border-color: var(--bronze-deep);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.social-links a:hover {
  color: var(--bronze-deep);
  border-color: var(--bronze-soft);
}

.contact-map {
  border: 1px solid var(--line);
  min-height: 460px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  filter: grayscale(0.25) sepia(0.08);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--dark);
  color: var(--dark-muted);
  padding: 88px 0 36px;
}

.footer-top {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--dark-line);
}

.footer-wordmark {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: #F0E7DB;
  transition: color 0.3s var(--ease);
}

.footer-wordmark span {
  font-style: italic;
}

.footer-wordmark:hover {
  color: var(--bronze-soft);
}

.footer-tag {
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 200px));
  gap: 40px;
  padding-bottom: 56px;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--dark-muted);
  padding: 5px 0;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer-col a:hover {
  color: #F0E7DB;
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--dark-line);
  font-size: 0.75rem;
  font-weight: 300;
  text-align: center;
}

/* ============================================
   Sticky booking bar (mobile)
   ============================================ */

.sticky-book {
  display: none;
}

/* ============================================
   Animations
   ============================================ */

@keyframes heroSettle {
  from { transform: scale(1.1); }
  to { transform: scale(1.04); }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

/* Scroll reveal (added by JS) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .section {
    padding: 88px 0;
  }

  .about-grid,
  .training-grid,
  .shop-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .faq-intro {
    position: static;
  }

  .about-image {
    max-width: 560px;
  }

  .product-media {
    order: -1;
    max-width: 560px;
    margin-bottom: 30px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 32px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .section-desc {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 58px;
  }

  .training-options {
    grid-template-columns: 1fr;
  }

  .product-media-alt {
    right: 0;
    bottom: -24px;
    width: 34%;
    border-width: 6px;
  }

  .section {
    padding: 76px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 96px 32px 48px;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease),
                transform 0.4s var(--ease);
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu li:last-child {
    border-bottom: none;
    margin-top: 20px;
  }

  .nav-menu a {
    display: block;
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink) !important;
    padding: 14px 0;
  }

  .nav-menu a:not(.nav-cta)::after {
    display: none;
  }

  .nav-menu .nav-cta {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FFF9F1 !important;
    padding: 18px 34px;
    text-align: center;
    width: 100%;
  }

  .hero-meta-row {
    flex-direction: column;
    gap: 6px;
  }

  .hero-meta span:nth-child(3) {
    display: none;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    gap: 52px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 28px 40px;
  }

  .about-image::before {
    top: 14px;
    left: -14px;
  }

  .about-image figcaption {
    right: 12px;
    bottom: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-book {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    background: var(--ink);
    color: var(--paper);
    text-align: center;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 18px 24px calc(18px + env(safe-area-inset-bottom, 0px));
    transition: transform 0.4s var(--ease);
  }

  .sticky-book.hidden {
    transform: translateY(110%);
  }
}

@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================
   Reduced motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
