/* ════════════════════════════════════════════════════════════
   ВСЯ В ЗЕФИРЕ — Editorial Boutique Patisserie Design System
   Inspired by Ladurée, Angelina, Kinfolk magazine
   ════════════════════════════════════════════════════════════ */

:root {
  --cream: #F7EBE4;
  --cream-deep: #F1E0D5;
  --ivory: #FDF8F3;
  --paper: #FFFFFF;

  --rose: #C9506B;
  --rose-deep: #A03E54;
  --rose-soft: #E8C5CE;
  --rose-pale: #F5E0E4;

  --sage: #8FA68B;
  --sage-pale: #D5DFD0;

  --lilac: #C5B4CD;
  --lilac-pale: #E8DFEB;

  --honey: #C4A584;
  --cocoa: #8B6F5C;

  --ink: #2E2A27;
  --ink-soft: #4A4340;
  --ink-muted: #7A7168;
  --ink-faint: #A8A098;

  --line: #D8CDBF;
  --line-faint: #E8DFD0;

  --f-display: 'Cormorant Garamond', 'Didot', 'Georgia', serif;
  --f-body: 'Manrope', 'Helvetica Neue', system-ui, sans-serif;
  --f-script: 'Caveat', 'Marck Script', cursive;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 10% 5%, var(--rose-pale) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 60%, var(--sage-pale) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 90%, var(--lilac-pale) 0%, transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--rose); color: var(--paper); }

.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.08; mix-blend-mode: multiply;
}

/* ═══════════════ SCROLL PROGRESS ═══════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 10000;
  background: linear-gradient(90deg, var(--rose) 0%, var(--rose-deep) 100%);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 0.08s linear;
  pointer-events: none;
}

/* ═══════════════ SEASONAL BANNER ═══════════════ */
.seasonal {
  position: relative; z-index: 60;
  background: linear-gradient(90deg, var(--rose-deep) 0%, var(--rose) 100%);
  color: var(--paper);
  padding: 10px 16px;
  padding-top: calc(10px + env(safe-area-inset-top));
  box-shadow: 0 4px 20px -8px rgba(160, 62, 84, 0.45);
  animation: seasonal-slide 0.6s var(--ease-out);
}
@keyframes seasonal-slide {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.seasonal__inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.seasonal__emoji { font-size: 1.4rem; line-height: 1; }
.seasonal__copy { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 200px; }
.seasonal__title {
  font-family: var(--f-display);
  font-weight: 600; font-style: italic;
  font-size: 1.05rem; line-height: 1.1;
}
.seasonal__desc { font-size: 12px; opacity: 0.9; letter-spacing: 0.01em; }
.seasonal__cta {
  padding: 8px 18px; border-radius: 999px;
  background: var(--paper); color: var(--rose-deep);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.04em;
  transition: transform 0.25s, background 0.25s;
}
.seasonal__cta:hover { transform: translateY(-1px); background: var(--cream); }
.seasonal__close {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper); opacity: 0.8;
  transition: opacity 0.25s, background 0.25s;
}
.seasonal__close:hover { opacity: 1; background: rgba(255,255,255,0.1); }

.ornament {
  position: fixed; width: 240px; height: 240px;
  color: var(--rose); pointer-events: none; z-index: 1;
  opacity: 0.7;
}
.ornament--top-left { top: -60px; left: -60px; }
.ornament--bottom-right { bottom: -60px; right: -60px; color: var(--sage); }

/* ═══════════════ TYPOGRAPHY HELPERS ═══════════════ */

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex; align-items: center; gap: 0.8em;
}
.eyebrow::before {
  content: ''; width: 2em; height: 1px; background: currentColor; opacity: 0.5;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 1rem; margin-bottom: 1.5rem;
  max-width: 16ch;
}
.section-title--huge {
  font-size: clamp(3rem, 7vw, 6rem); max-width: 20ch;
}
.section-title--center { margin-left: auto; margin-right: auto; text-align: center; max-width: 18ch; }

.section-lead {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 58ch;
}

/* ═══════════════ BUTTONS ═══════════════ */

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 12px 24px;
  font-family: var(--f-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover {
  background: var(--rose); transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201, 80, 107, 0.25);
}
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.btn--ghost {
  background: transparent; color: var(--ink-soft);
  padding: 8px; border-radius: 999px;
}
.btn--ghost:hover { background: var(--rose-pale); color: var(--rose-deep); }
.btn--lg { padding: 16px 32px; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }

/* ═══════════════ HEADER ═══════════════ */

.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 16px 0;
  backdrop-filter: blur(18px);
  background: rgba(247, 235, 228, 0.78);
  border-bottom: 1px solid rgba(216, 205, 191, 0.4);
  padding-top: calc(16px + env(safe-area-inset-top));
}
.site-header__inner {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
}
.brand { display: flex; flex-direction: column; gap: 2px; }
.brand__label {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-muted);
}
.brand__name {
  font-family: var(--f-display);
  font-weight: 600; font-style: italic;
  font-size: 22px; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1;
}

