/* =============================================================================
   VYBE — vybe-party.com landing
   Single-file CSS. Sections: variables → base → atmosphere → nav → hero
   → strip → values → gallery → download → host → footer → media.
   ============================================================================= */

:root {
  /* Brand palette — kept in lockstep with the prototype + native app. */
  --pink: #ff2387;
  --pink-soft: rgba(255, 35, 135, 0.25);
  --purple: #c850ff;
  --cyan: #00d9ff;
  --bg-base: #0a0a0f;
  --bg-stage: #050507;
  --surface-1: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border-faint: rgba(255, 255, 255, 0.08);
  --border-mid: rgba(255, 255, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-faint: rgba(255, 255, 255, 0.35);
  --grad-primary: linear-gradient(135deg, #ff2387 0%, #c850ff 100%);
  --grad-wordmark: linear-gradient(180deg, #ffffff 0%, #ff2387 70%, #c850ff 100%);
  --grad-vertical-fade:
    linear-gradient(180deg, rgba(10,10,15,0) 0%,
                            rgba(10,10,15,0.4) 35%,
                            rgba(10,10,15,0.92) 75%,
                            rgba(10,10,15,1) 100%);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============== Base ============== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  position: relative;
  background-image:
    radial-gradient(at 18% 12%, rgba(200,80,255,0.12) 0%, transparent 38%),
    radial-gradient(at 82% 88%, rgba(255,35,135,0.10) 0%, transparent 42%),
    var(--bg-base);
}
a { color: inherit; text-decoration: none; }
img { display: block; }
button { font-family: inherit; }
.hidden { display: none !important; }
.br-md { display: none; }
@media (min-width: 720px) { .br-md { display: inline; } }

/* ============== Atmosphere (fixed background blobs) ============== */
.atmosphere {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(120px);
  opacity: 0.55; animation: blobFloat 22s ease-in-out infinite;
}
.blob-pink {
  width: 60vmin; height: 60vmin;
  left: -8vmin; top: -6vmin;
  background: radial-gradient(circle, var(--pink) 0%, transparent 65%);
}
.blob-purple {
  width: 70vmin; height: 70vmin;
  right: -12vmin; top: 35vh;
  background: radial-gradient(circle, var(--purple) 0%, transparent 65%);
  animation-delay: -8s;
}
.blob-cyan {
  width: 50vmin; height: 50vmin;
  left: 40vw; top: 90vh;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 65%);
  opacity: 0.30;
  animation-delay: -14s;
}
@keyframes blobFloat {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50%     { transform: translate3d(3vw,-4vh,0) scale(1.08); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
}
.vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.55) 100%);
}

/* ============== Wordmark (svg mask) ============== */
.wordmark {
  display: inline-block;
  width: 120px; height: 56px;
  background: var(--grad-wordmark);
  -webkit-mask: url('/assets/logo_vybe.svg') center / contain no-repeat;
          mask: url('/assets/logo_vybe.svg') center / contain no-repeat;
  filter: drop-shadow(0 0 18px rgba(255, 35, 135, 0.45));
}
.hero-wordmark {
  display: block;
  width: 220px; height: 104px;
  margin: 0 auto 28px;                  /* horizontal center */
  background: var(--grad-wordmark);
  -webkit-mask: url('/assets/logo_vybe.svg') center / contain no-repeat;
          mask: url('/assets/logo_vybe.svg') center / contain no-repeat;
  filter: drop-shadow(0 0 32px rgba(255, 35, 135, 0.6));
  animation: hwmGlow 4s ease-in-out infinite alternate;
}
@keyframes hwmGlow {
  from { filter: drop-shadow(0 0 24px rgba(255, 35, 135, 0.45)); }
  to   { filter: drop-shadow(0 0 44px rgba(200, 80, 255, 0.65)); }
}

