/* ============================================================
   Victoria Skincare — Homepage 2026 (boutique wellness)
   Uses tokens from assets/colors_and_type.css
   ============================================================ */

html, body {
  margin: 0;
  padding: 0;
  background: var(--vsc-ivory);
  color: var(--fg-1);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.vsc-wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .vsc-wrap { padding: 0 24px; } }

/* -------- Common type helpers ------------------------------ */
.vsc-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vsc-forest);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.vsc-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--vsc-champagne);
}
.vsc-eyebrow.is-centered { justify-content: center; }
.vsc-eyebrow.is-light { color: var(--vsc-leaf); }
.vsc-eyebrow.is-light::before { background: rgba(199,170,132,0.55); }

.vsc-script-flourish {
  font-family: var(--font-script);
  color: var(--vsc-forest);
  font-size: 1.35em;
  line-height: 0.85;
  display: inline-block;
  padding: 0 0.06em;
  vertical-align: baseline;
}

.vsc-rule-gold {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--vsc-champagne);
}

/* -------- Buttons ----------------------------------------- */
.vsc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 240ms cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
}
.vsc-btn-primary {
  background: var(--vsc-forest);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 8px 24px rgba(82,144,38,0.18);
}
.vsc-btn-primary:hover {
  background: var(--vsc-forest-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(82,144,38,0.22);
}
.vsc-btn-ghost {
  background: transparent;
  color: var(--vsc-cocoa);
  border-color: var(--vsc-cocoa);
}
.vsc-btn-ghost:hover { background: var(--vsc-cocoa); color: var(--vsc-ivory); }
.vsc-btn-ghost-light {
  background: transparent;
  color: var(--vsc-ivory);
  border-color: rgba(247,242,236,0.55);
}
.vsc-btn-ghost-light:hover { background: var(--vsc-ivory); color: var(--vsc-cocoa); }
.vsc-btn-text {
  background: transparent;
  color: var(--vsc-cocoa);
  padding: 16px 4px;
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--vsc-champagne);
  border-radius: 0;
}
.vsc-btn-text:hover { color: var(--vsc-forest); border-bottom-color: var(--vsc-forest); }
.vsc-btn-lg { padding: 20px 38px; font-size: 13px; }

.vsc-btn .arrow {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.vsc-btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ============================================================
   NAV
   ============================================================ */
.vsc-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}
/* Blur on pseudo-element so fixed children are not trapped by backdrop-filter containing block */
.vsc-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 242, 236, 0.92);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  z-index: -1;
}
.vsc-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.vsc-nav-logo img { height: 44px; width: auto; }
.vsc-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 38px;
  justify-content: center;
}
.vsc-nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vsc-cocoa);
  transition: color 200ms;
}
.vsc-nav-links a:hover { color: var(--vsc-forest); }
.vsc-nav-links a.is-active { color: var(--vsc-forest); }
.vsc-nav-links li { position: relative; }

.vsc-nav-drop {
  position: relative;
}
.vsc-nav-drop > button {
  background: transparent;
  border: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vsc-cocoa);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 200ms;
}
.vsc-nav-drop > button:hover,
.vsc-nav-drop.is-open > button { color: var(--vsc-forest); }
.vsc-nav-drop > button .chev {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 200ms;
}
.vsc-nav-drop.is-open > button .chev { transform: rotate(-135deg); margin-top: 3px; }
.vsc-nav-drop ul {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--vsc-cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  min-width: 220px;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms, transform 200ms;
  z-index: 80;
}
.vsc-nav-drop.is-open ul {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.vsc-nav-drop ul a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--vsc-cocoa);
  border-radius: 8px;
  transition: background 180ms;
  font-family: var(--font-serif);
  font-weight: 500;
}
.vsc-nav-drop ul a small {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vsc-stone-500);
  font-weight: 500;
}
.vsc-nav-drop ul a:hover { background: var(--vsc-leaf-soft); color: var(--vsc-forest); }

.vsc-nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.vsc-nav-right .phone {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--vsc-stone-500);
}
.vsc-nav-right .vsc-btn { padding: 12px 22px; font-size: 11px; }

/* Lang switcher */
.vsc-lang {
  position: relative;
}
.vsc-lang > button {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vsc-cocoa);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 200ms;
}
.vsc-lang > button:hover { border-color: var(--vsc-forest); color: var(--vsc-forest); }
.vsc-lang > button .globe {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.2px solid currentColor;
  position: relative;
  display: inline-block;
}
.vsc-lang > button .globe::before,
.vsc-lang > button .globe::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.2px solid currentColor;
  border-radius: 50%;
}
.vsc-lang > button .globe::before { transform: scaleX(0.45); }
.vsc-lang > button .globe::after { border-top: 0; border-bottom: 0; transform: scaleY(1); }
.vsc-lang ul {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--vsc-cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px;
  list-style: none;
  margin: 0;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms, transform 180ms;
  z-index: 90;
}
.vsc-lang.is-open ul { opacity: 1; pointer-events: auto; transform: translateY(0); }
.vsc-lang ul button {
  background: transparent;
  border: 0;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--vsc-cocoa);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 180ms;
}
.vsc-lang ul button:hover { background: var(--vsc-leaf-soft); color: var(--vsc-forest); }
.vsc-lang ul button.is-active { background: var(--vsc-cocoa); color: var(--vsc-ivory); }
.vsc-lang ul button .code {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
/* Hamburger — hidden on desktop, shown on mobile via media query */
.vsc-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
  transition: background 200ms;
  flex-shrink: 0;
}
.vsc-hamburger:hover { background: rgba(75,59,50,0.06); }
.vsc-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--vsc-cocoa);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 300ms cubic-bezier(.4,0,.2,1), opacity 200ms, width 200ms;
}
.vsc-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.vsc-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.vsc-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile navigation overlay */
.vsc-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
}
.vsc-mobile-nav.is-open { pointer-events: auto; }

.vsc-mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(75,59,50,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 320ms cubic-bezier(.4,0,.2,1);
}
.vsc-mobile-nav.is-open .vsc-mobile-nav-backdrop { opacity: 1; }

.vsc-mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: var(--vsc-ivory);
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.vsc-mobile-nav.is-open .vsc-mobile-nav-panel { transform: translateX(0); }

.vsc-mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}
.vsc-mobile-nav-header img { height: 36px; width: auto; }
.vsc-mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(75,59,50,0.06);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--vsc-cocoa);
  font-size: 20px;
  line-height: 1;
  transition: background 200ms;
}
.vsc-mobile-nav-close:hover { background: rgba(75,59,50,0.12); }

