/* ==========================================================================
   Vino Swipe — main stylesheet
   Tokens are emitted as CSS custom properties by functions.php (Customizer),
   so colors below are fallbacks only.
   ========================================================================== */

:root {
  --vs-wine: #6b1435;
  --vs-wine-deep: #43091f;
  --vs-wine-soft: #8f2a4d;
  --vs-gold: #c89b3c;
  --vs-gold-soft: #e3c176;
  --vs-cream: #fbf7f2;
  --vs-cream-warm: #f3ebe1;
  --vs-ink: #1c1216;
  --vs-ink-soft: #5a4b51;
  --vs-line: rgba(28, 18, 22, 0.12);
  --vs-white: #ffffff;

  --vs-bg: var(--vs-cream);
  --vs-surface: var(--vs-white);
  --vs-text: var(--vs-ink);
  --vs-text-soft: var(--vs-ink-soft);

  --vs-radius: 16px;
  --vs-radius-lg: 28px;
  --vs-radius-pill: 999px;
  --vs-shadow-sm: 0 1px 2px rgba(28, 18, 22, 0.06), 0 2px 8px rgba(28, 18, 22, 0.05);
  --vs-shadow: 0 4px 12px rgba(28, 18, 22, 0.08), 0 16px 40px rgba(28, 18, 22, 0.08);
  --vs-shadow-lg: 0 8px 24px rgba(67, 9, 31, 0.14), 0 32px 72px rgba(67, 9, 31, 0.16);

  --vs-font-display: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --vs-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --vs-gutter: 24px;
  --vs-max: 1160px;
  --vs-max-narrow: 720px;
  --vs-header-h: 72px;
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--vs-header-h) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--vs-bg);
  color: var(--vs-text);
  font-family: var(--vs-font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--vs-wine); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--vs-wine-soft); }

h1, h2, h3, h4 {
  font-family: var(--vs-font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--vs-text);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--vs-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.vs-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--vs-wine);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}
.vs-skip-link:focus { left: 0; color: #fff; }

.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */

.vs-wrap {
  width: 100%;
  max-width: var(--vs-max);
  margin-inline: auto;
  padding-inline: var(--vs-gutter);
}

.vs-wrap--narrow { max-width: var(--vs-max-narrow); }

.vs-section { padding-block: clamp(72px, 10vw, 128px); position: relative; }
.vs-section--tight { padding-block: clamp(56px, 7vw, 88px); }

.vs-section-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.vs-section-head--center { margin-inline: auto; text-align: center; }

.vs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vs-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vs-wine-soft);
  margin-bottom: 16px;
}
.vs-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.vs-section-head--center .vs-eyebrow::before { display: none; }

.vs-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--vs-text-soft);
  max-width: 56ch;
}
.vs-section-head--center .vs-lede { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.vs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--vs-radius-pill);
  font-family: var(--vs-font-body);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}

.vs-btn:hover { transform: translateY(-1px); }
.vs-btn:active { transform: translateY(0); }

.vs-btn--primary {
  background: var(--vs-wine);
  color: #fff;
  box-shadow: var(--vs-shadow-sm);
}
.vs-btn--primary:hover { background: var(--vs-wine-deep); color: #fff; box-shadow: var(--vs-shadow); }

.vs-btn--ghost {
  background: transparent;
  color: var(--vs-text);
  border-color: var(--vs-line);
}
.vs-btn--ghost:hover { border-color: var(--vs-wine); color: var(--vs-wine); }

.vs-btn--light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(6px);
}
.vs-btn--light:hover { background: rgba(255, 255, 255, 0.24); color: #fff; }

.vs-btn--sm { padding: 10px 20px; font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.vs-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--vs-header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.vs-header.is-stuck {
  background: rgba(251, 247, 242, 0.88);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: var(--vs-line);
  box-shadow: 0 1px 12px rgba(28, 18, 22, 0.05);
}

.vs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.vs-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vs-font-display);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--vs-text);
  text-decoration: none;
}
.vs-brand:hover { color: var(--vs-wine); }
.vs-brand__mark { width: 28px; height: 28px; flex: none; color: var(--vs-wine); }
.vs-brand img { max-height: 40px; width: auto; }