/* ============== Nav ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  background: linear-gradient(180deg, rgba(10,10,15,0.85), rgba(10,10,15,0.55));
  border-bottom: 1px solid var(--border-faint);
}
.nav .brand .wordmark { width: 64px; height: 30px; }
.nav-right { display: flex; gap: 6px; align-items: center; }
.nav-link {
  padding: 9px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--text-secondary);
  border-radius: 100px;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: white; background: var(--surface-1); }
.nav-link:last-child {
  color: white;
  background: var(--grad-primary);
  box-shadow: 0 8px 24px -8px rgba(255,35,135,0.6);
}
.nav-link:last-child:hover { background: var(--grad-primary); filter: brightness(1.08); }

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  border: 0; border-radius: 16px;
  cursor: pointer;
  transition: transform .25s var(--ease-out), filter .2s, box-shadow .3s;
  letter-spacing: -0.2px;
}
.btn-primary {
  color: white;
  background: var(--grad-primary);
  box-shadow: 0 18px 40px -14px rgba(255,35,135,0.7),
              0 4px 16px -6px rgba(200,80,255,0.45);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-mid);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); }

/* ============== Hero ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: -10% -5% -10%;
  z-index: -2;
  will-change: transform;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(1.05);
  opacity: 0.55;
}
.hero-bg-grad {
  position: absolute; inset: 0;
  background: var(--grad-vertical-fade);
}
.hero-stars { position: absolute; inset: 0; z-index: -1; will-change: transform; }
.hero-stars span {
  position: absolute;
  width: 2px; height: 2px; border-radius: 50%;
  background: white;
  box-shadow: 0 0 6px white;
  opacity: 0.7;
  animation: starPulse 3s ease-in-out infinite alternate;
}
.hero-stars span:nth-child(1) { left: 8%;  top: 18%; animation-delay: 0s;  }
.hero-stars span:nth-child(2) { left: 22%; top: 32%; animation-delay: .6s; }
.hero-stars span:nth-child(3) { left: 38%; top: 14%; animation-delay: 1.2s;width: 1.5px; height: 1.5px; }
.hero-stars span:nth-child(4) { left: 52%; top: 24%; animation-delay: .3s; }
.hero-stars span:nth-child(5) { left: 68%; top: 12%; animation-delay: 1.5s;width: 1.5px; height: 1.5px; }
.hero-stars span:nth-child(6) { left: 84%; top: 28%; animation-delay: .9s; }
.hero-stars span:nth-child(7) { left: 12%; top: 64%; animation-delay: 1.8s;width: 1.5px; height: 1.5px; }
.hero-stars span:nth-child(8) { left: 30%; top: 78%; animation-delay: .4s; }
.hero-stars span:nth-child(9) { left: 66%; top: 70%; animation-delay: 1.1s; }
.hero-stars span:nth-child(10){ left: 88%; top: 80%; animation-delay: 2s;  }
@keyframes starPulse {
  from { opacity: 0.2; transform: scale(0.6); }
  to   { opacity: 1;   transform: scale(1.4); }
}
.hero-inner {
  position: relative;
  max-width: 720px; text-align: center;
  will-change: transform;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  font-size: 12px; font-weight: 500; color: var(--text-secondary);
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
}
.badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: dotPulse 1.8s ease-in-out infinite alternate;
}
@keyframes dotPulse {
  from { opacity: 0.5; transform: scale(0.9); }
  to   { opacity: 1;   transform: scale(1.15); }
}
.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin: 0 0 18px;
}
.hero-title .grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 24px rgba(255,35,135,0.5));
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 36px;
}
.hero-sub b { color: white; font-weight: 600; }
.hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  left: 50%; bottom: -120px;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 22px; height: 36px;
  border: 1.5px solid var(--text-faint);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  left: 50%; top: 8px;
  width: 3px; height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60%{ transform: translate(-50%, 14px); opacity: 0; }
  100%{ transform: translate(-50%, 14px); opacity: 0; }
}

/* ============== Strip (marquee) ============== */
.strip {
  overflow: hidden;
  border-top: 1px solid var(--border-faint);
  border-bottom: 1px solid var(--border-faint);
  background: linear-gradient(180deg, rgba(255,35,135,0.04), rgba(200,80,255,0.04));
  padding: 16px 0;
  z-index: 1; position: relative;
}
.strip-track {
  display: inline-flex; gap: 42px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.strip-track span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============== Section frame ============== */
.section {
  position: relative;
  padding: 120px 24px;
  isolation: isolate;
  overflow: hidden;
}
.section-bg {
  position: absolute; inset: -10% -5% -10%;
  z-index: -1;
  will-change: transform;
}
.section-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.20;
  filter: blur(3px) saturate(0.9);
}
.section-bg-grad {
  position: absolute; inset: 0;
  background: var(--grad-vertical-fade);
}
.section-inner {
  max-width: 1120px; margin: 0 auto;
  position: relative;
}
.section-inner.narrow { max-width: 700px; }
.section-inner.center { text-align: center; }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: var(--text-muted); text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.accent {
  color: transparent;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 4.4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin: 0 0 36px;
}
.section-title .grad {
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead {
  font-size: 16px; line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 32px;
}

/* ============== Reveal animations ============== */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============== Values ============== */
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.value-card {
  position: relative;
  padding: 32px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-faint);
  border-radius: 22px;
  backdrop-filter: blur(20px);
  transition: transform .35s var(--ease-out), background .25s, border-color .25s;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255,35,135,0.12), transparent 50%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,35,135,0.35);
  background: rgba(255,255,255,0.06);
}
.value-card:hover::before { opacity: 1; }
.value-icon {
  font-size: 32px; margin-bottom: 14px;
  filter: drop-shadow(0 4px 16px rgba(255,35,135,0.3));
}
.value-card h3 {
  font-size: 18px; font-weight: 700; margin: 0 0 10px;
  letter-spacing: -0.3px;
}
.value-card p {
  font-size: 14px; line-height: 1.6; color: var(--text-secondary);
  margin: 0;
}