.vsc-mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  flex: 1;
}
.vsc-mobile-nav-links > li > a,
.vsc-mobile-nav-links > li > .vsc-mobile-nav-label {
  display: block;
  padding: 15px 28px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--vsc-cocoa);
  letter-spacing: -0.005em;
  line-height: 1.2;
  transition: color 180ms;
}
.vsc-mobile-nav-links > li > a:hover,
.vsc-mobile-nav-links > li > a.is-active { color: var(--vsc-forest); }
.vsc-mobile-nav-links > li > a.is-active::before {
  content: "·";
  margin-right: 8px;
  color: var(--vsc-forest);
}

.vsc-mobile-nav-group { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 4px 0; }
.vsc-mobile-nav-label {
  font-size: 11px !important;
  font-family: var(--font-sans) !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  color: var(--vsc-stone-500) !important;
  padding: 16px 28px 8px !important;
  font-weight: 600 !important;
}
.vsc-mobile-nav-sub {
  list-style: none;
  margin: 0;
  padding: 0 0 12px;
}
.vsc-mobile-nav-sub li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px 12px 36px;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--vsc-cocoa);
  gap: 12px;
  transition: color 180ms, background 180ms;
  border-radius: 8px;
  margin: 0 8px;
}
.vsc-mobile-nav-sub li a:hover { color: var(--vsc-forest); background: var(--vsc-leaf-soft); }
.vsc-mobile-nav-sub li a small {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vsc-stone-500);
  font-style: normal;
  flex-shrink: 0;
}

.vsc-mobile-nav-footer {
  padding: 24px 28px 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
}
.vsc-mobile-nav-footer .vsc-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 12px;
}
.vsc-mobile-nav-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
}
.vsc-mobile-nav-lang button {
  background: none;
  border: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vsc-stone-500);
  cursor: pointer;
  padding: 8px 4px;
  transition: color 180ms;
}
.vsc-mobile-nav-lang button.is-active { color: var(--vsc-forest); }
.vsc-mobile-nav-lang button:hover { color: var(--vsc-cocoa); }
.vsc-mobile-nav-lang .sep { color: var(--border); }

@media (max-width: 980px) {
  .vsc-nav-links { display: none; }
  .vsc-nav-right .phone { display: none; }
  .vsc-hamburger { display: flex; }
  /* Flex row: logo | spacer | book+hamburger */
  .vsc-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .vsc-nav-inner > nav { display: none; }
  .vsc-nav-right { gap: 10px; }
  .vsc-nav-logo img { height: clamp(36px, 6vw, 48px); width: auto; }
}

/* ============================================================
   HERO
   ============================================================ */
.vsc-hero {
  position: relative;
  padding: clamp(32px, 5vh, 56px) 0 clamp(48px, 8vh, 96px);
  overflow: hidden;
}
.vsc-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.vsc-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--vsc-cocoa);
  margin: 0 0 28px;
  text-wrap: balance;
}
.vsc-hero-h1 em {
  font-style: italic;
  color: var(--vsc-cocoa);
  font-weight: 400;
}
.vsc-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--vsc-stone-500);
  max-width: 46ch;
  margin: 0 0 40px;
}
.vsc-hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.vsc-hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.vsc-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  border-right: 1px solid var(--border);
}
.vsc-trust-item:first-child { padding-left: 0; }
.vsc-trust-item:last-child { border-right: none; padding-right: 0; }
.vsc-trust-num {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1;
  color: var(--vsc-cocoa);
  font-weight: 500;
}
.vsc-trust-num em { font-style: italic; color: var(--vsc-forest); }
.vsc-trust-lab {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vsc-stone-500);
  line-height: 1.4;
  max-width: 14ch;
}

.vsc-hero-stars { display: inline-flex; gap: 2px; color: var(--vsc-champagne); font-size: 14px; line-height: 1; }
.vsc-hero-image {
  position: relative;
}
.vsc-hero-image .photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.vsc-hero-image .photo-tag {
  position: absolute;
  left: -28px;
  top: 38px;
  background: var(--vsc-ivory);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vsc-cocoa);
  box-shadow: var(--shadow-sm);
}
.vsc-hero-image .photo-tag .dot {
  width: 8px; height: 8px;
  background: var(--vsc-leaf);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(139,195,60,0.18);
}
.vsc-hero-image .photo-card {
  position: absolute;
  right: -20px;
  bottom: -32px;
  background: var(--vsc-ivory);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 240px;
  box-shadow: var(--shadow-md);
}
.vsc-hero-image .photo-card .stars { color: var(--vsc-champagne); font-size: 13px; letter-spacing: 2px; }
.vsc-hero-image .photo-card .q {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--vsc-cocoa);
  margin: 0;
}
.vsc-hero-image .photo-card .who {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vsc-stone-500);
}

.vsc-hero-decor {
  position: absolute;
  font-family: var(--font-script);
  color: rgba(139,195,60,0.10);
  font-size: 280px;
  line-height: 1;
  pointer-events: none;
  top: -60px;
  right: -40px;
  user-select: none;
}

@media (max-width: 920px) {
  .vsc-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .vsc-hero-image .photo-card { right: 16px; bottom: -24px; }
  .vsc-hero-image .photo-tag { left: 16px; }
}

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.vsc-strip {
  background: var(--vsc-sand);
  color: var(--vsc-cocoa);
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(75,59,50,0.10);
  border-bottom: 1px solid rgba(75,59,50,0.10);
}
/* Legacy text track (kept for fallback) */
.vsc-strip-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: vsc-scroll 38s linear infinite;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--vsc-ivory);
}
.vsc-strip-track span { display: inline-flex; align-items: center; gap: 64px; }
.vsc-strip-track .sep { color: var(--vsc-champagne); }

/* Brand logo carousel */
.vsc-strip-logos-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: vsc-scroll 32s linear infinite;
  width: max-content;
}
.vsc-strip-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}
.vsc-strip-logo-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--vsc-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 240ms, box-shadow 240ms;
}
.vsc-strip-logo-circle img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
.vsc-strip-logo-item:hover .vsc-strip-logo-circle {
  opacity: 1;
  box-shadow: 0 4px 16px rgba(75,59,50,0.12);
}

@keyframes vsc-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Pause on hover */
.vsc-strip:hover .vsc-strip-logos-track { animation-play-state: paused; }

/* ============================================================
   PILLARS / PROMISE
   ============================================================ */
.vsc-pillars-band {
  padding: 112px 0;
  background: var(--vsc-ivory);
}
.vsc-pillars-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.vsc-pillars-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--vsc-cocoa);
  margin: 0;
  text-wrap: balance;
}
.vsc-pillars-head h2 em { font-style: italic; color: var(--vsc-forest); }
.vsc-pillars-head p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--vsc-stone-500);
  margin: 0;
  max-width: 44ch;
}
.vsc-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vsc-pillar-cell {
  background: var(--vsc-ivory);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vsc-pillar-cell .num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--vsc-champagne);
  font-size: 22px;
}
.vsc-pillar-cell h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--vsc-cocoa);
  margin: 0;
  line-height: 1.2;
}
.vsc-pillar-cell p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--vsc-stone-500);
  margin: 0;
}

