/* Vinar — design tokens, lifted from the mobile design system */
:root {
  /* Color primitives */
  --ink-900: #1E1A1E;
  --ink-800: #3C0000;
  --wine-900: #5F0B06;
  --wine-700: #7A1B12;
  --red-600: #D32F2F;
  --mauve-600: #805065;
  --taupe-500: #8A716E;
  --rose-300: #DDC0BB;
  --rose-200: #EFE6EB;
  --rose-100: #FAF1F6;
  --rose-50:  #FCE4EC;
  --warm-white: #FFF7FA;
  --pure-white: #FFFFFF;
  --blue-700:   #1976D2;
  --gold-warm:  #C8923D;

  /* Semantic */
  --bg-canvas: var(--warm-white);
  --bg-deep: var(--wine-900);
  --text-primary: var(--ink-900);
  --text-secondary: var(--mauve-600);
  --text-muted: var(--taupe-500);
  --text-label: var(--ink-800);
  --text-on-deep: var(--warm-white);
  --border-default: var(--rose-300);
  --surface-soft: var(--rose-100);

  /* Type */
  --font-display: "DM Serif Display", "Playfair Display", Georgia, serif;
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-warm: "Manrope", "Inter", sans-serif;

  /* Spacing */
  --sp-xs: 8px;
  --sp-sm: 12px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;
  --sp-4xl: 96px;
  --sp-5xl: 128px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-card: 0 6px 24px rgba(95, 11, 6, 0.06), 0 1px 2px rgba(95, 11, 6, 0.04);
  --shadow-button: 0 8px 10px -6px rgba(95, 11, 6, 0.18), 0 20px 25px -5px rgba(95, 11, 6, 0.12);
  --shadow-soft: 0 2px 8px rgba(60, 0, 0, 0.04);
  --shadow-deep: 0 30px 80px rgba(95, 11, 6, 0.25), 0 8px 24px rgba(95, 11, 6, 0.15);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--ink-800);
}
.display em, .display .ital {
  font-style: italic;
  font-feature-settings: "ss01";
}

.eyebrow {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine-900);
}
.eyebrow.on-deep { color: var(--rose-300); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 28px;
  border-radius: var(--r-md);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 140ms ease-out, opacity 140ms ease-out, background 140ms ease-out;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--wine-900); color: var(--warm-white); box-shadow: var(--shadow-button); }
.btn-primary:hover { background: var(--ink-800); }
.btn-ghost-deep { background: transparent; color: var(--warm-white); border: 1px solid rgba(255,247,250,0.35); }
.btn-ghost-deep:hover { border-color: var(--warm-white); }
.btn-outline { background: transparent; color: var(--wine-900); border: 1.5px solid var(--wine-900); }
.btn-outline:hover { background: var(--wine-900); color: var(--warm-white); }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
/* Visibility utilities */
.desktop-only { display: flex; }
@media (max-width: 768px) { .desktop-only { display: none !important; } }

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
}

.grain { position: relative; }
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(95,11,6,0.025) 1px, transparent 1.5px),
    radial-gradient(circle at 75% 65%, rgba(95,11,6,0.02) 1px, transparent 1.5px);
  background-size: 7px 7px, 11px 11px;
}

