/* ============================================================
   Design tokens
   ============================================================ */
:root {
  --cream: #faf9f7;
  --cream-2: #f3ede4;
  --stone: #e9ddd2;
  --stone-soft: #ddd0c2;
  --sage: #5b6b4f;
  --sage-deep: #3d5940;
  --charcoal: #232e24;
  --taupe: #c9b8a6;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
  text-rendering: optimizeLegibility;
}
@media (max-width: 640px) { html { scroll-padding-top: 90px; } }

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4 { word-wrap: break-word; overflow-wrap: break-word; }
section[id] { scroll-margin-top: 90px; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background-color: var(--sage); color: var(--cream); }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--taupe); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--sage); }

/* ============================================================
   Typography helpers
   ============================================================ */
.font-serif-display { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.font-sans-body    { font-family: 'DM Sans', system-ui, sans-serif; }

/* ============================================================
   Layout helpers
   ============================================================ */
.container       { max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.container-narrow{ max-width: 1024px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
.container-sm    { max-width: 896px;  margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px)  { .container, .container-narrow, .container-sm { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container, .container-narrow, .container-sm { padding-left: 2rem; padding-right: 2rem; } }

/* ============================================================
   Reveal & decorative bits
   ============================================================ */
.grain::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.08; pointer-events: none; mix-blend-mode: multiply;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.animate-marquee { animation: marquee 40s linear infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}
.pulse-dot { animation: pulse-dot 2.4s ease-in-out infinite; }

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.shimmer-cta-light {
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, #faf9f7 0%, #e9ddd2 35%, #ddd0c2 50%, #e9ddd2 65%, #faf9f7 100%);
  animation: shimmer 7s ease-in-out infinite;
}

/* Reveal initial states (GSAP will animate from these) */
.reveal-line { overflow: hidden; display: block; }
.reveal-line > span { display: inline-block; transform: translateY(110%); }

/* ============================================================
   Buttons & links
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background-color: var(--cream);
  color: var(--sage-deep);
  border: 1px solid rgba(91, 107, 79, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.025em;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: background-color .5s ease, border-color .5s ease, box-shadow .5s ease, transform .5s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}
.btn:hover {
  background-color: rgba(233, 221, 210, 0.7);
  border-color: rgba(91, 107, 79, 0.6);
  box-shadow: 0 12px 30px -8px rgba(61, 89, 64, 0.15);
}
.btn .arrow { transition: transform .5s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn svg { width: 1rem; height: 1rem; fill: currentColor; }

.btn-primary {
  padding: 0.875rem 1.75rem;
  color: var(--sage-deep);
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.2);
}
.btn-primary:hover { transform: scale(1.02); }

.btn-on-dark {
  background-color: var(--cream);
  color: var(--sage-deep);
  border-color: rgba(250, 249, 247, 0.4);
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.25);
}
.btn-on-dark:hover { background-color: var(--stone); }

.link-underline { position: relative; display: inline-block; }
.link-underline::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right center;
  transition: transform .6s cubic-bezier(0.16,1,0.3,1);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left center; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  background-color: rgba(250, 249, 247, 0.75);
  border-bottom: 1px solid rgba(233, 221, 210, 0.6);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; padding-bottom: 0.75rem; gap: 0.75rem; }
@media (min-width: 640px) { .nav-row { padding-top: 1rem; padding-bottom: 1rem; } }

.logo { display: inline-flex; flex-direction: column; line-height: 1.1; }
.logo-primary { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; letter-spacing: -0.01em; color: var(--charcoal); }
.logo-accent  { font-style: italic; color: var(--sage); }
.logo-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(35, 46, 36, 0.55);
  margin-top: 2px;
}
@media (min-width: 640px) {
  .logo-primary { font-size: 1.25rem; }
  .logo-tagline { font-size: 10px; letter-spacing: 0.3em; }
}

.nav-links { display: none; gap: 2rem; font-size: 0.875rem; color: rgba(35,46,36,0.8); }
@media (min-width: 1024px) { .nav-links { display: flex; gap: 2rem; } }
@media (min-width: 1280px) { .nav-links { gap: 2.25rem; } }
.nav-links a { transition: color .3s ease; }
.nav-links a:hover { color: var(--sage-deep); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: 7rem; padding-bottom: 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, #faf9f7 0%, #f3ede4 100%);
}
@media (min-width: 640px) { .hero { padding-top: 8rem; padding-bottom: 6rem; } }

.blob {
  position: absolute; border-radius: 9999px; filter: blur(64px);
  pointer-events: none;
}
.blob-1 { top: -8rem; right: -8rem; width: 28rem; height: 28rem; background-color: rgba(233, 221, 210, 0.5); }
.blob-2 { bottom: 0; left: -5rem; width: 24rem; height: 24rem; background-color: rgba(201, 184, 166, 0.3); }

.hero-grid {
  position: relative;
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 3rem; }
}

.hero-text { order: 2; }
.hero-media { order: 1; position: relative; }
@media (min-width: 1024px) {
  .hero-text { order: 1; grid-column: span 6 / span 6; }
  .hero-media { order: 2; grid-column: span 6 / span 6; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .eyebrow { font-size: 12px; margin-bottom: 1.75rem; } }
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 9999px;
  background-color: var(--sage);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; line-height: 1.02;
  color: var(--charcoal); margin: 0 0 1.25rem 0;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; margin-bottom: 1.75rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 5.5rem; } }

.hero h1 .italic { font-style: italic; color: var(--sage-deep); }

.hero-sub {
  font-size: 1rem; line-height: 1.7;
  color: rgba(35, 46, 36, 0.7);
  max-width: 36rem; margin: 0 0 2rem 0;
}
@media (min-width: 640px) { .hero-sub { font-size: 1.125rem; margin-bottom: 2.5rem; } }

.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) { .hero-cta-row { gap: 1rem; } }

.hero-meta {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem; max-width: 28rem;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 184, 166, 0.5);
}
@media (min-width: 640px) {
  .hero-meta { gap: 1.5rem; margin-top: 3.5rem; padding-top: 1.75rem; }
}
.hero-meta .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem; color: var(--sage-deep); line-height: 1.2;
}
@media (min-width: 640px) { .hero-meta .stat-num { font-size: 1.5rem; } }
.hero-meta .stat-label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(35,46,36,0.6); margin-top: 0.25rem; line-height: 1.2;
}
@media (min-width: 640px) { .hero-meta .stat-label { font-size: 11px; } }

/* Hero image + floating bits */
.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background-color: var(--stone);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(35, 46, 36, 0.25);
}
@media (min-width: 640px) {
  .hero-image-wrap { aspect-ratio: 5/6; border-radius: 2rem; }
}
@media (min-width: 1024px) {
  .hero-image-wrap { aspect-ratio: 4/5; }
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.hero-image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(61, 89, 64, 0.10), transparent);
}
.hero-tag, .hero-price {
  position: absolute;
  display: inline-flex; align-items: center; gap: 0.5rem;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero-tag {
  top: 1rem; left: 1rem;
  padding: 0.25rem 0.625rem; border-radius: 9999px;
  background-color: rgba(250, 249, 247, 0.9);
  color: var(--charcoal);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
}
@media (min-width: 640px) { .hero-tag { top: 1.25rem; left: 1.25rem; padding: 0.375rem 0.75rem; font-size: 10px; } }
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 9999px; background-color: var(--sage); }
.hero-price {
  bottom: 1rem; right: 1rem;
  padding: 0.375rem 0.75rem; border-radius: 1rem;
  background-color: rgba(35, 46, 36, 0.85);
  color: var(--cream);
  flex-direction: column; align-items: flex-start; gap: 0;
}
@media (min-width: 640px) { .hero-price { bottom: 1.25rem; right: 1.25rem; padding: 0.5rem 1rem; border-radius: 1rem; } }
.hero-price .from { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.75rem; }
@media (min-width: 640px) { .hero-price .from { font-size: 0.875rem; } }
.hero-price .price { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; line-height: 1; margin-top: 0.125rem; }
@media (min-width: 640px) { .hero-price .price { font-size: 1.5rem; } }

.hero-floating-card {
  display: none;
  position: absolute; bottom: -2rem; left: -2rem;
  max-width: 16rem;
  padding: 1.25rem;
  background-color: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 1rem;
  box-shadow: 0 20px 40px -10px rgba(35,46,36,0.05);
}
@media (min-width: 768px) { .hero-floating-card { display: block; } }
.hero-floating-card .label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 0.5rem;
}
.hero-floating-card .label::before { content: ''; width: 1.5rem; height: 1px; background-color: var(--sage); }
.hero-floating-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; line-height: 1.3; color: var(--charcoal); margin: 0;
}