.site-nav ul { display: flex; gap: 28px; list-style: none; justify-content: center; }
.site-nav a {
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft); position: relative;
  transition: color 0.2s;
}
.site-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--rose);
  transition: width 0.3s var(--ease-out);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { width: 100%; }

.site-header__actions { display: flex; align-items: center; gap: 12px; justify-self: end; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  border-radius: 50%; border: 1.5px solid var(--line);
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink); border-radius: 1px;
  transition: all 0.3s var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 72px 0 0 0; z-index: 40;
  background: rgba(247, 235, 228, 0.98);
  backdrop-filter: blur(24px);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 24px;
  transform: translateY(-20px); opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a {
  display: block; padding: 18px 8px;
  font-family: var(--f-display);
  font-size: 28px; font-weight: 500; font-style: italic;
  color: var(--ink); border-bottom: 1px solid var(--line-faint);
}
.mobile-menu a:hover { color: var(--rose); }

/* ═══════════════ HERO ═══════════════ */

.hero {
  position: relative;
  max-width: 1400px; margin: 0 auto;
  padding: 80px 24px 120px;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero__content {
  display: flex; flex-direction: column;
  gap: 32px;
  justify-content: center;
}

/* Hero visual: polaroid composition anchored right */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 460px;
}
.hero__photo {
  position: absolute;
  background: var(--paper);
  padding: 10px 10px 38px;
  border-radius: 3px;
  box-shadow:
    0 30px 60px -24px rgba(46, 42, 39, 0.35),
    0 6px 16px rgba(46, 42, 39, 0.1);
  aspect-ratio: 3 / 4;
  transform: rotate(var(--tilt, 0deg)) translateY(20px);
  opacity: 0;
  transition:
    transform 1s var(--ease-out),
    opacity 0.9s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
  transition-delay: var(--d, 0.4s);
}
.hero__visual.is-visible .hero__photo {
  transform: rotate(var(--tilt, 0deg)) translateY(0);
  opacity: 1;
}
.hero__visual.is-visible .hero__photo:hover {
  transform: rotate(calc(var(--tilt, 0deg) * 0.4)) translateY(-6px);
  box-shadow:
    0 40px 80px -24px rgba(46, 42, 39, 0.42),
    0 14px 28px -12px rgba(46, 42, 39, 0.18);
  z-index: 10;
}
.hero__photo-inner {
  width: 100%; aspect-ratio: 1 / 1;
  overflow: hidden; border-radius: 2px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo figcaption {
  position: absolute;
  bottom: 8px; left: 10px; right: 10px;
  font-family: var(--f-script);
  font-size: 1.15rem; line-height: 1;
  color: var(--ink-soft);
  text-align: center;
}

.hero__kicker {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-muted);
}
.hero__kicker::before { content: '· '; color: var(--rose); font-weight: 700; }

.hero__title { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.hero__title-row { display: flex; align-items: flex-end; gap: 0.3em; }
.hero__title-row--mid { padding-left: 2em; }

.hero__word {
  font-family: var(--f-display);
  line-height: 0.88;
  letter-spacing: -0.02em;
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(-1.5deg);
  transition:
    opacity 1s var(--ease-out),
    transform 1.1s var(--ease-out);
}
.hero__title.reveal { transform: none !important; } /* let words animate, not container */
.hero__title.is-visible .hero__word {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
.hero__title.is-visible .hero__word--script { transition-delay: 0.15s; }
.hero__title.is-visible .hero__word--small  { transition-delay: 0.6s; }
.hero__title.is-visible .hero__word--serif  { transition-delay: 0.35s; }
.hero__word--script {
  font-style: italic; font-weight: 500;
  font-size: clamp(5rem, 14vw, 13rem);
  color: var(--ink);
}
.hero__word--small {
  font-style: italic; font-weight: 400;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--rose); position: relative; top: -0.5em;
}
.hero__word--serif {
  font-weight: 600;
  font-size: clamp(5rem, 14vw, 13rem);
  color: var(--rose-deep);
}

.hero__sprig {
  width: clamp(60px, 10vw, 120px);
  height: clamp(60px, 10vw, 120px);
  color: var(--sage);
  align-self: flex-start;
  margin-left: 0.5em; margin-top: 0.5em;
  opacity: 0;
  transform: rotate(-25deg) scale(0.6);
  transition: opacity 1.2s var(--ease-out), transform 1.3s var(--ease-out);
  transition-delay: 0.85s;
}
.hero__title.is-visible .hero__sprig {
  opacity: 0.85;
  transform: rotate(0) scale(1);
}

.hero__tagline {
  font-family: var(--f-display);
  font-weight: 400; font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  color: var(--ink-soft);
  margin-top: 12px; max-width: 40ch;
}
.hero__subline {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7; color: var(--ink-muted);
  max-width: 50ch; margin-top: -8px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; }

.hero__microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  max-width: 58ch;
}
.hero__microproof::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--rose) 0%, var(--rose-deep) 100%);
  box-shadow: 0 0 0 5px rgba(201, 80, 107, 0.12);
  flex-shrink: 0;
}

