/* Olivka — editorial luxury, motion-forward */
:root {
  --cream: #f3efe6;
  --cream-mid: #ebe4d6;
  --cream-dark: #e0d8c8;
  --white: #faf9f6;
  --olive: #354230;
  --olive-soft: #5c6b54;
  --deep: #141c12;
  --deep-mid: #1e2a1a;
  --gold: #c9a85a;
  --gold-deep: #8f7439;
  --gold-soft: #e8d4a8;
  --line: rgba(20, 28, 18, 0.1);
  --line-strong: rgba(20, 28, 18, 0.16);
  --shadow-soft: 0 32px 100px rgba(20, 28, 18, 0.1);
  --shadow-lift: 0 24px 60px rgba(20, 28, 18, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-sm: 12px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.68;
  color: var(--deep);
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -30%, rgba(201, 168, 90, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 20%, rgba(53, 66, 48, 0.06) 0%, transparent 45%);
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition:
    background 0.55s var(--ease-out-expo),
    box-shadow 0.55s var(--ease-out-expo),
    backdrop-filter 0.55s var(--ease-out-expo);
}

.site-header.is-scrolled {
  background: rgba(243, 239, 230, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line), 0 12px 40px rgba(20, 28, 18, 0.04);
}

.site-header.header--on-dark .logo__mark {
  color: var(--cream);
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}

.site-header.header--on-dark .site-nav a {
  color: rgba(250, 249, 246, 0.9);
}

.site-header.header--on-dark .nav-cta {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(250, 249, 246, 0.28);
  color: var(--cream);
  box-shadow: 0 0 0 1px rgba(201, 168, 90, 0.15), 0 12px 40px rgba(0, 0, 0, 0.2);
}

.site-header.header--on-dark .nav-cta:hover {
  border-color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.18);
}

.site-header.header--on-dark .nav-toggle span {
  background: var(--cream);
}

.header-inner {
  width: min(1240px, 100% - 2.5rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: 0.02em;
  color: var(--deep);
}

.logo__mark {
  display: inline-block;
  transition: transform 0.5s var(--ease-out-expo);
}

.logo:hover .logo__mark {
  transform: translateY(-1px);
}

.logo--footer {
  font-size: clamp(2.25rem, 5vw, 3rem);
}

.site-footer .logo {
  color: var(--cream);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.site-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  position: relative;
  padding-block: 0.35rem;
}

.site-nav a:not(.nav-cta)::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, 6px) scale(0);
  opacity: 0;
  transition: transform 0.45s var(--ease-spring), opacity 0.35s;
}

.site-nav a:not(.nav-cta):hover::before,
.site-nav a:not(.nav-cta):focus-visible::before {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
}

.nav-cta {
  padding: 0.62rem 1.35rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(20, 28, 18, 0.06);
  transition:
    border-color 0.35s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    transform 0.45s var(--ease-out-expo);
}

.nav-cta:hover {
  border-color: rgba(201, 168, 90, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(20, 28, 18, 0.1);
}

.nav-cta::before {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--deep);
  border-radius: 2px;
  transition: transform 0.45s var(--ease-out-expo), opacity 0.3s;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  .site-header.nav-open .site-nav a {
    color: var(--olive);
  }

  .site-header.nav-open .nav-cta {
    color: var(--deep);
    background: var(--white);
    border-color: var(--line);
    box-shadow: none;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 1.5rem 2rem;
    background: rgba(243, 239, 230, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.55s var(--ease-out-expo), opacity 0.4s;
  }

  .site-header.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
  }
}

/* —— Scroll cinema —— */
.scroll-cinema {
  position: relative;
  height: 320vh;
  background: var(--deep);
}

.scroll-cinema__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.scroll-cinema__video {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
}

.scroll-cinema__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 14, 9, 0.75) 0%, rgba(20, 28, 18, 0.35) 38%, rgba(10, 14, 9, 0.65) 100%),
    linear-gradient(to top, rgba(10, 14, 9, 0.5) 0%, transparent 42%);
  pointer-events: none;
}

