/* ==========================================================================
   ANTOMARIA · beauty brand
   Design System & Styles
   ========================================================================== */

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

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
img { -webkit-user-drag: none; user-select: none; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette — calibrated to logo */
  --burgundy: #5A0E14;
  --burgundy-deep: #3E0810;
  --burgundy-soft: #6E1A20;
  --burgundy-glow: rgba(90, 14, 20, 0.08);

  --cream: #FBF6DD;
  --cream-warm: #F7EFC9;
  --cream-soft: #FCF9E6;
  --cream-deep: #EEE4BA;

  --ink: #1A0B05;
  --ink-soft: #3A2519;
  --ink-mute: rgba(26, 11, 5, 0.55);

  --copper: #B8722B;
  --copper-soft: #D9A36B;
  --blush: #E8B5A5;

  --line: rgba(90, 14, 20, 0.18);
  --line-soft: rgba(90, 14, 20, 0.10);

  /* Typography */
  --font-display: 'Italiana', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-accent: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale (fluid via clamp) */
  --space-2xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-xs: clamp(0.75rem, 1.5vw, 1rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(1.5rem, 3vw, 2.5rem);
  --space-lg: clamp(2.5rem, 5vw, 4rem);
  --space-xl: clamp(4rem, 8vw, 7rem);
  --space-2xl: clamp(6rem, 12vw, 11rem);

  /* Layout */
  --container: 1320px;
  --container-narrow: 1080px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 220ms;
  --dur: 480ms;
  --dur-slow: 900ms;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.eyebrow--burgundy { color: var(--burgundy); }
.eyebrow--cream { color: var(--cream); opacity: 0.72; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.display--xxl { font-size: clamp(3.5rem, 9vw, 9rem); }
.display--xl  { font-size: clamp(2.75rem, 6.5vw, 6rem); }
.display--lg  { font-size: clamp(2.25rem, 5vw, 4.5rem); }
.display--md  { font-size: clamp(1.75rem, 3.5vw, 3rem); }

.accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ---------- Decorative atoms ---------- */
.hairline {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
}

.section-index {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--burgundy);
  opacity: 0.7;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--burgundy);
  --fg: var(--cream);
  --bdr: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 1.05em 1.85em;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--bdr);
  border-radius: 999px;
  transition: transform var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateY(101%);
  transition: transform var(--dur) var(--ease);
  z-index: -1;
}

.btn:hover {
  color: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -16px rgba(90, 14, 20, 0.4);
}
.btn:hover::before { transform: translateY(0); }

.btn--outline {
  --bg: transparent;
  --fg: var(--burgundy);
  --bdr: var(--burgundy);
}
.btn--outline::before { background: var(--burgundy); }
.btn--outline:hover { color: var(--cream); }

.btn--ghost-cream {
  --bg: transparent;
  --fg: var(--cream);
  --bdr: rgba(251, 246, 221, 0.4);
}
.btn--ghost-cream::before { background: var(--cream); }
.btn--ghost-cream:hover { color: var(--burgundy); border-color: var(--cream); }