.hero__floating { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero__floating-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-script);
  font-size: 1.25rem; color: var(--ink-soft);
  box-shadow: 0 4px 12px rgba(46, 42, 39, 0.04);
  transition: all 0.3s var(--ease-out);
}
.hero__floating-chip::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose); flex-shrink: 0;
}
.hero__floating-chip:hover {
  transform: translateY(-2px) rotate(0deg) !important;
  box-shadow: 0 8px 20px rgba(46, 42, 39, 0.08);
}

.hero__scroll {
  position: absolute; bottom: 32px; left: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-body);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0;
  animation: fadeIn 1.2s 1.2s var(--ease-out) forwards;
}
.hero__scroll svg { color: var(--rose); animation: bob 2s ease-in-out infinite; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ═══════════════ MANIFESTO ═══════════════ */

.intent {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 24px 100px;
}

.intent__intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.intent__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.intent__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(253, 248, 243, 0.82);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.intent__chip::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(143, 166, 139, 0.14);
}

.intent__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.intent__paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.intent__path,
.intent__proof {
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(253, 248, 243, 0.92) 0%, rgba(255, 255, 255, 0.88) 100%);
  box-shadow: 0 24px 48px -36px rgba(46, 42, 39, 0.28);
}

.intent__path {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px 28px 28px;
}

.intent__path-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
}

.intent__path-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 2.4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.02;
  color: var(--ink);
}

.intent__path-text {
  color: var(--ink-soft);
  line-height: 1.72;
  font-size: 15px;
}

.intent__path-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--rose-deep);
}

.intent__path-cta svg {
  transition: transform 0.3s var(--ease-out);
}

.intent__path-cta:hover svg {
  transform: translateX(4px);
}

.intent__proof {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 32px 30px 30px;
  position: sticky;
  top: 104px;
}

.intent__proof-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.intent__quote {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: 22px;
  background: rgba(245, 224, 228, 0.44);
  border: 1px solid rgba(201, 80, 107, 0.16);
}

.intent__quote::before {
  content: '“';
  position: absolute;
  top: 2px;
  left: 16px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  color: rgba(201, 80, 107, 0.22);
}

.intent__quote-text {
  position: relative;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.56;
  color: var(--ink-soft);
}

.intent__quote-foot {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
}

.intent__quote-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.intent__quote-context {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

.intent__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.intent__stat {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line-faint);
  text-align: center;
}

.intent__stat-big {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.65rem, 2.6vw, 2.2rem);
  font-weight: 600;
  line-height: 1;
  color: var(--rose-deep);
}

.intent__stat-small {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
}

.manifesto { max-width: 1400px; margin: 0 auto; padding: 100px 24px; }
.manifesto__grid {
  display: grid; gap: 32px; margin-top: 48px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.manifesto__card {
  padding: 32px 8px;
  border-top: 1px solid var(--ink);
  display: flex; flex-direction: column; gap: 12px;
}
.manifesto__num {
  font-family: var(--f-display);
  font-weight: 400; font-style: italic;
  font-size: 48px; line-height: 1;
  color: var(--rose); margin-bottom: 4px;
}
.manifesto__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 28px; line-height: 1.1;
  color: var(--ink);
}
.manifesto__text { font-size: 15px; line-height: 1.7; color: var(--ink-muted); }

/* ═══════════════ DIVIDER ═══════════════ */
.divider { max-width: 400px; margin: 40px auto; color: var(--rose); opacity: 0.6; }

/* ═══════════════ PRICE STRIP ═══════════════ */

.price-strip { max-width: 1400px; margin: 0 auto; padding: 80px 24px; }
.price-strip__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.price-strip__head .eyebrow { justify-content: center; }
.price-strip__head .eyebrow::before { display: none; }
.price-strip__head .eyebrow::after {
  content: ''; width: 2em; height: 1px; background: currentColor; opacity: 0.5;
}
.price-strip__head .section-lead { margin-left: auto; margin-right: auto; text-align: center; }

