/* =====================================================================
   SAJAIRA — design system
   Display serif (Instrument Serif) + geometric sans (Figtree)
   ===================================================================== */
:root {
  --white: #ffffff;
  --cream: #f4f2ed;
  --sand: #e7e0d3;
  --panel: #f5f5f3;
  --ink: #1c1b1a;
  --ink-2: #4c4946;
  --muted: #8a8580;
  --line: rgba(28, 27, 26, 0.12);
  --maroon: #5c2b2b;
  --maroon-2: #3f1d1d;
  --olive: #434a23;
  --gold: #b8923a;

  --gutter: 24px;
  --radius: 4px;
  --nav-h: 60px;
  --font-display: "Instrument Serif", "Times New Roman", serif;
  --font-sans: "Figtree", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--font-sans); font-size: 14px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body.locked { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
figure { margin: 0; }

.gutter { padding-left: var(--gutter); padding-right: var(--gutter); }
.eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); font-weight: 500; }
.eyebrow.light { color: rgba(255,255,255,.8); }
.center { text-align: center; }
.title-xl { font-size: clamp(2.6rem, 5.5vw, 5.5rem); }
.title-lg { font-size: clamp(2rem, 3.2vw, 2.8rem); }
.title-md { font-size: clamp(1.5rem, 2.2vw, 1.85rem); }
.lede { font-family: var(--font-display); font-size: clamp(1.15rem, 1.5vw, 1.35rem); line-height: 1.4; color: var(--ink-2); }

