/* ============================================================
   vibrationalworks — Somatic & Wellness Practice
   Complete Stylesheet — all pages
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Calm earth palette */
  --ink:        #1c1917;
  --parchment:  #f5f0e8;
  --stone:      #e2dbd0;
  --sand:       #c9bfad;
  --terra:      #8c6a52;
  --clay:       #a67c64;
  --sage:       #6b7c65;
  --cream:      #faf7f2;
  --warm-white: #fdf9f4;
  --gold:       #b89a6a;
  --moss:       #4a5c44;
  --blush:      #e8d5c4;
  --white:      #ffffff;
  --error:      #b45309;

  --display: "Cormorant Garamond", Georgia, serif;
  --body:    "Outfit", sans-serif;
  --italic:  "Playfair Display", Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--terra); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.15s ease;
  transform: translate(-50%,-50%);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--terra); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: transform 0.35s ease, width 0.25s, height 0.25s, opacity 0.25s;
  transform: translate(-50%,-50%);
  opacity: 0.5;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 300;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 60px;
  background: rgba(253,249,244,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stone);
  transition: padding 0.4s, background 0.5s, border-color 0.5s;
}
.nav.scrolled { padding: 16px 60px; }

/* Left column */
.nav-links {
  display: flex; gap: 40px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  justify-content: flex-start;
}
.nav-links a { color: var(--ink); transition: opacity 0.2s; white-space: nowrap; }
.nav-links a:hover { opacity: 0.45; }
.nav-links a.active {
  color: var(--terra);
  border-bottom: 1px solid var(--terra); padding-bottom: 2px;
}

/* Centre column */
.nav-logo {
  font-family: var(--display);
  font-size: 17px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); transition: color 0.5s;
  text-align: center; line-height: 1.3;
  white-space: nowrap;
}
.nav-logo span {
  display: block;
  font-size: 9px; font-family: var(--body);
  letter-spacing: 0.2em; color: var(--terra);
  text-transform: uppercase; font-weight: 400;
  margin-top: 2px;
}

/* Right column */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

/* Home transparent nav */
.nav.home-nav { background: transparent; border-bottom-color: transparent; }
.nav.home-nav .nav-links a { color: rgba(255,255,255,0.85); }
.nav.home-nav .nav-links a.active { color: var(--white); border-bottom-color: rgba(255,255,255,0.6); }
.nav.home-nav .nav-logo { color: var(--white); }
.nav.home-nav .nav-logo span { color: rgba(255,255,255,0.65); }
.nav.home-nav .nav-cart-btn { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.35); color: var(--white); }
.nav.home-nav .nav-hamburger { border-color: rgba(255,255,255,0.4); }
.nav.home-nav .nav-hamburger span { background: var(--white); }
.nav.home-nav.scrolled { background: rgba(253,249,244,0.97); border-bottom-color: var(--stone); }
.nav.home-nav.scrolled .nav-links a { color: var(--ink); }
.nav.home-nav.scrolled .nav-logo { color: var(--ink); }
.nav.home-nav.scrolled .nav-logo span { color: var(--terra); }
.nav.home-nav.scrolled .nav-cart-btn { background: var(--ink); border-color: var(--ink); color: var(--white); }
.nav.home-nav.scrolled .nav-hamburger { border-color: var(--stone); }
.nav.home-nav.scrolled .nav-hamburger span { background: var(--ink); }

.nav-cart-btn {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); background: var(--ink);
  padding: 10px 22px; border-radius: 100px;
  border: 1px solid var(--ink); cursor: none;
  transition: background 0.25s, transform 0.2s, border-color 0.25s;
}
.nav-cart-btn:hover { background: var(--terra); border-color: var(--terra); transform: translateY(-1px); }
.cart-count {
  background: var(--terra); color: var(--white);
  font-size: 10px; font-weight: 600;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── HERO ── */
.hero {
  position: relative; width: 100%; height: 100vh; min-height: 680px;
  overflow: hidden; background: #2c2420;
}
.hero img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(0.6) saturate(0.85);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,25,23,0.3) 0%,
    rgba(28,25,23,0.1) 45%,
    rgba(28,25,23,0.6) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 88px; left: 60px; right: 60px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.hero-tagline {
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 300; color: var(--white);
  line-height: 0.9; letter-spacing: -0.02em;
  opacity: 0; transform: translateY(28px);
  animation: heroIn 1.1s ease 0.4s forwards;
}
.hero-tagline em {
  font-family: var(--italic);
  font-style: italic; color: var(--blush);
}
.hero-info {
  text-align: right; color: rgba(255,255,255,0.7);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; line-height: 2.2;
  opacity: 0; animation: heroFade 1s ease 0.9s forwards;
}
.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.3);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes heroIn   { to { opacity: 1; transform: none; } }
@keyframes heroFade { to { opacity: 1; } }
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.3; }
  50%     { transform: scaleY(0.4); opacity: 0.08; }
}

/* ── INTRO / ABOUT ── */
.intro-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 88vh; background: var(--warm-white);
}
.intro-image { position: relative; overflow: hidden; }
.intro-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 1s ease;
}
.intro-image:hover img { transform: scale(1.03); }
.intro-image-label {
  position: absolute; bottom: 28px; left: 28px;
  background: var(--terra); color: var(--white);
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; font-weight: 500;
}
.intro-content {
  padding: 88px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.intro-eyebrow {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 30px;
  display: flex; align-items: center; gap: 16px;
}
.intro-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--terra); }
.intro-heading {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px); font-weight: 300;
  color: var(--ink); line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.intro-heading em { font-style: italic; color: var(--clay); }