.price-strip__grid {
  display: grid; gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.price-chip {
  padding: 28px 20px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(253, 248, 243, 0.5);
  transition: background 0.3s;
  text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.price-chip:hover { background: var(--paper); }
.price-chip__name {
  font-family: var(--f-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted);
}
.price-chip__from {
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: 10px; color: var(--ink-faint); margin-top: 4px;
}
.price-chip__price {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--rose-deep); line-height: 1;
}
.price-chip__unit { font-size: 11px; color: var(--ink-faint); letter-spacing: 0.05em; }

/* ═══════════════ COLLECTION ═══════════════ */

.collection { padding: 120px 0; position: relative; }
.collection__head {
  max-width: 1400px; margin: 0 auto 80px; padding: 0 24px;
  text-align: center;
}
.collection__head .eyebrow { justify-content: center; }
.collection__head .eyebrow::before { display: none; }
.collection__head .eyebrow::after {
  content: ''; width: 2em; height: 1px; background: currentColor; opacity: 0.5;
}
.collection__head .section-lead { margin-left: auto; margin-right: auto; text-align: center; }

.collection__list { display: flex; flex-direction: column; gap: 120px; }
.collection__item {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.collection__item--reverse { direction: rtl; }
.collection__item--reverse > * { direction: ltr; }

/* ─── Collection gallery: polaroid frame + peeking second photo ─── */
.collection__gallery {
  position: relative;
  aspect-ratio: 4 / 5;
  padding: 40px 30px; /* room for tilts + tape */
}

.collection__photo {
  position: absolute;
  background: var(--paper);
  padding: 14px 14px 56px;
  border-radius: 3px;
  box-shadow:
    0 30px 60px -30px rgba(46, 42, 39, 0.35),
    0 6px 16px rgba(46, 42, 39, 0.08),
    inset 0 0 0 1px rgba(216, 205, 191, 0.35);
  transform: rotate(var(--tilt, 0deg));
  transition:
    transform 0.9s var(--ease-out),
    box-shadow 0.6s var(--ease-out),
    opacity 0.6s var(--ease-out),
    filter 0.6s var(--ease-out);
  will-change: transform;
  animation: polaroid-sway 7s ease-in-out infinite alternate;
}
.collection__photo--behind {
  animation-duration: 8.5s;
  animation-delay: -2s;
}

/* stop sway on hover / focus — hover fan-out takes over */
.collection__gallery:hover .collection__photo,
.collection__gallery[data-focused="behind"] .collection__photo {
  animation: none;
}

@keyframes polaroid-sway {
  0%   { transform: rotate(calc(var(--tilt, 0deg) - 0.6deg)) translateY(0); }
  100% { transform: rotate(calc(var(--tilt, 0deg) + 0.6deg)) translateY(-2px); }
}

.collection__photo-inner {
  width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
}

.collection__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.collection__photo--main {
  inset: 20px 20px 20px 20px;
  z-index: 3;
}

.collection__photo--behind {
  inset: 40px -10px 10px 60px;
  padding: 10px 10px 42px;
  z-index: 1;
  opacity: 0.92;
  filter: saturate(0.92);
}

.collection__item--reverse .collection__photo--behind {
  inset: 40px 60px 10px -10px;
}

/* Fan out: on hover, both photos splay to opposite sides so both are fully visible */
.collection__gallery:hover .collection__photo--main {
  transform: rotate(-7deg) translate(-14%, -2%);
  box-shadow:
    0 40px 80px -28px rgba(46, 42, 39, 0.42),
    0 14px 28px -12px rgba(46, 42, 39, 0.18);
  z-index: 3;
}
.collection__gallery:hover .collection__photo--behind {
  transform: rotate(7deg) translate(14%, 2%);
  opacity: 1;
  filter: none;
  z-index: 2;
}
.collection__gallery:hover .collection__photo img { transform: scale(1.03); }

/* On reversed items (image on right), mirror the fan direction */
.collection__item--reverse .collection__gallery:hover .collection__photo--main {
  transform: rotate(7deg) translate(14%, -2%);
}
.collection__item--reverse .collection__gallery:hover .collection__photo--behind {
  transform: rotate(-7deg) translate(-14%, 2%);
}

/* Click-to-swap: data-focused="behind" brings the second photo to the front */
.collection__gallery[data-focused="behind"] .collection__photo--main {
  transform: rotate(4deg) translate(12%, 4%) scale(0.94);
  opacity: 0.9;
  filter: saturate(0.9);
  z-index: 1;
}
.collection__gallery[data-focused="behind"] .collection__photo--behind {
  transform: rotate(-2deg) translate(-12%, -2%);
  opacity: 1;
  filter: none;
  z-index: 4;
  inset: 20px 20px 20px 20px;
  padding: 14px 14px 56px;
}
.collection__gallery[data-focused="behind"] .collection__photo--behind .collection__photo-inner {
  height: 100%;
}

/* Keep hover preview working even when focused-behind is active */
.collection__gallery[data-focused="behind"]:hover .collection__photo--main {
  transform: rotate(9deg) translate(18%, 4%) scale(0.94);
}
.collection__gallery[data-focused="behind"]:hover .collection__photo--behind {
  transform: rotate(-6deg) translate(-16%, -2%);
}

/* Clickable feedback on desktop */
.collection__photo { cursor: pointer; }
.collection__photo:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
}

/* washi-tape accent at the top of main photo */
.collection__tape {
  position: absolute;
  top: -12px; left: 50%;
  width: clamp(72px, 22%, 110px); height: 26px;
  background: var(--tape, rgba(232, 197, 206, 0.72));
  transform: translateX(-50%) rotate(-5deg);
  box-shadow: 0 2px 4px rgba(46, 42, 39, 0.06);
  z-index: 4;
  pointer-events: none;
}
.collection__tape::before,
.collection__tape::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%, var(--paper) 45%, var(--paper) 55%, transparent 100%);
  opacity: 0.6;
}
.collection__tape::before { left: 6px; }
.collection__tape::after { right: 6px; }

/* Caveat-style handwritten caption on the polaroid strip */
.collection__caption {
  position: absolute;
  bottom: 18px; left: 14px; right: 14px;
  font-family: var(--f-script);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.01em;
}