@media (max-width: 820px) {
  .vsc-pillars-head { grid-template-columns: 1fr; gap: 24px; }
  .vsc-pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.vsc-services {
  background: var(--vsc-sand);
  padding: 128px 0;
  position: relative;
}
.vsc-services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.vsc-services-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.008em;
  color: var(--vsc-cocoa);
  margin: 0;
  text-wrap: balance;
  max-width: 16ch;
}
.vsc-services-head h2 em { font-style: italic; color: var(--vsc-forest); }
.vsc-services-head .lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--vsc-stone-500);
  max-width: 38ch;
  margin: 0;
}

.vsc-tabs {
  display: inline-flex;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: 999px;
  margin-bottom: 48px;
}
.vsc-tab {
  background: transparent;
  border: 0;
  color: var(--vsc-cocoa);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 999px;
  transition: all 220ms;
}
.vsc-tab.is-active {
  background: var(--vsc-cocoa);
  color: var(--vsc-ivory);
}
.vsc-tab:not(.is-active):hover { color: var(--vsc-forest); }

.vsc-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vsc-svc-card {
  position: relative;
  background: var(--vsc-cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 240ms, transform 240ms;
  min-height: 280px;
}
.vsc-svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.vsc-svc-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--vsc-cocoa);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.vsc-svc-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--vsc-stone-500);
  margin: 0;
  flex: 1;
}
.vsc-svc-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.vsc-svc-min {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vsc-stone-500);
}
.vsc-svc-price {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--vsc-cocoa);
  font-weight: 500;
}
.vsc-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--vsc-champagne);
  color: var(--vsc-cocoa);
  white-space: nowrap;
  align-self: flex-start;
}
.vsc-pl-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.vsc-services-foot {
  text-align: center;
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.vsc-services-foot .note {
  font-size: 13px;
  color: var(--vsc-stone-500);
  font-style: italic;
}

@media (max-width: 920px) {
  .vsc-services-head { grid-template-columns: 1fr; align-items: start; }
  .vsc-svc-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FOUNDER
   ============================================================ */
.vsc-founder {
  padding: 128px 0;
  background: var(--vsc-ivory);
}
.vsc-founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 88px;
  align-items: center;
}
.vsc-founder-img {
  position: relative;
}
.vsc-founder-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.vsc-founder-img .sig {
  position: absolute;
  bottom: -36px;
  left: -28px;
  background: var(--vsc-ivory);
  border: 1px solid var(--border);
  padding: 18px 26px;
  font-family: var(--font-script);
  font-size: 36px;
  color: var(--vsc-forest);
  line-height: 1;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.vsc-founder-img .sig small {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vsc-stone-500);
  margin-top: 6px;
}
.vsc-founder-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.006em;
  color: var(--vsc-cocoa);
  margin: 0 0 28px;
  text-wrap: balance;
}
.vsc-founder-text h2 em { font-style: italic; color: var(--vsc-forest); }
.vsc-founder-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--vsc-stone-500);
  margin: 0 0 18px;
  max-width: 52ch;
}
.vsc-founder-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--vsc-champagne);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.vsc-founder-list li {
  font-size: 13px;
  color: var(--vsc-cocoa);
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.vsc-founder-list li::before {
  content: "—";
  color: var(--vsc-champagne);
  font-weight: 500;
}

@media (max-width: 920px) {
  .vsc-founder-inner { grid-template-columns: 1fr; gap: 64px; }
}

/* ============================================================
   WHY US (cocoa dark)
   ============================================================ */
.vsc-why {
  background: var(--vsc-cocoa);
  color: var(--vsc-ivory);
  padding: 128px 0;
  position: relative;
  overflow: hidden;
}
.vsc-why::before {
  content: "Victoria";
  position: absolute;
  font-family: var(--font-script);
  color: rgba(139,195,60,0.06);
  font-size: 380px;
  line-height: 1;
  bottom: -120px;
  left: -40px;
  pointer-events: none;
  user-select: none;
}
.vsc-why-head {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.vsc-why-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--vsc-ivory);
  margin: 0 0 18px;
  text-wrap: balance;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.005em;
}
.vsc-why-head h2 em { font-style: italic; color: var(--vsc-leaf); }
.vsc-why-head p {
  font-size: 17px;
  color: rgba(247,242,236,0.7);
  max-width: 56ch;
  margin: 0 auto;
}
.vsc-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
  z-index: 1;
}
.vsc-why-cell { border-top: 1px solid rgba(199,170,132,0.35); padding-top: 28px; }
.vsc-why-cell .kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 40px;
  color: var(--vsc-champagne);
  margin: 0 0 18px;
  line-height: 1;
}
.vsc-why-cell h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--vsc-ivory);
  margin: 0 0 12px;
  line-height: 1.2;
}
.vsc-why-cell p {
  font-size: 14px;
  color: rgba(247,242,236,0.72);
  line-height: 1.65;
  margin: 0;
}

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

/* ============================================================
   PACKAGES / OFFERS
   ============================================================ */
.vsc-packages {
  padding: 128px 0;
  background: var(--vsc-ivory);
}
.vsc-packages-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.vsc-packages-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--vsc-cocoa);
  margin: 0;
  max-width: 22ch;
  letter-spacing: -0.006em;
}
.vsc-packages-head h2 em { font-style: italic; color: var(--vsc-forest); }