/* ============================================================
   Marquee strip
   ============================================================ */
.marquee {
  background-color: var(--charcoal); color: var(--cream);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid var(--charcoal); border-bottom: 1px solid var(--charcoal);
}
@media (min-width: 640px) { .marquee { padding: 1.25rem 0; } }
.marquee-track { display: flex; width: max-content; animation: marquee 40s linear infinite; will-change: transform; }
.marquee-item {
  display: flex; align-items: center; gap: 2rem;
  padding-left: 2rem; padding-right: 2rem;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
@media (min-width: 640px) { .marquee-item { gap: 2.5rem; padding-left: 2.5rem; padding-right: 2.5rem; } }
.marquee-item span.text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.125rem;
}
@media (min-width: 640px) { .marquee-item span.text { font-size: 1.5rem; } }
.marquee-item span.dot { color: rgba(201,184,166,0.7); font-size: 1.25rem; }
@media (min-width: 640px) { .marquee-item span.dot { font-size: 1.5rem; } }

/* ============================================================
   Brand showcase (SMEG mark section)
   ============================================================ */
.brand-section {
  position: relative;
  background-color: var(--cream);
  padding: 5rem 0;
  border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone);
}
@media (min-width: 640px) { .brand-section { padding: 6rem 0; } }
@media (min-width: 1024px) { .brand-section { padding: 7rem 0; } }