.intro-body {
  font-size: 15px; font-weight: 400; color: #5c5248;
  line-height: 1.85; max-width: 400px; margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--ink); color: var(--white);
  font-family: var(--body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 17px 36px; border-radius: 100px;
  border: 1.5px solid var(--ink); cursor: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn-primary:hover { background: transparent; color: var(--ink); transform: translateY(-2px); }
.btn-primary .arrow { font-size: 16px; transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(5px); }

.btn-next {
  background: var(--ink); color: var(--white);
  font-family: var(--body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 17px; border-radius: 12px; border: none; cursor: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-next:hover { background: var(--terra); transform: translateY(-2px); }
.btn-next:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn-back {
  padding: 17px 24px;
  border: 1.5px solid var(--stone); border-radius: 12px;
  background: transparent; color: var(--ink);
  font-family: var(--body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: none; transition: all 0.25s;
}
.btn-back:hover { border-color: var(--ink); background: var(--parchment); }
.btn-row { display: flex; gap: 14px; align-items: center; }

/* ── SERVICES SECTION (home highlight) ── */
.services-section {
  background: var(--parchment); padding: 100px 60px;
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 64px; border-bottom: 1px solid var(--sand); padding-bottom: 36px;
}
.services-title {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px); font-weight: 300;
  letter-spacing: -0.03em; color: var(--ink); line-height: 1.0;
}
.services-title span { display: block; font-style: italic; color: var(--clay); }
.services-count {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sand); padding-bottom: 6px;
}
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.service-card {
  padding: 44px 0; border-bottom: 1px solid var(--sand);
  display: grid; grid-template-columns: 52px 1fr auto;
  align-items: start; gap: 24px; cursor: none;
  transition: opacity 0.2s;
}
.service-card:hover { opacity: 0.75; }
.service-card:nth-child(odd)  { padding-right: 64px; border-right: 1px solid var(--sand); }
.service-card:nth-child(even) { padding-left: 64px; }
.service-card:nth-last-child(-n+2) { border-bottom: none; }
/* On mobile single-col, only last card loses border */

.service-num {
  font-family: var(--display); font-size: 12px; font-weight: 300;
  color: var(--clay); letter-spacing: 0.06em; padding-top: 4px;
}
.service-body { display: flex; flex-direction: column; }
.service-name {
  font-family: var(--display); font-size: 24px; font-weight: 400;
  color: var(--ink); letter-spacing: -0.01em; margin-bottom: 10px; line-height: 1.2;
}
.service-price {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--terra); font-weight: 500; margin-bottom: 12px;
}
.service-desc { font-size: 13px; color: #7a6e65; line-height: 1.75; max-width: 300px; }
.service-icon {
  width: 40px; height: 40px; border: 1px solid var(--sand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; color: var(--terra);
}
.services-cta {
  text-align: center; margin-top: 56px; padding-top: 48px;
  border-top: 1px solid var(--sand);
}
.services-cta p {
  font-family: var(--display); font-size: 22px; font-weight: 300;
  color: #7a6e65; margin-bottom: 24px; line-height: 1.5;
}

/* ── APPROACH / VALUES STRIP ── */
.approach-strip {
  background: var(--ink); padding: 80px 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.approach-item {
  padding: 0 52px; border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 12px;
}
.approach-item:first-child { padding-left: 0; }
.approach-item:last-child  { border-right: none; }
.approach-num {
  font-family: var(--display); font-size: 44px; font-weight: 300;
  color: var(--terra); letter-spacing: -0.02em; line-height: 1;
}
.approach-title {
  font-family: var(--display); font-size: 22px; font-weight: 400;
  color: var(--white); letter-spacing: -0.01em;
}
.approach-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.75; }

/* ── MOSAIC ── */
.mosaic-section {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 420px 280px; gap: 3px; background: var(--ink);
}
.mosaic-item { overflow: hidden; position: relative; }
.mosaic-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s ease, filter 0.5s; filter: brightness(0.8) saturate(0.9);
}
.mosaic-item:hover img { transform: scale(1.05); filter: brightness(0.95) saturate(1); }
.mosaic-item-1 { grid-row: 1 / 3; }
.mosaic-item-2 { grid-column: 2; grid-row: 1; }
.mosaic-item-3 { grid-column: 3; grid-row: 1; }
.mosaic-item-4 { grid-column: 2 / 4; grid-row: 2; }
.mosaic-quote {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--moss); padding: 48px; text-align: center;
}
.mosaic-quote blockquote {
  font-family: var(--display); font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300; font-style: italic; color: var(--white);
  line-height: 1.5; letter-spacing: -0.01em; margin-bottom: 20px;
}
.mosaic-quote cite {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); font-style: normal;
}

/* ── VISIT / BOOKING CTA ── */
.visit-section {
  background: var(--terra); padding: 100px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
}
.visit-heading {
  font-family: var(--display); font-size: clamp(52px, 8vw, 104px);
  font-weight: 300; color: var(--white); line-height: 0.92; letter-spacing: -0.03em;
}
.visit-heading em { display: block; font-style: italic; opacity: 0.6; }
.visit-details { display: flex; flex-direction: column; gap: 32px; }
.visit-detail-group h4 {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 8px; font-weight: 500;
}
.visit-detail-group p {
  font-family: var(--display); font-size: 19px; font-weight: 300;
  color: var(--white); letter-spacing: 0.01em; line-height: 1.65;
}
.visit-cta {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--white); color: var(--terra);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 17px 36px; border-radius: 100px; cursor: none;
  transition: background 0.3s, color 0.3s, transform 0.2s; width: fit-content;
}
.visit-cta:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }

/* ── SHOP HERO ── */
.shop-hero {
  padding: 144px 60px 72px; background: var(--parchment);
  border-bottom: 1px solid var(--stone);
  display: flex; justify-content: space-between; align-items: flex-end;
}
.shop-hero-left h1 {
  font-family: var(--display);
  font-size: clamp(60px, 9vw, 124px); font-weight: 300;
  letter-spacing: -0.04em; line-height: 0.9; color: var(--ink);
}
.shop-hero-left h1 em { font-style: italic; color: var(--clay); }
.shop-hero-right { text-align: right; padding-bottom: 8px; }
.shop-hero-right p {
  font-family: var(--display); font-size: 17px; font-weight: 300;
  color: #7a6e65; line-height: 1.7; max-width: 300px;
}
.product-count {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 10px;
}

/* ── FILTER BAR ── */
.filter-bar {
  padding: 22px 60px; background: var(--warm-white);
  border-bottom: 1px solid var(--stone);
  display: flex; align-items: center; justify-content: space-between;
}
.filter-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 20px; border-radius: 100px;
  border: 1px solid var(--stone); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); background: transparent; cursor: none; transition: all 0.22s;
}
.filter-tab:hover, .filter-tab.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.sort-select {
  font-family: var(--body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); background: transparent;
  border: 1px solid var(--stone); padding: 8px 16px; border-radius: 100px;
  cursor: none; outline: none; appearance: none;
}

/* ── PRODUCT GRID ── */
.shop-main { padding: 60px 60px 100px; }
.shop-section-header { margin-bottom: 52px; }
.shop-section-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 80px); font-weight: 300;
  color: var(--ink); letter-spacing: -0.03em; line-height: 1.0; margin-bottom: 16px;
}
.shop-section-desc {
  font-size: 15px; color: #7a6e65; line-height: 1.85; max-width: 560px;
}
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px 22px; }
.product-card { display: flex; flex-direction: column; cursor: none; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-card:hover .product-add-btn { opacity: 1; transform: translateY(0); }
.product-img-wrap {
  position: relative; aspect-ratio: 3 / 3.8;
  border-radius: 16px; overflow: hidden;
  background: var(--parchment); margin-bottom: 18px;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--terra); color: var(--white);
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.product-badge.best-seller { background: var(--moss); }
.product-badge.new         { background: var(--moss); }
.product-badge.sale        { background: var(--gold); color: var(--ink); }
.product-add-btn {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  background: var(--ink); color: var(--white);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px; border-radius: 10px; border: none; cursor: none;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.product-add-btn:hover { background: var(--terra); }
.product-info { display: flex; flex-direction: column; }
.product-category {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 5px;
}
.product-name {
  font-family: var(--display); font-size: 20px; font-weight: 400;
  color: var(--ink); line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 7px;
}
.product-desc { font-size: 12px; color: #7a6e65; line-height: 1.65; margin-bottom: 12px; }
.product-price-row { display: flex; align-items: center; gap: 10px; }
.product-price { font-family: var(--display); font-size: 19px; font-weight: 500; color: var(--ink); }
.product-price-old { font-size: 13px; color: var(--sand); text-decoration: line-through; }

/* ── FEATURE STRIP ── */
.feature-strip {
  background: var(--ink); padding: 52px 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.feature-item {
  padding: 0 48px; border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 10px;
}
.feature-item:first-child { padding-left: 0; }
.feature-item:last-child  { border-right: none; }
.feature-icon { font-size: 20px; margin-bottom: 2px; color: var(--gold); }
.feature-title {
  font-family: var(--display); font-size: 18px; font-weight: 400;
  color: var(--white); letter-spacing: -0.01em;
}
.feature-desc { font-size: 12px; color: rgba(255,255,255,0.42); line-height: 1.75; }

/* ── CART OVERLAY & SIDEBAR ── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(28,25,23,0.55);
  z-index: 400; opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; width: 400px;
  background: var(--warm-white); z-index: 500;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  border-left: 1px solid var(--stone);
}
.cart-sidebar.open { transform: none; }
.cart-header {
  padding: 28px 32px 22px; border-bottom: 1px solid var(--stone);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-title { font-family: var(--display); font-size: 26px; font-weight: 400; letter-spacing: -0.02em; }
.cart-close {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--stone);
  background: transparent; cursor: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--ink); transition: background 0.2s;
}
.cart-close:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.cart-items {
  flex: 1; overflow-y: auto; padding: 22px 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; color: var(--sand);
}
.cart-empty-icon { font-size: 40px; }
.cart-empty p { font-family: var(--display); font-size: 18px; font-weight: 300; }
.cart-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; align-items: start; }
.cart-item-img { width: 76px; height: 86px; border-radius: 10px; overflow: hidden; background: var(--parchment); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name {
  font-family: var(--display); font-size: 15px; font-weight: 400;
  color: var(--ink); margin-bottom: 3px; letter-spacing: -0.01em;
}
.cart-item-variant { font-size: 11px; color: var(--clay); letter-spacing: 0.06em; margin-bottom: 10px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--stone);
  background: transparent; cursor: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--ink); transition: background 0.2s;
}
.qty-btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.qty-num { font-size: 13px; font-weight: 500; min-width: 14px; text-align: center; }
.cart-item-price { font-family: var(--display); font-size: 16px; font-weight: 500; color: var(--ink); }
.cart-footer { padding: 22px 32px 32px; border-top: 1px solid var(--stone); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cart-subtotal-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #7a6e65; }
.cart-subtotal-amount { font-family: var(--display); font-size: 22px; font-weight: 400; }
.cart-note { font-size: 11px; color: var(--sand); margin-bottom: 18px; line-height: 1.6; }
.btn-checkout {
  width: 100%; background: var(--ink); color: var(--white);
  font-family: var(--body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 17px; border-radius: 12px; border: none; cursor: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-checkout:hover { background: var(--terra); transform: translateY(-2px); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 40px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--moss); color: var(--white);
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  padding: 13px 28px; border-radius: 100px;
  z-index: 600; opacity: 0; transition: opacity 0.3s, transform 0.3s; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── APPOINTMENTS: PAGE WRAPPER ── */
.page-wrapper {
  min-height: 100vh; padding-top: 80px;
  display: grid; grid-template-columns: 1fr 1fr;
}
.left-panel {
  background: var(--moss); padding: 72px 60px;
  position: sticky; top: 80px;
  height: calc(100vh - 80px); overflow-y: auto;
  display: flex; flex-direction: column;
}
.panel-eyebrow {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.panel-eyebrow::before { content: ''; width: 28px; height: 1px; background: rgba(255,255,255,0.3); }
.panel-heading {
  font-family: var(--display); font-size: clamp(44px, 5vw, 76px);
  font-weight: 300; color: var(--white); line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 36px;
}
.panel-heading em { font-style: italic; color: rgba(255,255,255,0.5); }
.panel-info {
  margin-top: auto; border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px; display: flex; flex-direction: column; gap: 22px;
}
.panel-info-item h5 {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 5px;
}
.panel-info-item p {
  font-family: var(--display); font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.82); line-height: 1.6;
}
.right-panel { padding: 68px 60px 96px; background: var(--warm-white); overflow-y: auto; }

/* ── STEP INDICATOR ── */
.steps-indicator { display: flex; align-items: center; margin-bottom: 52px; }
.step-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sand); transition: color 0.3s;
}
.step-item.active { color: var(--ink); }
.step-item.done   { color: var(--terra); }
.step-num {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--stone);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--sand); transition: all 0.3s;
}
.step-item.active .step-num { background: var(--ink); color: var(--white); border-color: var(--ink); }
.step-item.done .step-num   { background: var(--terra); color: var(--white); border-color: var(--terra); }
.step-connector { flex: 1; height: 1px; background: var(--stone); margin: 0 10px; max-width: 44px; }

