/* ============================================================
   ORA INTERNATIONAL — Design tokens
   ============================================================ */
@import url('../fonts/fonts.css');

:root {
  --ivory: #FAF7F2;
  --pearl: #FDFCFA;
  --cream: #F1EBDF;
  --stone: #EAE3D5;
  --charcoal: #2E2822;
  --ink: #14110D;
  --gold-light: #EBDBB2;
  --gold: #CBA36C;
  --gold-deep: #93712F;
  --gold-gradient: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 48%, var(--gold-deep) 100%);
  --blush: #E9D3C4;
  --line: rgba(23, 19, 15, 0.12);
  --line-strong: rgba(23, 19, 15, 0.22);
  --on-dark: #F5F0E4;
  --on-dark-muted: rgba(245, 240, 228, 0.66);
  --text: #1E1913;
  --text-muted: rgba(30, 25, 19, 0.62);
  --surface: var(--ivory);
  --surface-raised: var(--pearl);

  --radius-sm: 2px;
  --radius-md: 6px;
  --shadow-soft: 0 30px 70px -30px rgba(23, 19, 15, 0.28);
  --shadow-tight: 0 10px 24px -14px rgba(23, 19, 15, 0.3);
  --shadow-gold: 0 18px 44px -18px rgba(147, 113, 47, 0.45);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1400px;
  --cursor-x: 50%;
  --cursor-y: 50%;

  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ivory: #17130F;
    --pearl: #1C1712;
    --cream: #201A15;
    --stone: #241E18;
    --charcoal: #EDE6D8;
    --ink: #F5F0E6;
    --line: rgba(243, 237, 226, 0.14);
    --line-strong: rgba(243, 237, 226, 0.26);
    --text: #EDE6D8;
    --text-muted: rgba(237, 230, 216, 0.64);
    --surface: #17130F;
    --surface-raised: #201A15;
  }
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
svg { display: block; }

body {
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

.icon { width: 1em; height: 1em; flex-shrink: 0; }

/* Fine film grain, fixed and non-interactive so it never repaints on scroll */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { .grain-overlay { opacity: 0.02; } }

/* ============================================================
   Preloader
   ============================================================ */
.preloader {
  position: fixed; inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.is-hiding { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-mark {
  font-family: var(--font-serif);
  color: var(--on-dark);
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  opacity: 0;
  animation: preloader-fade 0.6s var(--ease) 0.1s forwards;
}
.preloader-line {
  margin-top: 16px;
  width: 120px; height: 1px;
  background: rgba(245, 240, 228, 0.16);
  position: relative;
  overflow: hidden;
}
.preloader-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  animation: preloader-draw 1.1s var(--ease) 0.25s forwards;
}
@keyframes preloader-fade { to { opacity: 1; } }
@keyframes preloader-draw { to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .preloader { transition: none; }
  .preloader-mark { animation: none; opacity: 1; }
  .preloader-line::after { animation: none; transform: scaleX(1); }
}

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.display-1 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.01em;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
}

.display-2 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.display-3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.lede {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 46ch;
  line-height: 1.7;
}

.italic-safe { font-style: italic; line-height: 1.15; padding-bottom: 0.15em; display: inline-block; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.5s var(--ease), background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
  will-change: transform;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.4) 48%, transparent 66%);
  transform: translateX(-130%);
  transition: transform 0.75s var(--ease);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--gold-gradient);
  border-color: var(--gold-deep);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover::before { transform: translateX(130%); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-ghost-light {
  background: transparent;
  color: var(--on-dark);
  border: 1px solid rgba(243, 237, 226, 0.4);
}
.btn-ghost-light:hover { border-color: var(--on-dark); background: rgba(243, 237, 226, 0.08); }

.btn-block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap 0.4s var(--ease), opacity 0.3s var(--ease);
}
.text-link:hover { gap: 14px; }
.text-link .icon { width: 14px; height: 14px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.5s var(--ease), background-color 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(250, 247, 242, 0.86);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-tight);
}
@media (prefers-color-scheme: dark) {
  .site-header.is-scrolled { background: rgba(23, 19, 15, 0.82); }
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 3.4vw, 1.34rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.main-nav {
  display: none;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}
.main-nav a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 6px 0;
  color: var(--text);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-deep);
  transition: right 0.45s var(--ease);
}
.main-nav a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 20px);
}
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: background-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.icon-btn .icon { width: 19px; height: 19px; }
.icon-btn:hover { background: var(--line); transform: translateY(-1px); }
.icon-btn[data-active="true"] .icon { color: var(--gold-deep); }