.vsc-pkg-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 24px;
}
.vsc-pkg-card {
  position: relative;
  border-radius: 14px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.vsc-pkg-card.is-feature {
  background: var(--vsc-cocoa);
  color: var(--vsc-ivory);
  border-color: transparent;
}
.vsc-pkg-card.is-feature .vsc-eyebrow { color: var(--vsc-leaf); }
.vsc-pkg-card.is-feature .vsc-eyebrow::before { background: rgba(199,170,132,0.6); }
.vsc-pkg-card.is-secondary { background: var(--vsc-cream); }
.vsc-pkg-card.is-tertiary { background: var(--vsc-sand); }

.vsc-pkg-card h3 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.005em;
}
.vsc-pkg-card.is-feature h3 { color: var(--vsc-ivory); }
.vsc-pkg-card .desc {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.vsc-pkg-card.is-feature .desc { color: rgba(247,242,236,0.78); }
.vsc-pkg-card:not(.is-feature) .desc { color: var(--vsc-stone-500); }

.vsc-pkg-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vsc-pkg-includes li {
  font-size: 13px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: 0.02em;
}
.vsc-pkg-includes li::before {
  content: "·";
  color: var(--vsc-champagne);
  font-size: 22px;
  line-height: 0;
}
.vsc-pkg-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 20px;
  border-top: 1px solid rgba(199,170,132,0.35);
  margin-top: auto;
}
.vsc-pkg-card:not(.is-feature) .vsc-pkg-foot { border-top-color: var(--border); }
.vsc-pkg-price {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}
.vsc-pkg-card.is-feature .vsc-pkg-price { color: var(--vsc-ivory); }
.vsc-pkg-card:not(.is-feature) .vsc-pkg-price { color: var(--vsc-cocoa); }
.vsc-pkg-price s {
  font-size: 18px;
  color: var(--vsc-stone-300);
  margin-right: 8px;
  text-decoration-thickness: 1px;
}
.vsc-pkg-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.vsc-pkg-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.vsc-pkg-card-top .vsc-eyebrow { order: 1; }
.vsc-pkg-badge { order: 2; }
.vsc-pkg-badge {
  background: var(--vsc-leaf);
  color: var(--vsc-cocoa);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  flex-shrink: 0;
  align-self: flex-start;
  white-space: nowrap;
}
@media (max-width: 920px) {
  .vsc-packages-head { grid-template-columns: 1fr; align-items: start; }
  .vsc-pkg-grid { grid-template-columns: 1fr; }
  .vsc-pkg-card-top {
    flex-direction: column;
    gap: 10px;
  }
  .vsc-pkg-card-top .vsc-eyebrow { order: 2; }
  .vsc-pkg-badge { order: 1; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.vsc-testimonials {
  background: var(--vsc-sand);
  padding: 128px 0;
  overflow: hidden;
}
.vsc-test-head {
  text-align: center;
  margin-bottom: 64px;
}
.vsc-test-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--vsc-cocoa);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.vsc-test-head h2 em { font-style: italic; color: var(--vsc-forest); }
.vsc-test-head .meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--vsc-stone-500);
  letter-spacing: 0.04em;
}
.vsc-test-head .score {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--vsc-cocoa);
  font-weight: 500;
  line-height: 1;
}
.vsc-test-head .stars {
  color: var(--vsc-champagne);
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1;
}
.vsc-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vsc-test-card {
  background: var(--vsc-cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow-xs);
}
.vsc-test-card .stars { color: var(--vsc-champagne); letter-spacing: 2px; font-size: 14px; }
.vsc-test-card .q {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--vsc-cocoa);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.vsc-test-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.vsc-test-card .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--vsc-champagne);
  color: var(--vsc-cocoa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
}
.vsc-test-card .who .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--vsc-cocoa);
  line-height: 1.3;
}
.vsc-test-card .who .svc {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vsc-stone-500);
  margin-top: 2px;
}
@media (max-width: 920px) {
  .vsc-test-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.vsc-faq {
  padding: 128px 0;
  background: var(--vsc-ivory);
}
.vsc-faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.vsc-faq-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--vsc-cocoa);
  margin: 0 0 20px;
  letter-spacing: -0.006em;
}
.vsc-faq-left h2 em { font-style: italic; color: var(--vsc-forest); }
.vsc-faq-left p {
  font-size: 16px;
  color: var(--vsc-stone-500);
  margin: 0 0 28px;
  max-width: 32ch;
}
.vsc-faq-list { display: flex; flex-direction: column; }
.vsc-faq-item {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  cursor: pointer;
}
.vsc-faq-item:last-child { border-bottom: 1px solid var(--border); }
.vsc-faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--vsc-cocoa);
  line-height: 1.3;
}
.vsc-faq-item summary::-webkit-details-marker { display: none; }
.vsc-faq-item .toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 220ms;
  color: var(--vsc-cocoa);
  position: relative;
}
.vsc-faq-item .toggle::before,
.vsc-faq-item .toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 220ms;
}
.vsc-faq-item .toggle::before { width: 12px; height: 1px; }
.vsc-faq-item .toggle::after { width: 1px; height: 12px; }
.vsc-faq-item[open] .toggle {
  background: var(--vsc-forest);
  color: var(--vsc-ivory);
  border-color: var(--vsc-forest);
}
.vsc-faq-item[open] .toggle::after { transform: scaleY(0); }
.vsc-faq-item .answer {
  font-size: 16px;
  line-height: 1.7;
  color: var(--vsc-stone-500);
  margin: 16px 0 0;
  max-width: 60ch;
}
@media (max-width: 920px) {
  .vsc-faq-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   FINAL BOOKING CTA
   ============================================================ */
.vsc-cta {
  position: relative;
  margin: 0 32px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--vsc-cocoa);
  color: var(--vsc-ivory);
}
.vsc-cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(110deg, rgba(75,59,50,0.78) 0%, rgba(75,59,50,0.55) 55%, rgba(75,59,50,0.25) 100%),
    url("assets/massage.webp");
  background-size: cover;
  background-position: center;
}
.vsc-cta-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
.vsc-cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.4vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  color: var(--vsc-ivory);
  margin: 0;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.vsc-cta-inner h2 em { font-style: italic; color: var(--vsc-leaf); }
.vsc-cta-side .lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(247,242,236,0.85);
  margin: 0 0 32px;
}
.vsc-cta-side .actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }
.vsc-cta-side .meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(247,242,236,0.78);
  padding-top: 24px;
  border-top: 1px solid rgba(199,170,132,0.35);
}
.vsc-cta-side .meta strong { color: var(--vsc-ivory); font-weight: 600; letter-spacing: 0.02em; }
.vsc-cta-side .meta .ey {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vsc-champagne);
  margin-bottom: 8px;
}
@media (max-width: 920px) {
  .vsc-cta { margin: 0 16px; }
  .vsc-cta-inner { grid-template-columns: 1fr; padding: 72px 32px; gap: 40px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.vsc-footer {
  background: var(--vsc-cocoa);
  color: var(--vsc-ivory);
  padding: 96px 0 32px;
  margin-top: 0;
}
.vsc-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247,242,236,0.12);
}
.vsc-footer-brand img {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 22px;
}
.vsc-footer-brand p {
  color: rgba(247,242,236,0.7);
  font-size: 14px;
  line-height: 1.65;
  max-width: 36ch;
  margin: 0 0 24px;
}
.vsc-footer-socials { display: flex; gap: 12px; }
.vsc-footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(247,242,236,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--vsc-ivory);
  transition: all 200ms;
}
.vsc-footer-socials a:hover {
  background: var(--vsc-leaf);
  border-color: var(--vsc-leaf);
  color: var(--vsc-cocoa);
}
.vsc-footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vsc-champagne);
  margin: 0 0 22px;
}
.vsc-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.vsc-footer-col a, .vsc-footer-col li {
  font-size: 14px;
  color: rgba(247,242,236,0.78);
  transition: color 200ms;
  line-height: 1.5;
}
.vsc-footer-col a:hover { color: var(--vsc-leaf); }
.vsc-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(247,242,236,0.55);
  letter-spacing: 0.04em;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.vsc-footer-bar a:hover { color: var(--vsc-leaf); }