/* ── FORM STEPS ── */
.form-step { display: none; }
.form-step.active { display: block; }
.section-title { font-family: var(--display); font-size: 34px; font-weight: 400; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 6px; }
.section-sub   { font-size: 14px; color: #7a6e65; margin-bottom: 32px; line-height: 1.65; }
.section-eyebrow {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--clay); }

/* ── SERVICE OPTIONS ── */
.service-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.service-option {
  border: 1.5px solid var(--stone); border-radius: 14px; padding: 22px 18px;
  cursor: none; transition: all 0.25s; position: relative; background: var(--white);
}
.service-option:hover { border-color: var(--clay); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(28,25,23,0.07); }
.service-option.selected { border-color: var(--ink); background: var(--parchment); }
.service-option.selected::after {
  content: '✓'; position: absolute; top: 14px; right: 14px;
  width: 22px; height: 22px; background: var(--ink); color: var(--white);
  border-radius: 50%; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.service-option-icon { font-size: 20px; margin-bottom: 10px; }
.service-option-name { font-family: var(--display); font-size: 17px; font-weight: 400; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.service-option-meta { font-size: 11px; color: var(--terra); letter-spacing: 0.06em; font-weight: 500; }
.service-option-desc { font-size: 11px; color: #7a6e65; line-height: 1.65; margin-top: 7px; }

/* ── CALENDAR ── */
.calendar-wrap { background: var(--white); border: 1px solid var(--stone); border-radius: 16px; overflow: hidden; margin-bottom: 28px; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--stone); }
.cal-month { font-family: var(--display); font-size: 20px; font-weight: 400; color: var(--ink); letter-spacing: -0.01em; }
.cal-nav { display: flex; gap: 7px; }
.cal-nav-btn {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--stone);
  background: transparent; cursor: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.2s; color: var(--ink);
}
.cal-nav-btn:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.calendar-grid { padding: 18px 22px 22px; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 6px; }
.cal-weekday { font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); text-align: center; padding: 3px 0; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 13px; font-weight: 400; cursor: none;
  transition: all 0.2s; color: var(--ink); border: 1.5px solid transparent;
}
.cal-day:hover:not(.disabled):not(.empty) { background: var(--parchment); border-color: var(--stone); }
.cal-day.selected  { background: var(--ink) !important; color: var(--white) !important; border-color: var(--ink) !important; }
.cal-day.today     { border-color: var(--terra); color: var(--terra); font-weight: 600; }
.cal-day.disabled  { color: var(--stone); cursor: not-allowed; }
.cal-day.empty     { pointer-events: none; }

/* ── TIME SLOTS ── */
.time-slots-wrap { margin-bottom: 32px; }
.time-slots-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.time-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.time-slot {
  padding: 12px 6px; border: 1.5px solid var(--stone); border-radius: 9px;
  text-align: center; font-size: 12px; font-weight: 500;
  color: var(--ink); background: var(--white); cursor: none; transition: all 0.2s;
}
.time-slot:hover:not(.booked) { border-color: var(--clay); background: var(--parchment); }
.time-slot.selected { background: var(--ink); color: var(--white); border-color: var(--ink); }
.time-slot.booked   { color: var(--stone); background: var(--parchment); cursor: not-allowed; text-decoration: line-through; }