/* ============== Gallery ============== */
.gallery .section-inner { padding-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 280px 280px;
  gap: 14px;
}
.g-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface-1);
  border: 1px solid var(--border-faint);
  cursor: pointer;
  transition: transform .4s var(--ease-out), box-shadow .35s;
}
.g-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out), filter .4s;
}
.g-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.g-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -20px rgba(255,35,135,0.4);
}
.g-card:hover img { transform: scale(1.08); filter: saturate(1.1); }
.g-meta {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  z-index: 2;
}
.g-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  padding: 4px 9px;
  background: rgba(0,0,0,0.5);
  border-radius: 6px;
  color: var(--text-secondary);
  backdrop-filter: blur(6px);
  margin-bottom: 6px;
}
.g-name {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
/* Layout: feature ACE big-left, others arranged around */
.g-1 { grid-column: 1 / span 3; grid-row: 1 / span 2; }
.g-2 { grid-column: 4 / span 3; grid-row: 1; }
.g-3 { grid-column: 4 / span 2; grid-row: 2; }
.g-4 { grid-column: 6 / span 1; grid-row: 2; }
.g-5 { display: none; }

/* ============== Download CTA ============== */
.download .section-inner { padding-top: 30px; padding-bottom: 30px; }
.store-badges {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  margin: 8px 0 22px;
}
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px 12px 18px;
  background: black;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  color: white;
  transition: transform .25s, border-color .25s, background .25s;
}
.store-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(255,35,135,0.5);
}
.store-badge svg { flex-shrink: 0; }
.store-badge .sb-top {
  font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.store-badge .sb-bot {
  font-size: 18px; font-weight: 700;
  margin-top: 2px;
  letter-spacing: -0.3px;
}
.store-badge.dark .sb-bot { letter-spacing: -0.2px; }
.dl-note {
  margin: 4px 0 0;
  font-size: 12px; color: var(--text-muted);
}

/* ============== Host ============== */
.host {
  background: linear-gradient(180deg, transparent 0%, rgba(255,35,135,0.04) 50%, transparent 100%);
}
.host-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.host-text p.lead { font-size: 17px; }
.host-text p.lead b { color: white; }
.host-points {
  list-style: none; padding: 0; margin: 0 0 28px;
}
.host-points li {
  display: flex; gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-faint);
}
.host-points li:last-child { border-bottom: 0; }
.hp-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,35,135,0.12);
  border: 1px solid rgba(255,35,135,0.3);
  color: var(--pink);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.host-points h4 {
  font-size: 16px; font-weight: 700; margin: 4px 0 6px;
  letter-spacing: -0.2px;
}
.host-points p {
  font-size: 13px; line-height: 1.55;
  color: var(--text-muted); margin: 0;
}
.host-cta-hint {
  font-size: 13px; color: var(--text-muted); margin: 0;
}
.host-cta-hint b { color: var(--pink); }