/* placeholder (no image) */
.collection__gallery--placeholder {
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8) 0%, transparent 55%),
    linear-gradient(135deg, var(--accent-fill, var(--rose-soft)) 0%, var(--ivory) 100%);
  border-radius: 6px;
  text-align: center;
}
.collection__gallery--placeholder span {
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--paper);
  text-shadow: 0 2px 12px rgba(46, 42, 39, 0.25);
}

.collection__num {
  position: absolute;
  top: -14px; left: -14px;
  font-family: var(--f-display);
  font-weight: 400; font-style: italic;
  font-size: 18px;
  color: var(--paper); background: var(--rose-deep);
  padding: 8px 16px; border-radius: 999px;
  z-index: 5; letter-spacing: 0.05em;
  box-shadow: 0 6px 14px -4px rgba(201, 80, 107, 0.5);
  transform: rotate(calc(var(--tilt, 0deg) * -0.7));
}

.collection__body { display: flex; flex-direction: column; gap: 20px; }

.collection__category {
  font-family: var(--f-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--rose);
}
.collection__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--ink); margin: -8px 0 0;
}
.collection__title em { font-weight: 500; color: var(--rose-deep); font-style: italic; }

.collection__tagline {
  font-family: var(--f-display);
  font-weight: 400; font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--ink-soft); margin-top: -8px;
}

.collection__description {
  font-size: 15px; line-height: 1.7;
  color: var(--ink-muted); max-width: 46ch;
}

.collection__sizes {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.collection__size-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}
.collection__size-label {
  font-family: var(--f-body);
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
}
.collection__size-price {
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: 1.4rem; color: var(--ink);
  white-space: nowrap;
}
.collection__size-old {
  color: var(--ink-faint); text-decoration: line-through;
  margin-right: 8px;
  font-size: 0.85em; font-style: normal; font-weight: 400;
}

.collection__flavors {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 12px;
}
.collection__flavor {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--f-body);
  font-size: 12px; font-weight: 500;
  background: var(--paper); color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.collection__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: 18px; color: var(--rose-deep);
  border-bottom: 1px solid var(--rose-deep);
  padding-bottom: 4px;
  width: fit-content;
}
.collection__cta svg { transition: transform 0.3s var(--ease-out); }
.collection__cta:hover svg { transform: translateX(4px); }

/* ═══════════════ PROMOS ═══════════════ */

.promos {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 24px;
}

.promos__glow {
  position: absolute;
  inset: 60px 40px;
  z-index: -1;
  border-radius: 40px;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(245, 224, 228, 0.85) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(232, 223, 235, 0.7) 0%, transparent 60%),
    linear-gradient(180deg, rgba(253, 248, 243, 0.5) 0%, rgba(247, 235, 228, 0.3) 100%);
  pointer-events: none;
}

.promos__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.promos__head .eyebrow { justify-content: center; }
.promos__head .eyebrow::before { display: none; }
.promos__head .eyebrow::after {
  content: ''; width: 2em; height: 1px; background: currentColor; opacity: 0.5;
}
.promos__head .section-lead {
  margin: 16px auto 0;
  text-align: center;
}

.promos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto 48px;
}

.promo-card {
  position: relative;
  padding: 44px 28px 36px;
  background: var(--paper);
  border-radius: 28px;
  border: 1px solid var(--line-faint);
  display: flex; flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.5s var(--ease-out);
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  width: 60%; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--rose) 50%, transparent 100%);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.6s var(--ease-out);
  border-radius: 0 0 3px 3px;
}
.promo-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 224, 228, 0.6) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.5s var(--ease-out);
}
.promo-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px -30px rgba(201, 80, 107, 0.28),
    0 10px 24px -12px rgba(46, 42, 39, 0.12);
  border-color: var(--rose-soft);
}
.promo-card:hover::before { transform: translateX(-50%) scaleX(1); }
.promo-card:hover::after { opacity: 1; }

.promo-card__icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 14px;
  background: radial-gradient(circle at 30% 30%, var(--paper) 0%, var(--rose-pale) 100%);
  color: var(--rose-deep);
  box-shadow:
    inset 0 0 0 1px rgba(201, 80, 107, 0.15),
    0 8px 16px -6px rgba(201, 80, 107, 0.2);
  transform: scale(0.4) rotate(-15deg);
  opacity: 0;
  transition:
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.promos.is-visible .promo-card__icon {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
.promo-card:hover .promo-card__icon {
  transform: scale(1.08) rotate(-4deg);
  transition-duration: 0.4s;
  transition-delay: 0ms;
}
.promo-card__icon svg {
  animation: none;
}
.promos.is-visible .promo-card:hover .promo-card__icon svg {
  animation: icon-wiggle 0.6s ease-in-out;
}
@keyframes icon-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.promo-card__label {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 4px;
}
.promo-card__sub {
  font-family: var(--f-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-top: 10px;
}
.promo-card__note {
  font-family: var(--f-display);
  font-weight: 400; font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin-top: 8px;
  max-width: 22ch;
}

.promos__cta-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  text-align: center;
}
.promos__signature {
  font-family: var(--f-script);
  font-size: 1.35rem;
  color: var(--rose);
  letter-spacing: 0.01em;
}

/* ═══════════════ PROCESS ═══════════════ */

.process { max-width: 1400px; margin: 0 auto; padding: 120px 24px; }
.process__track {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 56px;
}
.process__step {
  position: relative; padding: 32px 24px;
  background: var(--paper); border-radius: 8px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.4s var(--ease-out);
}
.process__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(46, 42, 39, 0.15);
  border-color: var(--rose-soft);
}
.process__num {
  font-family: var(--f-display);
  font-weight: 400; font-style: italic;
  font-size: 14px; letter-spacing: 0.15em;
  color: var(--rose); text-transform: uppercase;
}
.process__title {
  font-family: var(--f-display);
  font-weight: 600; font-size: 28px;
  line-height: 1.1; color: var(--ink);
}
.process__text { font-size: 14px; line-height: 1.7; color: var(--ink-muted); }