/* Logo masks */
.vinar-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  vertical-align: middle;
}
.vinar-sun, .vinar-wordmark {
  display: inline-block;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.vinar-sun {
  -webkit-mask-image: url(assets/vinar-sun.png);
  mask-image: url(assets/vinar-sun.png);
}
.vinar-wordmark {
  -webkit-mask-image: url(assets/vinar-wordmark.png);
  mask-image: url(assets/vinar-wordmark.png);
}
.sr-only {
  position: absolute; left: -10000px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* Store badges */
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 18px;
  border-radius: 12px;
  transition: transform 140ms;
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge.dark { background: var(--ink-900); color: var(--warm-white); border: 1px solid transparent; }
.store-badge.light-scheme { background: var(--warm-white); color: var(--ink-900); border: 1px solid var(--rose-300); }
.store-badge .badge-label { font-size: 10px; opacity: 0.7; letter-spacing: 0.02em; }
.store-badge .badge-store { font-size: 18px; font-weight: 600; font-family: var(--font-ui); }
.store-badge .badge-text { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1.2; }

/* Phone frame */
.phone {
  position: relative;
}
.phone-bezel {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, #1a1418 0%, #0a0608 50%, #1a1418 100%);
  padding: 6px;
  box-shadow: var(--shadow-deep);
}
.phone-bezel-inner {
  position: absolute; inset: 2px;
  border: 1px solid rgba(255,247,250,0.06);
  pointer-events: none;
}
.phone-screen {
  position: absolute; inset: 6px;
  background: var(--wine-900);
  overflow: hidden;
}
.phone-notch {
  position: absolute; left: 50%; top: 10px;
  transform: translateX(-50%);
  height: 28px;
  border-radius: 18px;
  background: #000;
  z-index: 5;
}
.phone-home {
  position: absolute; left: 50%; bottom: 8px;
  transform: translateX(-50%);
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.6);
  z-index: 5;
}

/* Status bar */
.status-bar {
  position: absolute; left: 0; right: 0; top: 0; height: 44px; z-index: 4;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px 0;
  font-size: 12px; font-weight: 600; font-family: var(--font-ui);
}
.status-bar.light { color: var(--warm-white); }
.status-bar.dark { color: var(--ink-900); }

/* Header */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  padding: 28px 0;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  background: var(--bg-deep);
  color: var(--text-on-deep);
  overflow: hidden;
}
.hero-glow {
  position: absolute; left: -20%; top: -30%; width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,47,47,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-photo {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(90deg, var(--wine-900) 0%, rgba(95,11,6,0.6) 30%, rgba(30,4,2,0.3) 100%), url(assets/cat-card.png) right center/cover;
  opacity: 0.55;
  pointer-events: none;
}
.hero-watermark {
  position: absolute; right: -180px; bottom: -180px; opacity: 0.07; pointer-events: none;
}
.hero-grid {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 820px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 100px;
  background: rgba(255,247,250,0.08);
  border: 1px solid rgba(255,247,250,0.18);
  font-size: 12px; color: var(--rose-200);
}
.hero-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 0 8px var(--red-600);
}
.hero-title {
  font-size: clamp(48px, 6.5vw, 84px);
  margin: 28px 0 24px;
  color: var(--warm-white);
}
.hero-sub {
  font-size: 18px; line-height: 1.55; color: rgba(255,247,250,0.78);
  max-width: 520px; margin: 0;
}
.hero-cta-row { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-qr-row { display: flex; align-items: center; gap: 16px; margin-top: 36px; }
.hero-qr-link {
  padding: 6px; background: var(--warm-white); border-radius: 12px;
  display: inline-block; line-height: 0;
}
.hero-qr-link img {
  width: 84px; height: 84px;
  image-rendering: pixelated;
  border-radius: 6px;
}
.hero-qr-text { max-width: 200px; }
.hero-qr-text .small {
  font-size: 13px; color: rgba(255,247,250,0.7); line-height: 1.45;
}

.hero-phones {
  position: relative;
  height: 720px;
  display: flex; justify-content: center; align-items: center;
}
.hero-phone-back {
  position: absolute; left: 10%; top: 60px;
  transform: rotate(-6deg);
  z-index: 1; opacity: 0.92;
}
.hero-phone-front {
  position: absolute; right: 8%; top: 0;
  transform: rotate(4deg);
  z-index: 2;
}

/* Stats strip */
.hero-stats {
  position: relative;
  border-top: 1px solid rgba(255,247,250,0.12);
  padding-top: 32px; padding-bottom: 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.hero-stats .num {
  font-family: var(--font-display); font-size: 36px;
  color: var(--warm-white); letter-spacing: -0.02em; line-height: 1;
}
.hero-stats .lbl {
  font-size: 12px; color: rgba(255,247,250,0.6);
  margin-top: 6px; letter-spacing: 0.04em;
}

/* How it works */
.how {
  padding: 120px 0 100px;
  background: var(--bg-canvas);
  position: relative;
}
.how-head { max-width: 720px; margin-bottom: 72px; }
.how-head h2 { font-size: clamp(38px, 5vw, 60px); margin: 16px 0 0; }
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; position: relative;
}
.how-line {
  position: absolute; top: 38px; left: 8%; right: 8%; height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--rose-300) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.how-step { position: relative; z-index: 1; }
.how-step .badge {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--bg-canvas);
  border: 1px solid var(--rose-300);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px var(--bg-canvas);
}
.how-step .step-num {
  font-family: var(--font-display);
  font-size: 14px; color: var(--mauve-600);
  margin-top: 24px; letter-spacing: 0.04em;
}
.how-step h3 {
  font-family: var(--font-display); font-size: 28px; line-height: 1.1;
  color: var(--ink-800); margin: 10px 0 14px;
  letter-spacing: -0.015em;
}
.how-step p {
  font-size: 15px; line-height: 1.6;
  color: var(--text-secondary); margin: 0; max-width: 320px;
}