.brand-grid {
  display: grid; gap: 3rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .brand-grid {
    grid-template-columns: 5fr 7fr;   /* logo | copy */
    gap: 5rem;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .brand-grid { gap: 6rem; }
}

.brand-mark-wrap {
  position: relative;
  display: flex; justify-content: center;
}
@media (min-width: 1024px) {
  .brand-mark-wrap { justify-content: flex-end; padding-right: 1rem; }
}
.brand-mark {
  position: relative; z-index: 1;
  width: 160px;
}
@media (min-width: 640px)  { .brand-mark { width: 180px; } }
@media (min-width: 1024px) { .brand-mark { width: 220px; } }
@media (min-width: 1280px) { .brand-mark { width: 240px; } }
.brand-mark svg { width: 100%; height: auto; display: block; }

.brand-mark::before {
  content: ''; position: absolute;
  inset: -3rem;
  background-color: rgba(233, 221, 210, 0.45);
  border-radius: 9999px; filter: blur(56px);
  z-index: -1;
}

.smeg-mark { display: inline-block; }
.smeg-mark .badge { display: block; border-radius: 18%; }
.smeg-mark .circle { fill: var(--charcoal); }
.smeg-mark .star { fill: var(--sage); }

.brand-copy {
  max-width: 36rem;
}
@media (min-width: 1024px) {
  .brand-copy {
    max-width: none;       /* let it fill its column */
    padding-top: 0.5rem;   /* optical alignment with the mark */
  }
}

.brand-copy .eyebrow {
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.brand-copy .eyebrow::before {
  content: ''; width: 2rem; height: 1px;
  background-color: var(--sage); border-radius: 0;
}

.brand-word {
  margin: 0 0 2rem 0;
  display: flex; align-items: center; gap: 0.75rem;
}
.brand-word svg { width: 44px; height: 44px; display: block; }
@media (min-width: 1024px) {
  .brand-word { margin-bottom: 2.5rem; gap: 1rem; }
  .brand-word svg { width: 52px; height: 52px; }
}

.brand-copy p {
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  max-width: 32rem;
}
@media (min-width: 1024px) {
  .brand-copy p { max-width: none; margin-bottom: 1.75rem; }
}
.brand-copy p:last-child { margin-bottom: 0; }

.brand-copy p.primary {
  font-size: 1rem;
  color: rgba(35,46,36,0.78);
}
@media (min-width: 640px)  { .brand-copy p.primary { font-size: 1.0625rem; } }
@media (min-width: 1024px) { .brand-copy p.primary { font-size: 1.125rem; line-height: 1.75; } }

.brand-copy p.secondary {
  font-size: 0.9375rem;
  color: rgba(35,46,36,0.6);
  line-height: 1.7;
}
@media (min-width: 1024px) {
  .brand-copy p.secondary { font-size: 0.9375rem; line-height: 1.75; max-width: 30rem; }
}

/* ============================================================
   Collection / Product cards
   ============================================================ */
.collection-section {
  position: relative;
  background-color: var(--cream);
  padding: 4rem 0;
}
@media (min-width: 640px) { .collection-section { padding: 6rem 0; } }
@media (min-width: 1024px) { .collection-section { padding: 7rem 0; } }

.section-head {
  display: grid; gap: 1.5rem; margin-bottom: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .section-head { gap: 2rem; margin-bottom: 3rem; } }
@media (min-width: 1024px) {
  .section-head { grid-template-columns: repeat(12, minmax(0, 1fr)); }
}
@media (min-width: 1024px) { .section-head .head-left { grid-column: span 7 / span 7; } }
@media (min-width: 1024px) { .section-head .head-right { grid-column: span 5 / span 5; padding-top: 0.5rem; } }

.section-head .eyebrow { margin-bottom: 1rem; }
.section-head .eyebrow::before { content: ''; width: 2rem; height: 1px; background-color: var(--sage); border-radius: 0; }

.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem; line-height: 1.05;
  color: var(--charcoal); margin: 0;
}
@media (min-width: 640px) { .section-head h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .section-head h2 { font-size: 3rem; } }
@media (min-width: 1024px) { .section-head h2 { font-size: 3.75rem; } }
.section-head h2 .italic { font-style: italic; color: var(--sage-deep); }

.section-head p { color: rgba(35,46,36,0.7); line-height: 1.7; margin: 0; font-size: 1rem; }

.products { border-top: 1px solid rgba(201, 184, 166, 0.5); }

.product {
  display: grid; gap: 2rem; align-items: center;
  grid-template-columns: 1fr;
  padding: 3rem 0;
}
@media (min-width: 640px) { .product { gap: 2.5rem; padding: 5rem 0; } }
@media (min-width: 1024px) { .product { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 2.5rem; padding: 6rem 0; } }
@media (min-width: 1024px) { .product { gap: 4rem; } }
.product.reverse .product-media { order: 2; }

@media (min-width: 1024px) {
  .product .product-media { grid-column: span 7 / span 7; }
  .product .product-info  { grid-column: span 5 / span 5; }
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background-color: var(--stone);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(35,46,36,0.2);
}
@media (min-width: 640px) {
  .product-img-wrap { aspect-ratio: 5/6; border-radius: 1.75rem; }
}
.product-img-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.16,1,0.3,1);
}
.product-img-wrap:hover img { transform: scale(1.04); }