.vs-nav { display: flex; align-items: center; gap: 8px; }
.vs-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.vs-nav a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--vs-radius-pill);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--vs-text-soft);
  text-decoration: none;
  transition: color 0.16s ease, background-color 0.16s ease;
}
.vs-nav a:hover,
.vs-nav .current-menu-item > a { color: var(--vs-text); background: rgba(107, 20, 53, 0.07); }

.vs-header__actions { display: flex; align-items: center; gap: 12px; }

.vs-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--vs-line);
  border-radius: 12px;
  cursor: pointer;
  color: var(--vs-text);
}
.vs-nav-toggle svg { width: 20px; height: 20px; }
.vs-nav-toggle .vs-icon-close { display: none; }
.vs-nav-toggle[aria-expanded="true"] .vs-icon-close { display: block; }
.vs-nav-toggle[aria-expanded="true"] .vs-icon-menu { display: none; }

@media (max-width: 860px) {
  .vs-nav-toggle { display: inline-flex; }
  .vs-nav {
    position: absolute;
    top: var(--vs-header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px var(--vs-gutter) 24px;
    background: var(--vs-surface);
    border-bottom: 1px solid var(--vs-line);
    box-shadow: var(--vs-shadow);
  }
  .vs-nav.is-open { display: flex; }
  .vs-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .vs-nav a { padding: 12px 14px; font-size: 1rem; }
  .vs-header__actions .vs-btn--primary { display: none; }
  .vs-nav .vs-btn { margin-top: 10px; }
}

@media (min-width: 861px) {
  .vs-nav .vs-btn { display: none; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.vs-hero {
  position: relative;
  padding-block: clamp(56px, 8vw, 96px) clamp(72px, 10vw, 120px);
  overflow: hidden;
}

.vs-hero::before {
  content: "";
  position: absolute;
  inset: -40% 40% 30% -30%;
  background: radial-gradient(closest-side, rgba(143, 42, 77, 0.16), transparent 72%);
  pointer-events: none;
}
.vs-hero::after {
  content: "";
  position: absolute;
  inset: 10% -30% -40% 45%;
  background: radial-gradient(closest-side, rgba(200, 155, 60, 0.18), transparent 70%);
  pointer-events: none;
}

.vs-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 900px) {
  .vs-hero__grid { grid-template-columns: 1fr; text-align: center; }
  .vs-hero__copy { margin-inline: auto; }
  .vs-hero .vs-eyebrow::before { display: none; }
}

.vs-hero__copy { max-width: 560px; }

.vs-hero h1 { margin-bottom: 20px; }
.vs-hero h1 em {
  font-style: italic;
  color: var(--vs-wine);
}

.vs-hero__lede {
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
  color: var(--vs-text-soft);
  margin-bottom: 28px;
  max-width: 50ch;
}

.vs-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
@media (max-width: 900px) { .vs-hero__cta { justify-content: center; } }

.vs-hero__note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--vs-text-soft);
}
@media (max-width: 900px) { .vs-hero__note { justify-content: center; } }

.vs-stars { display: inline-flex; gap: 2px; color: var(--vs-gold); }
.vs-stars svg { width: 15px; height: 15px; }

/* Phone mockup with swipeable cards */

.vs-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.vs-phone {
  position: relative;
  width: min(300px, 78vw);
  aspect-ratio: 300 / 610;
  background: linear-gradient(160deg, #211018, #0e0509);
  border-radius: 44px;
  padding: 11px;
  box-shadow: var(--vs-shadow-lg);
}

.vs-phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(175deg, #fbf7f2 0%, #f1e6dc 100%);
  display: flex;
  flex-direction: column;
}

.vs-phone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 22px;
  border-radius: var(--vs-radius-pill);
  background: #12070c;
  z-index: 6;
}