/* Recommended */
.rec { padding: 112px 0 120px; background: var(--surface-soft); position: relative; overflow: hidden; }
.rec-trim-top, .rec-trim-bot { position: absolute; left: 0; right: 0; height: 1px; background: var(--rose-200); }
.rec-trim-top { top: 0; } .rec-trim-bot { bottom: 0; }
.rec-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 72px; align-items: center;
}
.rec-copy { max-width: 540px; }
.rec-copy h2 { font-size: clamp(38px, 4.4vw, 56px); margin: 18px 0 22px; line-height: 1.02; }
.rec-copy p { font-size: 17px; line-height: 1.6; color: var(--text-secondary); margin: 0; max-width: 480px; }
.rec-list {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid; gap: 14px;
  border-top: 1px solid var(--rose-300); padding-top: 28px;
}
.rec-list li { display: flex; align-items: baseline; gap: 16px; }
.rec-list .bullet { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-warm); flex: 0 0 auto; transform: translateY(-2px); }
.rec-list .k { font-family: var(--font-display); font-size: 18px; color: var(--ink-800); letter-spacing: -0.005em; width: 180px; flex: 0 0 auto; }
.rec-list .v { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

.rec-stage { position: relative; max-width: 440px; margin-left: auto; width: 100%; }
.rec-ghost {
  position: absolute; inset: 0;
  background: var(--warm-white);
  border-radius: 24px;
  border: 1px solid var(--rose-200);
  z-index: 0; box-shadow: var(--shadow-soft);
}
.rec-ghost.g2 { transform: translate(18px, 22px) rotate(2.4deg); opacity: 0.45; }
.rec-ghost.g1 { transform: translate(-10px, 10px) rotate(-1.6deg); opacity: 0.7; }

.rec-card {
  position: relative; z-index: 1;
  background: var(--wine-900);
  border-radius: 24px;
  padding: 28px 28px 22px;
  border: 1px solid rgba(255,247,250,0.08);
  box-shadow: 0 12px 40px rgba(95,11,6,0.32);
}
.rec-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.rec-card-idx { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: rgba(255,247,250,0.45); text-transform: uppercase; font-family: var(--font-ui); }
.rec-person { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.rec-avatar {
  width: 65px; height: 65px; flex: 0 0 65px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px; color: var(--warm-white);
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(0,0,0,0.30);
  border: 2px solid rgba(255,247,250,0.18);
}
.rec-name { font-family: var(--font-display); font-size: 24px; color: var(--warm-white); letter-spacing: -0.012em; line-height: 1.1; }
.rec-role { font-size: 13px; color: var(--rose-300); margin-top: 5px; line-height: 1.3; }
.rec-role .sub { color: rgba(255,247,250,0.5); }
.rec-quote {
  font-family: var(--font-display); font-size: 19px; line-height: 1.4;
  color: var(--warm-white); margin: 0; letter-spacing: -0.005em; font-style: italic;
}
.rec-foot {
  margin-top: 26px; padding-top: 18px;
  border-top: 1px solid rgba(255,247,250,0.12);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.rec-foot .picks {
  font-size: 11px; color: rgba(255,247,250,0.55);
  letter-spacing: 0.10em; text-transform: uppercase; font-weight: 600;
  display: inline-flex; align-items: baseline; gap: 8px;
}
.rec-foot .picks .n { color: var(--warm-white); font-family: var(--font-display); font-size: 20px; letter-spacing: -0.01em; }
.rec-progress {
  flex: 1 1 auto; height: 2px;
  background: rgba(255,247,250,0.15); border-radius: 2px;
  overflow: hidden; max-width: 140px;
}
.rec-progress-fill {
  height: 100%; width: 100%;
  background: var(--gold-warm); border-radius: 2px;
  transform-origin: left center;
}
.rec-caption {
  margin-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em;
  gap: 12px; flex-wrap: wrap;
}
.rec-caption .live {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; text-transform: uppercase;
  color: var(--wine-900); letter-spacing: 0.12em; font-size: 11px;
}
.rec-caption .live .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-warm);
  box-shadow: 0 0 0 4px rgba(200,146,61,0.22);
}
.rec-caption .roster { font-family: var(--font-display); font-style: italic; color: var(--gold-warm); font-size: 14px; }

@keyframes rec-card-enter {
  0%   { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes rec-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.rec-card-active { animation: rec-card-enter 540ms cubic-bezier(0.2,0.7,0.2,1) both; }
.rec-progress-fill.run { animation: rec-progress 5000ms linear both; }
@media (prefers-reduced-motion: reduce) {
  .rec-card-active, .rec-progress-fill.run { animation: none; }
  .rec-progress-fill { transform: scaleX(1); }
}

/* QR Story */
.qr-story {
  padding: 112px 0 120px;
  background: var(--ink-900);
  color: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.qr-trim { position: absolute; left: 0; right: 0; height: 1px; background: rgba(255,247,250,0.06); }
.qr-trim.top { top: 0; } .qr-trim.bot { bottom: 0; }
.qr-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 72px; align-items: center;
}
.qr-copy { max-width: 520px; }
.qr-copy h2 { font-size: clamp(38px, 4.4vw, 56px); color: var(--warm-white); margin: 18px 0 22px; line-height: 1.02; }
.qr-copy p { font-size: 17px; line-height: 1.6; color: rgba(255,247,250,0.72); margin: 0; max-width: 460px; }
.qr-list {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid; gap: 14px;
  border-top: 1px solid rgba(255,247,250,0.10);
  padding-top: 28px;
}
.qr-list li { display: flex; align-items: baseline; gap: 16px; }
.qr-list .bullet { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-warm); flex: 0 0 auto; transform: translateY(-2px); }
.qr-list .k { font-family: var(--font-display); font-size: 18px; color: var(--warm-white); letter-spacing: -0.005em; width: 200px; flex: 0 0 auto; }
.qr-list .v { font-size: 14px; color: rgba(255,247,250,0.55); line-height: 1.5; }

.viewfinder {
  position: relative; aspect-ratio: 1 / 1;
  max-width: 460px; margin: 0 auto; width: 100%;
}
.viewfinder-field {
  position: absolute; inset: 0;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 45%, #2a0807 0%, #060304 70%);
  border: 1px solid rgba(255,247,250,0.08);
  overflow: hidden;
}
.vf-corner { position: absolute; width: 36px; height: 36px; border-radius: 4px; }
.vf-corner.tl { top: 24px; left: 24px; border-top: 2px solid var(--warm-white); border-left: 2px solid var(--warm-white); }
.vf-corner.tr { top: 24px; right: 24px; border-top: 2px solid var(--warm-white); border-right: 2px solid var(--warm-white); }
.vf-corner.bl { bottom: 24px; left: 24px; border-bottom: 2px solid var(--warm-white); border-left: 2px solid var(--warm-white); }
.vf-corner.br { bottom: 24px; right: 24px; border-bottom: 2px solid var(--warm-white); border-right: 2px solid var(--warm-white); }
.vf-card {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  padding: 14px;
  background: var(--warm-white);
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.vf-card img { width: 168px; height: 168px; image-rendering: pixelated; border-radius: 6px; }
.vf-card .lbl {
  margin-top: 10px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--wine-900); text-align: center;
}
.vf-scan {
  position: absolute; left: 12%; right: 12%; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-600) 20%, var(--red-600) 80%, transparent);
  opacity: 0.9;
  animation: vinar-scan 2.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes vinar-scan {
  0%   { top: 22%; opacity: 0; }
  15%  { opacity: 1; }
  50%  { top: 78%; opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 22%; opacity: 0; }
}
.vf-caption {
  margin-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,247,250,0.5); letter-spacing: 0.04em;
}
.vf-caption .roster { font-family: var(--font-display); font-style: italic; color: var(--gold-warm); }