.product-tag, .product-tag-bottom {
  position: absolute; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.product-tag {
  top: 1rem; left: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.625rem; border-radius: 9999px;
  background-color: rgba(250, 249, 247, 0.9);
  color: var(--charcoal);
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
}
@media (min-width: 640px) { .product-tag { top: 1.25rem; left: 1.25rem; padding: 0.375rem 0.75rem; font-size: 10px; } }
.product-tag::before { content: ''; width: 6px; height: 6px; border-radius: 9999px; background-color: var(--sage); }
.product-tag-bottom {
  bottom: 1rem; right: 1rem;
  padding: 0.375rem 0.75rem; border-radius: 1rem;
  background-color: rgba(250, 249, 247, 0.95);
  color: var(--charcoal);
}
@media (min-width: 640px) { .product-tag-bottom { bottom: 1.25rem; right: 1.25rem; padding: 0.5rem 1rem; } }
.product-tag-bottom .num {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage);
}
@media (min-width: 640px) { .product-tag-bottom .num { font-size: 10px; } }
.product-tag-bottom .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; margin-top: 2px;
}
@media (min-width: 640px) { .product-tag-bottom .name { font-size: 1.25rem; } }

.product-info .eyebrow { color: var(--sage); margin-bottom: 1rem; }
@media (min-width: 640px) { .product-info .eyebrow { margin-bottom: 1.25rem; } }
.product-info .eyebrow::before { content: ''; width: 2rem; height: 1px; background-color: var(--sage); border-radius: 0; }

