/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #ffffff;
  --off-white:   #f8f8f6;
  --gray-50:     #f4f4f2;
  --gray-100:    #e8e8e4;
  --gray-300:    #c4c4bc;
  --gray-500:    #8a8a82;
  --gray-700:    #4a4a44;
  --gray-900:    #1a1a16;

  --accent:      #2563eb;       /* primary blue */
  --accent-dark: #1d4ed8;
  --accent-light:#dbeafe;

  --featured:    #0f172a;       /* dark navy for featured store card */

  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.13), 0 4px 12px rgba(0,0,0,.07);

  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Typography ────────────────────────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: .6rem;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 3rem;
}

/* ─── Layout helpers ────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 860px; }
.center { text-align: center; }

.section { padding: 7rem 0; }
.section--tinted { background: var(--off-white); }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 1.8rem;
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(37,99,235,.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(37,99,235,.45);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: .6rem 1.3rem;
  font-size: .875rem;
}
.btn-ghost:hover {
  background: var(--accent-light);
}

/* ─── Placeholder blocks ────────────────────────────────────────────────────── */
.img-placeholder,
.avatar-placeholder,
.store-icon-placeholder,
.logo-placeholder {
  background: var(--gray-100);
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: .8rem;
  text-align: center;
  padding: .5rem;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c9d8ea 0%, #dce8f0 40%, #e8eeea 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
}
.hero-bg-label {
  font-size: .75rem;
  color: var(--gray-500);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(4px);
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--gray-300);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.15) 0%,
    rgba(255,255,255,.0) 40%,
    rgba(10,20,40,.45) 100%
  );
}

/* Header */
.hero-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.logo-placeholder {
  width: 160px;
  height: 48px;
  font-weight: 600;
  font-size: .85rem;
  border-radius: var(--radius-sm);
}
.logo-placeholder--sm {
  width: 120px;
  height: 36px;
  font-size: .75rem;
}

.partner-badge {
  font-size: .8rem;
  color: var(--gray-700);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  padding: .35rem .9rem;
  white-space: nowrap;
}
.partner-badge strong { color: var(--gray-900); }

.hero-nav {
  display: flex;
  gap: 2rem;
}
.hero-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(6px);
  padding: .4rem .9rem;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
}
.hero-nav a:hover { background: var(--white); color: var(--gray-900); }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem 2.5rem 5rem;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .9rem;
}

.hero-headline {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.88);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0,0,0,.2);
}

.cta-scroll {
  font-size: 1rem;
  padding: 1rem 2.4rem;
  border-radius: var(--radius-md);
  align-self: flex-start;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(1.12); }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-item--wide { grid-column: span 2; }

.gallery-item .img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  font-size: .85rem;
  border-style: dashed;
  transition: border-color var(--transition);
}
.gallery-item--wide .img-placeholder { aspect-ratio: 21/8; }

.gallery-item:hover .img-placeholder { border-color: var(--accent); }

figcaption {
  margin-top: .75rem;
  font-size: .875rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BUY / STORE
══════════════════════════════════════════════════════════════════════════════ */
.store-grid {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.store-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.store-card--featured {
  background: var(--featured);
  border-color: var(--featured);
  color: var(--white);
}
.store-card--featured:hover {
  border-color: #2563eb;
  box-shadow: 0 6px 24px rgba(15,23,42,.25);
}
.store-card--featured .store-detail { color: rgba(255,255,255,.6); }
.store-card--featured .store-icon-placeholder {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.6);
}
.store-card--featured .store-arrow { color: rgba(255,255,255,.7); }

.store-icon-wrap { flex-shrink: 0; }
.store-icon-placeholder {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  font-size: .65rem;
  text-align: center;
  padding: .3rem;
  line-height: 1.3;
}

.store-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.store-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}
.store-detail {
  font-size: .8rem;
  color: var(--gray-500);
}

.store-arrow {
  font-size: 1.1rem;
  color: var(--gray-300);
  flex-shrink: 0;
  transition: color var(--transition);
}
.store-card:hover .store-arrow { color: var(--accent); }
.store-arrow--soon {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: .25rem .6rem;
  border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════════════════════════════ */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: .7rem;
}

.review-body { flex: 1; }
.review-quote {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: .9rem;
}
.review-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray-900);
}
.review-handle {
  font-size: .8rem;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PRESS
══════════════════════════════════════════════════════════════════════════════ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.press-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.press-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.press-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-light);
  font-family: Georgia, serif;
}

.press-quote {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--gray-700);
  font-style: italic;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.press-footer { border-top: 1px solid var(--gray-100); padding-top: .9rem; }
.press-outlet {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   COMMUNITY / SOCIAL
══════════════════════════════════════════════════════════════════════════════ */
.social-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.6rem 2rem;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  min-width: 120px;
  box-shadow: var(--shadow-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), color var(--transition);
}
.social-link:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: var(--accent);
}
.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: color var(--transition);
}
.social-link:hover .social-icon { color: var(--accent); }
.social-icon svg { width: 28px; height: 28px; }

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════════ */
#footer {
  border-top: 1px solid var(--gray-100);
  padding: 3rem 0;
  background: var(--white);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-copy {
  font-size: .85rem;
  color: var(--gray-500);
}
.footer-partner {
  font-size: .82rem;
  color: var(--gray-500);
}
.footer-partner strong { color: var(--gray-700); }
.footer-legal {
  font-size: .75rem;
  color: var(--gray-300);
  max-width: 500px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
══════════════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .1s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .2s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .3s; }

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .cards-row,
  .press-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--wide .img-placeholder { aspect-ratio: 16/9; }
}

@media (max-width: 640px) {
  .hero-header { padding: 1.2rem 1.25rem; }
  .hero-content { padding: 2rem 1.25rem 4rem; }
  .hero-nav { display: none; }
  .section { padding: 4.5rem 0; }
  .container { padding: 0 1.25rem; }
  .social-row { gap: 1rem; }
  .social-link { padding: 1.2rem 1.4rem; min-width: 100px; }
  .store-card { gap: .9rem; }
}