/* Links & buttons (HEAD: underlined text links; OKA: arrow links + solid pills) */
.link-u {
  display: inline-block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  padding-bottom: 3px; border-bottom: 1px solid currentColor; transition: opacity .2s;
}
.link-u:hover { opacity: .6; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
}
.link-arrow svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 26px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--ink); border-radius: var(--radius); transition: background .25s, color .25s, border-color .25s;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--maroon); border-color: var(--maroon); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.pill {
  display: inline-block; font-size: 11px; letter-spacing: 0.04em; padding: 5px 10px; border-radius: 3px;
  background: var(--sand); color: var(--ink);
}
.pill.dark { background: var(--olive); color: #fff; text-transform: uppercase; letter-spacing: .1em; font-size: 10px; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 1000; background: var(--cream); display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader .word { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); letter-spacing: 0.02em; overflow: hidden; }
.preloader .word span { display: inline-block; transform: translateY(110%); animation: rise .9s var(--ease) forwards; }
.preloader .bar { position: absolute; left: 0; bottom: 0; height: 2px; background: var(--ink); width: 0; animation: load 1.4s var(--ease) forwards; }
@keyframes rise { to { transform: none; } }
@keyframes load { to { width: 100%; } }

/* ---------- Header (HEAD-style floating card) ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 0 var(--gutter); pointer-events: none; }
.site-header > * { pointer-events: auto; }
.announce {
  background: var(--maroon); color: #fff; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  height: 32px; display: flex; align-items: center; justify-content: center; position: relative; margin-top: 8px; border-radius: var(--radius);
  transition: height .3s var(--ease), margin .3s var(--ease), opacity .3s;
}
.announce strong { font-weight: 600; margin-right: 6px; }
.announce .msg { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 0 40px; }
.announce .close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: #fff; opacity: .7; }
.announce .close:hover { opacity: 1; }
.announce.hidden { height: 0; margin-top: 0; opacity: 0; overflow: hidden; }
.nav-card {
  margin-top: 8px; background: #fff; border-radius: var(--radius); height: var(--nav-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 20px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04); transition: box-shadow .3s;
}
.scrolled .nav-card { box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.nav-links { display: flex; gap: 26px; }
.nav-links a, .nav-utils a, .nav-utils button {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; position: relative; padding: 4px 0;
}
.nav-links a::after, .nav-utils a.text::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after, .nav-utils a.text:hover::after { transform: scaleX(1); }
.brand { font-family: var(--font-display); font-size: 30px; letter-spacing: 0.02em; line-height: 1; }
.nav-utils { display: flex; gap: 22px; justify-content: flex-end; align-items: center; }
.nav-utils .icon { width: 18px; height: 18px; display: block; }
.nav-utils .icon-btn { display: inline-flex; align-items: center; gap: 6px; }
.nav-utils .icon-btn:hover { opacity: .6; }
.burger { display: none; width: 22px; height: 16px; position: relative; }
.burger span { position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink); transition: transform .3s, opacity .3s; }
.burger span:nth-child(1) { top: 0; } .burger span:nth-child(2) { top: 7px; } .burger span:nth-child(3) { top: 14px; }

/* Drawer (mobile) */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer .scrim { position: absolute; inset: 0; background: rgba(0,0,0,.4); opacity: 0; transition: opacity .3s; }
.drawer.open .scrim { opacity: 1; }
.drawer .panel {
  position: absolute; top: 0; bottom: 0; left: 0; width: min(380px, 88vw); background: #fff; padding: 28px 28px 40px;
  transform: translateX(-100%); transition: transform .4s var(--ease); display: flex; flex-direction: column; gap: 28px;
}
.drawer.open .panel { transform: none; }
.drawer .panel .brand { font-size: 34px; }
.drawer nav a { display: block; font-family: var(--font-display); font-size: 2rem; padding: 8px 0; border-bottom: 1px solid var(--line); }
.drawer .small a { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; padding: 8px 0; }
.drawer .close-x { position: absolute; top: 28px; right: 24px; width: 24px; height: 24px; }

/* ---------- Hero slider ---------- */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; background: var(--ink); color: #fff; }
.hero .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease); }
.hero .slide.active { opacity: 1; z-index: 1; }
.hero .slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 7s linear; }
.hero .slide.active img { transform: scale(1); }
.hero .slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.15) 50%, rgba(0,0,0,.45)); }
.hero .slide-content {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 var(--gutter);
}
.hero .slide-content > * { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.hero .slide.active .slide-content > * { opacity: 1; transform: none; }
.hero .slide.active .slide-content > :nth-child(2) { transition-delay: .15s; }
.hero .slide.active .slide-content > :nth-child(3) { transition-delay: .3s; }
.hero .slide.active .slide-content > :nth-child(4) { transition-delay: .45s; }
.hero h1 { font-size: clamp(3.4rem, 9vw, 8.5rem); letter-spacing: -0.015em; }
.hero .sub { font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.5rem); margin: 18px 0 30px; max-width: 34rem; color: rgba(255,255,255,.9); }
.hero .link-u { color: #fff; }
.hero-ui { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 28px; z-index: 3; display: flex; justify-content: space-between; align-items: center; }
.hero-count { font-size: 11px; letter-spacing: .2em; }
.hero-dots { display: flex; gap: 10px; }
.hero-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.45); transition: background .3s, transform .3s; }
.hero-dots button.active { background: #fff; transform: scale(1.25); }
.hero-arrows { display: flex; gap: 8px; }
.arrow-btn {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); color: #fff;
  transition: background .25s, color .25s;
}
.arrow-btn svg { width: 14px; height: 14px; }
.arrow-btn:hover { background: #fff; color: var(--ink); }
.hero .scroll-hint { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 3; width: 1px; height: 44px; background: rgba(255,255,255,.35); overflow: hidden; }
.hero .scroll-hint::after { content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%; background: #fff; animation: drip 2s var(--ease) infinite; }
@keyframes drip { 0% { top: -100%; } 60%, 100% { top: 100%; } }

/* ---------- Section rhythm ---------- */
section.block { padding: 96px var(--gutter); }
section.block.tight { padding-top: 64px; padding-bottom: 64px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 36px; }
.section-head .title-lg { margin-top: 8px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; } .reveal[data-delay="2"] { transition-delay: .24s; } .reveal[data-delay="3"] { transition-delay: .36s; }

/* ---------- Category tiles (HEAD "Discover a new approach") ---------- */
.cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.cat { position: relative; display: block; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3 / 4; background: var(--cream); }
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cat:hover img { transform: scale(1.05); }
.cat span {
  position: absolute; left: 12px; bottom: 12px; background: #fff; padding: 7px 12px; border-radius: 3px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
}

/* ---------- Featured split (HEAD gray panel + image) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-panel { background: var(--panel); border-radius: var(--radius); padding: 48px 40px; display: flex; flex-direction: column; text-align: center; min-height: 640px; }
.feature-panel .top { flex: 1; }
.feature-panel h2 { font-size: clamp(1.8rem, 2.6vw, 2.4rem); margin: 10px 0 12px; }
.feature-panel .desc { max-width: 30rem; margin: 0 auto; color: var(--ink-2); }
.feature-panel .product-line { display: flex; gap: 18px; justify-content: center; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; margin-bottom: 14px; }
.feature-panel .dots { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.feature-panel .dots button { width: 7px; height: 7px; border-radius: 50%; background: rgba(28,27,26,.2); transition: background .3s; }
.feature-panel .dots button.active { background: var(--ink); }
.feature-media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 640px; background: var(--cream); }
.feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s var(--ease); }
.feature-media img.active { opacity: 1; }
.feature-panel [data-f] { display: none; }
.feature-panel [data-f].active { display: block; }
.feature-panel .fade { animation: fade .6s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Product carousel (OKA/HEAD) ---------- */
.carousel-wrap { position: relative; }
.carousel {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 12px) / 4); gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel > * { scroll-snap-align: start; }
.arrows { display: flex; gap: 8px; }
.arrows .arrow-btn { border-color: var(--line); color: var(--ink); }
.arrows .arrow-btn:hover { background: var(--ink); color: #fff; }
.product { display: block; }
.product-media { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--radius); background: var(--cream); }
.product-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .6s var(--ease), transform .8s var(--ease); }
.product-media img.alt { opacity: 0; }
.product-media:hover img.alt { opacity: 1; }
.product-media:hover img.main { transform: scale(1.04); }
.product-media .tag { position: absolute; top: 12px; left: 12px; z-index: 2; }
.product-media .wish { position: absolute; top: 10px; right: 10px; z-index: 2; width: 30px; height: 30px; display: grid; place-items: center; color: var(--ink); }
.product-media .wish svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: fill .2s; }
.product-media .wish.on svg { fill: var(--maroon); stroke: var(--maroon); }
.product-media .quick, .product-media .dm {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2; background: #fff; text-align: center; padding: 11px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; border-radius: 3px;
  transform: translateY(120%); opacity: 0; transition: transform .35s var(--ease), opacity .35s;
}
.product-media:hover .quick { transform: none; opacity: 1; }
.product h3 { font-size: 1.15rem; margin: 14px 0 4px; }
.product .price { font-size: 13px; color: var(--ink-2); }
.product .price s { color: var(--muted); margin-right: 6px; }
.swatches { display: flex; align-items: center; gap: 6px; margin-top: 10px; }
.swatches i { width: 12px; height: 12px; border-radius: 50%; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); }
.swatches span { font-size: 11px; color: var(--muted); margin-left: 4px; }