@media (max-width: 820px) {
  .vsc-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  .vsc-footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Page hero (service detail, about, blog, contact)
   ============================================================ */
.vsc-page-hero {
  padding: clamp(32px, 5vh, 56px) 0 clamp(48px, 7vh, 88px);
  background: var(--vsc-ivory);
  position: relative;
  overflow: hidden;
}
.vsc-page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.vsc-page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.6vw, 84px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--vsc-cocoa);
  margin: 0 0 28px;
  text-wrap: balance;
}
.vsc-page-hero h1 em { font-style: italic; color: var(--vsc-forest); font-weight: 400; }
.vsc-page-hero p.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--vsc-stone-500);
  max-width: 46ch;
  margin: 0 0 36px;
}
.vsc-page-hero .actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.vsc-page-hero-image {
  position: relative;
}
.vsc-page-hero-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.vsc-page-hero-image .price-card {
  position: absolute;
  right: -24px;
  bottom: -28px;
  background: var(--vsc-ivory);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-md);
  min-width: 200px;
}
.vsc-page-hero-image .price-card .eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vsc-stone-500);
}
.vsc-page-hero-image .price-card .price {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--vsc-cocoa);
  font-weight: 500;
  line-height: 1;
}
.vsc-page-hero-image .price-card .note {
  font-size: 12px;
  color: var(--vsc-stone-500);
  font-style: italic;
}
@media (max-width: 920px) {
  .vsc-page-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .vsc-page-hero-image .price-card { right: 16px; bottom: -16px; }
}

/* ============================================================
   Page intro split (editorial)
   ============================================================ */
.vsc-page-intro {
  padding: 112px 0;
  background: var(--vsc-sand);
}
.vsc-page-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.vsc-page-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--vsc-cocoa);
  margin: 0 0 28px;
  letter-spacing: -0.006em;
  text-wrap: balance;
}
.vsc-page-intro h2 em { font-style: italic; color: var(--vsc-forest); }
.vsc-page-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--vsc-stone-500);
  margin: 0 0 18px;
  max-width: 52ch;
}
.vsc-page-intro-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 920px) {
  .vsc-page-intro-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   Benefits band (4-up on cocoa or sand)
   ============================================================ */
.vsc-benefits {
  padding: 112px 0;
  background: var(--vsc-ivory);
}
.vsc-benefits-head { text-align: center; margin-bottom: 64px; }
.vsc-benefits-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--vsc-cocoa);
  margin: 0;
  letter-spacing: -0.005em;
  max-width: 22ch;
  margin: 0 auto;
  text-wrap: balance;
}
.vsc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vsc-benefit {
  background: var(--vsc-ivory);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vsc-benefit .num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--vsc-champagne);
  font-size: 22px;
  line-height: 1;
}
.vsc-benefit h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--vsc-cocoa);
  margin: 0;
  line-height: 1.25;
}
.vsc-benefit p {
  font-size: 14px;
  color: var(--vsc-stone-500);
  line-height: 1.6;
  margin: 0;
}
.vsc-benefits-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 920px) {
  .vsc-benefits-grid { grid-template-columns: 1fr 1fr; }
  .vsc-benefits-grid-5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .vsc-benefits-grid { grid-template-columns: 1fr; }
  .vsc-benefits-grid-5 { grid-template-columns: 1fr; }
}

/* ============================================================
   Service pricelist
   ============================================================ */
.vsc-pricelist {
  padding: 128px 0;
  background: var(--vsc-cream);
}
.vsc-pl-group { margin-bottom: 96px; }
.vsc-pl-group:last-child { margin-bottom: 0; }
.vsc-pl-group-head {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.vsc-pl-group-head h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  color: var(--vsc-cocoa);
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.vsc-pl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vsc-pl-card {
  position: relative;
  background: var(--vsc-ivory);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 220ms, transform 220ms, border-color 220ms;
}
.vsc-pl-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(82,144,38,0.25);
}
.vsc-pl-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.vsc-pl-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--vsc-cocoa);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.vsc-pl-min {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vsc-stone-500);
  white-space: nowrap;
}
.vsc-pl-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--vsc-stone-500);
  margin: 0;
  flex: 1;
}
.vsc-pl-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
}
.vsc-pl-price {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--vsc-cocoa);
  font-weight: 500;
}
.vsc-pl-foot .vsc-btn-text {
  padding: 4px 0;
  font-size: 10px;
  letter-spacing: 0.22em;
  border-bottom: 0;
  color: var(--vsc-forest);
}
.vsc-pl-foot .vsc-btn-text:hover { color: var(--vsc-forest-deep); }
@media (max-width: 920px) {
  .vsc-pl-grid { grid-template-columns: 1fr 1fr; }
  .vsc-pl-group-head { flex-direction: column; align-items: start; }
}
@media (max-width: 560px) {
  .vsc-pl-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Cross-treatment teaser (used on detail pages)
   ============================================================ */
.vsc-cross {
  padding: 112px 0;
  background: var(--vsc-ivory);
}
.vsc-cross-head {
  text-align: center;
  margin-bottom: 56px;
}
.vsc-cross-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: var(--vsc-cocoa);
  margin: 0;
  letter-spacing: -0.005em;
}
.vsc-cross-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vsc-cross-card {
  position: relative;
  border-radius: 12px;
  padding: 56px 48px;
  background: var(--vsc-sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  overflow: hidden;
}
.vsc-cross-card.cocoa { background: var(--vsc-cocoa); color: var(--vsc-ivory); }
.vsc-cross-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.005em;
}
.vsc-cross-card.cocoa h3 { color: var(--vsc-ivory); }
.vsc-cross-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 38ch;
  color: var(--vsc-stone-500);
}
.vsc-cross-card.cocoa p { color: rgba(247,242,236,0.78); }
.vsc-cross-card .go {
  margin-top: auto;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vsc-cocoa);
  border-bottom: 1px solid var(--vsc-champagne);
  align-self: flex-start;
  padding: 8px 0;
  transition: color 200ms;
}
.vsc-cross-card.cocoa .go { color: var(--vsc-leaf); }
.vsc-cross-card:hover .go { color: var(--vsc-forest); }
.vsc-cross-card.cocoa:hover .go { color: var(--vsc-ivory); }
@media (max-width: 720px) { .vsc-cross-grid { grid-template-columns: 1fr; } }

/* ============================================================
   About page — numbers
   ============================================================ */