.product-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem; line-height: 1.05;
  color: var(--charcoal); margin: 0 0 1rem 0;
}
@media (min-width: 640px) { .product-info h3 { font-size: 2.25rem; margin-bottom: 1.25rem; } }
@media (min-width: 768px) { .product-info h3 { font-size: 3rem; } }
@media (min-width: 1024px) { .product-info h3 { font-size: 3.75rem; } }

.product-info p.desc { font-size: 1rem; line-height: 1.7; color: rgba(35,46,36,0.7); max-width: 28rem; margin: 0 0 1.75rem 0; }
@media (min-width: 640px) { .product-info p.desc { font-size: 1.125rem; margin-bottom: 2rem; } }

.product-info ul { list-style: none; padding: 0; margin: 0 0 2rem 0; }
@media (min-width: 640px) { .product-info ul { margin-bottom: 2.5rem; } }
.product-info ul li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: rgba(35,46,36,0.8); margin-bottom: 0.75rem; line-height: 1.5; }
.product-info ul li::before { content: ''; flex: 0 0 auto; width: 4px; height: 4px; border-radius: 9999px; background-color: var(--taupe); margin-top: 0.5rem; }

.product-foot {
  display: flex; flex-direction: column; gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 184, 166, 0.5);
}
@media (min-width: 640px) {
  .product-foot { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
}
.product-foot .price-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(35,46,36,0.6); margin-bottom: 0.25rem; }
@media (min-width: 640px) { .product-foot .price-label { font-size: 11px; } }
.product-foot .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem; color: var(--charcoal); line-height: 1;
}
@media (min-width: 640px) { .product-foot .price { font-size: 2.25rem; } }

.product-divider { height: 1px; background-color: rgba(201, 184, 166, 0.4); }

/* ============================================================
   Story section (sage)
   ============================================================ */
.story-section {
  position: relative;
  background-color: var(--sage-deep);
  color: var(--cream);
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 640px) { .story-section { padding: 7rem 0; } }
@media (min-width: 1024px) { .story-section { padding: 8rem 0; } }

.story-blob-1 { position: absolute; top: -8rem; right: 0; width: 30rem; height: 30rem; background-color: var(--sage); border-radius: 9999px; filter: blur(64px); opacity: 0.5; }
.story-blob-2 { position: absolute; bottom: 0; left: -5rem; width: 24rem; height: 24rem; background-color: var(--charcoal); border-radius: 9999px; filter: blur(64px); opacity: 0.4; }

.story-grid {
  position: relative;
  display: grid; gap: 2.5rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .story-grid { gap: 3rem; } }
@media (min-width: 1024px) { .story-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 3rem; } }

.story-copy { order: 2; }
.story-media { order: 1; }
@media (min-width: 1024px) {
  .story-copy { order: 1; grid-column: span 7 / span 7; }
  .story-media { order: 2; grid-column: span 5 / span 5; }
}

.story-copy .eyebrow { color: var(--taupe); margin-bottom: 1.25rem; }
.story-copy .eyebrow::before { content: ''; width: 2rem; height: 1px; background-color: var(--taupe); border-radius: 0; }

.story-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem; line-height: 1.05;
  color: var(--cream); margin: 0 0 1.5rem 0;
}
@media (min-width: 640px) { .story-copy h2 { font-size: 2.25rem; margin-bottom: 1.75rem; } }
@media (min-width: 768px) { .story-copy h2 { font-size: 3rem; } }
@media (min-width: 1024px) { .story-copy h2 { font-size: 3.75rem; } }
.story-copy h2 .italic { font-style: italic; color: var(--stone); }

.story-copy p { line-height: 1.7; max-width: 36rem; margin: 0 0 1.25rem 0; }
.story-copy p.primary { font-size: 1rem; color: rgba(250,249,247,0.8); }
@media (min-width: 640px) { .story-copy p.primary { font-size: 1.125rem; margin-bottom: 1.5rem; } }
.story-copy p.secondary { color: rgba(250,249,247,0.7); }