.scroll-cinema__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 65% at 50% 50%, transparent 30%, rgba(5, 8, 4, 0.55) 100%);
  pointer-events: none;
}

.scroll-cinema__grain {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scroll-cinema__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
  will-change: transform;
  transition: opacity 0.3s;
}

.scroll-cinema__orb--1 {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  background: radial-gradient(circle, rgba(232, 212, 168, 0.45) 0%, transparent 70%);
  top: 12%;
  right: 8%;
}

.scroll-cinema__orb--2 {
  width: min(45vw, 340px);
  height: min(45vw, 340px);
  background: radial-gradient(circle, rgba(90, 107, 84, 0.35) 0%, transparent 70%);
  bottom: 18%;
  left: 5%;
}

.scroll-cinema__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 40%,
    rgba(255, 255, 255, 0.04) 48%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.04) 52%,
    transparent 60%
  );
  pointer-events: none;
  animation: shine-sweep 7s ease-in-out infinite;
}

@keyframes shine-sweep {
  0%,
  100% {
    opacity: 0.3;
    transform: translateX(-8%) skewX(-12deg);
  }
  50% {
    opacity: 0.55;
    transform: translateX(8%) skewX(-12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cinema__shine {
    animation: none;
    opacity: 0.25;
  }
}

.scroll-cinema__hero {
  position: relative;
  z-index: 2;
  width: min(800px, 100% - 2.5rem);
  text-align: center;
  color: var(--cream);
  padding-top: var(--header-h);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
}

.hero-frame {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.15) inset,
    0 40px 100px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 212, 168, 0.35) 0%, transparent 40%, rgba(255, 255, 255, 0.08) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Hero entrance */
.hero-entrance {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.1s var(--ease-out-expo),
    transform 1.15s var(--ease-out-expo);
}

body.is-loaded .hero-entrance {
  opacity: 1;
  transform: translateY(0);
}

.hero-entrance[data-hero-delay="1"] {
  transition-delay: 0.06s;
}

.hero-entrance[data-hero-delay="2"] {
  transition-delay: 0.2s;
}

.hero-entrance[data-hero-delay="3"] {
  transition-delay: 0.34s;
}

.hero-entrance[data-hero-delay="4"] {
  transition-delay: 0.48s;
}

.hero-entrance[data-hero-delay="5"] {
  transition-delay: 0.6s;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 1.35rem;
}

.eyebrow__rule {
  flex: 1;
  max-width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 212, 168, 0.65));
}

.eyebrow__rule--end {
  background: linear-gradient(90deg, rgba(232, 212, 168, 0.65), transparent);
}

.eyebrow--dark {
  color: var(--gold-deep);
}

.eyebrow--dark .eyebrow__rule {
  background: linear-gradient(90deg, transparent, rgba(143, 116, 57, 0.45));
}

.eyebrow--dark .eyebrow__rule--end {
  background: linear-gradient(90deg, rgba(143, 116, 57, 0.45), transparent);
}

.section-index {
  display: inline-block;
  margin-right: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(143, 116, 57, 0.85);
  font-variant-numeric: tabular-nums;
}

.section-index--dim {
  color: rgba(232, 212, 168, 0.55);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 7.5vw, 4.85rem);
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.hero-title__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}

.hero-title__text {
  display: inline-block;
}