.vsc-numbers {
  background: var(--vsc-cocoa);
  color: var(--vsc-ivory);
  padding: 112px 0;
}
.vsc-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(199,170,132,0.25);
  border-top: 1px solid rgba(199,170,132,0.25);
  border-bottom: 1px solid rgba(199,170,132,0.25);
}
.vsc-num-cell {
  background: var(--vsc-cocoa);
  padding: 48px 32px;
}
.vsc-num-cell .big {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: 1;
  color: var(--vsc-ivory);
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.vsc-num-cell .big em { font-style: italic; color: var(--vsc-leaf); }
.vsc-num-cell .label {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(247,242,236,0.78);
  display: block;
  line-height: 1.5;
}
.vsc-num-cell .label strong {
  display: block;
  color: var(--vsc-ivory);
  font-weight: 600;
  margin-bottom: 4px;
}
@media (max-width: 920px) {
  .vsc-numbers-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .vsc-numbers-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Blog
   ============================================================ */
.vsc-blog-feat {
  background: var(--vsc-cream);
  padding: 0 0 96px;
}
.vsc-blog-feat .card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--vsc-ivory);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.vsc-blog-feat .card-img {
  background-image: linear-gradient(120deg, rgba(75,59,50,0.25), rgba(199,170,132,0.25)), url("assets/kennys-2.webp");
  background-size: cover;
  background-position: center;
  min-height: 420px;
}
.vsc-blog-feat .card-text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.vsc-blog-feat .card-text .tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vsc-forest);
}
.vsc-blog-feat .card-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--vsc-cocoa);
  margin: 0;
  letter-spacing: -0.005em;
}
.vsc-blog-feat .card-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--vsc-stone-500);
  margin: 0;
  max-width: 50ch;
}
.vsc-blog-feat .card-text .meta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vsc-stone-500);
}

.vsc-blog-grid-band { padding: 96px 0; background: var(--vsc-ivory); }
.vsc-blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
  justify-content: center;
}
.vsc-blog-filter {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--vsc-cocoa);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 999px;
  transition: all 200ms;
  cursor: pointer;
}
.vsc-blog-filter:hover { color: var(--vsc-forest); border-color: var(--vsc-forest); }
.vsc-blog-filter.is-active { background: var(--vsc-cocoa); color: var(--vsc-ivory); border-color: var(--vsc-cocoa); }
.vsc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.vsc-blog-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: pointer;
  transition: transform 220ms;
}
.vsc-blog-card:hover { transform: translateY(-2px); }
.vsc-blog-card .img {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: var(--vsc-sand);
  background-image: linear-gradient(135deg, rgba(82,144,38,0.10), rgba(199,170,132,0.25)), url("assets/kennys-3.webp");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.vsc-blog-card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(75,59,50,0.32) 100%);
}
.vsc-blog-card .img.v2 { background-image: linear-gradient(135deg, rgba(199,170,132,0.20), rgba(75,59,50,0.18)), url("assets/kennys-2.webp"); }
.vsc-blog-card .img.v3 { background-image: linear-gradient(120deg, rgba(82,144,38,0.20), rgba(199,170,132,0.30)), url("assets/massage.webp"); background-position: top; }
.vsc-blog-card .img.v4 { background-image: linear-gradient(120deg, rgba(75,59,50,0.25), rgba(199,170,132,0.20)), url("assets/kennys-3.webp"); background-position: bottom; }
.vsc-blog-card .img.v5 { background-image: linear-gradient(135deg, rgba(139,195,60,0.18), rgba(75,59,50,0.30)), url("assets/kennys-1.webp"); background-position: top; }
.vsc-blog-card .img.v6 { background-image: linear-gradient(120deg, rgba(82,144,38,0.15), rgba(75,59,50,0.30)), url("assets/kennys-1.webp"); background-position: 30% 50%; }

.vsc-blog-card .meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vsc-stone-500);
  display: flex;
  gap: 12px;
}
.vsc-blog-card .meta .cat { color: var(--vsc-forest); font-weight: 600; }
.vsc-blog-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--vsc-cocoa);
  margin: 0;
  line-height: 1.25;
  text-wrap: balance;
}
.vsc-blog-card:hover h3 { color: var(--vsc-forest); }

.vsc-newsletter {
  background: var(--vsc-sand);
  padding: 96px 0;
}
.vsc-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.vsc-newsletter h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 400;
  color: var(--vsc-cocoa);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.vsc-newsletter p {
  font-size: 16px;
  color: var(--vsc-stone-500);
  margin: 0;
  max-width: 44ch;
}
.vsc-newsletter form {
  display: flex;
  gap: 12px;
  background: var(--vsc-ivory);
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 6px 6px 6px 24px;
  align-items: center;
}
.vsc-newsletter input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--vsc-cocoa);
  outline: none;
  padding: 12px 0;
}
.vsc-newsletter input::placeholder { color: var(--fg-3); }
.vsc-newsletter button { flex-shrink: 0; }
@media (max-width: 720px) {
  .vsc-newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .vsc-blog-grid { grid-template-columns: 1fr; }
  .vsc-blog-feat .card { grid-template-columns: 1fr; }
  .vsc-blog-feat .card-img { min-height: 240px; }
  .vsc-blog-feat .card-text { padding: 40px 28px; }
}

/* ============================================================
   Contact
   ============================================================ */
.vsc-contact-cards-band {
  padding: 0 0 96px;
}
.vsc-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vsc-cc {
  background: var(--vsc-cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vsc-cc h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vsc-forest);
  margin: 0;
}
.vsc-cc .lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vsc-cc .lines strong {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--vsc-cocoa);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.vsc-cc .lines span {
  font-size: 14px;
  color: var(--vsc-stone-500);
  line-height: 1.55;
}
.vsc-cc .lines em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--vsc-stone-500);
  font-size: 13px;
}

.vsc-contact-form-band {
  padding: 96px 0;
  background: var(--vsc-ivory);
}
.vsc-contact-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.vsc-contact-form-side h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 400;
  color: var(--vsc-cocoa);
  margin: 0 0 20px;
  letter-spacing: -0.006em;
  line-height: 1.08;
  text-wrap: balance;
}
.vsc-contact-form-side p {
  font-size: 16px;
  color: var(--vsc-stone-500);
  margin: 0 0 28px;
  max-width: 40ch;
}
.vsc-contact-form {
  background: var(--vsc-cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  box-shadow: var(--shadow-sm);
}
.vsc-contact-form .vsc-btn { grid-column: 1 / -1; justify-self: start; margin-top: 8px; }
.vsc-contact-form .fine { grid-column: 1 / -1; font-size: 11px; color: var(--fg-2); margin: 0; letter-spacing: 0.04em; }
.vsc-contact-form .success {
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--vsc-forest);
  margin: 0;
  padding: 28px 0;
}
.vsc-field { display: flex; flex-direction: column; gap: 8px; }
.vsc-field-full { grid-column: 1 / -1; }
.vsc-field label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vsc-forest);
}
.vsc-field input,
.vsc-field select,
.vsc-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--vsc-cocoa);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(75,59,50,0.24);
  padding: 8px 0;
  outline: none;
  transition: border-color 200ms;
  resize: vertical;
}
.vsc-field textarea { min-height: 100px; padding-top: 12px; }
.vsc-field input:focus,
.vsc-field select:focus,
.vsc-field textarea:focus { border-color: var(--vsc-forest); }
.vsc-field input::placeholder,
.vsc-field textarea::placeholder { color: var(--fg-3); }