.story-stats { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 640px) { .story-stats { gap: 2rem; margin-top: 2.5rem; } }
.story-stats .stat { flex: 0 0 auto; }
.story-stats .stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-style: italic; color: var(--stone); line-height: 1;
}
@media (min-width: 640px) { .story-stats .stat .num { font-size: 1.875rem; } }
.story-stats .stat .label {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(250,249,247,0.6); margin-top: 0.25rem;
}
@media (min-width: 640px) { .story-stats .stat .label { font-size: 11px; } }

.story-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1.5rem; overflow: hidden;
  border: 1px solid rgba(250,249,247,0.15);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
@media (min-width: 640px) { .story-img-wrap { aspect-ratio: 16/10; border-radius: 2rem; } }
@media (min-width: 1024px) { .story-img-wrap { aspect-ratio: 4/5; } }
.story-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(35,46,36,0.4), transparent);
}
.story-quote {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  padding: 1rem; border-radius: 1rem;
  background-color: rgba(250,249,247,0.10);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(250,249,247,0.20);
}
@media (min-width: 640px) { .story-quote { bottom: 1.25rem; left: 1.25rem; right: 1.25rem; padding: 1.25rem; } }
.story-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1rem; line-height: 1.3;
  color: var(--cream); margin: 0;
}
@media (min-width: 640px) { .story-quote p { font-size: 1.25rem; } }

/* ============================================================
   Details (specs) section
   ============================================================ */
.details-section {
  background-color: var(--cream);
  padding: 4rem 0;
}
@media (min-width: 640px) { .details-section { padding: 6rem 0; } }
@media (min-width: 1024px) { .details-section { padding: 7rem 0; } }

.details-head {
  display: grid; gap: 1.5rem; margin-bottom: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .details-head { gap: 2rem; margin-bottom: 3rem; } }
@media (min-width: 640px) { .details-head { grid-template-columns: repeat(12, minmax(0, 1fr)); } }
@media (min-width: 640px) { .details-head .head-left { grid-column: span 5 / span 5; } }
@media (min-width: 640px) { .details-head .head-right { grid-column: span 7 / span 7; padding-top: 0.5rem; } }

.details-head .eyebrow { color: var(--sage); margin-bottom: 1rem; }
.details-head .eyebrow::before { content: ''; width: 2rem; height: 1px; background-color: var(--sage); border-radius: 0; }

.details-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem; line-height: 1.05;
  color: var(--charcoal); margin: 0;
}
@media (min-width: 640px) { .details-head h2 { font-size: 2.25rem; } }
@media (min-width: 768px) { .details-head h2 { font-size: 3rem; } }
.details-head h2 .italic { font-style: italic; color: var(--sage-deep); }

.details-head p { color: rgba(35,46,36,0.7); line-height: 1.7; margin: 0; font-size: 1rem; }

.spec-table { border-top: 1px solid rgba(201, 184, 166, 0.5); }
.spec-row {
  display: grid; gap: 0.25rem;
  grid-template-columns: 1fr;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(201, 184, 166, 0.4);
  transition: background-color .5s ease;
}
@media (min-width: 640px) {
  .spec-row { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1rem; padding: 1.25rem 0.5rem; }
}
.spec-row:hover { background-color: rgba(243, 237, 228, 0.4); }
.spec-row .label {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(35,46,36,0.6);
}
@media (min-width: 640px) { .spec-row .label { font-size: 11px; grid-column: span 4 / span 4; } }
.spec-row .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem; color: var(--charcoal);
}
@media (min-width: 640px) { .spec-row .value { font-size: 1.25rem; grid-column: span 8 / span 8; } }

/* ============================================================
   Contact (CTA) section
   ============================================================ */
.contact-section {
  position: relative;
  background-color: var(--charcoal);
  color: var(--cream);
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 640px) { .contact-section { padding: 7rem 0; } }
@media (min-width: 1024px) { .contact-section { padding: 8rem 0; } }
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04; pointer-events: none;
}

.contact-inner { position: relative; text-align: center; }

.contact-section .eyebrow {
  color: var(--taupe); margin-bottom: 1.5rem;
  gap: 0.5rem;
}
.contact-section .eyebrow::before, .contact-section .eyebrow::after {
  content: ''; width: 2rem; height: 1px; background-color: var(--taupe);
}

.contact-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem; line-height: 1.02;
  color: var(--cream); margin: 0 0 1.5rem 0;
}
@media (min-width: 640px) { .contact-section h2 { font-size: 3rem; } }
@media (min-width: 768px) { .contact-section h2 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .contact-section h2 { font-size: 4.5rem; } }
.contact-section h2 .italic { font-style: italic; color: var(--stone); }

