/* Arabian Mist UAE — Styles v2 */

/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  /* Color palette */
  --ink:        #0e0d0b;
  --paper:      #ffffff;
  --porcelain:  #ffffff;
  --linen:      #f3f2f0;
  --smoke:      #5a5044;       /* 5.6:1 on porcelain ✓ */
  --gold:       #b8924a;
  --deep-gold:  #7a5e28;       /* 6.2:1 on light bg — safe for small text */
  --gold-light: #e8cc88;       /* 6.4:1 on charcoal — for dark sections */
  --wine:       #2a0705;
  --burgundy:   #4b1014;
  --charcoal:   #100f0e;
  --line:       rgba(14, 13, 11, 0.12);
  --line-dark:  rgba(245, 234, 214, 0.16);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", Arial, sans-serif;

  /* Spacing (4-point base) */
  --sp-1: 0.25rem;   /*  4px */
  --sp-2: 0.5rem;    /*  8px */
  --sp-3: 0.75rem;   /* 12px */
  --sp-4: 1rem;      /* 16px */
  --sp-5: 1.5rem;    /* 24px */
  --sp-6: 2rem;      /* 32px */
  --sp-7: 3rem;      /* 48px */
  --sp-8: 4.5rem;    /* 72px */
  --sp-9: 6.5rem;    /* 104px */

  /* Layout */
  --page-x:        clamp(1.25rem, 6vw, 6rem);
  --section-y:     clamp(6rem, 10.5vw, 10rem);
  --section-gap:   clamp(2rem, 5vw, 5rem);
  --header-h:      clamp(3.8rem, 7vw, 4.8rem);
  --header-offset: clamp(6.5rem, 9vw, 8rem); /* notice + header */

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(14, 10, 6, 0.08);
  --shadow-md:  0 8px 32px rgba(14, 10, 6, 0.12), 0 2px 8px rgba(14, 10, 6, 0.06);
  --shadow-lg:  0 24px 64px rgba(14, 10, 6, 0.18), 0 6px 20px rgba(14, 10, 6, 0.08);
}

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