/* ── FORM FIELDS ── */
.fields-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field-group { display: flex; flex-direction: column; gap: 7px; }
.field-group.full { grid-column: 1 / -1; }
label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
input, textarea, select {
  font-family: var(--body); font-size: 14px; font-weight: 400;
  color: var(--ink); background: var(--white);
  border: 1.5px solid var(--stone); border-radius: 10px; padding: 13px 16px;
  outline: none; transition: border-color 0.25s; cursor: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--ink); }
input.error, select.error { border-color: var(--error); }
textarea { resize: vertical; min-height: 96px; }
.field-hint { font-size: 11px; color: var(--clay); margin-top: 2px; }
.field-error-msg { font-size: 11px; color: var(--error); display: none; }
.field-error-msg.show { display: block; }

/* ── BOOKING SUMMARY ── */
.booking-summary { background: var(--parchment); border: 1px solid var(--stone); border-radius: 16px; padding: 26px; margin-bottom: 28px; }
.summary-title { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); margin-bottom: 18px; }
.summary-rows  { display: flex; flex-direction: column; gap: 13px; }
.summary-row   { display: flex; justify-content: space-between; align-items: center; }
.summary-row-label { font-size: 12px; color: #7a6e65; }
.summary-row-value { font-family: var(--display); font-size: 15px; font-weight: 400; color: var(--ink); }
.summary-divider   { height: 1px; background: var(--stone); margin: 3px 0; }
.summary-price     { font-family: var(--display); font-size: 26px; font-weight: 400; color: var(--ink); }

/* ── SUCCESS SCREEN ── */
.success-screen { display: none; flex-direction: column; align-items: center; gap: 18px; padding: 36px 0; text-align: center; }
.success-screen.show { display: flex; }
.success-icon {
  width: 76px; height: 76px; border-radius: 50%; background: var(--moss);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: var(--white);
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.success-heading { font-family: var(--display); font-size: 46px; font-weight: 300; color: var(--ink); letter-spacing: -0.02em; line-height: 1.1; }
.success-sub     { font-size: 14px; color: #7a6e65; max-width: 320px; line-height: 1.75; }
.success-ref     { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); background: var(--parchment); border: 1px solid var(--stone); padding: 11px 22px; border-radius: 100px; }
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ── ALERT / ERROR ── */
.alert-error {
  background: #fef3e8; border: 1px solid #dbb98a; color: #92400e;
  padding: 13px 16px; border-radius: 9px; font-size: 13px;
  margin-bottom: 22px; line-height: 1.6;
}
.step-error-msg {
  background: #fef3e8; border: 1px solid #dbb98a; color: #92400e;
  padding: 12px 16px; border-radius: 9px; font-size: 13px;
  margin-bottom: 22px; line-height: 1.5;
  animation: fadeInDown 0.2s ease;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ── CHECKOUT PAYMENT ── */
.payment-page {
  padding-top: 80px; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 460px;
  max-width: 1300px; margin: 0 auto;
}
.payment-form-panel { padding: 64px 68px 80px 56px; border-right: 1px solid var(--stone); }
.payment-heading {
  font-family: var(--display); font-size: clamp(42px, 5vw, 68px); font-weight: 300;
  letter-spacing: -0.03em; line-height: 1.0; margin-bottom: 8px; color: var(--ink);
}
.payment-heading em { font-style: italic; color: var(--clay); }
.payment-sub { font-size: 14px; color: #7a6e65; margin-bottom: 44px; line-height: 1.65; }
.stripe-section-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin-bottom: 11px; }
#payment-element { background: var(--white); border: 1.5px solid var(--stone); border-radius: 12px; padding: 18px 16px; margin-bottom: 24px; transition: border-color 0.25s; }
#payment-element:focus-within { border-color: var(--ink); }
#submit-btn {
  width: 100%; background: var(--ink); color: var(--white);
  font-family: var(--body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 19px; border-radius: 12px; border: none; cursor: none;
  transition: background 0.25s, transform 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px;
}
#submit-btn:hover:not(:disabled) { background: var(--terra); transform: translateY(-2px); }
#submit-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.pay-btn-lock { font-size: 15px; }
#payment-message { display: none; padding: 13px 16px; border-radius: 9px; font-size: 13px; margin-bottom: 18px; line-height: 1.5; }
#payment-message.error   { display: block; background: #fef3e8; border: 1px solid #dbb98a; color: #92400e; }
#payment-message.success { display: block; background: #f0fdf4; border: 1px solid #86efac; color: #15803d; }
.spinner { display: none; width: 17px; height: 17px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
#submit-btn.loading .btn-label  { display: none; }
#submit-btn.loading .spinner    { display: block; }
#submit-btn.loading .pay-btn-lock { display: none; }
.test-card-hint { background: var(--parchment); border: 1px solid var(--stone); border-radius: 10px; padding: 14px 18px; margin-top: 22px; font-size: 12px; color: #7a6e65; line-height: 1.7; }
.test-card-hint strong { display: block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); margin-bottom: 7px; }
.test-card-hint code { font-family: monospace; background: var(--stone); padding: 2px 6px; border-radius: 4px; font-size: 12px; color: var(--ink); }
.secure-badges { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--stone); }
.secure-badge { display: flex; align-items: center; gap: 6px; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sand); font-weight: 500; }
.payment-summary-panel { padding: 64px 52px 80px 52px; background: var(--parchment); position: sticky; top: 80px; max-height: calc(100vh - 80px); overflow-y: auto; }
.summary-eyebrow { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); margin-bottom: 26px; }
.order-items-list { margin-bottom: 24px; }
.order-line-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--stone); }
.order-line-item:first-child { border-top: 1px solid var(--stone); }
.order-line-img { width: 56px; height: 64px; border-radius: 9px; overflow: hidden; background: var(--stone); flex-shrink: 0; position: relative; }
.order-line-img img { width: 100%; height: 100%; object-fit: cover; }
.order-line-qty-badge { position: absolute; top: -5px; right: -5px; width: 18px; height: 18px; background: var(--ink); color: var(--white); border-radius: 50%; font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.order-line-name { flex: 1; font-family: var(--display); font-size: 15px; font-weight: 400; color: var(--ink); line-height: 1.3; }
.order-line-cat  { font-size: 10px; color: var(--clay); margin-top: 2px; letter-spacing: 0.05em; }
.order-line-price { font-family: var(--display); font-size: 16px; }
.price-breakdown { display: flex; flex-direction: column; gap: 11px; padding-bottom: 18px; border-bottom: 1px solid var(--sand); margin-bottom: 18px; }
.price-row { display: flex; justify-content: space-between; font-size: 12px; color: #7a6e65; }
.price-row.total { font-family: var(--display); font-size: 24px; font-weight: 400; color: var(--ink); padding-top: 6px; }
.order-ref { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-top: 18px; }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 72px 60px 48px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 76px; }
.footer-brand { font-family: var(--display); font-size: clamp(48px, 8vw, 108px); font-weight: 300; color: var(--white); letter-spacing: -0.03em; line-height: 1; }
.footer-brand span { display: block; font-size: 11px; font-family: var(--body); letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra); font-weight: 400; margin-top: 8px; }
.footer-links { display: flex; flex-direction: column; gap: 15px; padding-top: 12px; }
.footer-links a { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1, .reveal-d1 { transition-delay: 0.1s; }
.reveal-delay-2, .reveal-d2 { transition-delay: 0.22s; }
.reveal-delay-3, .reveal-d3 { transition-delay: 0.34s; }

/* ══════════════════════════════════════════════════════════
   MOBILE NAV — Hamburger + Drawer
   ══════════════════════════════════════════════════════════ */

/* Hamburger — hidden on desktop, shown on mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--stone);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 7px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* No X animation — burger stays as burger, overlay tap closes drawer */

/* Drawer overlay */
.mobile-drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(28,25,23,0.5);
  z-index: 398;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-drawer-overlay.open { display: block; opacity: 1; }

/* Drawer panel */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 82vw);
  background: var(--warm-white);
  z-index: 399;
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  padding: 24px 32px 40px;
  flex: 1;
  overflow-y: auto;
}