.vsc-map-band { padding: 0 0 96px; }
.vsc-map-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.vsc-map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.85); }
.vsc-map-note {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--vsc-stone-500);
  margin: 24px auto 0;
  max-width: 60ch;
}

@media (max-width: 920px) {
  .vsc-contact-cards { grid-template-columns: 1fr; }
  .vsc-contact-form-inner { grid-template-columns: 1fr; gap: 40px; }
  .vsc-contact-form { padding: 28px; }
}

/* ============================================================
   Sticky bottom booking bar (mobile)
   ============================================================ */
.vsc-mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  background: var(--vsc-cocoa);
  color: var(--vsc-ivory);
  border-radius: 999px;
  padding: 8px 8px 8px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}
.vsc-mobile-cta .text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--vsc-ivory);
}
.vsc-mobile-cta .vsc-btn { padding: 12px 20px; font-size: 11px; }
.vsc-mobile-cta {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 400ms ease, transform 400ms ease;
}
@media (max-width: 720px) { .vsc-mobile-cta { display: flex; } }
.vsc-mobile-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Hide floating CTA behind the mobile nav when the drawer is open */
body.vsc-menu-open .vsc-mobile-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

/* ============================================================
   COMPREHENSIVE MOBILE-FIRST OPTIMIZATION — 2026
   ============================================================ */

/* ---- Tablet (≤ 768px) ---- */
@media (max-width: 768px) {
  /* Wrap */
  .vsc-wrap { padding: 0 20px; }

  /* Nav */
  .vsc-nav-inner { padding: 14px 20px; }
  .vsc-nav-logo img { height: 50px; }
  .vsc-nav-right .vsc-lang { display: none; } /* moved into mobile panel */

  /* Hero — stacked, tighter */
  .vsc-hero { padding: 32px 0 56px; }
  .vsc-hero-inner { gap: 32px; padding: 0 20px; }
  .vsc-hero-h1 { font-size: clamp(38px, 9.5vw, 64px); margin-bottom: 18px; }
  .vsc-hero-sub { font-size: 16px; margin-bottom: 28px; }
  .vsc-hero-decor { font-size: 160px; top: -20px; right: -20px; opacity: 0.6; }
  .vsc-hero-trust { margin-top: 32px; padding-top: 20px; }
  .vsc-trust-num { font-size: 26px; }

  /* Hero image */
  .vsc-hero-image .photo { aspect-ratio: 3/2; }
  .vsc-hero-image .photo-card {
    right: 8px; bottom: -16px;
    max-width: 200px;
    padding: 16px 18px;
  }
  .vsc-hero-image .photo-card .q { font-size: 13px; }
  .vsc-hero-image .photo-tag { left: 8px; top: 16px; font-size: 9px; padding: 8px 12px; }

  /* Trust stats — compact on tablet */
  .vsc-trust-item {
    flex-direction: column;
    gap: 4px;
    padding: 0 14px;
    align-items: flex-start;
  }
  .vsc-trust-item:first-child { padding-left: 0; }
  .vsc-trust-item:last-child { border-right: none; padding-right: 0; }
  .vsc-trust-num { font-size: 24px; }
  .vsc-trust-lab { font-size: 9px; max-width: 100%; letter-spacing: 0.12em; line-height: 1.5; }

  /* Strip */
  .vsc-strip-logo-circle { width: 88px; height: 88px; }
  .vsc-strip-logo-item { padding: 0 16px; }

  /* Pillars */
  .vsc-pillars-band { padding: 64px 0; }

  /* Services */
  .vsc-services { padding: 72px 0; }
  .vsc-services-head { margin-bottom: 36px; }
  .vsc-tabs { flex-wrap: wrap; gap: 4px; border-radius: 16px; width: 100%; justify-content: center; }
  .vsc-tab { padding: 10px 18px; font-size: 11px; }
  .vsc-svc-card { padding: 26px 22px 22px; }
  .vsc-svc-name { font-size: 22px; }

  /* Founder */
  .vsc-founder { padding: 72px 0; }
  .vsc-founder-inner { gap: 48px; }
  .vsc-founder-img .sig { left: 8px; bottom: -20px; padding: 14px 18px; }

  /* WhyUs */
  .vsc-why { padding: 72px 0; }

  /* Packages */
  .vsc-pkg-band { padding: 72px 0; }

  /* Testimonials */
  .vsc-testimonials { padding: 72px 0; }

  /* FAQ */
  .vsc-faq { padding: 72px 0; }

  /* BookingCTA */
  .vsc-cta { border-radius: 16px; margin: 0 20px; }
  .vsc-cta-inner { padding: 56px 28px; gap: 32px; }
  .vsc-cta-inner h2 { font-size: clamp(30px, 7vw, 48px); }

  /* Page hero (inner pages) */
  .vsc-page-hero { padding: 40px 0 56px; }
  .vsc-page-hero-inner { gap: 36px; }
  .vsc-page-hero-image { display: none; } /* hide on tablet/mobile */

  /* Pricelist */
  .vsc-pricelist { padding: 48px 0; }
  .vsc-pl-grid { grid-template-columns: 1fr; }
  .vsc-pl-card h4 { font-size: 19px; }

  /* Contact */
  .vsc-contact-cards-band { padding-top: 40px !important; }
  .vsc-contact-cards { grid-template-columns: 1fr; }

  /* Map */
  .vsc-map-band { padding: 0 0 56px; }
  .vsc-map-frame { aspect-ratio: 4/3; }

  /* Footer */
  .vsc-footer { padding: 56px 0 32px; }
  .vsc-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .vsc-footer-brand { grid-column: 1 / -1; }

  /* Mobile CTA bar — show earlier */
  .vsc-mobile-cta { bottom: 12px; left: 12px; right: 12px; }

  /* About page */
  .vsc-numbers-grid { grid-template-columns: 1fr 1fr; }
  .vsc-benefits-grid { grid-template-columns: 1fr; }
  .vsc-page-intro-inner { grid-template-columns: 1fr; }
  .vsc-page-intro-img { display: none; }

  /* Overflow guard */
  .vsc-hero, main, .vsc-footer { overflow-x: hidden; }
}

