/*  VVIP Membership — landing site
    Refined luxury light: Fraunces display + Outfit body,
    crimson (#A31F25) + silver on a clean off-white canvas,
    aligned with the existing mobile app theme.               */

:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg-2: #f9fafb;         /* app scaffold background */
  --bg-3: #f3f4f6;
  --bg-tint: #fbf7f7;      /* near-white with a whisper of red */

  /* Ink */
  --ink: #1a1a1a;
  --ink-2: #4a4a4a;        /* app textDark */
  --ink-muted: #6b7280;    /* app textLight */
  --ink-soft: #9ca3af;

  /* Brand */
  --red: #a31f25;          /* app primary */
  --red-dark: #7a1718;
  --red-bright: #b71c1c;   /* app darkRed */
  --red-tint: rgba(163, 31, 37, 0.08);

  /* Silver — echoing the logo ring */
  --silver: #a8a8a8;
  --silver-light: #d1d1d1;
  --silver-edge: linear-gradient(180deg, #e0e0e0 0%, #a8a8a8 50%, #e0e0e0 100%);

  /* Lines */
  --line: #e5e7eb;
  --line-strong: #d1d5db;

  /* Effects */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.05);
  --shadow-md: 0 12px 32px -12px rgba(26, 26, 26, 0.12);
  --shadow-lg: 0 30px 80px -30px rgba(163, 31, 37, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink-2);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; }

::selection {
  background: var(--red);
  color: #fff;
}

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

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

/* ─── Typography helpers ────────────────────────────────────── */

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}

/* ─── Header ────────────────────────────────────────────────── */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 500ms var(--ease);
}

.logo:hover img {
  transform: rotate(-4deg) scale(1.04);
}

.logo-text {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-variation-settings: "SOFT" 100;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}

.logo-text em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 2.25rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav a {
  color: var(--ink-2);
  text-decoration: none;
  transition: color 200ms var(--ease);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 300ms var(--ease);
}

.nav a:hover {
  color: var(--red);
}

.nav a:hover::after {
  width: 100%;
}

/* Header CTA — Login button (sits outside .nav) */
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  background: var(--red);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--red);
  transition: background 250ms var(--ease), border-color 250ms var(--ease), transform 250ms var(--ease), box-shadow 250ms var(--ease);
  flex-shrink: 0;
}

.nav-login:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav-login svg {
  width: 14px;
  height: 14px;
}

/* ─── Hero ──────────────────────────────────────────────────── */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, var(--red-tint), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(200, 200, 200, 0.18), transparent 60%),
    var(--bg);
}

/* Giant watermark initial, subtle */
.hero::before {
  content: 'V';
  position: absolute;
  right: -6%;
  top: 6%;
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 72vw;
  color: var(--red);
  opacity: 0.05;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  font-style: italic;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content .eyebrow {
  margin-bottom: 2rem;
  animation: reveal 900ms var(--ease) 100ms backwards;
}

.hero-title {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--ink);
  margin-bottom: 2rem;
}

.hero-title .line {
  display: block;
  animation: reveal 1200ms var(--ease) backwards;
}

.hero-title .line:nth-child(1) { animation-delay: 150ms; }
.hero-title .line:nth-child(2) {
  animation-delay: 320ms;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  padding-left: 0.12em;
}

.hero-sub {
  max-width: 560px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 2.75rem;
  font-weight: 400;
  animation: reveal 1200ms var(--ease) 520ms backwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: reveal 1200ms var(--ease) 700ms backwards;
}

.hero-logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: reveal 1400ms var(--ease) 400ms backwards;
}

.hero-logo img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(163, 31, 37, 0.18));
  animation: float 7s ease-in-out infinite;
}

.hero-logo::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, var(--red-tint), transparent 60%);
  z-index: -1;
}

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

.hero-meta {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  animation: reveal 1200ms var(--ease) 900ms backwards;
}

/* ─── Buttons ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 350ms var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  color: var(--ink);
  border-color: var(--line-strong);
  background: #fff;
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--bg-2);
}

.btn-arrow {
  transition: transform 300ms var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ─── Sections ──────────────────────────────────────────────── */

section {
  padding: 7rem 0;
  position: relative;
}