/* Events */
.events { padding: 100px 0; background: var(--bg-canvas); position: relative; }
.events-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.events-card {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: 32px;
  background: linear-gradient(180deg, transparent 40%, rgba(30,4,2,0.85) 100%), url(assets/cat-card.png) center/cover;
  overflow: hidden; padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--warm-white); box-shadow: var(--shadow-card);
}
.events-chip {
  background: rgba(255,247,250,0.14);
  color: var(--warm-white);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,247,250,0.25);
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.events-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #E8B85C;
  box-shadow: 0 0 0 4px rgba(232,184,92,0.25);
}
.events-card h3 {
  font-family: var(--font-display); font-size: 36px; margin: 10px 0 14px;
  letter-spacing: -0.015em; line-height: 1.05;
}
.events-card p {
  font-size: 14px; line-height: 1.5; color: rgba(255,247,250,0.85); margin: 0; max-width: 360px;
}
.events-copy h2 { font-size: clamp(36px, 4.5vw, 56px); margin: 16px 0 24px; }
.events-copy p.lead { font-size: 16px; line-height: 1.6; color: var(--text-secondary); margin: 0 0 32px; max-width: 480px; }
.events-list { display: flex; flex-direction: column; gap: 14px; }
.events-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 18px;
  background: var(--warm-white);
  border: 1px solid var(--rose-200);
  border-radius: 14px;
}
.events-item .ico {
  width: 36px; height: 36px; flex: 0 0 36px;
  border-radius: 10px;
  background: var(--rose-100, #F6E9E7);
  display: flex; align-items: center; justify-content: center;
  color: var(--wine-900);
}
.events-item .t { font-size: 14px; font-weight: 600; color: var(--ink-800); }
.events-item .m { font-size: 12px; line-height: 1.5; color: var(--text-muted); margin-top: 3px; }

/* Winery CTA */
.winery-cta {
  padding: 100px 0;
  background: var(--surface-soft);
  text-align: center;
}
.winery-cta-inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
  max-width: 600px;
}
.winery-cta .display {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--ink-800); margin: 0;
}
.winery-cta p {
  font-size: 17px; line-height: 1.65;
  color: var(--text-secondary); margin: 0;
}
.winery-cta .btn-primary {
  margin-top: 8px;
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 100px;
  text-decoration: none;
}