/* X close button inside drawer */
.mobile-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--stone);
  background: transparent;
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 24px;
  align-self: flex-end;
  flex-shrink: 0;
}
.mobile-drawer-close:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.mobile-drawer-inner a {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  padding: 16px 0;
  border-bottom: 1px solid var(--stone);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}
.mobile-drawer-inner a:first-of-type { border-top: 1px solid var(--stone); }
.mobile-drawer-inner a:hover,
.mobile-drawer-inner a.active { color: var(--terra); padding-left: 10px; }

.mobile-drawer-meta {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer-meta p {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--sand);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-page { grid-template-columns: 1fr 400px; }
}

@media (max-width: 1024px) {
  .nav { padding: 20px 36px; }
  .nav.scrolled { padding: 15px 36px; }
  .nav-links { gap: 28px; }
  .service-options { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
}

/* ── Mobile ── */
@media (max-width: 900px) {

  /* Nav: switch to logo-left, cart+burger-right (2-col) */
  .nav {
    grid-template-columns: 1fr auto;
    padding: 14px 20px;
  }
  .nav.scrolled { padding: 12px 20px; }
  .nav-links  { display: none; }        /* hide desktop links */
  .nav-hamburger { display: flex; }     /* show burger */
  .nav-logo {
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.12em;
  }
  .nav-logo span { font-size: 8px; margin-top: 1px; }
  .nav-right { gap: 8px; }
  .nav-cart-btn { padding: 8px 14px; font-size: 11px; }
  .cart-count { width: 16px; height: 16px; font-size: 9px; }

  /* Hero */
  .hero-content { left: 20px; right: 20px; bottom: 48px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-tagline { font-size: clamp(44px, 13vw, 68px); }
  .hero-info { text-align: left; font-size: 10px; line-height: 2; }

  /* Intro */
  .intro-section { grid-template-columns: 1fr; }
  .intro-image { height: 64vw; min-height: 240px; }
  .intro-content { padding: 48px 24px; }
  .intro-heading { font-size: clamp(36px, 10vw, 52px); }
  .intro-body { margin-bottom: 36px; }

  /* Services */
  .services-section { padding: 64px 20px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 8px; padding-bottom: 28px; margin-bottom: 44px; }
  .services-title { font-size: clamp(38px, 11vw, 64px); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 40px 1fr auto; gap: 16px; padding: 28px 0; }
  .service-card:nth-child(odd)  { padding-right: 0; border-right: none; }
  .service-card:nth-child(even) { padding-left: 0; }
  .service-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--sand); }
  .service-card:last-child { border-bottom: none; }
  .service-name { font-size: 20px; }
  .services-cta { margin-top: 40px; padding-top: 32px; }

  /* Approach */
  .approach-strip { padding: 52px 20px; grid-template-columns: 1fr; gap: 28px; }
  .approach-item { padding: 0 0 28px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .approach-item:last-child { border-bottom: none; padding-bottom: 0; }
  .approach-num { font-size: 36px; }

  /* Mosaic */
  .mosaic-section { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-item-1 { grid-row: auto; grid-column: 1 / 3; height: 54vw; min-height: 200px; }
  .mosaic-item-4 { height: 40vw; min-height: 160px; }
  .mosaic-quote { padding: 24px 18px; }
  .mosaic-quote blockquote { font-size: clamp(15px, 3.5vw, 20px); }

  /* Visit */
  .visit-section { grid-template-columns: 1fr; padding: 64px 20px; gap: 40px; }
  .visit-heading { font-size: clamp(48px, 14vw, 80px); }

  /* Shop */
  .shop-hero { padding: 100px 20px 44px; flex-direction: column; gap: 16px; align-items: flex-start; }
  .shop-hero-right { text-align: left; }
  .shop-section-title { font-size: clamp(32px, 9vw, 52px); }
  .filter-bar { padding: 14px 20px; flex-wrap: wrap; gap: 8px; }
  .filter-tabs { gap: 5px; flex-wrap: wrap; }
  .filter-tab { padding: 6px 14px; font-size: 10px; }
  .shop-main { padding: 36px 20px 72px; }
  .shop-section-header { margin-bottom: 36px; }
  .feature-strip { padding: 44px 20px; grid-template-columns: 1fr; gap: 28px; }
  .feature-item { padding: 0 0 28px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .feature-item:last-child { border-bottom: none; padding-bottom: 0; }

  /* Cart — slides up from bottom */
  .cart-sidebar {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--stone);
    border-radius: 18px 18px 0 0;
    top: auto;
    height: 90vh;
    transform: translateY(100%);
  }
  .cart-sidebar.open { transform: translateY(0); }

  /* Appointments */
  .page-wrapper { grid-template-columns: 1fr; }
  .left-panel { position: relative; top: 0; height: auto; min-height: unset; padding: 48px 20px 36px; }
  .panel-heading { font-size: clamp(38px, 11vw, 60px); margin-bottom: 20px; }
  .panel-info { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding-top: 24px; }
  .right-panel { padding: 32px 20px 80px; }
  .steps-indicator { margin-bottom: 32px; }
  .section-title { font-size: 26px; }
  .service-options { grid-template-columns: 1fr; gap: 10px; }
  .fields-grid { grid-template-columns: 1fr; }
  .booking-summary { padding: 18px; }

  /* Payment */
  .payment-page { grid-template-columns: 1fr; }
  .payment-form-panel { padding: 40px 20px; border-right: none; border-bottom: 1px solid var(--stone); }
  .payment-summary-panel { padding: 28px 20px; position: static; max-height: none; }
  .payment-heading { font-size: clamp(34px, 10vw, 50px); }

  /* Footer */
  footer { padding: 48px 20px 36px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-brand { font-size: clamp(40px, 13vw, 68px); }
}

/* ── Small mobile ── */
@media (max-width: 560px) {

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .product-name { font-size: 15px; }
  .product-add-btn { font-size: 10px; padding: 10px; }

  /* Mosaic — fully stacked */
  .mosaic-section { grid-template-columns: 1fr; }
  .mosaic-item-1 { grid-column: 1; height: 72vw; }
  .mosaic-item-2 { display: none; }
  .mosaic-item-3 { grid-column: 1; }
  .mosaic-item-4 { grid-column: 1; height: 52vw; }

  /* Step indicator — circles only, no labels */
  .steps-indicator { gap: 2px; }
  .step-connector { max-width: 10px; margin: 0 3px; }
  .step-item span { display: none; }
  .step-num { width: 24px; height: 24px; font-size: 10px; }

  .time-slots { grid-template-columns: repeat(2, 1fr); gap: 7px; }
  .panel-info { grid-template-columns: 1fr; gap: 14px; }
  .hero-tagline { font-size: clamp(36px, 14vw, 52px); }
  .hero-scroll-hint { display: none; }
  .intro-image { height: 72vw; }
  .intro-content { padding: 36px 20px; }
  .visit-section { padding: 48px 20px; }
  .shop-hero { padding: 88px 20px 36px; }
  .shop-hero-left h1 { font-size: clamp(48px, 15vw, 72px); }

  /* Cart items layout on small screens */
  .cart-item { grid-template-columns: 60px 1fr auto; gap: 10px; }
  .cart-item-img { width: 60px; height: 68px; }
  .cart-header { padding: 18px 20px 14px; }
  .cart-items { padding: 14px 20px; }
  .cart-footer { padding: 14px 20px 24px; }
}

/* ── Safe area (iPhone notch / home bar) ── */
@supports (padding: env(safe-area-inset-bottom)) {
  .nav {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .cart-sidebar { padding-bottom: env(safe-area-inset-bottom); }
  .mobile-drawer { padding-bottom: env(safe-area-inset-bottom); }
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════ */

/* ── Hero ── */
.about-hero {
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  background: var(--warm-white);
}
.about-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 60px 72px 60px;
}
.about-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--terra);
}
.about-hero-heading {
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 88px);
  font-weight: 300;
  color: var(--ink);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.about-hero-heading em {
  font-style: italic;
  color: var(--clay);
}
.about-hero-image {
  position: relative;
  overflow: hidden;
}
.about-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.88) saturate(0.9);
  transition: transform 0.9s ease;
}
.about-hero-image:hover img { transform: scale(1.03); }
.about-hero-image-label {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--terra); color: var(--white);
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; font-weight: 500;
}