.btn .arrow {
  width: 1em;
  height: 1em;
  transition: transform var(--dur-fast) var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container--narrow { max-width: var(--container-narrow); }

/* ===========================================================================
   HEADER · sticky top nav
   =========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.2rem 0;
  background: rgba(251, 246, 221, 0);
  backdrop-filter: blur(0);
  transition: background var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease),
              padding var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(251, 246, 221, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 0.7rem 0;
  border-bottom-color: var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav__monogram {
  width: 38px;
  height: 38px;
  border: 1px solid var(--burgundy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav__brand:hover .nav__monogram {
  background: var(--burgundy);
  color: var(--cream);
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--burgundy);
  letter-spacing: 0.05em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  position: relative;
  padding: 0.4em 0;
  transition: color var(--dur-fast) var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0.1em;
  height: 1px;
  background: var(--burgundy);
  transition: right var(--dur) var(--ease);
}
.nav__link:hover { color: var(--burgundy); }
.nav__link:hover::after { right: 0; }

.nav__cta {
  padding: 0.7em 1.3em;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.nav__burger {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--burgundy);
  border-radius: 50%;
  position: relative;
}
.nav__burger span,
.nav__burger::before,
.nav__burger::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--burgundy);
  transform: translate(-50%, -50%);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav__burger::before { transform: translate(-50%, calc(-50% - 4px)); }
.nav__burger::after  { transform: translate(-50%, calc(-50% + 4px)); }

.nav.is-open .nav__burger::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav.is-open .nav__burger::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.nav.is-open .nav__burger span    { opacity: 0; }

/* ===========================================================================
   HERO
   =========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(6rem, 12vh, 9rem);
  padding-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  background:
    radial-gradient(1100px 600px at 88% 110%, rgba(90, 14, 20, 0.06), transparent 60%),
    var(--cream);
  overflow: hidden;
}

.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.35  0 0 0 0 0.06  0 0 0 0 0.08  0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__copy {
  position: relative;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
  color: var(--burgundy);
}
.hero__eyebrow .eyebrow { letter-spacing: 0.32em; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 8.5vw, 9rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.012em;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}
.hero__title .ligature {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  font-size: 0.5em;
  display: block;
  letter-spacing: 0.02em;
  margin-top: 0.2em;
  color: var(--ink-soft);
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 22ch;
  line-height: 1.3;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 2.6rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__meta {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}

.hero__product {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 80px -30px rgba(90, 14, 20, 0.35),
    0 10px 30px -15px rgba(0, 0, 0, 0.2);
}

.hero__seal {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--burgundy);
  display: grid;
  place-items: center;
  color: var(--cream);
  box-shadow: 0 20px 40px -10px rgba(90, 14, 20, 0.5);
  animation: rotate 24s linear infinite;
}
.hero__seal::before {
  content: '✦';
  position: absolute;
  font-family: var(--font-display);
  color: var(--cream-warm);
  font-size: 20px;
}
.hero__seal span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  height: 100%;
  display: none; /* keep markup, use SVG textPath instead */
}

/* SVG circle text for the seal */
.hero__seal-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__seal-svg text {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.3em;
  fill: var(--cream);
  text-transform: uppercase;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-mute);
}
.hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--burgundy));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: -50%;
  width: 100%;
  height: 50%;
  background: var(--burgundy);
  animation: scroll-dot 2.2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ===========================================================================
   MARQUEE · running line between sections
   =========================================================================== */
.marquee {
  border-block: 1px solid var(--line);
  padding: 1.4rem 0;
  overflow: hidden;
  background: var(--cream-soft);
}
.marquee__track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee__item {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 4rem;
}
.marquee__item::after {
  content: '✦';
  font-style: normal;
  font-size: 0.6em;
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================================================================
   SECTION SCAFFOLD
   =========================================================================== */
.section {
  padding-block: var(--space-2xl);
  position: relative;
}

.section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
}

.section__index-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-left: 1px solid var(--burgundy);
  padding-left: 1.2rem;
}
.section__index-block .section-index {
  font-size: 11px;
}
.section__index-block .label {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--burgundy);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--burgundy);
  letter-spacing: -0.01em;
}
.section__title .accent {
  display: inline-block;
  color: var(--ink-soft);
}

/* ===========================================================================
   MANIFESTO / about brand
   =========================================================================== */
.manifesto {
  padding-block: var(--space-2xl);
}
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.manifesto__visual {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.manifesto__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.manifesto__visual:hover img { transform: scale(1.04); }
.manifesto__visual::after {
  content: 'Антон & Мария';
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  letter-spacing: 0.02em;
}

.manifesto__copy {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.manifesto__title { color: var(--burgundy); }
.manifesto__body p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 50ch;
}
.manifesto__body p + p { margin-top: 1.2rem; }
.manifesto__body p:first-letter {
  font-family: var(--font-display);
  font-size: 2.6em;
  float: left;
  line-height: 0.9;
  padding: 0.05em 0.12em 0 0;
  color: var(--burgundy);
}

.manifesto__sig {
  margin-top: 1.5rem;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--burgundy);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.manifesto__sig::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--burgundy);
}