.vs-phone__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 6px;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--vs-ink);
  opacity: 0.55;
}

.vs-deck {
  position: relative;
  flex: 1;
  margin: 8px 16px 0;
}

.vs-card {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: var(--vs-white);
  box-shadow: 0 8px 28px rgba(28, 18, 22, 0.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform-origin: center bottom;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.vs-card[data-pos="0"] { transform: translateY(0) scale(1); z-index: 3; }
.vs-card[data-pos="1"] { transform: translateY(10px) scale(0.955); z-index: 2; opacity: 0.92; }
.vs-card[data-pos="2"] { transform: translateY(20px) scale(0.91); z-index: 1; opacity: 0.78; }
.vs-card[data-pos="out"] {
  transform: translateX(118%) rotate(16deg);
  opacity: 0;
  z-index: 4;
}

.vs-card__art {
  position: relative;
  height: 56%;
  background: linear-gradient(155deg, var(--vs-card-a, #6b1435), var(--vs-card-b, #43091f));
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-card__bottle {
  width: 38%;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.3));
}

.vs-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  border-radius: var(--vs-radius-pill);
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vs-wine);
}

.vs-card__match {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: var(--vs-radius-pill);
  background: rgba(20, 10, 14, 0.62);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
}
.vs-card__match svg { width: 11px; height: 11px; color: var(--vs-gold-soft); }

.vs-card__body { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; }
.vs-card__name {
  font-family: var(--vs-font-display);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 3px;
}
.vs-card__meta { font-size: 0.7rem; color: var(--vs-text-soft); margin: 0 0 9px; }

.vs-card__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; }
.vs-card__tags span {
  padding: 3px 9px;
  border-radius: var(--vs-radius-pill);
  background: var(--vs-cream-warm);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--vs-ink-soft);
}

.vs-phone__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 0 22px;
}

.vs-swipe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--vs-white);
  box-shadow: 0 4px 12px rgba(28, 18, 22, 0.14);
  cursor: pointer;
  transition: transform 0.16s ease;
}
.vs-swipe-btn:hover { transform: scale(1.08); }
.vs-swipe-btn--pass { width: 46px; height: 46px; color: #94707d; }
.vs-swipe-btn--pass svg { width: 19px; height: 19px; }
.vs-swipe-btn--like { width: 58px; height: 58px; background: var(--vs-wine); color: #fff; }
.vs-swipe-btn--like svg { width: 24px; height: 24px; }

.vs-hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  background: var(--vs-surface);
  border-radius: 14px;
  box-shadow: var(--vs-shadow);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 5;
  animation: vs-float 6s ease-in-out infinite;
}
.vs-hero__float span { display: block; font-size: 0.7rem; font-weight: 500; color: var(--vs-text-soft); }
.vs-hero__float--a { top: 12%; left: 0; }
.vs-hero__float--b { bottom: 14%; right: 0; animation-delay: -3s; }

.vs-hero__float-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 10px;
  background: rgba(107, 20, 53, 0.1);
  color: var(--vs-wine);
}
.vs-hero__float-icon svg { width: 17px; height: 17px; }

@keyframes vs-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 480px) {
  .vs-hero__float { display: none; }
  .vs-hero__visual { min-height: 460px; }
}

/* --------------------------------------------------------------------------
   Logo / trust strip
   -------------------------------------------------------------------------- */

.vs-logos { border-block: 1px solid var(--vs-line); background: rgba(255, 255, 255, 0.5); }
.vs-logos__inner { padding-block: 28px; }
.vs-logos__label {
  text-align: center;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vs-text-soft);
  margin-bottom: 18px;
}
.vs-logos__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
}
.vs-logos__row span {
  font-family: var(--vs-font-display);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--vs-ink);
  opacity: 0.42;
  transition: opacity 0.2s ease;
}
.vs-logos__row span:hover { opacity: 0.75; }