@media (max-width: 640px) {
  .header-actions .hide-on-mobile { display: none; }
}

.bag-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 15px; height: 15px;
  padding: 0 3px;
  border-radius: 50%;
  background: var(--gold-deep);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

.search-panel {
  position: absolute;
  top: 100%; left: 0; right: 0;
  margin-top: 14px;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.search-panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.search-panel form { display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line-strong); padding-bottom: 10px; }
.search-panel input {
  flex: 1; border: none; background: transparent; font-size: 1rem; outline: none; color: var(--text);
}
.search-panel .icon { width: 18px; height: 18px; color: var(--text-muted); }

.nav-toggle {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
}
.nav-toggle .icon { width: 22px; height: 22px; }

@media (min-width: 1180px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  padding: 26px clamp(20px, 6vw, 64px) 40px;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-top .brand { color: var(--on-dark); }
.mobile-nav-close { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; }
.mobile-nav-close .icon { width: 22px; height: 22px; color: var(--on-dark); }
.mobile-nav-links { margin-top: 12vh; display: flex; flex-direction: column; gap: 6px; }
.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(243, 237, 226, 0.12);
  color: var(--on-dark);
}
.mobile-nav-foot {
  margin-top: auto;
  display: flex;
  gap: 22px;
  padding-top: 24px;
}
.mobile-nav-foot .icon-btn .icon { color: var(--on-dark); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 96px 0 64px;
  overflow: hidden;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(24px, 5vw, 60px);
  width: 100%;
}
.hero-copy { max-width: 620px; }
.hero-copy .display-1 { margin-top: 20px; }
.hero-copy .lede { margin-top: 26px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

/* Kinetic headline: each line masks and slides up into place on load */
.kinetic-line { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.kinetic-line > span {
  display: inline-block;
  transform: translateY(112%);
  opacity: 0;
  transition: transform 1.1s var(--ease), opacity 1.1s var(--ease);
}
.hero.is-loaded .kinetic-line > span { transform: translateY(0); opacity: 1; }
.kinetic-line:nth-of-type(1) > span { transition-delay: 0.1s; }
.kinetic-line:nth-of-type(2) > span { transition-delay: 0.26s; }

.hero-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.hero.is-loaded .hero-in { opacity: 1; transform: translateY(0); }
.hero-copy .lede.hero-in { transition-delay: 0.5s; }
.hero-ctas.hero-in { transition-delay: 0.66s; }
.hero-visual.hero-in { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .kinetic-line > span { transform: none; opacity: 1; transition: none; }
  .hero-in { opacity: 1; transform: none; transition: none; }
}

.hero-visual {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--stone);
}
.hero-visual img,
.hero-float img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Crossfade + slow Ken Burns zoom, orchestrated per-scene by JS toggling classes */
.kb-img {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.7s var(--ease), transform 5.5s linear;
}
.kb-img.kb-swap { transition: opacity 0.7s var(--ease); opacity: 0; }
.kb-img.kb-reset { transition: none !important; transform: scale(1) !important; }
#heroMainImg.kb-zoom { transform: scale(1.07); }
#heroFloatAImg.kb-zoom, #heroFloatBImg.kb-zoom { transform: scale(1.05); }

@media (prefers-reduced-motion: reduce) {
  .kb-img { transition: opacity 0.4s linear; transform: none !important; }
}

.hero-float {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--cream);
  will-change: transform;
}
.hero-float--a { width: 30%; aspect-ratio: 4/5; top: -8%; right: -9%; animation: float-a 11s ease-in-out infinite; }
.hero-float--b { width: 22%; aspect-ratio: 1/1; bottom: -6%; left: -7%; animation: float-b 13s ease-in-out infinite; }

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease), background-color 0.35s var(--ease), transform 0.3s var(--ease);
}
.hero-nav .icon { width: 15px; height: 15px; }
.hero-nav--prev { left: 14px; }
.hero-nav--next { right: 14px; }
.hero-visual:hover .hero-nav { opacity: 1; }
.hero-nav:hover { background: rgba(250, 247, 242, 0.85); }
.hero-nav:active { transform: translateY(-50%) scale(0.92); }