.section-head {
  margin-bottom: 4.5rem;
  max-width: 780px;
}

.section-head .eyebrow {
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.08;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  color: var(--red);
}

/* ─── About ─────────────────────────────────────────────────── */

.about {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: start;
}

.about-body p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--ink-2);
  margin-bottom: 1.5rem;
}

.about-body p:first-of-type {
  font-size: 1.5rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 2rem;
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 72, "SOFT" 100;
  letter-spacing: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  background-color: #fff;
}

.stat {
  background: #fff;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 300ms var(--ease);
}

.stat:hover {
  background: var(--bg-tint);
}

.stat-value {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--red);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 100;
  letter-spacing: 0;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--ink-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Decorative monogram divider */
.monogram {
  display: flex;
  justify-content: center;
  padding: 3rem 0;
  opacity: 0.4;
}

.monogram img {
  width: 52px;
  height: 52px;
  filter: grayscale(0.1);
}

/* ─── Services ──────────────────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service {
  background: #fff;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 380px;
  transition: all 400ms var(--ease);
  position: relative;
  overflow: hidden;
}

.service::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 600ms var(--ease);
}

.service:hover {
  background: var(--bg-tint);
}

.service:hover::before {
  width: 100%;
}

.service-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.3em;
  font-weight: 500;
}

.service-title {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 300;
  font-variation-settings: "opsz" 72, "SOFT" 100;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.service-title em {
  font-style: italic;
  color: var(--red);
}

.service-desc {
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 0.9375rem;
  margin-top: auto;
  padding-top: 1rem;
}

/* ─── Download ──────────────────────────────────────────────── */

.download {
  text-align: center;
  padding: 10rem 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--red-tint), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
}

.download-logo {
  margin: 0 auto 2.5rem;
  width: 88px;
  height: 88px;
  opacity: 0.95;
}

.download-eyebrow {
  margin-bottom: 2rem;
  justify-content: center;
}

.download-title {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  line-height: 1.02;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.download-title em {
  font-style: italic;
  color: var(--red);
}

.download-sub {
  color: var(--ink-2);
  margin-bottom: 3rem;
  font-size: 1.0625rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.store-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.75rem;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: all 300ms var(--ease);
  text-align: left;
  min-width: 200px;
  box-shadow: var(--shadow-sm);
}

.store-badge:hover {
  border-color: var(--red);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.store-badge svg {
  width: 24px;
  height: 24px;
  color: var(--red);
  flex-shrink: 0;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.store-badge-small {
  font-size: 0.6875rem;
  color: var(--ink-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.store-badge-name {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}

/* ─── Footer ────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--line);
  padding: 5rem 0 2.5rem;
  background: var(--bg-2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.footer-brand-row img {
  width: 44px;
  height: 44px;
}

.footer-brand {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  font-variation-settings: "SOFT" 100;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}

.footer-brand em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}

.footer-tagline {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-col-title {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 200ms;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  flex-wrap: wrap;
  gap: 1rem;
  letter-spacing: 0.02em;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-bottom-links a {
  color: var(--ink-2);
  text-decoration: none;
  transition: color 200ms;
}

.footer-bottom-links a:hover {
  color: var(--red);
}

.footer-bottom-links .sep {
  color: var(--line-strong);
}

/* ─── Animations ────────────────────────────────────────────── */

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-logo img { animation: none; }
}

/* ─── Legal pages ───────────────────────────────────────────── */

.legal-hero {
  padding: 8rem 0 4rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, var(--red-tint), transparent 60%),
    var(--bg);
}

.legal-hero .eyebrow {
  margin-bottom: 2rem;
}

.legal-title {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.legal-title em {
  font-style: italic;
  color: var(--red);
}

.legal-meta {
  color: var(--ink-muted);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2rem 7rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-2);
}

.legal-body h2 {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 400;
  font-variation-settings: "opsz" 36, "SOFT" 100;
  color: var(--ink);
  margin: 3.5rem 0 1.25rem;
  letter-spacing: -0.005em;
  position: relative;
  padding-left: 2rem;
}

.legal-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 1.25rem;
  height: 1px;
  background: var(--red);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2.25rem 0 0.75rem;
  letter-spacing: 0.01em;
}

.legal-body p {
  margin-bottom: 1.125rem;
}

.legal-body ul {
  margin: 0.75rem 0 1.5rem 1.25rem;
  padding-left: 1rem;
}

.legal-body li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.legal-body li::marker {
  color: var(--red);
}

.legal-body a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--line-strong);
  transition: text-decoration-color 200ms;
}