/* --------------------------------------------------------------------------
   Steps / how it works
   -------------------------------------------------------------------------- */

.vs-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  counter-reset: vs-step;
}

.vs-step {
  position: relative;
  padding: 32px 26px 28px;
  background: var(--vs-surface);
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-lg);
  box-shadow: var(--vs-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vs-step:hover { transform: translateY(-3px); box-shadow: var(--vs-shadow); }

.vs-step__num {
  counter-increment: vs-step;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--vs-wine), var(--vs-wine-deep));
  color: #fff;
  font-family: var(--vs-font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.vs-step__num::before { content: counter(vs-step, decimal-leading-zero); }

.vs-step h3 { margin-bottom: 8px; }
.vs-step p { color: var(--vs-text-soft); font-size: 0.97rem; margin: 0; }

/* --------------------------------------------------------------------------
   Features
   -------------------------------------------------------------------------- */

.vs-features { background: var(--vs-cream-warm); }

.vs-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.vs-feature {
  padding: 30px 26px;
  background: var(--vs-surface);
  border-radius: var(--vs-radius-lg);
  border: 1px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.vs-feature:hover { border-color: rgba(107, 20, 53, 0.22); transform: translateY(-3px); }

.vs-feature__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(107, 20, 53, 0.09);
  color: var(--vs-wine);
}
.vs-feature__icon svg { width: 22px; height: 22px; }

.vs-feature h3 { margin-bottom: 8px; font-size: 1.12rem; }
.vs-feature p { color: var(--vs-text-soft); font-size: 0.96rem; margin: 0; }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

.vs-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  padding: clamp(32px, 5vw, 48px);
  background: linear-gradient(140deg, var(--vs-wine), var(--vs-wine-deep));
  border-radius: var(--vs-radius-lg);
  color: #fff;
  box-shadow: var(--vs-shadow-lg);
}

.vs-stat { text-align: center; }
.vs-stat__num {
  font-family: var(--vs-font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1;
  color: var(--vs-gold-soft);
  margin-bottom: 8px;
}
.vs-stat__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.vs-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

.vs-quote {
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  background: var(--vs-surface);
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-lg);
  box-shadow: var(--vs-shadow-sm);
}

.vs-quote__stars { display: flex; gap: 2px; color: var(--vs-gold); margin-bottom: 16px; }
.vs-quote__stars svg { width: 16px; height: 16px; }

.vs-quote blockquote {
  margin: 0 0 22px;
  font-family: var(--vs-font-display);
  font-size: 1.08rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.vs-quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.vs-quote__avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--vs-wine-soft), var(--vs-wine-deep));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}
.vs-quote__who > span:last-child { display: block; min-width: 0; }
.vs-quote__name { display: block; font-size: 0.93rem; font-weight: 600; line-height: 1.3; }
.vs-quote__role { display: block; font-size: 0.82rem; color: var(--vs-text-soft); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.vs-faq { max-width: var(--vs-max-narrow); margin-inline: auto; }

.vs-faq details {
  border-bottom: 1px solid var(--vs-line);
  padding: 4px 0;
}
.vs-faq details[open] summary { color: var(--vs-wine); }

.vs-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--vs-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.16s ease;
}
.vs-faq summary::-webkit-details-marker { display: none; }
.vs-faq summary:hover { color: var(--vs-wine); }

.vs-faq summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform 0.2s ease;
  opacity: 0.55;
}
.vs-faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }

.vs-faq__answer { padding: 0 0 22px; color: var(--vs-text-soft); max-width: 62ch; }

/* --------------------------------------------------------------------------
   Waitlist / CTA
   -------------------------------------------------------------------------- */