/* ===========================================================================
   COLLECTION · two product cards
   =========================================================================== */
.collection {
  background: var(--cream-soft);
  border-block: 1px solid var(--line-soft);
}

.collection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.product {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
}

.product__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.product__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.product:hover .product__visual img { transform: scale(1.05); }

.product__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--burgundy);
  color: var(--cream);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 0.5em 1em;
  border-radius: 999px;
  text-transform: uppercase;
}

.product__bio-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.4rem;
}
.product__bio-icon span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-size: 14px;
  border: 1px solid var(--line-soft);
}

.product__index {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.6rem;
}

.product__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.05;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.product__tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.product__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.product__notes span {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--burgundy);
  padding: 0.35em 0.85em;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.product__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.product__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--burgundy);
}
.product__price-old {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-mute);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.product__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.product__cta svg { transition: transform var(--dur-fast) var(--ease); }
.product:hover .product__cta svg { transform: translateX(3px); }

/* ===========================================================================
   INGREDIENTS · 4-up grid
   =========================================================================== */
.ingredients {
  padding-block: var(--space-2xl);
}
.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.ingredient {
  position: relative;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--dur) var(--ease);
}
.ingredient:hover { transform: translateY(-6px); }

.ingredient__no {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--burgundy);
}

.ingredient__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1;
  color: var(--burgundy);
}
.ingredient__lat {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-mute);
  margin-top: 0.3rem;
}

.ingredient__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.ingredient__shape {
  width: 64px;
  height: 64px;
  margin-top: auto;
  color: var(--burgundy);
  opacity: 0.85;
}

/* ===========================================================================
   CRAFT · why us with hand-cream image
   =========================================================================== */
.craft {
  position: relative;
  padding-block: var(--space-2xl);
  overflow: hidden;
}
.craft__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.craft__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.craft__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.craft__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.craft__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left var(--dur) var(--ease);
}
.craft__item:first-child { padding-top: 0; }
.craft__item:last-child  { border-bottom: 0; padding-bottom: 0; }
.craft__item:hover { padding-left: 1rem; }

.craft__no {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--burgundy);
  opacity: 0.5;
  line-height: 1;
  min-width: 2ch;
}

.craft__heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--burgundy);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.craft__text {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 48ch;
}

/* ===========================================================================
   FOUNDERS · big editorial photo with overlay text
   =========================================================================== */
.founders {
  background: var(--burgundy);
  color: var(--cream);
  padding-block: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.founders::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.98  0 0 0 0 0.96  0 0 0 0 0.87  0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.7;
}

.founders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.founders__visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.founders__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
}

.founders__copy { color: var(--cream); }
.founders__copy .eyebrow { color: var(--cream); opacity: 0.65; }
.founders__copy .section__title { color: var(--cream); }
.founders__copy .section__title .accent { color: var(--copper-soft); opacity: 1; }
.founders__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.3;
  color: var(--cream-soft);
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--cream);
  max-width: 32ch;
}
.founders__text {
  color: rgba(251, 246, 221, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: 2rem;
}
.founders__sign {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.founders__sign-am {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(251, 246, 221, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
}
.founders__sign-name {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.2rem;
}
.founders__sign-meta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 0.2rem;
}

/* ===========================================================================
   REVIEWS
   =========================================================================== */
.reviews {
  padding-block: var(--space-2xl);
}

.reviews__strip {
  position: relative;
  padding-block: 2rem;
}

.reviews__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--burgundy) transparent;
}
.reviews__track::-webkit-scrollbar { height: 4px; }
.reviews__track::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 999px; }
.reviews__track::-webkit-scrollbar-track { background: var(--line-soft); }

.review {
  flex: 0 0 clamp(280px, 32vw, 420px);
  scroll-snap-align: start;
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.review__stars {
  color: var(--burgundy);
  letter-spacing: 0.2em;
  font-size: 14px;
}

.review__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--burgundy);
  line-height: 1.15;
}

.review__body {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
}