.hero-title__line--accent .hero-title__text {
  background: linear-gradient(120deg, #fff8e7 0%, var(--gold-soft) 38%, var(--gold) 72%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.35));
}

.hero-sub {
  font-size: clamp(1.02rem, 2.1vw, 1.22rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(250, 249, 246, 0.86);
  margin: 0 auto 2.25rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Story */
.scroll-cinema__story {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.story-line {
  position: absolute;
  max-width: min(32rem, 92vw);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.15rem);
  font-style: italic;
  font-weight: 450;
  line-height: 1.32;
  color: rgba(250, 249, 246, 0.96);
  text-align: center;
  text-wrap: balance;
}

.story-line__inner {
  display: block;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 0.65s var(--ease-out-expo),
    transform 0.75s var(--ease-out-expo),
    filter 0.65s var(--ease-out-expo);
}

.story-line.is-visible .story-line__inner {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.scroll-hint__text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(232, 212, 168, 0.55);
}

.scroll-hint__line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold-soft), rgba(232, 212, 168, 0.1), transparent);
  border-radius: 2px;
  animation: hint-pulse 2.6s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes hint-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.88);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint__line {
    animation: none;
  }
}

/* —— Buttons —— */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.92rem 1.85rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.5s var(--ease-out-expo),
    box-shadow 0.5s var(--ease-out-expo),
    border-color 0.4s var(--ease-out),
    background 0.45s var(--ease-out);
}

.btn__label {
  position: relative;
  z-index: 1;
}

.btn__shine {
  position: absolute;
  inset: 0;
  left: -40%;
  width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg) translateX(-120%);
  transition: transform 0.01s;
  pointer-events: none;
}

.btn-primary:hover .btn__shine {
  transform: skewX(-18deg) translateX(380%);
  transition: transform 0.85s var(--ease-out-expo);
}

.btn-primary {
  background: linear-gradient(135deg, #dcc07a 0%, var(--gold) 42%, var(--gold-deep) 100%);
  color: var(--deep);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08) inset,
    0 12px 40px rgba(201, 168, 90, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.06) inset,
    0 20px 50px rgba(201, 168, 90, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  border-color: rgba(250, 249, 246, 0.28);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(250, 249, 246, 0.45);
  transform: translateY(-3px);
}

.btn-outline {
  background: var(--white);
  color: var(--deep);
  border-color: var(--line-strong);
  box-shadow: 0 4px 20px rgba(20, 28, 18, 0.04);
}

.btn-outline:hover {
  border-color: rgba(201, 168, 90, 0.65);
  color: var(--olive);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(20, 28, 18, 0.08);
}

.magnetic .btn__label {
  display: inline-block;
  transition: transform 0.5s var(--ease-out-expo);
  transform: translate(var(--mag-x, 0px), var(--mag-y, 0px));
}

.magnetic {
  transition:
    box-shadow 0.45s var(--ease-out-expo),
    border-color 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}

/* —— Main bridge —— */
.main-curve {
  height: clamp(3rem, 6vw, 5rem);
  margin-top: -2.5rem;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  position: relative;
  z-index: 6;
  box-shadow: 0 -30px 80px rgba(20, 28, 18, 0.06);
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 9vw, 7.5rem) 1.5rem;
}

.section-header {
  width: min(760px, 100%);
  margin-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.5vw, 3.35rem);
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--deep);
}

.section-lede {
  margin: 0;
  font-size: 1.12rem;
  color: var(--olive-soft);
  max-width: 42rem;
  line-height: 1.7;
}

.section-header--center .section-lede {
  margin-inline: auto;
}

/* —— Products —— */
.products {
  background: var(--white);
  position: relative;
  z-index: 5;
  padding-top: 0.5rem;
}