.vs-cta {
  position: relative;
  background: linear-gradient(150deg, var(--vs-wine-deep), var(--vs-wine) 55%, #7d1a3d);
  color: #fff;
  overflow: hidden;
}

.vs-cta::before {
  content: "";
  position: absolute;
  inset: -50% 55% 20% -20%;
  background: radial-gradient(closest-side, rgba(200, 155, 60, 0.28), transparent 70%);
  pointer-events: none;
}

.vs-cta__inner { position: relative; text-align: center; max-width: 660px; margin-inline: auto; }
.vs-cta h2 { color: #fff; }
.vs-cta .vs-eyebrow { color: var(--vs-gold-soft); }
.vs-cta__lede { color: rgba(255, 255, 255, 0.82); font-size: 1.1rem; margin-bottom: 32px; }

.vs-signup {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.vs-signup input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--vs-radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  backdrop-filter: blur(6px);
  transition: border-color 0.16s ease, background-color 0.16s ease;
}
.vs-signup input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.6); }
.vs-signup input[type="email"]:focus {
  border-color: var(--vs-gold-soft);
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.vs-signup button {
  flex: none;
  padding: 15px 28px;
  border: 0;
  border-radius: var(--vs-radius-pill);
  background: var(--vs-gold);
  color: #2a0a17;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.16s ease, transform 0.16s ease;
}
.vs-signup button:hover { background: var(--vs-gold-soft); transform: translateY(-1px); }
.vs-signup button[disabled] { opacity: 0.6; cursor: progress; transform: none; }

@media (max-width: 560px) {
  .vs-signup { flex-direction: column; border-radius: var(--vs-radius-lg); }
  .vs-signup button { width: 100%; }
}

.vs-signup__hp { position: absolute !important; left: -9999px !important; }

.vs-signup__msg {
  min-height: 24px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--vs-gold-soft);
}
.vs-signup__msg.is-error { color: #ffc4c4; }

.vs-cta__fine { font-size: 0.83rem; color: rgba(255, 255, 255, 0.55); margin-top: 6px; }

.vs-store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.vs-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.16s ease;
}
.vs-store-badge:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.vs-store-badge svg { width: 22px; height: 22px; flex: none; }
.vs-store-badge b { display: block; font-size: 0.95rem; font-weight: 700; line-height: 1.2; }
.vs-store-badge small { display: block; font-size: 0.68rem; opacity: 0.72; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.vs-footer {
  background: var(--vs-ink);
  color: rgba(255, 255, 255, 0.66);
  padding-block: clamp(48px, 6vw, 72px) 32px;
  font-size: 0.93rem;
}

/* Explicit breakpoints, not auto-fit: mixing auto-fit with an fr track lets the
   repeated columns claim their min-width first and starves the brand column. */
.vs-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

/* Small tablets: brand across the top, link columns in a row beneath it. */
@media (min-width: 600px) {
  .vs-footer__top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px clamp(24px, 4vw, 48px);
  }
  .vs-footer__top > :first-child { grid-column: 1 / -1; }
}

/* Desktop: brand column beside the three link columns. */
@media (min-width: 860px) {
  .vs-footer__top {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 56px);
  }
  .vs-footer__top > :first-child { grid-column: auto; }
}

.vs-footer .vs-brand { color: #fff; margin-bottom: 14px; }
.vs-footer .vs-brand__mark { color: var(--vs-gold-soft); }
.vs-footer__about { max-width: 34ch; color: rgba(255, 255, 255, 0.55); }

.vs-footer h4 {
  font-family: var(--vs-font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 14px;
}

.vs-footer ul { list-style: none; margin: 0; padding: 0; }
.vs-footer li { margin-bottom: 9px; }
.vs-footer a { color: rgba(255, 255, 255, 0.62); text-decoration: none; transition: color 0.16s ease; }
.vs-footer a:hover { color: #fff; }

/* Touch: a 16px line of text is half the recommended 44px tap target. */
@media (max-width: 859px) {
  .vs-footer__top li { margin-bottom: 0; }
  .vs-footer__top ul a {
    display: inline-block;
    padding: 12px 0;
    min-height: 44px;
    line-height: 20px;
  }
}

.vs-footer__social { display: flex; gap: 10px; margin-top: 18px; }
.vs-footer__social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  transition: background-color 0.16s ease, color 0.16s ease;
}
.vs-footer__social a:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.vs-footer__social svg { width: 17px; height: 17px; }

.vs-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 26px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
}

.vs-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; }