/* ═══════════════ LOOKBOOK (marquee) ═══════════════ */
.lookbook {
  max-width: 1600px; margin: 0 auto;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.lookbook__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.lookbook__head .eyebrow { justify-content: center; }
.lookbook__head .eyebrow::before { display: none; }
.lookbook__head .eyebrow::after {
  content: ''; width: 2em; height: 1px; background: currentColor; opacity: 0.5;
}
.lookbook__head .section-lead { margin: 16px auto 0; text-align: center; }

.lookbook__viewport {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  padding: 32px 0;
}
.lookbook__track {
  display: flex; gap: 24px;
  width: max-content;
  animation: lookbook-scroll 45s linear infinite;
}
.lookbook:hover .lookbook__track { animation-play-state: paused; }
@keyframes lookbook-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.lookbook__card {
  flex-shrink: 0;
  width: clamp(220px, 22vw, 300px);
  aspect-ratio: 3 / 4;
  background: var(--paper);
  padding: 10px 10px 38px;
  border-radius: 3px;
  box-shadow:
    0 20px 40px -20px rgba(46, 42, 39, 0.3),
    0 4px 12px rgba(46, 42, 39, 0.08);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.lookbook__card:hover {
  transform: rotate(0) translateY(-8px) scale(1.04);
  box-shadow:
    0 30px 60px -20px rgba(46, 42, 39, 0.4),
    0 8px 20px rgba(46, 42, 39, 0.12);
  z-index: 2;
}
.lookbook__card img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 2px;
}
.lookbook__cta-wrap { text-align: center; margin-top: 40px; padding: 0 24px; }

/* ═══════════════ FAQ ═══════════════ */
.faq {
  max-width: 920px; margin: 0 auto;
  padding: 100px 24px;
}
.faq__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.faq__head .eyebrow { justify-content: center; }
.faq__head .eyebrow::before { display: none; }
.faq__head .eyebrow::after {
  content: ''; width: 2em; height: 1px; background: currentColor; opacity: 0.5;
}
.faq__head .section-lead { margin: 16px auto 0; text-align: center; }

.faq__list { display: flex; flex-direction: column; gap: 0; }

.faq__item {
  border-top: 1px solid var(--line);
  padding: 0;
  transition: background 0.3s;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item[open] { background: rgba(253, 248, 243, 0.5); }

.faq__q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 28px 8px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.3s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--rose-deep); }
.faq__q-text {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.3;
  color: var(--ink);
}
.faq__item[open] .faq__q-text { color: var(--rose-deep); }
.faq__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s;
}
.faq__item[open] .faq__icon {
  transform: rotate(180deg);
  background: var(--rose-deep);
  color: var(--paper);
  border-color: var(--rose-deep);
}
.faq__a {
  padding: 0 8px 28px;
  font-size: 15px; line-height: 1.75;
  color: var(--ink-muted);
  max-width: 72ch;
  animation: faq-slide 0.4s var(--ease-out);
}
@keyframes faq-slide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════ MAP ═══════════════ */
.map {
  max-width: 1400px; margin: 0 auto;
  padding: 80px 24px 120px;
}
.map__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.map__head .eyebrow { justify-content: center; }
.map__head .eyebrow::before { display: none; }
.map__head .eyebrow::after {
  content: ''; width: 2em; height: 1px; background: currentColor; opacity: 0.5;
}
.map__head .section-lead { margin: 16px auto 0; text-align: center; }

.map__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(46, 42, 39, 0.3);
  background: var(--cream-deep);
}
.map__frame iframe { width: 100%; height: 100%; border: 0; }

/* ═══════════════ LIGHTBOX ═══════════════ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 10001;
  background: rgba(20, 18, 16, 0.92);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.24s var(--ease-out);
  padding-top: calc(24px + env(safe-area-inset-top));
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__stage {
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.lightbox__stage img {
  max-width: 100%; max-height: 80vh;
  width: auto; height: auto;
  border-radius: 6px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease-out);
}
.lightbox.is-open .lightbox__stage img { transform: scale(1); }
.lightbox__caption {
  font-family: var(--f-script);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 40ch;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.25s var(--ease-out);
}
.lightbox__close:hover, .lightbox__nav:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.08);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__counter {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-body);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Magnetic buttons: smoother transform return */
.btn--primary.btn--lg, .btn--outline.btn--lg {
  transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s;
}