.hero-dots {
  position: absolute;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.hero-dots button {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(20, 17, 13, 0.28);
  transition: background-color 0.4s var(--ease), width 0.4s var(--ease);
}
.hero-dots button.is-active { background: var(--gold-deep); width: 18px; border-radius: 4px; }

@media (max-width: 900px) {
  .hero-nav { display: none; }
}

@keyframes float-a {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(18px); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-float--a, .hero-float--b { animation: none; }
}

.hero-frame-line {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(250, 247, 242, 0.35);
  border-radius: calc(var(--radius-md) - 2px);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero { padding-top: 120px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4/5; order: -1; }
  .hero-float { display: none; }
}

/* ============================================================
   Section scaffolding
   ============================================================ */
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-tight { padding: clamp(56px, 7vw, 88px) 0; }
.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .display-2 { margin-top: 14px; }
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.on-dark { background: var(--ink); color: var(--on-dark); }
.on-dark .lede { color: var(--on-dark-muted); }
.on-dark .eyebrow { color: var(--gold); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--stagger, 0) * 90ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; transition-delay: 0ms; }
}

/* Cursor-follow ambient glow, dark sections only */
.on-dark { position: relative; }
.on-dark::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(480px circle at var(--cursor-x) var(--cursor-y),
    rgba(203, 163, 108, 0.10), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}
.on-dark.is-glowing::before { opacity: 1; }
.on-dark > .wrap { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .on-dark::before { display: none; } }
@media (pointer: coarse) { .on-dark::before { display: none; } }

/* ============================================================
   Categories
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.category-card {
  position: relative;
  grid-column: span 1;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  isolation: isolate;
}
.category-card:nth-child(1) { grid-column: span 1; }
.category-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 1s var(--ease);
}
.category-card:hover img { transform: scale(1.1); }
.category-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,15,0) 40%, rgba(23,19,15,0.82) 100%);
  z-index: 1;
}
.category-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 26px 24px;
  color: var(--on-dark);
}
.category-index { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.2em; color: rgba(243,237,226,0.7); }
.category-body h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; margin-top: 8px; }
.category-body p { font-size: 0.86rem; color: rgba(243,237,226,0.75); margin-top: 8px; max-width: 26ch; }
.category-link {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.category-card:hover .category-link { opacity: 1; transform: translateY(0); }
.category-link .icon { width: 13px; height: 13px; }

@media (max-width: 980px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .category-grid { grid-template-columns: 1fr; }
  .category-card { aspect-ratio: 4/3; }
}

/* ============================================================
   Brands strip
   ============================================================ */
.brand-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.brand-cell {
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(26px, 4vw, 42px) 18px;
  color: var(--text-muted);
  filter: grayscale(1);
  opacity: 0.65;
  transition: opacity 0.5s var(--ease), filter 0.5s var(--ease), color 0.5s var(--ease);
}
.brand-cell svg { height: 30px; width: auto; max-width: 100%; }
@media (min-width: 640px) {
  .brand-cell svg { height: 38px; }
}
.brand-cell:hover { filter: grayscale(0); opacity: 1; color: var(--gold-deep); }