/* Footer CTA */
.footer-cta {
  background: var(--bg-deep);
  color: var(--text-on-deep);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}
.footer-cta .glow {
  position: absolute; left: 50%; top: 20%; width: 700px; height: 700px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,47,47,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.footer-content { position: relative; text-align: center; }
.footer-spinner { display: flex; justify-content: center; margin-bottom: 36px; }
.vinar-spinning-mark {
  display: inline-flex; line-height: 0;
  animation: vinar-spin 28s linear infinite;
  transform-origin: 50% 50%; will-change: transform;
}
@keyframes vinar-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .vinar-spinning-mark { animation: none; }
}
.footer-cta h2 {
  font-size: clamp(48px, 7vw, 96px);
  margin: 20px auto 28px;
  color: var(--warm-white);
  max-width: 1000px; line-height: 0.96;
}
.footer-cta p.lead {
  font-size: 18px; color: rgba(255,247,250,0.7);
  margin: 0 auto 44px; max-width: 540px; line-height: 1.5;
}
.footer-cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.footer-bottom {
  position: relative;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(255,247,250,0.12);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,247,250,0.4);
}
.footer-bottom a { color: rgba(255,247,250,0.4); }
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom .ef {
  color: rgba(255,247,250,0.7);
  text-decoration: none; font-weight: 500;
}
.footer-bottom .ef .star { color: #E3FE02; margin-right: 1px; }

/* Responsive */
@media (max-width: 960px) {
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 120px; padding-bottom: 60px; min-height: 0; }
  .hero-photo { display: none; }
  .hero-phones { height: 520px; }
  .hero-phone-back { left: 6%; top: 30px; transform: rotate(-6deg) scale(0.78); transform-origin: top left; }
  .hero-phone-front { right: 4%; top: -10px; transform: rotate(4deg) scale(0.8); transform-origin: top right; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 56px; }
  .how-line { display: none; }
  .rec-grid, .qr-grid, .events-grid { grid-template-columns: 1fr; gap: 48px; }
  .rec-stage { margin-left: 0; }
  .viewfinder { margin-left: 0; }
  .events-card { aspect-ratio: auto; min-height: 340px; padding: 24px; }
  .events-card h3 { font-size: 28px; }
  .footer-cta { padding: 80px 0 40px; }
}
@media (max-width: 640px) {
  .site-header { padding: 20px 0; }
  .hero-grid { padding-top: 96px; padding-bottom: 32px; gap: 24px; }
  .hero-title { font-size: clamp(40px, 11vw, 64px); margin: 20px 0 18px; }
  .hero-sub { font-size: 16px; }
  .hero-cta-row { gap: 10px; margin-top: 28px; }
  .store-badge { height: 52px; padding: 0 14px; }
  .store-badge .badge-store { font-size: 16px; }
  .hero-qr-row { margin-top: 28px; gap: 14px; }
  .hero-qr-link img { width: 72px; height: 72px; }
  .hero-qr-text .small { font-size: 12px; }

  /* Phones: hide back phone, center front phone scaled down */
  .hero-phones { height: 460px; }
  .hero-phone-back { display: none; }
  .hero-phone-front {
    right: auto; left: 50%; top: 0;
    transform: translateX(-50%) rotate(2deg) scale(0.7);
    transform-origin: top center;
  }

  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; padding-top: 24px; padding-bottom: 24px; }
  .hero-stats .num { font-size: 28px; }
  .site-header nav { display: none; }

  .how { padding: 80px 0 60px; }
  .how-head { margin-bottom: 48px; }
  .how-grid { gap: 40px; }
  .how-step h3 { font-size: 24px; }

  .rec { padding: 72px 0 80px; }
  .rec-grid { gap: 56px; }
  .rec-list { padding-top: 22px; gap: 12px; }
  .rec-list li { flex-wrap: wrap; gap: 8px 12px; }
  .rec-list .bullet { transform: translateY(2px); }
  .rec-list .k { width: auto; flex: 0 0 auto; font-size: 17px; }
  .rec-list .v { flex: 1 1 100%; padding-left: 22px; margin-top: -4px; }

  .rec-card { padding: 22px 20px 18px; }
  .rec-name { font-size: 20px; }
  .rec-quote { font-size: 17px; }
  .rec-foot { flex-wrap: wrap; gap: 12px; }
  .rec-progress { max-width: none; width: 100%; }

  .qr-story { padding: 72px 0 80px; }
  .qr-list { padding-top: 22px; gap: 12px; }
  .qr-list li { flex-wrap: wrap; gap: 8px 12px; }
  .qr-list .bullet { transform: translateY(2px); }
  .qr-list .k { width: auto; flex: 0 0 auto; font-size: 17px; }
  .qr-list .v { flex: 1 1 100%; padding-left: 22px; margin-top: -4px; }
  .viewfinder { max-width: 360px; }
  .vf-card img { width: 132px; height: 132px; }
  .vf-caption { flex-wrap: wrap; gap: 8px; }

  .events { padding: 72px 0; }
  .events-grid { gap: 32px; }
  .events-card { padding: 22px; border-radius: 24px; min-height: 300px; }
  .events-card h3 { font-size: 26px; }
  .events-item { padding: 14px; }

  .footer-cta { padding: 64px 0 32px; }
  .footer-cta h2 { font-size: clamp(40px, 11vw, 64px); margin: 16px auto 20px; }
  .footer-cta p.lead { font-size: 16px; margin: 0 auto 32px; }
  .footer-cta-row { gap: 10px; margin-bottom: 40px; }
  .footer-spinner { margin-bottom: 24px; }
  .footer-spinner .vinar-sun { width: 96px !important; height: 96px !important; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; padding-top: 20px; }
  .footer-bottom .links { flex-wrap: wrap; gap: 12px 18px; }
}
@media (max-width: 380px) {
  .site-header .wrap { gap: 12px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .store-badge { width: 100%; justify-content: flex-start; }
  .footer-cta-row { flex-direction: column; align-items: stretch; }
  .footer-cta-row .store-badge { width: 100%; justify-content: flex-start; }
}