/* ---- Mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  /* Wrap */
  .vsc-wrap { padding: 0 16px; }

  /* Nav */
  .vsc-nav-inner { padding: 12px 16px; gap: 12px; grid-template-columns: 1fr auto; }
  .vsc-nav-logo img { height: 50px; }
  /* Hide lang switcher on desktop nav; accessible via mobile panel */

  /* Hero */
  .vsc-hero { padding: 24px 0 48px; }
  .vsc-hero-inner { padding: 0 16px; gap: 24px; }
  .vsc-hero-h1 { font-size: clamp(34px, 10.5vw, 52px); margin-bottom: 14px; }
  .vsc-hero-sub { font-size: 15px; max-width: 100%; margin-bottom: 24px; }
  .vsc-hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .vsc-hero-cta .vsc-btn { width: 100%; justify-content: center; padding: 18px 24px; font-size: 12px; }
  .vsc-hero-trust { margin-top: 24px; }
  .vsc-trust-num { font-size: 20px; }
  .vsc-trust-lab { font-size: 8px; letter-spacing: 0.10em; }
  .vsc-trust-item { padding: 0 8px; gap: 3px; }

  /* Hero image overlay cards */
  .vsc-hero-image .photo-card { right: 4px; bottom: -12px; max-width: 180px; padding: 12px 14px; }
  .vsc-hero-image .photo-card .q { font-size: 12px; }
  .vsc-hero-image .photo-tag { display: none; }
  .vsc-hero-image .photo { aspect-ratio: 4/3; }

  /* Strip */
  .vsc-strip { padding: 16px 0; }
  .vsc-strip-logo-circle { width: 72px; height: 72px; }
  .vsc-strip-logo-item { padding: 0 10px; }

  /* Eyebrow */
  .vsc-eyebrow { font-size: 10px; margin-bottom: 12px; }

  /* Services */
  .vsc-services { padding: 56px 0; }
  .vsc-services-head h2 { font-size: clamp(28px, 8vw, 44px); }
  .vsc-tabs { padding: 4px; }
  .vsc-tab { padding: 10px 14px; font-size: 10px; flex: 1; text-align: center; }
  .vsc-svc-card { padding: 22px 18px 18px; min-height: auto; }
  .vsc-svc-name { font-size: 20px; }
  .vsc-svc-price { font-size: 22px; }

  /* Founder */
  .vsc-founder { padding: 56px 0; }
  .vsc-founder-img .sig { display: none; }
  .vsc-founder-list { padding-left: 0; }
  .vsc-founder-list li { padding-left: 0; }
  .vsc-founder-text h2 { font-size: clamp(28px, 8vw, 42px); }

  /* WhyUs */
  .vsc-why { padding: 56px 0; }
  .vsc-why-head h2 { font-size: clamp(28px, 8vw, 44px); }

  /* Packages */
  .vsc-pkg-band { padding: 56px 0; }

  /* Testimonials */
  .vsc-testimonials { padding: 56px 0; }
  .vsc-test-cards { gap: 16px; }
  .vsc-test-card { padding: 24px 20px; }
  .vsc-test-q { font-size: 17px; }

  /* FAQ */
  .vsc-faq { padding: 56px 0; }
  .vsc-faq-item summary { padding: 18px 0; font-size: 18px; }
  .vsc-faq-item .body { font-size: 14px; }

  /* BookingCTA */
  .vsc-cta { margin: 0 16px; border-radius: 14px; }
  .vsc-cta-inner { padding: 40px 20px; gap: 24px; }
  .vsc-cta-inner h2 { font-size: clamp(26px, 8vw, 40px); }
  .vsc-cta-inner .lead { font-size: 15px; }
  .vsc-cta-inner .actions { flex-direction: column; gap: 10px; }
  .vsc-cta-inner .actions .vsc-btn { width: 100%; justify-content: center; }
  .vsc-cta-inner .meta { font-size: 12px; }

  /* Pricelist */
  .vsc-pricelist { padding: 36px 0; }
  .vsc-pl-card { padding: 20px 16px; }
  .vsc-pl-card h4 { font-size: 17px; }
  .vsc-pl-price { font-size: 24px; }
  .vsc-pl-group-head { margin-bottom: 20px; }

  /* Contact cards */
  .vsc-cc { padding: 24px 20px; }
  .vsc-cc h3 { font-size: 18px; }

  /* Footer */
  .vsc-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .vsc-footer-brand img { height: 50px; }
  .vsc-footer-brand p { font-size: 13px; }
  .vsc-footer-bar { flex-direction: column; gap: 8px; text-align: center; font-size: 11px; }

  /* Mobile CTA bar */
  .vsc-mobile-cta { padding: 8px 8px 8px 20px; }
  .vsc-mobile-cta .text { font-size: 14px; }

  /* Page hero (inner pages) */
  .vsc-page-hero { padding: 28px 0 40px; }
  .vsc-page-hero-inner h1 { font-size: clamp(30px, 9vw, 48px); }
  .vsc-page-hero-inner .lead { font-size: 15px; }
  .vsc-page-hero-inner .actions { flex-direction: column; gap: 10px; }
  .vsc-page-hero-inner .actions .vsc-btn { width: 100%; justify-content: center; }

  /* About numbers */
  .vsc-numbers-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .vsc-num-cell .big { font-size: 52px; }

  /* Benefits */
  .vsc-benefits-grid-5 { grid-template-columns: 1fr; }

  /* Cross cards */
  .vsc-cross-grid { gap: 14px; }
  .vsc-cross-card { padding: 28px 22px 22px; }

  /* Global button touch comfort */
  .vsc-btn { min-height: 48px; }
  .vsc-btn-text { min-height: 44px; padding: 12px 4px; }

  /* Overflow guard */
  html, body { overflow-x: hidden; }
  * { max-width: 100%; }
  img { max-width: 100%; }
}

/* ---- Small phones (≤ 360px) ---- */
@media (max-width: 360px) {
  .vsc-hero-h1 { font-size: 30px; }
  .vsc-wrap { padding: 0 14px; }
  .vsc-tab { padding: 8px 10px; font-size: 9px; }
  .vsc-trust-item { gap: 8px; }
  .vsc-mobile-cta { left: 8px; right: 8px; bottom: 8px; }
}

/* ---- Tablet landscape / iPad portrait (768px – 1024px) ---- */
@media (min-width: 481px) and (max-width: 1024px) {
  .vsc-hero-inner { gap: 40px; }
  .vsc-page-hero-inner { gap: 40px; }
  .vsc-founder-inner { gap: 48px; }
}

/* ---- Short viewport (laptops ≤ 800px tall) ---- */
@media (min-width: 921px) and (max-height: 800px) {
  .vsc-hero-h1 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 16px; }
  .vsc-hero-sub { font-size: 16px; margin-bottom: 24px; }
  .vsc-hero-trust { margin-top: 28px; padding-top: 16px; }
  .vsc-trust-num { font-size: 26px; }
  .vsc-page-hero h1 { font-size: clamp(40px, 5.2vw, 72px); margin-bottom: 20px; }
  .vsc-page-hero p.lead { font-size: 16px; margin-bottom: 24px; }
  .vsc-page-hero-inner { gap: 48px; }
}

/* ---- Touch / hover fix ---- */
@media (hover: none) {
  .vsc-svc-card:hover { transform: none; box-shadow: var(--shadow-sm); }
  .vsc-pl-card:hover { transform: none; box-shadow: none; }
  .vsc-btn-primary:hover { transform: none; }
}