@media (max-width: 900px) {
  .brand-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .brand-row { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Product cards + grid
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.product-card { display: flex; flex-direction: column; }
.product-media {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  transition: box-shadow 0.5s var(--ease);
}
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.product-card:hover .product-media { box-shadow: var(--shadow-gold); }
.product-card:hover .product-media img { transform: scale(1.08); }

.product-wishlist {
  position: absolute; top: 14px; right: 14px;
  z-index: 3;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease);
}
.product-wishlist:hover { transform: scale(1.08); }
.product-wishlist .icon { width: 16px; height: 16px; color: var(--ink); }
.product-wishlist[data-active="true"] .icon { color: #A4593F; }

.product-actions {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  z-index: 3;
  display: flex; gap: 8px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.product-card:hover .product-actions,
.product-card:focus-within .product-actions { opacity: 1; transform: translateY(0); }
.product-actions .btn { flex: 1; padding: 12px 14px; font-size: 0.68rem; }
.product-actions .btn-icon-only { flex: 0 0 auto; width: 42px; padding: 0; }
.product-actions .btn-icon-only .icon { width: 16px; height: 16px; }

.product-info { padding-top: 18px; }
.product-brand { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }
.product-name { font-family: var(--font-serif); font-size: 1.28rem; font-weight: 500; margin-top: 6px; }
.product-benefit { font-size: 0.86rem; color: var(--text-muted); margin-top: 4px; }
.product-price { font-size: 0.92rem; font-weight: 700; margin-top: 10px; letter-spacing: 0.02em; }

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .product-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   Featured collection split
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
}
.split-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy .lede { margin-top: 20px; }
.split-copy .btn { margin-top: 34px; }

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

/* ============================================================
   ORA Edit carousel
   ============================================================ */
.carousel-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.carousel-arrows { display: flex; gap: 10px; }
.carousel-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.35s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.carousel-arrow .icon { width: 17px; height: 17px; }
.carousel-arrow:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.carousel-arrow:disabled { opacity: 0.32; pointer-events: none; }

.carousel-viewport {
  margin-top: 36px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
}
.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel-track {
  display: flex;
  gap: clamp(20px, 2.4vw, 32px);
  width: max-content;
  padding-bottom: 6px;
}
.carousel-track .product-card { width: min(300px, 74vw); scroll-snap-align: start; flex-shrink: 0; }

/* ============================================================
   Product spotlight slideshow
   ============================================================ */
.slideshow { margin-top: 40px; }
.slideshow-viewport {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--charcoal);
  max-width: 900px;
  margin: 0 auto;
}
.slideshow-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
  pointer-events: none;
}
.slideshow-slide.is-active { opacity: 1; pointer-events: auto; z-index: 2; }
.slideshow-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1);
  transition: transform 6.5s linear;
}
.slideshow-slide.is-active img { transform: scale(1.09); }
@media (prefers-reduced-motion: reduce) {
  .slideshow-slide img, .slideshow-slide.is-active img { transform: none; transition: none; }
}
.slideshow-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,15,0) 55%, rgba(23,19,15,0.75) 100%);
}
.slideshow-caption {
  position: absolute; left: 24px; bottom: 20px; right: 24px; z-index: 2;
  color: var(--on-dark);
}
.slideshow-caption .product-brand { color: var(--gold); }
.slideshow-caption .slideshow-name {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; margin-top: 6px;
}
.slideshow-caption .slideshow-price {
  font-size: 0.86rem; color: var(--on-dark-muted); margin-top: 4px;
}