html {
  scroll-padding-top: var(--header-offset);
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  color: inherit;
  cursor: pointer;
  font: inherit;
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

/* ─── FOCUS ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--deep-gold);
  outline-offset: 3px;
}

.ritual :focus-visible,
.atelier :focus-visible,
.footer :focus-visible {
  outline-color: var(--gold-light);
}

/* ─── EYEBROW ─────────────────────────────────────────── */
/* Previously undefined — fixed in v2 */
.eyebrow {
  color: var(--deep-gold);
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 var(--sp-4);
  text-transform: uppercase;
}

.ritual .eyebrow,
.atelier .eyebrow {
  color: var(--gold-light);
}

/* ─── NOTICE BAR ──────────────────────────────────────── */
.notice {
  background: var(--wine);
  color: #f7e9cf;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.6rem var(--page-x);
  text-align: center;
  text-transform: uppercase;
}

/* ─── HEADER ──────────────────────────────────────────── */
.site-header {
  align-items: center;
  backdrop-filter: blur(0px);       /* transparent on hero — no blur needed */
  -webkit-backdrop-filter: blur(0px);
  background: transparent;          /* transparent over hero */
  border-bottom: 1px solid transparent;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: var(--header-h);
  left: 0;
  padding: 0 var(--page-x);
  position: sticky;
  right: 0;
  top: 0;
  transition: background 400ms ease, box-shadow 400ms ease, border-color 400ms ease,
              backdrop-filter 400ms ease;
  z-index: 20;
}

/* Header floats on dark hero — flip all text to cream */
.site-header:not(.is-scrolled) .brand {
  color: #f5ead6;
}
.site-header:not(.is-scrolled) .logo-text span {
  color: rgba(245, 234, 214, 0.92);
}
.site-header:not(.is-scrolled) .logo-text small {
  color: rgba(232, 204, 136, 0.8);
}
.site-header:not(.is-scrolled) .nav-links a {
  color: rgba(245, 234, 214, 0.78);
}
.site-header:not(.is-scrolled) .nav-links a:hover {
  color: #f5ead6;
}
.site-header:not(.is-scrolled) .nav-links a::after {
  background: var(--gold-light);
}
.site-header:not(.is-scrolled) .icon-button {
  border-color: rgba(245, 234, 214, 0.28);
  color: rgba(245, 234, 214, 0.85);
}
.site-header:not(.is-scrolled) .icon-button:hover {
  background: rgba(245, 234, 214, 0.08);
  border-color: rgba(245, 234, 214, 0.5);
}
.site-header:not(.is-scrolled) .menu-button {
  border-color: rgba(245, 234, 214, 0.28);
}
.site-header:not(.is-scrolled) .menu-button span {
  background: rgba(245, 234, 214, 0.85);
}

/* After scrolling — cream frosted glass */
.site-header.is-scrolled {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(14, 13, 11, 0.07);
  box-shadow: var(--shadow-md);
}

/* ── Brand logo image (replaces the old AM text lockup) ── */
.brand-logo { height: clamp(2.6rem, 5.2vw, 3.3rem); width: auto; display: block; transition: filter 400ms ease; }
.site-header:not(.is-scrolled) .brand-logo { filter: invert(1); }   /* white over the dark hero */
.footer-brand .brand-logo { filter: invert(1); height: clamp(4.5rem, 7vw, 6rem); }  /* white on the dark footer */

.brand { color: var(--wine); }

.logo-lockup {
  align-items: center;
  display: inline-flex;
  gap: 0.7rem;
}

.logo-mark {
  -webkit-background-clip: text;
  background: linear-gradient(135deg, #6b481c 0%, #f2d48a 42%, #9c7134 58%, #f7e3a1 100%);
  background-clip: text;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.logo-text {
  display: grid;
  gap: 0.2rem;
  line-height: 1;
  text-transform: uppercase;
}

.logo-text span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(0.72rem, 1.4vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.32em;
}

.logo-text small {
  color: var(--deep-gold);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-align: center;
}

/* Nav */
.nav-links {
  display: flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: clamp(1rem, 3vw, 2.25rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--smoke);
  padding-bottom: 2px;
  position: relative;
  transition: color 200ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--wine);
}

.nav-links a::after {
  background: var(--deep-gold);
  bottom: -0.4rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: var(--sp-2);
  justify-content: flex-end;
}

.icon-button,
.menu-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  display: inline-flex;
  height: 2.75rem;          /* 44px — meets tap target */
  justify-content: center;
  transition: background 200ms ease, border-color 200ms ease;
  width: 2.75rem;
}

.icon-button:hover,
.menu-button:hover {
  background: rgba(14, 13, 11, 0.03);
  border-color: rgba(14, 13, 11, 0.24);
}

.icon-button svg {
  height: 1rem;
  width: 1rem;
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 0.28rem;
}

.menu-button span {
  background: var(--ink);
  border-radius: 1px;
  height: 1.5px;
  transition: transform 240ms ease, opacity 240ms ease;
  width: 1.1rem;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  align-items: flex-end;
  background: #0c0b09; /* dark fill for left zone — bottles live on right */
  display: flex;
  margin-top: calc(-1 * var(--header-h));
  min-height: calc(100svh - 2.2rem);
  overflow: hidden;
  position: relative;
}

.hero-bg {
  inset: 0;
  position: absolute;
}

.hero-image {
  animation: heroZoom 1600ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  /* Image anchored to right — bottles fill right 62%, left zone is dark background */
  height: 100%;
  object-fit: cover;
  object-position: left 30%;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(1.04);
  width: 66%;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-shade {
  background:
    /* Seam blend — dark bg into image (image starts at 34%) */
    linear-gradient(
      to right,
      #0c0b09 0%, #0c0b09 30%,
      rgba(12,11,9,0.92) 36%,
      rgba(12,11,9,0.55) 44%,
      rgba(12,11,9,0.12) 54%,
      transparent 62%
    ),
    /* Bottom strip — feature bar */
    linear-gradient(to top, rgba(5,3,2,0.92) 0%, rgba(5,3,2,0.45) 12%, transparent 26%),
    /* Top vignette */
    linear-gradient(to bottom, rgba(5,3,2,0.50) 0%, transparent 18%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: #fff8ec;
  max-width: min(46rem, 48vw);
  padding: 0 var(--page-x) clamp(8rem, 12vw, 11rem);
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-eyebrow {
  animation: heroReveal 700ms cubic-bezier(0.16, 1, 0.3, 1) 300ms forwards;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 var(--sp-5);
  opacity: 0;
  text-transform: uppercase;
}

.hero h1 {
  animation: heroReveal 700ms cubic-bezier(0.16, 1, 0.3, 1) 450ms forwards;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.96;
  margin: 0 0 var(--sp-6);
  max-width: 14ch;
  opacity: 0;
}

.hero-copy {
  animation: heroReveal 700ms cubic-bezier(0.16, 1, 0.3, 1) 600ms forwards;
  color: rgba(255, 248, 236, 0.8);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.85;
  margin: 0 0 var(--sp-7);
  max-width: 38rem;
  opacity: 0;
}

.hero-actions {
  align-items: center;
  animation: heroReveal 700ms cubic-bezier(0.16, 1, 0.3, 1) 750ms forwards;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  opacity: 0;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.button {
  align-items: center;
  border: 1px solid currentColor;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 3rem;
  padding: 0 1.75rem;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.button:hover  { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(0.97); }

.button.primary {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff8ec;
}
.button.primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.hero .button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #0c0b09;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.hero .button.primary:hover {
  background: var(--deep-gold);
  border-color: var(--deep-gold);
  color: #f5ead6;
}

.button.ghost {
  border-color: rgba(245, 234, 214, 0.45);
  color: #fff8ec;
}
.button.ghost:hover {
  background: rgba(245, 234, 214, 0.1);
  border-color: rgba(245, 234, 214, 0.75);
}

/* Scroll cue — sits above the feature strip */
.scroll-cue {
  align-items: center;
  animation: heroReveal 700ms ease 1.1s forwards;
  bottom: 6.5rem;   /* clears the hero-features bar */
  color: rgba(255, 248, 236, 0.5);
  display: flex;
  flex-direction: column;
  font-size: 0.58rem;
  font-weight: 700;
  gap: 0.5rem;
  left: var(--page-x);
  letter-spacing: 0.2em;
  opacity: 0;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-mouse {
  border: 1.5px solid currentColor;
  border-radius: 8px;
  display: flex;
  height: 26px;
  justify-content: center;
  padding-top: 5px;
  width: 16px;
}

.scroll-dot {
  animation: scrollBounce 2s ease-in-out infinite;
  background: currentColor;
  border-radius: 1px;
  display: block;
  height: 6px;
  width: 2px;
}

@keyframes scrollBounce {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%       { opacity: 0.3; transform: translateY(5px); }
}

/* ─── HERO ORNAMENTAL DIVIDER ─────────────────────────── */
.hero-divider {
  align-items: center;
  animation: heroReveal 700ms cubic-bezier(0.16, 1, 0.3, 1) 530ms forwards;
  color: var(--gold-light);
  display: flex;
  gap: 0.75rem;
  margin: var(--sp-5) 0 var(--sp-6);
  max-width: 16rem;
  opacity: 0;
}

.hero-divider span {
  background: linear-gradient(to right, var(--gold-light), transparent);
  display: block;
  flex: 1;
  height: 1px;
  opacity: 0.5;
}

.hero-divider span:last-of-type {
  background: linear-gradient(to left, var(--gold-light), transparent);
}

.hero-divider svg {
  flex-shrink: 0;
  opacity: 0.75;
}

/* ─── HERO FEATURE STRIP ──────────────────────────────── */
.hero-features {
  animation: heroReveal 700ms ease 1.3s forwards;
  border-top: 1px solid rgba(245, 234, 214, 0.14);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.hero-feature {
  align-items: center;
  border-right: 1px solid rgba(245, 234, 214, 0.1);
  display: flex;
  gap: 0.85rem;
  padding: var(--sp-4) var(--sp-5);
}

.hero-feature:last-child {
  border-right: none;
}

.hero-feature svg {
  color: var(--gold-light);
  flex-shrink: 0;
  height: 26px;
  opacity: 0.9;
  width: 26px;
}

.hero-feature div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-feature span:first-child {
  color: rgba(245, 234, 214, 0.9);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-feature span:last-child {
  color: rgba(245, 234, 214, 0.48);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ─── BAND (shared grid utility) ─────────────────────── */
.band {
  align-items: start;
  display: grid;
  gap: var(--section-gap);
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  padding: var(--section-y) var(--page-x);
}

/* ─── INTRO SECTION ───────────────────────────────────── */
.intro {
  padding: var(--section-y) 0 0; /* no horizontal padding — inner handles it */
}

.intro-inner {
  align-items: center;
  display: grid;
  gap: var(--section-gap);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  padding: 0 var(--page-x);
}

.intro-copy {
  align-self: center;
  display: flex;
  flex-direction: column;
}

/* Override global .eyebrow margin — flex stack uses explicit margins instead */
.intro-copy .eyebrow {
  margin-bottom: var(--sp-5); /* 24px */
}

.intro-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 0 0 var(--sp-6); /* 32px below heading */
  max-width: 14ch;
}

.intro-body {
  color: var(--smoke);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.85;
  margin: 0 0 var(--sp-8); /* 72px before CTA — gives breathing room */
  max-width: 40ch;
}

.intro-media {
  height: clamp(30rem, 70vh, 52rem);
  overflow: hidden;
  position: relative;
}

.intro-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.intro-media:hover img {
  transform: scale(1.03);
}

/* Product tease strip */
.intro-strip {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--sp-9);
}

.intro-strip-item {
  border-right: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.intro-strip-item:last-child {
  border-right: none;
}

.intro-strip-item img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.intro-strip-item:hover img {
  transform: scale(1.04);
}

.intro-strip-item p {
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--smoke);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0;
  padding: var(--sp-4) var(--sp-5);
  text-transform: uppercase;
}

/* ─── FEATURE SPLIT ───────────────────────────────────── */
.feature-split {
  align-items: center;
  display: grid;
  gap: var(--section-gap);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  padding: var(--section-y) var(--page-x); /* no max() hack — normal padding */
}

.feature-copy,
.detail-info {
  align-self: start;
}

.feature-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 0 0 var(--sp-5);
  max-width: 10ch;
}

.feature-copy p:not(.eyebrow) {
  color: var(--smoke);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.85;
  margin: 0 0 var(--sp-7);
  max-width: 38ch;
}

.feature-media {
  /* Was aspect-ratio: 3/4 — caused 890–1250px height on large screens */
  height: clamp(28rem, 65vh, 42rem);
  background: #0f1115;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
}

.feature-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.feature-media:hover img {
  transform: scale(1.03);
}

.text-link {
  border-bottom: 1px solid var(--deep-gold);   /* was --gold (contrast fail) */
  color: var(--ink);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding-bottom: 0.3rem;
  text-transform: uppercase;
  transition: color 200ms ease, border-color 200ms ease;
}
.text-link:hover {
  border-color: var(--wine);
  color: var(--wine);
}

/* ─── PRODUCT GRID ────────────────────────────────────── */
.collection-header {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: var(--sp-8) var(--page-x) 0;
}

.collection-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

.collection-header span {
  color: var(--smoke);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: var(--sp-7) var(--page-x) var(--section-y);
}

.product-grid-footer {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  padding-top: var(--sp-6);
}

.load-more-btn {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  min-height: 3rem;
  padding: 0 2.5rem;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.load-more-btn:hover {
  background: var(--linen);
  border-color: var(--smoke);
  transform: translateY(-1px);
}

/* Product cards */
.product-card {
  background: var(--porcelain);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition:
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1);
  /* removed: outline: 0 — was suppressing keyboard focus */
}

.product-card:hover,
.product-card:focus-visible {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  z-index: 2;
}

.product-card:focus-visible {
  outline: 2px solid var(--deep-gold);
  outline-offset: 2px;
}

.product-thumb {
  aspect-ratio: 3 / 4;
  background: var(--linen);
  overflow: hidden;
  position: relative;
}

.product-thumb img {
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.product-card:hover .product-thumb img,
.product-card:focus-within .product-thumb img {
  transform: scale(1.06);
}

.product-card-content {
  flex: 1;
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
}

.product-card p {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 var(--sp-2);
}

.product-card span {
  color: var(--smoke);
  display: block;
  font-size: 0.88rem;    /* explicit — was inheriting ~1rem unstyled */
  line-height: 1.5;
  margin-bottom: var(--sp-4);
}

.product-card strong {
  color: var(--ink);
  display: block;
  font-family: var(--sans);
  font-size: 1.1rem;      /* was completely unstyled — now visually clear */
  font-weight: 700;
  letter-spacing: 0.02em;
}

.product-buy {
  background: var(--wine);
  border: 1px solid var(--wine);
  color: #fff8ec;
  cursor: pointer;
  font-family: var(--sans); /* explicit — prevents serif inheritance from card p */
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  min-height: 3rem;
  padding: 0 var(--sp-5);
  text-align: center;
  text-transform: uppercase;
  transition: background 200ms ease, border-color 200ms ease;
  width: 100%;
}
.product-buy:hover,
.product-buy:focus-visible {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

/* ─── RITUAL ──────────────────────────────────────────── */
.ritual {
  background: var(--charcoal);
  color: #f5ead6;
  padding: var(--section-y) var(--page-x);
}

.ritual-inner {
  margin: 0 auto;
  max-width: 76rem;
}

.ritual h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 0;
  max-width: 18ch;
}

.ritual-steps {
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: var(--sp-9);
}

.ritual-steps > div {
  border-right: 1px solid var(--line-dark);
  padding: var(--sp-6) var(--sp-7) var(--sp-8) 0;
}

.ritual-steps > div:last-child {
  border-right: none;
}

.ritual-steps span {
  color: var(--gold-light);  /* was --gold: 3.8:1 FAIL → gold-light: 6.4:1 PASS */
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: var(--sp-5);
  text-transform: uppercase;
}

.ritual-steps p {
  color: #f5ead6;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 500;
  line-height: 1.06;
  margin: 0;
}

/* ─── DETAIL PAGE ─────────────────────────────────────── */
.detail-page {
  background: var(--porcelain);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.8fr);
}

.detail-gallery {
  background: var(--linen);
  height: 100vh;             /* was min-height — sticky fill requires fixed height */
  overflow: hidden;
  position: sticky;
  top: 0;
}

.detail-gallery img {
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transform: translateY(var(--shift, 0));
  transition: transform 120ms linear;
  width: 100%;
}

.detail-info {
  align-self: start;
  padding: var(--section-y) var(--sp-8) var(--section-y) var(--sp-7);
  position: static;
}

.detail-info .eyebrow {
  margin-bottom: var(--sp-3);
}

.detail-info h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 0 0 var(--sp-3);
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 var(--sp-5);
}

.detail-info .description {
  color: var(--smoke);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 var(--sp-6);
  max-width: 38ch;
}

.accords {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin: 0 0 var(--sp-5);
}

.accord {
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  min-height: 2.75rem;       /* 44px tap target */
  padding: 0 var(--sp-5);
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.accord:hover {
  background: var(--linen);
  border-color: rgba(14, 13, 11, 0.24);
}
.accord.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #f5ead6;
}

.note-copy {
  color: var(--smoke);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 var(--sp-7);
  min-height: 3.2rem;
}

.purchase-row {
  align-items: center;
  display: flex;
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}

.quantity {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-grid;
  grid-template-columns: 2.75rem 2.5rem 2.75rem; /* 44px buttons */
  min-height: 2.75rem;
  text-align: center;
}

.quantity button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.1rem;
  height: 100%;
  transition: background 180ms ease;
}
.quantity button:hover {
  background: var(--linen);
}

.add-button {
  flex: 1;
}

.detail-lines {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  padding: var(--sp-4) 0;
}

summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 0.88rem;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.04em;
  list-style: none;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 220ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  color: var(--smoke);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: var(--sp-4) 0 0;
}

/* ─── ATELIER ─────────────────────────────────────────── */
/* Fixed: was 3 direct children in 2-col grid — now 2 wrapper divs */
.atelier {
  align-items: center;
  background: linear-gradient(135deg, var(--wine) 0%, var(--burgundy) 55%, var(--charcoal) 100%);
  color: #f5ead6;
}

.atelier-left h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin: 0;
  max-width: 15ch;
}

.atelier-right {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
}

.atelier-right p {
  color: rgba(245, 234, 214, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.85;
  margin: 0;
  max-width: 38ch;
}

.atelier .button.primary {
  background: rgba(245, 234, 214, 0.1);
  border: 1px solid rgba(245, 234, 214, 0.4);
  color: #f5ead6;
}
.atelier .button.primary:hover {
  background: rgba(245, 234, 214, 0.2);
  border-color: rgba(245, 234, 214, 0.75);
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--line-dark);
  color: #f5ead6;
  padding: var(--sp-9) var(--page-x) var(--sp-8);
}

.footer-inner {
  margin: 0 auto;
  max-width: 88rem;
}

.footer-top {
  align-items: flex-start;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-8);
}

.footer-brand.logo-lockup {
  display: inline-flex;
}

.footer-nav {
  display: flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: var(--sp-7);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(245, 234, 214, 0.58);
  padding: var(--sp-2) 0;    /* larger tap zone */
  transition: color 180ms ease;
}
.footer-nav a:hover {
  color: #f5ead6;
}
.footer-nav { align-items: center; }
.footer-ig { display: inline-flex; }

.footer-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footer-legal,
.footer-tagline {
  color: rgba(245, 234, 214, 0.36);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.footer .logo-text span { color: var(--gold-light); }
.footer .logo-text small { color: rgba(232, 204, 136, 0.65); }

/* ─── TOAST ───────────────────────────────────────────── */
.toast {
  background: var(--ink);
  border-radius: 2px;
  bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
  color: #f5ead6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0;
  padding: var(--sp-4) var(--sp-5);
  pointer-events: none;
  position: fixed;
  right: 1.5rem;
  text-transform: uppercase;
  transform: translateY(0.75rem);
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 30;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 640ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE — 1200px ─────────────────────────────── */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ─── RESPONSIVE — 900px ──────────────────────────────── */
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  /* Mobile nav */
  .nav-links {
    background: var(--porcelain);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0;
    grid-column: 1 / -1;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 300ms ease, padding 300ms ease;
  }

  .nav-links.is-open {
    max-height: 22rem;
    padding: var(--sp-3) 0 var(--sp-4);
  }

  .nav-links a {
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.88rem;
    padding: var(--sp-5) 0;
  }

  .menu-button {
    display: inline-flex;
  }

  /* Hero */
  .hero {
    min-height: 46rem;
  }

  /* Mobile: image goes full-bleed again so all bottles are visible;
     a vertical gradient handles text legibility */
  .hero-image {
    left: 0;
    width: 100%;
    object-position: center 38%;
  }

  .hero-shade {
    /* Bottle tops stay visible up top; darkness ramps in from ~40% so the
       headline, copy, and buttons all sit on a legible base. */
    background: linear-gradient(180deg,
                rgba(5, 3, 2, 0.55) 0%,
                rgba(5, 3, 2, 0.20) 16%,
                rgba(5, 3, 2, 0.42) 38%,
                rgba(5, 3, 2, 0.78) 54%,
                rgba(5, 3, 2, 0.93) 100%);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 5rem); /* was 18vw — absurdly large on tablet */
    max-width: none;
  }

  /* Legibility insurance: hero text can fall over bright bottle imagery */
  .hero h1,
  .hero-copy {
    text-shadow: 0 1px 14px rgba(5, 3, 2, 0.55);
  }

  .hero-content {
    max-width: none; /* let copy span full width on tablet/mobile */
    padding-bottom: 7rem;
  }

  .scroll-cue {
    display: none; /* hidden on mobile — feature strip takes the bottom */
  }

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

  .hero-divider {
    max-width: 12rem;
  }

  /* Layouts → single column */
  .band,
  .ritual-steps {
    grid-template-columns: 1fr;
  }

  /* Intro section */
  .intro-inner {
    grid-template-columns: 1fr;
  }

  .intro-media {
    height: clamp(22rem, 65vw, 34rem);
    order: -1; /* image above text on mobile */
  }

  .intro-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-split {
    display: flex;
    flex-direction: column-reverse;
    padding: var(--section-y) var(--page-x);
  }

  .feature-media {
    height: clamp(18rem, 56vw, 28rem); /* shorter landscape crop on mobile */
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Detail page */
  .detail-page {
    display: flex;
    flex-direction: column;
  }

  .detail-gallery {
    min-height: 56vw;
    position: static;
  }

  .detail-info {
    padding: var(--sp-8) var(--page-x);
  }

  /* Ritual */
  .ritual-steps {
    grid-template-columns: 1fr;
  }

  .ritual-steps > div {
    border-bottom: 1px solid var(--line-dark);
    border-right: none;
    padding: var(--sp-6) 0;
  }

  .ritual-steps > div:last-child {
    border-bottom: none;
  }

  /* Atelier */
  .atelier {
    grid-template-columns: 1fr;
  }

  .atelier-right {
    margin-top: var(--sp-5);
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: var(--sp-7);
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: var(--sp-4) var(--sp-6);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--sp-3);
  }
}

/* ─── RESPONSIVE — 560px ──────────────────────────────── */
@media (max-width: 560px) {
  :root {
    --page-x: 1.25rem;
  }

  .icon-button {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.8rem); /* was 19vw — absurdly large on mobile */
  }

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

  .hero-feature {
    padding: var(--sp-3) var(--sp-4);
  }

  .hero-content {
    padding-bottom: 9rem; /* clear 2-row feature strip */
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    justify-content: center;
    width: 100%;
  }

  .product-grid {
    gap: var(--sp-6);
    grid-template-columns: 1fr;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .intro-strip-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .intro-strip-item:last-child {
    border-bottom: none;
  }

  .purchase-row {
    align-items: stretch;
    flex-direction: column;
  }

  .quantity {
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
  }

  .add-button {
    width: 100%;
  }

  .detail-info {
    padding: var(--sp-7) var(--page-x);
  }
}

/* ─── REDUCED MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-eyebrow,
  .hero h1,
  .hero-copy,
  .hero-actions,
  .scroll-cue {
    animation: none;
    opacity: 1;
  }
}