.form-card {
  position: sticky; top: 96px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-mid);
  border-radius: 22px;
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 28px 60px -28px rgba(255,35,135,0.35);
}
.form-card-header { margin-bottom: 20px; }
.fch-title {
  font-size: 22px; font-weight: 700; letter-spacing: -0.4px;
}
.fch-sub {
  font-size: 13px; color: var(--text-muted); margin-top: 4px;
}
.apply-form { display: flex; flex-direction: column; gap: 14px; }
.field-row.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-size: 12px; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}
.field-label em { color: var(--pink); font-style: normal; margin-left: 2px; }
.field input, .field select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  color: white;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .2s, background .2s;
}
.field input::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus {
  outline: 0;
  border-color: rgba(255,35,135,0.6);
  background: rgba(0,0,0,0.6);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff77' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-submit {
  width: 100%; margin-top: 6px;
  font-size: 16px;
}
.form-status {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
}
.form-status.ok      { background: rgba(0,217,255,0.10); border: 1px solid rgba(0,217,255,0.35); color: var(--cyan); }
.form-status.error   { background: rgba(255,35,135,0.10); border: 1px solid rgba(255,35,135,0.40); color: var(--pink); }
.form-status.pending { background: rgba(255,255,255,0.06); border: 1px solid var(--border-mid); color: var(--text-secondary); }

/* ============== Footer ============== */
.footer {
  padding: 56px 24px 40px;
  border-top: 1px solid var(--border-faint);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
  position: relative;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-brand .wordmark { width: 84px; height: 40px; margin-bottom: 8px; }
.footer-tag {
  font-size: 13px; color: var(--text-muted);
  margin: 0 0 24px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-faint);
}
.fc-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--text-muted); text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 13px; line-height: 1.8;
  color: var(--text-secondary);
  transition: color .2s;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  display: flex; flex-wrap: wrap;
  gap: 10px; align-items: center;
  padding-top: 22px;
  font-size: 12px; color: var(--text-faint);
}
.footer-bottom .dot-sep { opacity: 0.4; }

/* ============== Responsive ============== */
@media (max-width: 960px) {
  .value-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  .g-1 { grid-column: 1 / span 2; grid-row: 1; }
  .g-2 { grid-column: 1; grid-row: 2; }
  .g-3 { grid-column: 2; grid-row: 2; }
  .g-4 { grid-column: 1; grid-row: 3; }
  .g-5 { display: block; grid-column: 2; grid-row: 3; }
  .host-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-card { position: static; }
}
@media (max-width: 560px) {
  .nav { padding: 12px 18px; }
  .hero { padding-top: 110px; }
  .hero-wordmark { width: 170px; height: 80px; margin-bottom: 22px; }
  .section { padding: 80px 18px; }
  .section-title { font-size: 30px; }
  .value-card { padding: 24px 20px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .g-1, .g-2, .g-3, .g-4, .g-5 {
    grid-column: 1; grid-row: auto;
  }
  .form-card { padding: 22px 18px; }
  .field-row.two-col { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-parallax] { transform: none !important; }
}