.slideshow-arrow {
  position: absolute; top: 50%; z-index: 3;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(23, 19, 15, 0.4);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(243, 237, 226, 0.3);
  color: var(--on-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.slideshow-arrow .icon { width: 16px; height: 16px; }
.slideshow-arrow:hover { background: rgba(23, 19, 15, 0.7); border-color: rgba(243, 237, 226, 0.6); }
.slideshow-arrow--prev { left: 16px; }
.slideshow-arrow--next { right: 16px; }

.slideshow-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.slideshow-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(243, 237, 226, 0.28);
  transition: background-color 0.4s var(--ease), width 0.4s var(--ease);
}
.slideshow-dots button.is-active { background: var(--gold); width: 22px; border-radius: 4px; }

@media (max-width: 700px) {
  .slideshow-viewport { aspect-ratio: 1/1; }
}

/* ============================================================
   Trust section
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.trust-item { display: flex; gap: 16px; }
.trust-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(243,237,226,0.28);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon .icon { width: 19px; height: 19px; color: var(--gold); }
.trust-item h4 { font-family: var(--font-serif); font-size: 1.18rem; font-weight: 500; }
.trust-item p { font-size: 0.85rem; color: var(--on-dark-muted); margin-top: 6px; max-width: 30ch; }

@media (max-width: 860px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Journal
   ============================================================ */
.journal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}
.journal-card { display: flex; flex-direction: column; }
.journal-card--feature { grid-row: span 2; }
.journal-media { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.journal-card--feature .journal-media { aspect-ratio: 4/5; }
.journal-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.journal-card:hover .journal-media img { transform: scale(1.06); }
.journal-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-top: 18px; }
.journal-title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; margin-top: 8px; line-height: 1.3; }
.journal-card--feature .journal-title { font-size: 1.7rem; }
.journal-card--wide { grid-column: span 2; }
.journal-card--wide .journal-media { aspect-ratio: 21/9; }

@media (max-width: 980px) {
  .journal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .journal-card--feature { grid-column: span 2; grid-row: auto; }
  .journal-card--feature .journal-media { aspect-ratio: 16/9; }
}
@media (max-width: 620px) {
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card--feature, .journal-card--wide { grid-column: auto; }
  .journal-card--wide .journal-media { aspect-ratio: 4/3; }
}

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter .lede { margin: 18px auto 0; }
.newsletter-form {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 14px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text);
  padding: 6px 4px;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-status {
  margin-top: 14px;
  font-size: 0.82rem;
  min-height: 1.4em;
}
.newsletter-status[data-state="error"] { color: #A4432B; }
.newsletter-status[data-state="success"] { color: #4E6B4A; }

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; align-items: stretch; border: none; }
  .newsletter-form input { border-bottom: 1px solid var(--line-strong); padding-bottom: 14px; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--on-dark); padding-top: clamp(64px, 8vw, 96px); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(243, 237, 226, 0.12);
}
.footer-brand .brand { color: var(--on-dark); }
.footer-brand p { margin-top: 18px; color: var(--on-dark-muted); font-size: 0.9rem; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; margin-top: 26px; }
.footer-social .icon-btn { border: 1px solid rgba(243,237,226,0.2); }
.footer-social .icon-btn svg { color: var(--on-dark); }
.footer-social .icon-btn svg path { fill: currentColor; }
.footer-social .icon-btn:hover { background: rgba(243,237,226,0.1); }

.footer-col h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-muted); }
.footer-col ul { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: var(--on-dark); opacity: 0.86; transition: opacity 0.3s var(--ease); }
.footer-col a:hover { opacity: 1; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  padding: 26px 0 34px;
  font-size: 0.78rem;
  color: var(--on-dark-muted);
}
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 1rem; color: var(--on-dark); line-height: 1.2; padding-bottom: 0.2em; }

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

/* ============================================================
   Quick View modal
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(23, 19, 15, 0.5);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal-card {
  background: var(--surface-raised);
  border-radius: var(--radius-md);
  max-width: 780px; width: 100%;
  max-height: 88vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.45s var(--ease);
  box-shadow: var(--shadow-soft);
}
.modal-overlay.is-open .modal-card { transform: translateY(0) scale(1); }
.modal-media { aspect-ratio: 1/1; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: clamp(24px, 4vw, 44px); position: relative; }
.modal-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.modal-close .icon { width: 18px; height: 18px; }
.modal-body .product-benefit { margin-top: 12px; }
.modal-body .product-price { font-size: 1.2rem; margin-top: 18px; }
.modal-body .btn { margin-top: 28px; }

@media (max-width: 640px) {
  .modal-card { grid-template-columns: 1fr; }
}

/* ============================================================
   Utility
   ============================================================ */
.center-head { text-align: center; margin-left: auto; margin-right: auto; }
.placeholder-hero { min-height: 56vh; display: flex; align-items: center; padding-top: 140px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