.products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.product-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1140px;
  margin-inline: auto;
  padding-block: clamp(3rem, 7vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.product-card:last-child {
  border-bottom: none;
}

.product-card--reverse {
  direction: rtl;
}

.product-card--reverse > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .product-card,
  .product-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.product-card__plate {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, var(--cream) 0%, var(--white) 45%, var(--cream-mid) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.product-card__plate::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle at 100% 0%, rgba(201, 168, 90, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.product-card__index {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(20, 28, 18, 0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.product-card__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-items: end;
}

.product-shot {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 100%, #ddd8cc 0%, #f5f2eb 50%);
  box-shadow: var(--shadow-lift);
  transition:
    transform 0.65s var(--ease-out-expo),
    box-shadow 0.65s var(--ease-out-expo);
}

.product-shot__inner {
  overflow: hidden;
  border-radius: inherit;
}

.product-shot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1.02);
  transition: transform 0.85s var(--ease-out-expo);
}

.product-shot:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(20, 28, 18, 0.14);
}

.product-shot:hover img {
  transform: scale(1.06);
}

.product-shot--secondary {
  transform: translateY(16px);
}

.product-shot--secondary:hover {
  transform: translateY(6px);
}

@media (max-width: 900px) {
  .product-shot--secondary {
    transform: none;
  }
}

.product-size {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.65rem;
}

.product-size::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 600;
  font-optical-sizing: auto;
  margin: 0 0 1rem;
  color: var(--deep);
  letter-spacing: -0.02em;
}

.product-desc {
  margin: 0 0 2rem;
  color: var(--olive-soft);
  max-width: 34rem;
  font-size: 1.05rem;
}

/* —— About —— */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-mid) 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 1140px;
  margin-inline: auto;
  align-items: center;
}

@media (max-width: 820px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}

.about__copy p {
  color: var(--olive-soft);
  font-size: 1.05rem;
}

.about__accent {
  display: flex;
  justify-content: center;
}

.about__frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, var(--deep) 0%, var(--deep-mid) 40%, var(--olive) 100%);
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  position: relative;
  overflow: hidden;
  transition: transform 0.65s var(--ease-out-expo), box-shadow 0.65s var(--ease-out-expo);
}

.about__accent:hover .about__frame {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 40px 100px rgba(20, 28, 18, 0.2);
}

.about__frame::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 15%, rgba(232, 212, 168, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.about__frame-border {
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius-xl) - 12px);
  border: 1px solid rgba(232, 212, 168, 0.2);
  pointer-events: none;
}

.about__quote {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-style: italic;
  font-weight: 450;
  color: var(--cream);
  text-align: center;
  line-height: 1.28;
}

.about__sig {
  position: absolute;
  bottom: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 212, 168, 0.35);
}

/* —— Why —— bento —— */
.why {
  background: var(--cream-mid);
  position: relative;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(20, 28, 18, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
}

.feature-grid {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "hero hero f2"
    "hero hero f3"
    "f4 f5 f6";
  gap: 1rem;
  max-width: 1140px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem 1.85rem;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.55s var(--ease-out-expo),
    box-shadow 0.55s var(--ease-out-expo),
    border-color 0.4s var(--ease-out);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), transparent);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--hero {
  grid-area: hero;
  padding: 2.25rem 2rem;
  background: linear-gradient(145deg, var(--white) 0%, var(--cream) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
}

.feature-grid .feature-card:nth-child(2) {
  grid-area: f2;
}

.feature-grid .feature-card:nth-child(3) {
  grid-area: f3;
}

.feature-grid .feature-card:nth-child(4) {
  grid-area: f4;
}

.feature-grid .feature-card:nth-child(5) {
  grid-area: f5;
}

.feature-grid .feature-card:nth-child(6) {
  grid-area: f6;
}

.feature-card--hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgba(201, 168, 90, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(201, 168, 90, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(20, 28, 18, 0.1);
}

.feature-num {
  position: absolute;
  top: 1.25rem;
  right: 1.35rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(20, 28, 18, 0.12);
}

.feature-icon {
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  margin: 0 0 0.55rem;
  color: var(--deep);
  letter-spacing: -0.02em;
}

.feature-card--hero h3 {
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  max-width: 16ch;
}

.feature-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--olive-soft);
  line-height: 1.62;
  max-width: 36ch;
}

.feature-card--hero p {
  max-width: 48ch;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-template-areas:
      "hero hero"
      "f2 f3"
      "f4 f5"
      "f6 f6";
  }

  .feature-card--hero {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "f2"
      "f3"
      "f4"
      "f5"
      "f6";
  }
}