.legal-body a:hover {
  text-decoration-color: var(--red);
}

.legal-body strong {
  color: var(--ink);
  font-weight: 600;
}

.legal-body code {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.9em;
  padding: 0.1em 0.4em;
  background: var(--bg-3);
  border-radius: 3px;
  color: var(--red-dark);
}

.legal-body .callout {
  border-left: 2px solid var(--red);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: var(--red-tint);
  font-style: italic;
  color: var(--ink);
  border-radius: 0 6px 6px 0;
}

.legal-body .callout p:last-child {
  margin-bottom: 0;
}

/* ─── Responsive ────────────────────────────────────────────── */

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-logo { order: -1; }
  .hero-logo img { max-width: 260px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand-col { grid-column: 1 / -1; }

  /* Tablet: tighter nav, hide secondary links */
  .nav { gap: 1.75rem; font-size: 0.75rem; }
  .nav a:nth-child(n+4) { display: none; }
}

@media (max-width: 720px) {
  .container { padding: 0 1.5rem; }
  .header-inner { padding: 0.875rem 1.5rem; }

  .logo img { width: 34px; height: 34px; }
  .logo-text { font-size: 1.0625rem; }

  /* Mobile: hide nav entirely, keep just logo + login */
  .nav { display: none; }

  .nav-login {
    padding: 0.5rem 1rem;
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
  }

  .hero {
    padding: 3rem 0 3rem;
    min-height: auto;
  }
  .hero-sub { font-size: 1rem; margin-bottom: 2.5rem; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero-meta { display: none; }

  section { padding: 5rem 0; }

  .about-stats { grid-template-columns: 1fr; }
  .stat { padding: 2rem 1.5rem; }

  .service { padding: 2.5rem 2rem; min-height: auto; }

  .download { padding: 5.5rem 0; }
  .download-logo { width: 68px; height: 68px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-hero { padding: 5rem 0 3rem; }
  .legal-body { padding: 3rem 1.5rem 5rem; }
  .legal-body h2 { font-size: 1.5rem; padding-left: 1.5rem; }
  .legal-body h2::before { width: 1rem; }
}

@media (max-width: 420px) {
  .store-badge { min-width: 0; width: 100%; }
  .store-badges { flex-direction: column; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* ─── Support page ──────────────────────────────────────────── */

.support {
  padding: 5rem 0 8rem;
}

.support-container {
  max-width: 1080px;
}

/* Contact methods grid */
.support-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
  margin-bottom: 5rem;
}

.support-method {
  background: #fff;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 300ms var(--ease);
  position: relative;
}

.support-method:hover {
  background: var(--bg-tint);
}

.support-method-icon {
  width: 44px;
  height: 44px;
  background: var(--red-tint);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.support-method-icon svg {
  width: 22px;
  height: 22px;
}

.support-method h3 {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 400;
  font-variation-settings: "opsz" 36, "SOFT" 100;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 0.25rem;
}

.support-method p {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.support-method a,
.support-method > span {
  color: var(--red);
  text-decoration: none;
  font-size: 0.9375rem;
  align-self: flex-start;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: border-color 200ms var(--ease);
  margin-top: auto;
}

.support-method a:hover {
  border-bottom-color: var(--red);
}

.support-method > span {
  border-bottom: none;
  color: var(--ink-2);
  font-weight: 500;
}

/* Form card */
.support-form-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 3.25rem 3rem;
  margin-bottom: 5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.support-form-card .eyebrow {
  margin-bottom: 1.25rem;
}

.support-form-title {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  line-height: 1.1;
  font-weight: 300;
  font-variation-settings: "opsz" 72, "SOFT" 100;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.012em;
}

.support-form-title em {
  font-style: italic;
  color: var(--red);
}

.support-form-sub {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

/* Status messages */
.support-form-message {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  margin-bottom: 1.75rem;
  font-size: 0.9375rem;
  border-left: 2px solid var(--red);
  background: var(--red-tint);
  color: var(--ink);
  line-height: 1.5;
}

.support-form-message.success,
.support-form-message.error {
  display: flex;
}

.support-form-message.success {
  border-left-color: #047857;
  background: rgba(4, 120, 87, 0.06);
  color: #064e3b;
}

.support-form-message svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Honeypot */
.support-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Form layout */
.support-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 0;
}

.support-field {
  margin-bottom: 1.25rem;
}

.support-field label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.6875rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

.support-field label .req {
  color: var(--red);
  margin-left: 0.25em;
}

.support-field input,
.support-field select,
.support-field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
  line-height: 1.5;
}

.support-field input::placeholder,
.support-field textarea::placeholder {
  color: var(--ink-soft);
}

.support-field input:focus,
.support-field select:focus,
.support-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-tint);
}

.support-field textarea {
  resize: vertical;
  min-height: 168px;
  font-family: 'Outfit', sans-serif;
}

.support-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a31f25' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.75rem;
}

.support-char-count {
  text-align: right;
  margin-top: 0.5rem;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.6875rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  transition: color 200ms;
}

.support-char-count.warn { color: #b45309; }
.support-char-count.danger { color: var(--red); }

/* Submit button */
.support-submit {
  margin-top: 0.75rem;
  padding: 1.125rem 2.5rem;
}

.support-submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: var(--shadow-sm);
}

/* Success state */
.support-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem 0.5rem;
}