/* ── Bio ── */
.about-bio-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 80vh;
  background: var(--parchment);
}
.about-bio-image {
  position: relative;
  overflow: hidden;
}
.about-bio-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.9s ease;
}
.about-bio-image:hover img { transform: scale(1.03); }
.about-bio-content {
  padding: 80px 72px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-bio-name {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.about-bio-name em { font-style: italic; color: var(--clay); }
.about-bio-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 32px;
}
.about-bio-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.about-bio-text p {
  font-size: 15px;
  color: #5c5248;
  line-height: 1.85;
  max-width: 480px;
}
.about-bio-text em { font-style: italic; color: var(--clay); }
.about-bio-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid var(--sand);
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #7a6e65;
  font-weight: 400;
}
.credential-icon {
  color: var(--terra);
  font-size: 14px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

/* ── Mission ── */
.about-mission {
  background: var(--moss);
  padding: 100px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-mission-inner {
  max-width: 820px;
  text-align: center;
}
.about-mission-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
}
.about-mission-quote {
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.about-mission-cite {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-style: normal;
}

/* ── Values ── */
.about-values-section {
  background: var(--warm-white);
  padding: 100px 60px;
}
.about-values-header {
  margin-bottom: 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 36px;
}
.about-values-title {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.about-values-title em { font-style: italic; color: var(--clay); }
.about-values-sub {
  font-size: 14px;
  color: #7a6e65;
  max-width: 240px;
  text-align: right;
  line-height: 1.65;
  padding-bottom: 6px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--stone);
}
.about-value-card {
  padding: 44px 40px 44px 0;
  border-right: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-value-card:first-child { padding-left: 0; }
.about-value-card:last-child  { border-right: none; padding-right: 0; }
.about-value-card:nth-child(n+2) { padding-left: 40px; }
.about-value-num {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 300;
  color: var(--sand);
  letter-spacing: 0.08em;
}
.about-value-icon {
  font-size: 22px;
  color: var(--terra);
  margin: 4px 0;
}
.about-value-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.about-value-desc {
  font-size: 13px;
  color: #7a6e65;
  line-height: 1.78;
}

/* ── Space / Location ── */
.about-space-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 80vh;
  background: var(--parchment);
}
.about-space-image {
  position: relative;
  overflow: hidden;
}
.about-space-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) saturate(0.88);
  transition: transform 0.9s ease;
}
.about-space-image:hover img { transform: scale(1.03); }
.about-space-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-space-heading {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.about-space-heading em { font-style: italic; color: var(--clay); }
.about-space-body {
  font-size: 15px;
  color: #5c5248;
  line-height: 1.85;
  max-width: 400px;
  margin-bottom: 40px;
}
.about-space-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}
.space-detail h5 {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin-bottom: 5px;
}
.space-detail p {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.6;
}