.review__meta {
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review__author {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--burgundy);
}
.review__source {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ===========================================================================
   CTA-FINAL
   =========================================================================== */
.cta-final {
  background: var(--burgundy);
  color: var(--cream);
  padding-block: var(--space-2xl);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 50% -40%, rgba(251, 246, 221, 0.10), transparent 70%);
  pointer-events: none;
}
.cta-final__inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.cta-final__title .accent {
  display: block;
  color: var(--copper-soft);
  margin-top: 0.4rem;
}
.cta-final__text {
  font-size: 1.1rem;
  color: rgba(251, 246, 221, 0.85);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* ===========================================================================
   FOOTER
   =========================================================================== */
.footer {
  background: var(--burgundy-deep);
  color: var(--cream);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(251, 246, 221, 0.15);
}

.footer__brand .nav__wordmark {
  font-size: 32px;
  color: var(--cream);
  margin-bottom: 1rem;
  display: block;
}
.footer__tagline {
  font-family: var(--font-accent);
  font-style: italic;
  color: rgba(251, 246, 221, 0.7);
  max-width: 26ch;
  font-size: 1.05rem;
  line-height: 1.4;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(251, 246, 221, 0.55);
  margin-bottom: 1.2rem;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__col a {
  color: var(--cream);
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity var(--dur-fast) var(--ease), padding var(--dur-fast) var(--ease);
}
.footer__col a:hover {
  opacity: 1;
  padding-left: 0.4rem;
}

.footer__socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.footer__social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(251, 246, 221, 0.25);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.footer__social:hover {
  background: var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 12px;
  color: rgba(251, 246, 221, 0.5);
  letter-spacing: 0.08em;
}
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* ===========================================================================
   SHOWCASE · full-bleed product cinematic
   =========================================================================== */
.showcase {
  position: relative;
  overflow: hidden;
  background: var(--burgundy);
}
.showcase__img {
  width: 100%;
  height: clamp(380px, 60vh, 720px);
  object-fit: cover;
  display: block;
  opacity: 0.92;
  filter: contrast(1.02);
}
.showcase__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(58, 8, 16, 0.1), rgba(58, 8, 16, 0.55));
}
.showcase__inner {
  text-align: center;
  color: var(--cream);
  padding: 0 var(--space-md);
}
.showcase__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.05em;
  line-height: 1;
}
.showcase__sub {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  margin-top: 1rem;
  opacity: 0.85;
}

/* ===========================================================================
   ANIMATIONS · scroll reveals
   =========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="left"].is-visible { transform: none; }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="right"].is-visible { transform: none; }

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin: 2rem auto 0; }
  .hero__seal { width: 100px; height: 100px; bottom: -24px; left: -16px; }
  .manifesto__grid,
  .craft__grid,
  .founders__grid { grid-template-columns: 1fr; }
  .ingredients__grid { grid-template-columns: repeat(2, 1fr); }
  .collection__grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .section__head { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__cta { display: none; }

  /* Mobile menu overlay */
  .nav__links.is-visible {
    display: flex;
    position: fixed;
    inset: 78px 0 0 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    background: var(--cream);
    z-index: 99;
    padding: 2rem;
  }
  .nav__links.is-visible .nav__link {
    font-size: 1.4rem;
    font-family: var(--font-display);
    color: var(--burgundy);
  }
  .nav__links.is-visible .nav__cta-mobile {
    display: inline-flex;
    margin-top: 1.5rem;
  }

  .hero { padding-top: 6.5rem; padding-bottom: var(--space-xl); }
  .hero__title { font-size: clamp(3rem, 14vw, 5.5rem); }
  .hero__actions { gap: 0.6rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }
  .ingredients__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .review { padding: 1.5rem; }
  .hero__seal { display: none; }
  .craft__item { grid-template-columns: 1fr; gap: 0.6rem; }
  .section__head { gap: 1rem; }
  .manifesto__body p:first-letter { font-size: 2.2em; }
}

/* Print fallback */
@media print {
  .hero__seal, .hero__scroll, .marquee { display: none; }
}