.support-success.show {
  display: block;
  animation: reveal 600ms var(--ease) backwards;
}

.support-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--red-tint);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.support-success-icon svg {
  width: 32px;
  height: 32px;
}

.support-success h3 {
  font-family: 'Fraunces', 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 100;
  color: var(--ink);
  margin-bottom: 0.875rem;
  letter-spacing: -0.005em;
}

.support-success p {
  color: var(--ink-2);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.support-success strong {
  color: var(--ink);
}

.support-ref {
  display: inline-block;
  margin: 1.5rem 0 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--bg-3);
  color: var(--red);
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-ref-note {
  color: var(--ink-muted);
  font-size: 0.8125rem;
  margin-bottom: 1.75rem;
}

.support-new {
  margin-top: 0.25rem;
}

/* FAQ */
.support-faq {
  max-width: 760px;
  margin: 0 auto;
}

.support-faq .eyebrow {
  margin-bottom: 1.25rem;
}

.support-faq .support-form-title {
  margin-bottom: 2.75rem;
}

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

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

.support-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: color 200ms var(--ease);
  letter-spacing: -0.005em;
}

.support-faq-q:hover {
  color: var(--red);
}

.support-faq-q svg {
  width: 18px;
  height: 18px;
  color: var(--ink-soft);
  transition: transform 300ms var(--ease), color 300ms var(--ease);
  flex-shrink: 0;
}

.support-faq-item.open .support-faq-q,
.support-faq-item.open .support-faq-q svg {
  color: var(--red);
}

.support-faq-item.open .support-faq-q svg {
  transform: rotate(180deg);
}

.support-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease);
}

.support-faq-a > div {
  padding: 0 0 1.5rem 0;
  color: var(--ink-2);
  font-size: 0.9375rem;
  line-height: 1.75;
  max-width: 92%;
}

.support-faq-a a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-strong);
  transition: text-decoration-color 200ms;
}

.support-faq-a a:hover {
  text-decoration-color: var(--red);
}

/* Support page responsive */
@media (max-width: 960px) {
  .support-form-card { padding: 2.75rem 2rem; }
  .support-method { padding: 2rem 1.5rem; }
}

@media (max-width: 720px) {
  .support { padding: 3.5rem 0 5rem; }
  .support-form-card { padding: 2rem 1.25rem; }
  .support-form-title { font-size: 1.625rem; }
  .support-faq-q { font-size: 1rem; padding: 1.25rem 0; gap: 1rem; }
  .support-faq-a > div { max-width: 100%; }
}

@media (max-width: 640px) {
  .support-methods { grid-template-columns: 1fr; }
  .support-form-row { grid-template-columns: 1fr; gap: 0; }
  .support-method { padding: 1.75rem 1.5rem; }
}