/* ---------- Occasions (OKA "Shop by Room") ---------- */
.occasions { padding: 96px var(--gutter); text-align: center; position: relative; overflow: hidden; }
.occ-stage { position: relative; margin: 32px 0 40px; }
.occ-list li a {
  display: block; font-family: var(--font-display); font-size: clamp(3rem, 9vw, 8rem); line-height: .95; text-transform: uppercase;
  color: rgba(28,27,26,.28); transition: color .35s var(--ease); letter-spacing: -0.01em; padding: 4px 0;
}
.occ-list li.active a, .occ-list li a:hover { color: var(--ink); }
.occ-img { position: absolute; top: 50%; width: clamp(140px, 19vw, 300px); aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--radius); transform: translateY(-50%); pointer-events: none; }
.occ-img.left { left: 0; margin-top: -60px; } .occ-img.right { right: 0; margin-top: 60px; }
.occ-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .7s var(--ease), transform .7s var(--ease); transform: scale(1.04); }
.occ-img img.active { opacity: 1; transform: none; }

/* ---------- Video hero (OKA) ---------- */
.video-hero { position: relative; height: 82vh; min-height: 560px; overflow: hidden; background: var(--ink); color: #fff; }
.video-hero video { width: 100%; height: 100%; object-fit: cover; }
.video-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.35); }
.video-hero .overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 var(--gutter); }
.video-hero h2 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
.video-hero .lede { color: rgba(255,255,255,.85); margin: 14px 0 28px; }
.video-hero .play { margin-top: 22px; display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.video-hero .play i { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,.7); display: grid; place-items: center; }
.video-hero .play svg { width: 9px; height: 9px; fill: #fff; margin-left: 2px; }
.modal { position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.9); display: grid; place-items: center; padding: var(--gutter); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.modal.open { opacity: 1; visibility: visible; }
.modal video { max-width: 100%; max-height: 88vh; width: auto; height: 88vh; border-radius: var(--radius); background: #000; }
.modal.portrait video { aspect-ratio: 9 / 16; }
.modal .close-x { position: absolute; top: 24px; right: 24px; width: 28px; height: 28px; color: #fff; }

/* ---------- Reels (portrait video row) ---------- */
.reels-sec { background: var(--ink); color: #fff; padding: 80px 0 80px var(--gutter); overflow: hidden; }
.reels-sec .section-head { padding-right: var(--gutter); }
.reels-sec .eyebrow { color: rgba(255,255,255,.6); }
.reels-sec .arrows .arrow-btn { border-color: rgba(255,255,255,.35); color: #fff; }
.reels-sec .arrows .arrow-btn:hover { background: #fff; color: var(--ink); }
.reels { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(220px, 19vw, 300px); gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-right: var(--gutter); }
.reels::-webkit-scrollbar { display: none; }
.reel { position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden; background: #111; scroll-snap-align: start; cursor: pointer; }
.reel video, .reel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel video { opacity: 0; transition: opacity .5s; }
.reel.playing video { opacity: 1; }
.reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent 45%); }
.reel .cap { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; font-size: 12px; letter-spacing: .04em; }
.reel .cap small { display: block; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; opacity: .7; margin-bottom: 4px; }
.reel .pl { position: absolute; top: 12px; right: 12px; z-index: 2; width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); display: grid; place-items: center; }
.reel .pl svg { width: 9px; height: 9px; fill: #fff; margin-left: 2px; }

/* ---------- Testimonial ---------- */
.testimonial { display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px; }
.testimonial .panel { background: var(--cream); border-radius: var(--radius); padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.testimonial blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.2; }
.testimonial cite { display: block; margin-top: 22px; font-style: normal; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.testimonial .stars { color: var(--gold); letter-spacing: .2em; margin-bottom: 18px; font-size: 14px; }
.testimonial figure { border-radius: var(--radius); overflow: hidden; background: var(--panel); aspect-ratio: 4 / 4.7; }
.testimonial figure img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ---------- Reviews carousel ---------- */
.reviews { grid-auto-columns: calc((100% - 4 * 12px) / 5); }
.review { display: block; }
.review figure { aspect-ratio: 9 / 16; overflow: hidden; border-radius: var(--radius); background: var(--cream); }
.review img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.review:hover img { transform: scale(1.03); }
.review p { margin-top: 12px; font-family: var(--font-display); font-size: 1.1rem; line-height: 1.3; }
.review .stars { color: var(--gold); font-size: 12px; letter-spacing: .15em; margin-top: 6px; }
.review small { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ---------- Payment (about) ---------- */
.payment { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.payment .panel { background: var(--panel); border-radius: var(--radius); padding: 48px 40px; }
.payment .panel h2 { font-size: clamp(2rem, 3vw, 2.6rem); margin: 10px 0 14px; }
.payment .panel > p { color: var(--ink-2); max-width: 30rem; }
.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.pay-method { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.pay-method strong { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.pay-method span { font-size: 15px; }
.pay-steps { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.pay-steps li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; color: var(--ink-2); }
.pay-steps li b { font-family: var(--font-display); font-size: 1.3rem; color: var(--maroon); line-height: 1.1; }
.qr-card { background: var(--maroon); color: #fff; border-radius: var(--radius); padding: 48px 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.qr-card img { width: min(280px, 70%); border-radius: 6px; background: #fff; padding: 12px; }
.qr-card h3 { font-size: 1.9rem; margin: 26px 0 6px; }
.qr-card p { color: rgba(255,255,255,.75); max-width: 24rem; }
.qr-card .tag:hover { background: rgba(255,255,255,.12); }
.qr-card .tag { margin-top: 18px; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.4); padding: 6px 10px; border-radius: 100px; }

/* ---------- Policy page ---------- */
.policy-hero { padding: 150px var(--gutter) 40px; text-align: center; }
.policy-hero h1 { font-size: clamp(3rem, 6vw, 5rem); margin-top: 10px; }
.policy-hero p { color: var(--ink-2); max-width: 36rem; margin: 14px auto 0; font-size: 15px; }
.policy-wrap { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.policy-nav { position: sticky; top: 130px; display: grid; gap: 4px; }
.policy-nav a { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.policy-nav a:hover { color: var(--ink); }
.policy-body { max-width: 720px; }
.policy-body section { padding: 40px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 130px; }
.policy-body h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin-bottom: 18px; }
.policy-body h3 { font-family: var(--font-sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin: 22px 0 8px; }
.policy-body p, .policy-body li { color: var(--ink-2); font-size: 15px; line-height: 1.65; }
.policy-body p + p { margin-top: 10px; }
.policy-body a { border-bottom: 1px solid var(--ink); color: var(--ink); }
.footer-brand p a:hover { text-decoration: underline; text-underline-offset: 3px; }
.policy-body ul { list-style: disc; padding-left: 20px; margin: 8px 0; }
.policy-body li { margin-bottom: 6px; }
.callout { background: var(--cream); border-left: 3px solid var(--maroon); padding: 18px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 16px 0; }
.callout strong { color: var(--ink); }
.policy-body .updated { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Collection pages ---------- */
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.chips button { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; padding: 10px 16px; border: 1px solid var(--line); border-radius: 100px; transition: background .2s, color .2s, border-color .2s; }
.chips button:hover { border-color: var(--ink); }
.chips button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 12px; row-gap: 36px; }
.pgrid .product.hide { display: none; }
.pgrid .product.wide { grid-column: span 2; }
.pgrid .product.wide .product-media { aspect-ratio: auto; height: 100%; min-height: 100%; }
.collection-hero { position: relative; height: 70vh; min-height: 480px; overflow: hidden; background: var(--ink); color: #fff; display: grid; align-items: end; }
.collection-hero img, .collection-hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.collection-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.1) 60%); }
.collection-hero .inner { position: relative; z-index: 2; padding: 0 var(--gutter) 48px; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.collection-hero h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
.collection-hero .sub { font-family: var(--font-display); font-size: clamp(1.1rem, 1.6vw, 1.4rem); margin-top: 10px; color: rgba(255,255,255,.85); max-width: 32rem; }
.collection-hero .count { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; white-space: nowrap; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.split .panel { background: var(--panel); border-radius: var(--radius); padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.split .panel h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); margin: 10px 0 16px; }
.split .panel p { color: var(--ink-2); max-width: 30rem; margin-bottom: 24px; font-size: 15px; }
.split .panel .btn, .split .panel .play { align-self: flex-start; }
.split figure { border-radius: var(--radius); overflow: hidden; background: var(--cream); min-height: 520px; position: relative; }
.split figure img, .split figure video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split.flip .panel { order: 2; }
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.perk { background: var(--cream); border-radius: var(--radius); padding: 32px; }
.perk strong { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; margin-bottom: 6px; }
.perk span { color: var(--ink-2); font-size: 13px; }

/* ---------- Campaign (HEAD image-with-text) ---------- */
.campaign-media { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; }
.campaign-media figure { overflow: hidden; border-radius: var(--radius); background: var(--cream); }
.campaign-media figure:first-child { aspect-ratio: 16 / 10; }
.campaign-media figure:last-child { aspect-ratio: auto; }
.campaign-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.campaign-media figure:hover img { transform: scale(1.03); }
.campaign-text { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; margin-top: 28px; }
.campaign-text h2 { font-size: 15px; letter-spacing: .16em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 500; margin: 14px 0 10px; }
.campaign-text p { max-width: 36rem; color: var(--ink-2); }

/* ---------- Journal (HEAD "Journey" card) ---------- */
.journal { background: var(--panel); border-radius: var(--radius); padding: 40px 28px 20px; }
.journal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.journal-head h2 { font-size: 15px; letter-spacing: .16em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 500; }
.tabs { display: flex; gap: 26px; }
.tabs button { font-size: 12px; letter-spacing: .04em; padding: 4px 0; border-bottom: 1px solid transparent; color: var(--ink-2); }
.tabs button.active { color: var(--ink); border-bottom-color: var(--ink); }
.journal-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; padding: 28px 0; border-top: 1px solid var(--line); }
.journal-row.hide { display: none; }
.journal-row article h3 { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 500; margin: 14px 0 10px; }
.journal-row article p { color: var(--ink-2); margin-bottom: 14px; }
.journal-row figure { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); }
.journal-row figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.journal-row figure:hover img { transform: scale(1.04); }

/* ---------- Marquee (OKA "Back in stock") ---------- */
.marquee-sec { position: relative; padding: 40px 0; overflow: hidden; }
.marquee { white-space: nowrap; overflow: hidden; }
.marquee-track { display: inline-flex; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: clamp(5rem, 15vw, 14rem); line-height: 1; text-transform: uppercase; padding-right: .3em; letter-spacing: -0.01em; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-product { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: clamp(180px, 22vw, 320px); aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--radius); box-shadow: 0 30px 60px rgba(0,0,0,.15); }
.marquee-product img { width: 100%; height: 100%; object-fit: cover; }
.marquee-caption { text-align: center; margin-top: 28px; }

/* ---------- Story (OKA "A Real Page-Turner") ---------- */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.story h2 { font-size: clamp(2rem, 3.4vw, 3rem); margin-bottom: 20px; }
.story p { color: var(--ink-2); max-width: 32rem; margin-bottom: 14px; font-size: 15px; }
.story figure { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; }
.story figure img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); transition: filter .8s var(--ease), transform 1s var(--ease); }
.story figure:hover img { filter: grayscale(0); transform: scale(1.02); }

/* ---------- Instagram ---------- */
.ig-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.ig-head h2 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.ig-grid a { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 3px; display: block; background: var(--cream); }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.ig-grid a::after { content: ""; position: absolute; inset: 0; background: rgba(92,43,43,0); transition: background .3s; }
.ig-grid a:hover img { transform: scale(1.06); }
.ig-grid a:hover::after { background: rgba(92,43,43,.35); }
.ig-grid svg { position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; transform: translate(-50%,-50%); color: #fff; opacity: 0; transition: opacity .3s; z-index: 2; }
.ig-grid a:hover svg { opacity: 1; }

/* ---------- Stay connected (OKA) ---------- */
.connect { position: relative; padding: 120px var(--gutter); text-align: center; color: #fff; overflow: hidden; }
.connect img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.connect::after { content: ""; position: absolute; inset: 0; background: rgba(92,43,43,.78); }
.connect .inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.connect h2 { font-size: clamp(2.8rem, 7vw, 6rem); text-transform: uppercase; letter-spacing: -0.01em; }
.connect p { font-family: var(--font-display); font-size: 1.15rem; margin: 14px auto 30px; max-width: 30rem; color: rgba(255,255,255,.85); }
.connect form { display: flex; max-width: 460px; margin: 0 auto; }
.connect input { flex: 1; min-width: 0; height: 48px; padding: 0 16px; border: 0; border-radius: var(--radius) 0 0 var(--radius); font: inherit; background: #fff; color: var(--ink); }
.connect input:focus { outline: none; }
.connect button { height: 48px; padding: 0 22px; background: var(--maroon-2); color: #fff; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; border-radius: 0 var(--radius) var(--radius) 0; transition: background .25s; }
.connect button:hover { background: var(--ink); }
.connect-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.connect-actions .btn { min-height: 48px; padding: 0 28px; }
.connect-actions .btn svg { width: 16px; height: 16px; }
.connect .note { font-family: var(--font-sans); font-size: 11px; color: rgba(255,255,255,.6); margin: 14px 0 0; }

/* ---------- Footer (OKA columns + HEAD card) ---------- */
.site-footer { padding: 0 var(--gutter) var(--gutter); }
.footer-card { background: var(--panel); border-radius: var(--radius); padding: 56px 40px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer-grid h4 { font-size: 1.25rem; margin-bottom: 16px; }
.footer-grid li { margin-bottom: 9px; font-size: 13px; }
.footer-grid li a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-brand .brand { font-size: 38px; display: block; margin-bottom: 14px; }
.footer-brand p { color: var(--ink-2); max-width: 22rem; margin-bottom: 18px; font-size: 13px; }
.socials { display: flex; gap: 14px; }
.socials a { width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: background .25s, color .25s; }
.socials a:hover { background: var(--ink); color: #fff; }
.socials svg { width: 14px; height: 14px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 22px; font-size: 12px; color: var(--ink-2); }
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .legal a:hover { text-decoration: underline; text-underline-offset: 3px; }
.pay { display: flex; gap: 6px; }
.pay span { font-size: 9px; font-weight: 700; letter-spacing: .06em; padding: 4px 7px; border: 1px solid var(--line); border-radius: 3px; background: #fff; color: var(--ink-2); }

/* ---------- Back to top (OKA) ---------- */
.to-top {
  position: fixed; right: var(--gutter); bottom: 24px; z-index: 90; background: #fff; border: 1px solid var(--line);
  padding: 12px 16px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; display: inline-flex; gap: 10px; align-items: center;
  border-radius: var(--radius); opacity: 0; transform: translateY(12px); transition: opacity .3s, transform .3s; pointer-events: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top svg { width: 12px; height: 12px; }

/* ---------- ABOUT PAGE ---------- */
.page-hero { position: relative; height: 78vh; min-height: 520px; overflow: hidden; background: var(--ink); color: #fff; display: grid; place-items: center; text-align: center; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.page-hero .inner { position: relative; z-index: 2; padding: 0 var(--gutter); }
.page-hero h1 { font-size: clamp(3.4rem, 9vw, 8rem); }
.page-hero .sub { font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.5rem); margin-top: 16px; color: rgba(255,255,255,.9); }
.intro { max-width: 760px; margin: 0 auto; text-align: center; }
.intro p { font-family: var(--font-display); font-size: clamp(1.4rem, 2.4vw, 2.1rem); line-height: 1.35; color: var(--ink); }
.intro p::first-letter { font-size: 1.6em; line-height: 1; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 32px 20px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 400; line-height: 1; }
.stat span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 8px; }
.story.flip { direction: rtl; } .story.flip > * { direction: ltr; }
.story figure.color img { filter: none; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.value { background: var(--panel); border-radius: var(--radius); padding: 40px 32px; min-height: 300px; display: flex; flex-direction: column; }
.value .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--maroon); line-height: 1; }
.value h3 { font-size: 1.6rem; margin: auto 0 10px; }
.value p { color: var(--ink-2); }
.quote { background: var(--maroon); color: #fff; padding: 110px var(--gutter); text-align: center; }
.quote blockquote { margin: 0 auto; max-width: 900px; font-family: var(--font-display); font-size: clamp(1.8rem, 3.6vw, 3.2rem); line-height: 1.25; }
.quote cite { display: block; margin-top: 26px; font-style: normal; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; border-top: 1px solid var(--ink); padding-top: 24px; }
.timeline .year { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; margin-bottom: 12px; }
.timeline h3 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-sans); font-weight: 500; margin-bottom: 8px; }
.timeline p { color: var(--ink-2); }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.member figure { aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--radius); }
.member img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.member:hover img { transform: scale(1.04); }
.member h3 { font-size: 1.3rem; margin: 14px 0 2px; }
.member span { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-panel { background: var(--panel); border-radius: var(--radius); padding: 48px 40px; display: flex; flex-direction: column; }
.contact-panel h2 { font-size: clamp(2rem, 3vw, 2.6rem); margin: 10px 0 16px; }
.contact-panel > p { color: var(--ink-2); max-width: 28rem; }
.contact-panel dl { display: grid; grid-template-columns: max-content 1fr; gap: 12px 28px; margin: auto 0 0; padding-top: 36px; }
.contact-panel dt { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); padding-top: 2px; }
.contact-panel dd { margin: 0; }
.contact-panel dd a { border-bottom: 1px solid var(--ink); }
.contact-media { overflow: hidden; border-radius: var(--radius); min-height: 520px; position: relative; }
.contact-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .cats { grid-template-columns: repeat(3, 1fr); }
  .carousel { grid-auto-columns: calc((100% - 2 * 12px) / 3); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .pgrid { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-auto-columns: calc((100% - 2 * 12px) / 3); }
  .policy-wrap { grid-template-columns: 1fr; gap: 24px; }
  .policy-nav { position: static; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  :root { --gutter: 14px; --nav-h: 56px; }
  .nav-links, .nav-utils .text, .nav-utils .hide-m { display: none; }
  .burger { display: block; }
  .nav-card { grid-template-columns: auto 1fr auto; padding: 0 16px; }
  .brand { font-size: 26px; }
  .nav-card .brand { text-align: center; }
  .announce { font-size: 10px; letter-spacing: .06em; }
  .announce .msg-l { display: none; }
  .hero { min-height: 560px; }
  .hero-ui .hero-arrows { display: none; }
  section.block { padding: 64px var(--gutter); }
  .feature, .story, .campaign-media, .campaign-text, .contact, .values, .team, .testimonial, .split, .perks { grid-template-columns: 1fr; }
  .split.flip .panel { order: 0; }
  .payment, .pay-methods { grid-template-columns: 1fr; }
  .reviews { grid-auto-columns: 62%; }
  .policy-hero { padding-top: 120px; }
  .split figure { min-height: 420px; }
  .pgrid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .pgrid .product.wide { grid-column: span 2; }
  .reels-sec { padding: 56px 0 56px var(--gutter); }
  .reels { grid-auto-columns: 62%; }
  .collection-hero .inner { flex-direction: column; align-items: flex-start; }
  .feature-panel, .feature-media { min-height: 460px; }
  .carousel { grid-auto-columns: 72%; }
  .journal-row { grid-template-columns: 1fr; gap: 18px; }
  .journal-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .occ-img { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .story.flip { direction: ltr; }
  .connect { padding: 80px var(--gutter); }
  .footer-card { padding: 40px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .to-top { display: none; }
}