/* ═══════════════ SOCIAL PROOF ═══════════════ */

.social { max-width: 1400px; margin: 0 auto; padding: 100px 24px; }
.social__stats {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 48px 0 80px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.social__stat { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.social__stat-big {
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1; color: var(--rose-deep);
}
.social__stat-small {
  font-family: var(--f-body);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; color: var(--ink-muted);
  max-width: 22ch; margin: 0 auto;
}

.social__quotes {
  display: grid; gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.social__quote {
  position: relative;
  padding: 48px 32px 32px;
  background: var(--paper); border-radius: 8px;
  border: 1px solid var(--line);
}
.social__quote::before {
  content: '“';
  position: absolute; top: 8px; left: 24px;
  font-family: var(--f-display);
  font-size: 80px; font-weight: 400;
  color: var(--rose);
  line-height: 0.8; font-style: italic;
}
.social__quote-text {
  font-family: var(--f-display);
  font-weight: 400; font-style: italic;
  font-size: 1.05rem; line-height: 1.55;
  color: var(--ink-soft); margin-bottom: 20px;
}
.social__quote-foot { display: flex; flex-direction: column; gap: 2px; }
.social__quote-name {
  font-family: var(--f-body);
  font-size: 14px; font-weight: 700;
  color: var(--ink);
}
.social__quote-context {
  font-family: var(--f-body);
  font-size: 12px; color: var(--ink-faint); font-weight: 500;
}

/* ═══════════════ CONTACT ═══════════════ */

.contact {
  padding: 100px 24px 120px;
  background: linear-gradient(180deg, transparent 0%, var(--cream-deep) 40%);
  position: relative;
}
.contact::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--rose); opacity: 0.4;
}
.contact__inner {
  max-width: 920px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.contact__title {
  font-family: var(--f-display);
  font-weight: 500; font-style: italic;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95; letter-spacing: -0.02em;
  color: var(--ink); margin-top: 12px;
  max-width: 14ch;
}
.contact__description {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--ink-soft);
  max-width: 48ch; margin-bottom: 20px;
}

.contact__methods {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0 32px;
}
.contact__method {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600; font-size: 15px;
  transition: all 0.3s var(--ease-out);
  border: 1.5px solid transparent;
}
.contact__method--primary { background: var(--ink); color: var(--paper); }
.contact__method--primary:hover {
  background: var(--rose-deep); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 80, 107, 0.3);
}
.contact__method--secondary {
  background: transparent; color: var(--ink);
  border-color: var(--line);
}
.contact__method--secondary:hover {
  border-color: var(--ink); background: var(--paper); transform: translateY(-2px);
}
.contact__method small { font-size: 12px; font-weight: 400; opacity: 0.7; }

.contact__footer {
  display: flex; gap: 24px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--line);
  width: 100%; max-width: 600px;
}
.contact__meta {
  font-family: var(--f-body);
  font-size: 12px; font-weight: 500;
  color: var(--ink-muted); letter-spacing: 0.02em;
}

/* ═══════════════ FOOTER ═══════════════ */

.site-footer {
  padding: 48px 24px calc(32px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--cream-deep);
}
.site-footer__inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 24px;
}
.site-footer__brand { display: flex; flex-direction: column; gap: 4px; }
.site-footer__name {
  font-family: var(--f-display);
  font-weight: 600; font-style: italic;
  font-size: 20px; color: var(--ink);
}
.site-footer__tagline { font-size: 12px; color: var(--ink-muted); letter-spacing: 0.05em; }
.site-footer__meta {
  font-size: 12px; font-weight: 500;
  color: var(--ink-muted); letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; gap: 8px;
}
.site-footer__made {
  width: 100%; text-align: center;
  font-family: var(--f-script);
  font-size: 1.2rem; color: var(--rose);
  margin-top: 16px; padding-top: 16px;
  border-top: 1px dashed var(--line);
}