/* ── CTA ── */
.about-cta-section {
  background: var(--terra);
  padding: 100px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-cta-inner {
  text-align: center;
  max-width: 640px;
}
.about-cta-heading {
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.about-cta-heading em { font-style: italic; opacity: 0.65; }
.about-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 44px;
}
.about-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.about-cta-buttons .btn-primary {
  background: var(--white);
  color: var(--terra);
  border-color: var(--white);
}
.about-cta-buttons .btn-primary:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.about-cta-link {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.about-cta-link:hover { color: var(--white); }

/* ── ABOUT RESPONSIVE ── */
@media (max-width: 1100px) {
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-value-card { border-right: none; border-bottom: 1px solid var(--stone); padding: 36px 0; }
  .about-value-card:nth-child(odd)  { padding-right: 32px; border-right: 1px solid var(--stone); }
  .about-value-card:nth-child(even) { padding-left: 32px; border-right: none; }
  .about-value-card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 900px) {
  .about-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 72px; }
  .about-hero-content { padding: 52px 20px 40px; order: 2; }
  .about-hero-heading { font-size: clamp(40px, 12vw, 64px); }
  .about-hero-image { height: 65vw; min-height: 240px; order: 1; }

  .about-bio-section { grid-template-columns: 1fr; }
  .about-bio-image { height: 65vw; min-height: 240px; }
  .about-bio-content { padding: 48px 20px; }
  .about-bio-name { font-size: clamp(36px, 10vw, 56px); }
  .about-bio-credentials { grid-template-columns: 1fr; gap: 12px; }

  .about-mission { padding: 72px 20px; }
  .about-mission-quote { font-size: clamp(22px, 6vw, 36px); }

  .about-values-section { padding: 72px 20px; }
  .about-values-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .about-values-sub { text-align: left; max-width: 100%; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-value-card { border-right: none !important; padding: 28px 0 !important; border-bottom: 1px solid var(--stone); }
  .about-value-card:last-child { border-bottom: none; }

  .about-space-section { grid-template-columns: 1fr; }
  .about-space-image { height: 65vw; min-height: 240px; }
  .about-space-content { padding: 48px 20px; }
  .about-space-heading { font-size: clamp(36px, 10vw, 56px); }

  .about-cta-section { padding: 72px 20px; }
  .about-cta-heading { font-size: clamp(40px, 12vw, 64px); }
  .about-cta-buttons { gap: 18px; }
}
@media (max-width: 560px) {
  .about-hero-content { padding: 40px 20px 36px; }
  .about-bio-content { padding: 36px 20px; }
  .about-space-content { padding: 36px 20px; }
  .about-cta-section { padding: 56px 20px; }
  .about-cta-buttons { flex-direction: column; align-items: center; }
}