.vs-footer__disclaimer {
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.34);
  max-width: 70ch;
}

/* --------------------------------------------------------------------------
   Inner pages (page.php / index.php / 404)
   -------------------------------------------------------------------------- */

.vs-page { padding-block: clamp(56px, 8vw, 96px); }
.vs-page__head { max-width: var(--vs-max-narrow); margin: 0 auto clamp(32px, 5vw, 48px); text-align: center; }
.vs-page__meta { font-size: 0.88rem; color: var(--vs-text-soft); }

.vs-content { max-width: var(--vs-max-narrow); margin-inline: auto; }
.vs-content h2, .vs-content h3 { margin-top: 1.7em; }
.vs-content ul, .vs-content ol { padding-left: 1.3em; }
.vs-content li { margin-bottom: 0.5em; }
.vs-content img { border-radius: var(--vs-radius); margin-block: 1.6em; }
.vs-content blockquote {
  margin: 1.8em 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--vs-gold);
  font-family: var(--vs-font-display);
  font-size: 1.15rem;
}
.vs-content table { width: 100%; border-collapse: collapse; margin-block: 1.6em; }
.vs-content th, .vs-content td { padding: 10px 12px; border-bottom: 1px solid var(--vs-line); text-align: left; }
.vs-content code {
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--vs-cream-warm);
  font-size: 0.9em;
}
.vs-content pre {
  padding: 18px 20px;
  border-radius: var(--vs-radius);
  background: var(--vs-ink);
  color: #f3ebe1;
  overflow-x: auto;
}
.vs-content pre code { background: none; padding: 0; }

.vs-postlist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.vs-postcard {
  display: flex;
  flex-direction: column;
  background: var(--vs-surface);
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-lg);
  overflow: hidden;
  box-shadow: var(--vs-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vs-postcard:hover { transform: translateY(-3px); box-shadow: var(--vs-shadow); }
.vs-postcard__thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--vs-cream-warm); }
.vs-postcard__thumb img { width: 100%; height: 100%; object-fit: cover; }
.vs-postcard__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.vs-postcard h3 { font-size: 1.15rem; margin-bottom: 8px; }
.vs-postcard h3 a { color: inherit; text-decoration: none; }
.vs-postcard h3 a:hover { color: var(--vs-wine); }
.vs-postcard p { font-size: 0.95rem; color: var(--vs-text-soft); }
.vs-postcard__meta { margin-top: auto; padding-top: 14px; font-size: 0.82rem; color: var(--vs-text-soft); }

.vs-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.vs-pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--vs-line);
  text-decoration: none;
  font-size: 0.93rem;
}
.vs-pagination .page-numbers.current { background: var(--vs-wine); border-color: var(--vs-wine); color: #fff; }

.vs-404 { text-align: center; padding-block: clamp(80px, 12vw, 140px); }
.vs-404__code {
  font-family: var(--vs-font-display);
  font-size: clamp(5rem, 16vw, 9rem);
  line-height: 0.9;
  color: var(--vs-wine);
  opacity: 0.18;
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   Reveal-on-scroll
   -------------------------------------------------------------------------- */

.vs-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.vs-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .vs-reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */

@media print {
  .vs-header, .vs-phone, .vs-cta, .vs-footer__social { display: none !important; }
  body { background: #fff; color: #000; }
}