/* ═══════════════ REVEAL ANIMATIONS ═══════════════ */

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 960px) {
  .site-nav { display: none; }
  .site-header__actions .btn--primary { display: none; }
  .nav-toggle { display: flex; }

  .collection__item { grid-template-columns: 1fr; gap: 40px; }
  .collection__item--reverse { direction: ltr; }
  .collection__gallery { aspect-ratio: 1 / 1.05; padding: 30px 20px; max-width: 520px; margin: 0 auto; width: 100%; }
  .collection__photo--main { inset: 14px 14px 14px 14px; padding: 10px 10px 42px; }
  .collection__photo--behind { inset: 30px -6px 10px 40px; padding: 8px 8px 32px; }
  .collection__item--reverse .collection__photo--behind { inset: 30px 40px 10px -6px; }
  .collection__caption { bottom: 12px; font-size: 1.25rem; }

  .hero {
    padding: 56px 20px 80px;
    min-height: auto;
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .hero__content { gap: 24px; }
  .hero__title-row--mid { padding-left: 1em; }
  .hero__visual { aspect-ratio: 4 / 3; min-height: 360px; order: 2; }
  .hero__photo { padding: 8px 8px 32px; }
  .hero__photo figcaption { bottom: 6px; font-size: 1rem; }
  .hero__microproof { font-size: 11px; gap: 8px 12px; }

  .intent { padding: 12px 20px 72px; }
  .intent__layout { grid-template-columns: 1fr; }
  .intent__paths { grid-template-columns: 1fr; }
  .intent__proof { position: static; }

  .lookbook { padding: 72px 0; }
  .lookbook__track { animation-duration: 35s; gap: 18px; }
  .lookbook__card { width: clamp(180px, 50vw, 240px); }

  .faq { padding: 72px 20px; }
  .faq__q { padding: 22px 4px; }
  .faq__a { padding: 0 4px 22px; font-size: 14.5px; }

  .map { padding: 60px 20px 80px; }
  .map__frame { aspect-ratio: 4 / 3; border-radius: 12px; }

  .lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__stage img { max-height: 72vh; }

  .seasonal__inner { gap: 12px; }
  .seasonal__desc { display: none; }

  .manifesto, .price-strip, .promos, .process, .social { padding: 72px 20px; }
  .promos__glow { inset: 40px 10px; border-radius: 28px; }
  .promos__head { margin-bottom: 48px; }
  .promos__grid { gap: 16px; margin-bottom: 36px; }
  .collection { padding: 80px 0; }
  .collection__list { gap: 80px; }
  .collection__head { padding: 0 20px; margin-bottom: 56px; }

  .contact { padding: 72px 20px 80px; }
}

@media (max-width: 640px) {
  .site-header__inner { grid-template-columns: auto auto; gap: 16px; padding: 0 16px; }
  .site-header__actions { gap: 8px; }
  .site-header__actions .btn--ghost { display: none; }

  .brand__name { font-size: 18px; }
  .brand__label { font-size: 8px; }

  .hero { padding: 48px 20px 80px; }
  .hero__sprig { display: none; }
  .hero__word--script, .hero__word--serif { font-size: clamp(4rem, 18vw, 6rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__microproof { font-size: 10.5px; line-height: 1.6; }

  .intent__chips { gap: 10px; }
  .intent__chip { width: 100%; justify-content: flex-start; }
  .intent__path,
  .intent__proof { padding: 24px 22px 22px; border-radius: 22px; }
  .intent__quote { padding: 22px 18px 18px; }
  .intent__stats { grid-template-columns: 1fr; }

  .manifesto__grid { gap: 24px; margin-top: 32px; }
  .manifesto__card { padding: 24px 4px; }

  .price-strip__grid { grid-template-columns: repeat(2, 1fr); }

  .collection__list { gap: 64px; }
  .collection__title { font-size: clamp(2rem, 8vw, 3rem); }

  /* Flatten polaroid tilts on small phones — they eat horizontal space */
  .collection__photo--main { transform: rotate(calc(var(--tilt, 0deg) * 0.35)); }
  .collection__photo--behind { transform: rotate(calc(var(--tilt, 0deg) * 0.5)); inset: 22px -2px 18px 28px; }
  .collection__item--reverse .collection__photo--behind { inset: 22px 28px 18px -2px; }
  .collection__tape { top: -8px; height: 20px; width: clamp(60px, 26%, 90px); }
  .collection__num { font-size: 15px; padding: 6px 12px; top: -10px; left: -10px; }

  .process__track { margin-top: 40px; gap: 12px; }
  .process__step { padding: 24px 20px; }

  .promos__grid { grid-template-columns: 1fr; gap: 14px; }
  .promo-card { padding: 36px 24px 28px; border-radius: 22px; }
  .promo-card__icon { width: 60px; height: 60px; margin-bottom: 10px; }
  .promos__glow { inset: 30px 4px; border-radius: 22px; }

  .hero__visual { min-height: 320px; aspect-ratio: 4 / 3.2; }
  .seasonal__cta { width: 100%; text-align: center; }
  .seasonal { padding: 8px 12px; }
  .lightbox__counter { bottom: 12px; }
  .lookbook__card { width: clamp(160px, 60vw, 220px); padding: 8px 8px 30px; }
  .lookbook__track { gap: 14px; animation-duration: 30s; }

  .faq__q-text { font-size: 1.05rem; }
  .faq__icon { width: 32px; height: 32px; }

  .social__stats { margin: 32px 0 48px; padding: 24px 0; gap: 24px; }
  .social__quote { padding: 40px 24px 24px; }

  .contact__methods { flex-direction: column; align-items: stretch; }
  .contact__method { justify-content: center; }
  .contact__footer { flex-direction: column; gap: 8px; text-align: center; }

  .site-footer__inner { flex-direction: column; text-align: center; }
  .site-footer__meta { justify-content: center; }
}

@media (max-width: 400px) {
  .price-strip__grid { grid-template-columns: 1fr; }
  .hero__word--script, .hero__word--serif { font-size: 3.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