/* —— Lifestyle —— */
.lifestyle {
  position: relative;
  padding: clamp(5.5rem, 14vw, 9rem) 1.5rem;
  background: var(--deep);
  color: var(--cream);
  overflow: hidden;
}

.lifestyle__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(201, 168, 90, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 70%, rgba(90, 107, 84, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.lifestyle__lines {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 80px,
    rgba(232, 212, 168, 0.15) 80px,
    rgba(232, 212, 168, 0.15) 81px
  );
  pointer-events: none;
}

.lifestyle__inner {
  max-width: 880px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.lifestyle__title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.5vw, 3.5rem);
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.12;
  margin: 0 0 1.35rem;
  letter-spacing: -0.02em;
}

.lifestyle__text {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 400;
  color: rgba(250, 249, 246, 0.78);
  max-width: 40rem;
  line-height: 1.75;
}

.lifestyle__glow {
  position: absolute;
  width: min(100vw, 720px);
  height: min(100vw, 720px);
  border-radius: 50%;
  right: -25%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(201, 168, 90, 0.18) 0%, transparent 62%);
  pointer-events: none;
  animation: glow-breathe 8s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.65;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lifestyle__glow {
    animation: none;
  }
}

/* —— Wholesale —— */
.wholesale {
  background: var(--white);
}

.wholesale__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 1140px;
  margin-inline: auto;
  align-items: start;
}

@media (max-width: 900px) {
  .wholesale__layout {
    grid-template-columns: 1fr;
  }
}

.wholesale__list {
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--olive-soft);
}

.wholesale__list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.02rem;
}

.wholesale__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 0 3px rgba(201, 168, 90, 0.2);
}

.contact-form {
  position: relative;
  background: linear-gradient(165deg, var(--cream) 0%, var(--white) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201, 168, 90, 0.35) 0%, transparent 50%, rgba(20, 28, 18, 0.06) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}

.field input,
.field textarea {
  font: inherit;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--deep);
  transition:
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.field input:hover,
.field textarea:hover {
  border-color: rgba(20, 28, 18, 0.18);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(201, 168, 90, 0.7);
  box-shadow: 0 0 0 4px rgba(201, 168, 90, 0.12);
  transform: translateY(-1px);
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 0.35rem;
}

.form-note {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: var(--olive-soft);
}

.form-note.is-success {
  color: var(--olive);
}

.form-note.is-error {
  color: #9a3d3d;
}

/* —— Footer —— */
.site-footer {
  position: relative;
  padding: clamp(3.5rem, 8vw, 5rem) 1.5rem;
  background: linear-gradient(180deg, var(--deep-mid) 0%, var(--deep) 100%);
  color: rgba(250, 249, 246, 0.55);
  text-align: center;
}

.site-footer__line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.footer-inner {
  max-width: 720px;
  margin-inline: auto;
}

.footer-tag {
  font-size: 0.95rem;
  margin: 0.65rem 0 1.25rem;
  letter-spacing: 0.04em;
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 1s var(--ease-out-expo),
    transform 1.05s var(--ease-out-expo),
    filter 0.85s var(--ease-out-expo);
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal--stagger {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.reveal--stagger .feature-card {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s var(--ease-out-expo),
    transform 0.85s var(--ease-out-expo);
}

.reveal--stagger.is-inview .feature-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.reveal--stagger.is-inview .feature-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.reveal--stagger.is-inview .feature-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.19s;
}

.reveal--stagger.is-inview .feature-card:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}

.reveal--stagger.is-inview .feature-card:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.33s;
}

.reveal--stagger.is-inview .feature-card:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-entrance {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .story-line__inner {
    filter: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal--stagger .feature-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .magnetic .btn__label {
    transform: none !important;
    transition: none !important;
  }
}