.contact-section p.lede {
  font-size: 1rem; line-height: 1.7;
  color: rgba(250,249,247,0.75);
  max-width: 36rem; margin: 0 auto 2.5rem auto;
}
@media (min-width: 640px) { .contact-section p.lede { font-size: 1.125rem; margin-bottom: 2.5rem; } }

.contact-cta { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 3rem; }
.contact-cta .replies { font-size: 0.75rem; color: rgba(250,249,247,0.5); margin: 0; }

.contact-info {
  display: grid; gap: 1.25rem; max-width: 36rem; margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(250,249,247,0.15);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .contact-info { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
}
.contact-info .info-card .label {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 0.5rem;
}
.contact-info .info-card .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem; color: var(--cream);
}
@media (min-width: 640px) { .contact-info .info-card .value { font-size: 1.25rem; } }
.contact-info .info-card .sub {
  font-size: 0.875rem; color: rgba(250,249,247,0.6); margin-top: 0.25rem;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background-color: var(--cream);
  border-top: 1px solid var(--stone);
  padding: 3rem 0;
}
.footer-row {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem;
  text-align: center;
  font-size: 0.75rem; color: rgba(35,46,36,0.6);
}
@media (min-width: 640px) {
  .footer-row { flex-direction: row; align-items: flex-start; justify-content: space-between; text-align: left; }
}
.footer-left { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
@media (min-width: 640px) {
  .footer-left { flex-direction: row; align-items: center; gap: 0.75rem; }
}
.footer-left .dot { display: none; }
@media (min-width: 640px) { .footer-left .dot { display: inline; } }
.footer-right { display: flex; align-items: center; gap: 1.5rem; }
.footer-right .tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: rgba(35,46,36,0.8); }
.footer-right .sep { color: var(--taupe); }
.footer-disclaimer {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--stone);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(35,46,36,0.45); line-height: 1.7;
  text-align: center;
}
@media (min-width: 640px) { .footer-disclaimer { text-align: left; } }

/* ============================================================
   Smooth scroll (Lenis-driven via JS)
   Sets html.lenis-smooth on the element so Lenis can override
   default scroll-behavior smoothly via transform.
   ============================================================ */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* ============================================================
   Premium micro-interactions
   ============================================================ */

/* Magnetic wrapper — used by JS to apply x/y transforms */
[data-magnetic] { display: inline-block; will-change: transform; }

/* Tilt wrapper — used by JS to apply 3D rotateX/rotateY */
[data-tilt] { will-change: transform; transform-style: preserve-3d; }
[data-tilt] img { transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }

/* Cursor follower */
.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid rgba(91, 107, 79, 0.5);
  border-radius: 9999px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.35s ease,
              border-color 0.35s ease;
  will-change: transform;
}
.cursor-follower.is-hover {
  width: 56px; height: 56px;
  background-color: rgba(91, 107, 79, 0.12);
  border-color: rgba(91, 107, 79, 0.8);
  transform: translate3d(-50%, -50%, 0) scale(1);
}
@media (hover: none), (pointer: coarse) { .cursor-follower { display: none; } }

/* Tilt highlight overlay */
.tilt-glare {
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
              rgba(255,255,255,0.18), transparent 45%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
[data-tilt]:hover .tilt-glare { opacity: 1; }

/* Button press ripple */
.btn { position: relative; overflow: hidden; }
.btn .ripple {
  position: absolute;
  border-radius: 9999px;
  background-color: rgba(91, 107, 79, 0.18);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  animation: ripple-grow 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes ripple-grow {
  to { transform: translate(-50%, -50%) scale(8); opacity: 0; }
}

/* Reveal initial state */
.will-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.will-reveal.is-revealed { opacity: 1; transform: translateY(0); }

/* Letter reveal initial state */
.letter-reveal .ltr {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

/* Soft focus state for keyboard users */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ============================================================
   Reduced motion — gentler approach: only hide decorative motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .will-reveal { opacity: 1; transform: none; }
  .letter-reveal .ltr { transform: none; opacity: 1; }
  .cursor-follower { display: none; }
}
