/* Tola Coffee — shared styles (Brand identity) */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');
:root {
  --bg: #f4ece1;
  --bg-soft: #ece0d0;
  --surface: #faf5ec;
  --card: #ffffff;
  --ink: #2a1c0f;          /* deep brown-black */
  --ink-2: #5a4427;
  --muted: #94806a;
  --line: #e7dac6;
  --line-2: #d8c4a6;
  --brand: #6b4b26;        /* deep brown (brand) */
  --brand-2: #8c6434;      /* caramel bronze (brand) */
  --accent: #8c6434;       /* caramel bronze */
  --accent-2: #a87a45;     /* lighter bronze */
  --beige: #d6c7b9;        /* brand beige */
  --wine: #84014b;         /* brand wine/magenta accent */
  --wine-2: #a8186a;
  --wine-soft: rgba(132,1,75,.10);
  --gold: #b88a3e;         /* warm gold */
  --gold-2: #e6c47a;       /* champagne */
  --gold-soft: rgba(184,138,62,.16);
  --noir: #1b1209;         /* luxury dark surface */
  --noir-2: #2a1c0f;
  --olive: #6b7a3a;
  --danger: #b54534;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(42,28,15,.06), 0 1px 1px rgba(42,28,15,.04);
  --shadow: 0 6px 24px -10px rgba(42,28,15,.18), 0 2px 6px -2px rgba(42,28,15,.08);
  --shadow-lg: 0 24px 60px -24px rgba(42,28,15,.30);
  --shadow-gold: 0 12px 36px -16px rgba(184,138,62,.45);
  --font: 'Cairo', 'Tajawal', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Cormorant Garamond', 'Amiri', Georgia, serif;
  --mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
html { direction: rtl; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
      position: relative;
      
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }

/* ---------- Layout ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ---------- Top nav (customer) ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,237,224,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  height: 68px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; letter-spacing: -.01em;
  color: var(--ink);
}
.brand-logo { height: 67px; width: 103px; display: block; }
.brand-logo-light { height: 64px; }
.foot .brand-logo-light { height: 70px; }

.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #f5d99a 0%, #c79a4a 38%, #6b3a1f 100%);
  display: grid; place-items: center; color: #1c130a;
  font-family: var(--serif); font-weight: 700; font-size: 20px; font-style: italic;
  letter-spacing: -.02em;
  box-shadow:
    inset 0 -3px 6px rgba(0,0,0,.22),
    inset 0 2px 4px rgba(255,235,200,.45),
    0 4px 14px -6px rgba(199,154,74,.55);
  position: relative;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 2px; border-radius: 50%;
  border: 1px solid rgba(255,235,200,.35); pointer-events: none;
}
.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-wordmark .w-tola { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 26px; letter-spacing: -.01em; color: var(--ink); }
.brand-wordmark .w-tag { font-size: 9.5px; font-weight: 600; color: var(--gold); letter-spacing: .22em; text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; gap: 6px; margin-inline-start: auto; align-items: center; }
.nav-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--ink-2); cursor: pointer; margin-inline-start: auto; align-items: center; justify-content: center; }
.nav-link {
  padding: 8px 14px; border-radius: 999px;
  font-weight: 500; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav-link:hover { background: var(--bg-soft); color: var(--ink); }
.nav-link.active { background: var(--ink); color: var(--surface); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--ink); color: var(--surface);
  font-weight: 600; border: none;
}
.nav-cta.outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }

.icon-btn {
  width: 40px; height: 40px; display: inline-grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line); background: var(--surface);
  color: var(--ink-2); position: relative;
}
.icon-btn:hover { border-color: var(--ink-2); color: var(--ink); }
.icon-btn .badge {
  position: absolute; top: -2px; inset-inline-start: -2px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: inline-grid; place-items: center; padding: 0 5px;
  border: 2px solid var(--bg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600; font-size: 15px;
  transition: transform .08s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover { background: #1a0f06; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #a06330; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--surface); }
.btn-ghost { background: var(--bg-soft); color: var(--ink); }
.btn-ghost:hover { background: var(--line); }
.btn-sm { padding: 8px 14px; font-size: 13.5px; border-radius: 10px; }
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }

/* ---------- Cards / chrome ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.surface { background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line); }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--bg-soft); color: var(--ink-2);
  font-size: 12.5px; font-weight: 500;
}
.chip-accent { background: rgba(184,116,60,.15); color: #8a4a26; }
.chip-gold { background: rgba(199,154,74,.18); color: #7a5a14; }
.chip-olive { background: rgba(107,122,58,.16); color: #4a5526; }
.chip-danger { background: rgba(181,69,52,.14); color: var(--danger); }

/* ---------- Inputs ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.input, .select, .textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-size: 15px;
  transition: border .15s, box-shadow .15s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(184,116,60,.12);
}
.textarea { resize: vertical; min-height: 110px; }
.help { font-size: 12.5px; color: var(--muted); }

/* ---------- Section heads ---------- */
.section-title {
  font-size: 28px; font-weight: 800; letter-spacing: -.01em; margin: 0;
}
.eyebrow {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); font-weight: 500;
}

/* ---------- Real product images ---------- */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-wrap { width: 100%; height: 100%; overflow: hidden; background: var(--bg-soft); }

/* ---------- Placeholders for imagery ---------- */
.ph {
  background:
    repeating-linear-gradient(135deg, rgba(107,58,31,.07) 0 10px, rgba(107,58,31,.02) 10px 20px),
    var(--bg-soft);
  border: 1px dashed var(--line-2);
  color: var(--muted);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .08em;
  border-radius: var(--radius);
  text-align: center; padding: 8px;
}
.ph-rounded { border-radius: var(--radius-lg); }
.ph-circle { border-radius: 50%; }

/* ---------- Footer ---------- */
.foot {
  background: #1f1308; color: #d8c8b3;
  padding: 56px 0 28px; margin-top: 80px;
}
.foot a { color: #d8c8b3; }
.foot a:hover { color: #fbf6ec; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.foot h4 { color: #fbf6ec; font-size: 14px; margin: 0 0 14px; letter-spacing: .04em; }
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.foot-bottom { border-top: 1px solid #3a2818; margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; font-size: 13px; color: #a08c70; }

/* ---------- Utility ---------- */
.row { display: flex; gap: 12px; align-items: center; }
.col { display: flex; flex-direction: column; gap: 12px; }
.grow { flex: 1 1 auto; }
.divider { height: 1px; background: var(--line); margin: 24px 0; }
.center-text { text-align: center; }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Numeric / data */
.kbd { font-family: var(--mono); font-size: 12px; padding: 2px 6px; border-radius: 6px; background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink-2); }

/* Inputs row */
.field-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
@media (max-width: 640px){ .field-row { grid-template-columns: 1fr; } .foot-grid { grid-template-columns: 1fr 1fr; } .container { padding: 0 16px; } }
@media (max-width: 540px){ .foot-grid { grid-template-columns: 1fr; } .foot-bottom { flex-direction: column; gap: 8px; text-align: center; } }
@media (max-width: 400px){
  .container { padding: 0 12px; }
  .container-narrow { padding: 0 12px; }
  .section-title { font-size: 22px; }
  .btn { padding: 10px 16px; font-size: 14px; }
  .lux-title { font-size: 28px; }
  .lux-section { padding: 48px 0; }
  .foot { padding: 36px 0 20px; margin-top: 48px; }
  .foot-grid { gap: 24px; }
  .hero-slider { min-height: 360px; height: 56vh; }
  .slide-content .inner { padding: 0 12px; }
  .slide-title { font-size: 30px; }
  .slide-desc { font-size: 14px; }
  .brand-logo { height: 50px; width: 78px; }
  .nav-inner { gap: 8px; height: 60px; }
  .nav-toggle { width: 34px; height: 34px; }
  .icon-btn { width: 34px; height: 34px; }
  .icon-btn svg { width: 15px; height: 15px; }
  .hero-slider { min-height: 400px; height: 60vh; }
  .slide-content .inner { padding: 0 12px; }
  .slide-title { font-size: 32px; }
  .slide-desc { font-size: 15px; }
  .slider-nav { width: 36px; height: 36px; }

   
  .story-mark { width: 180px; height: 180px; }
  .story-mark .glyph, .story-mark .glyph-logo { width: 100px; }
  .marquee-track { font-size: 17px; gap: 32px; }
  .marquee-track span { gap: 32px; }
  [data-reveal] { transform: none !important; }
}

/* ============================================
   LUXURY · SERIF · ANIMATIONS · GOLD
   ============================================ */

/* Serif accents */
.serif { font-family: var(--serif); font-style: italic; font-weight: 600; letter-spacing: -.005em; }

/* Gold underline accent */
.gold-rule { display: inline-block; width: 56px; height: 1px; background: var(--gold); margin: 0 14px; vertical-align: middle; opacity: .8; }
.gold-dot { color: var(--gold); margin: 0 8px; }

/* Eyebrow gold version */
.eyebrow-gold {
  font-family: var(--mono); font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow-gold::before, .eyebrow-gold::after {
  content: ''; height: 1px; width: 28px; background: var(--gold); opacity: .6;
}

/* Luxury gold button */
.btn-gold {
  background: linear-gradient(135deg, #e6c47a 0%, #c79a4a 50%, #a07d2e 100%);
  color: #1c130a;
  border: 1px solid rgba(255,235,200,.4);
  box-shadow: inset 0 1px 0 rgba(255,247,220,.5), 0 6px 18px -8px rgba(199,154,74,.5);
}
.btn-gold:hover { filter: brightness(1.06); box-shadow: inset 0 1px 0 rgba(255,247,220,.5), 0 10px 24px -8px rgba(199,154,74,.6); }
.btn-noir { background: var(--noir); color: var(--gold-2); border: 1px solid rgba(199,154,74,.35); }
.btn-noir:hover { background: #1c130a; box-shadow: 0 0 0 1px var(--gold); }

/* Section heading luxury variant */
.lux-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(34px, 4.4vw, 56px); letter-spacing: -.01em;
  line-height: 1.05; margin: 0;
}
.lux-title em { font-style: italic; color: var(--gold); }

/* Mobile nav */
@media (max-width: 860px){
  .nav-toggle { display: flex; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--line); flex-direction: column; padding: 12px 16px; gap: 4px; box-shadow: var(--shadow); z-index: 40; }
  .nav-links.open { display: flex; }
  .nav-link { padding: 10px 14px; border-radius: 10px; }
  .nav-cta { margin-top: 6px; justify-content: center; }
}
@media (max-width: 480px){
  .nav-inner { gap: 12px; }
  .brand { font-size: 16px; }
  .brand-logo { height: 56px; width: 88px; }
  .brand-wordmark .w-tola { font-size: 22px; }
  .brand-wordmark .w-tag { font-size: 8.5px; }
}
@media (max-width: 360px){
  .container { padding: 0 10px; }
  .nav-inner { gap: 6px; }
  .brand-logo { height: 44px; width: 68px; }
  .nav-links { top: 60px; }
  .btn { padding: 8px 14px; font-size: 13px; border-radius: 8px; }
  .section-title { font-size: 18px; }
  .foot { padding: 28px 0 16px; }
  .foot-grid { gap: 16px; }
  .hero-slider { min-height: 300px; height: 50vh; }
  .slide-title { font-size: 26px; }
  .slide-content .inner { padding: 0 8px; }
  .story-mark { width: 140px; height: 140px; }
  .story-mark .glyph, .story-mark .glyph-logo { width: 76px; }
}

/* ---------- Hero slider ---------- */
.hero-slider {
  position: relative; height: 86vh; min-height: 600px; max-height: 820px;
  overflow: hidden; background: var(--noir);
  margin-top: -1px;
}
.slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}
.slide.active .slide-bg { transform: scale(1); animation: kenburns 12s linear infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1) translate(0,0); }
  to   { transform: scale(1.12) translate(-2%, -1%); }
}
.slide-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,0,0,.15) 0%, rgba(20,16,10,.75) 60%, rgba(20,16,10,.92) 100%),
    linear-gradient(180deg, rgba(20,16,10,.2) 0%, rgba(20,16,10,.55) 100%);
}
.slide-content {
  position: absolute; inset: 0; display: grid; place-items: center;
  text-align: center; color: #fbf6ec; padding: 0 24px;
}
.slide-content .inner { max-width: 820px; }
.slide-eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: .32em;
  color: var(--gold-2); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .9s ease, transform .9s ease;
}
.slide-eyebrow::before, .slide-eyebrow::after {
  content: ''; height: 1px; width: 36px; background: var(--gold-2);
}
.slide-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(48px, 7vw, 92px); line-height: 1.05;
  margin: 22px 0 18px;
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.slide-title em { font-style: italic; color: var(--gold-2); font-weight: 600; }
.slide-desc {
  font-size: 18px; line-height: 1.75; color: #d8c8b3;
  max-width: 620px; margin: 0 auto 32px;
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.slide-cta {
  display: inline-flex; gap: 12px;
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.slide.active .slide-eyebrow { opacity: 1; transform: none; transition-delay: .2s; }
.slide.active .slide-title   { opacity: 1; transform: none; transition-delay: .4s; }
.slide.active .slide-desc    { opacity: 1; transform: none; transition-delay: .6s; }
.slide.active .slide-cta     { opacity: 1; transform: none; transition-delay: .85s; }

.slider-dots {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.slider-dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,235,200,.25); border: none; cursor: pointer;
  transition: background .3s, width .3s;
}
.slider-dot.active { background: var(--gold-2); width: 48px; }

.slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,235,200,.08); border: 1px solid rgba(255,235,200,.18);
  color: #fbf6ec; display: grid; place-items: center; cursor: pointer;
  backdrop-filter: blur(8px); z-index: 5; transition: background .2s;
}
.slider-nav:hover { background: rgba(255,235,200,.18); }
.slider-nav.prev { right: 32px; }
.slider-nav.next { left: 32px; }

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

.slider-counter {
  position: absolute; top: 36px; inset-inline-end: 32px;
  font-family: var(--mono); font-size: 12px; color: var(--gold-2);
  letter-spacing: .12em; z-index: 5;
}
.slider-counter b { font-size: 24px; font-weight: 500; color: #fbf6ec; }
.slider-counter span { opacity: .5; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal="left"] { transform: translateX(-28px) translateY(0); }
[data-reveal="right"] { transform: translateX(28px) translateY(0); }
[data-reveal="scale"] { transform: scale(.92); }
[data-reveal].in {
  opacity: 1; transform: translate(0,0) scale(1);
}
[data-reveal][data-delay="100"].in { transition-delay: .1s; }
[data-reveal][data-delay="200"].in { transition-delay: .2s; }
[data-reveal][data-delay="300"].in { transition-delay: .3s; }
[data-reveal][data-delay="400"].in { transition-delay: .4s; }
[data-reveal][data-delay="500"].in { transition-delay: .5s; }

/* ---------- Luxury (dark) section ---------- */
.lux-section {
  background: linear-gradient(180deg, var(--noir) 0%, var(--noir-2) 100%);
  color: #fbf6ec; padding: 96px 0; position: relative; overflow: hidden;
}
.lux-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(199,154,74,.18) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(107,58,31,.25) 0%, transparent 50%);
  pointer-events: none;
}
.lux-section > * { position: relative; }

/* ---------- Brand storytelling (logo meaning) ---------- */
.story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.story-mark {
  width: 320px; height: 320px; margin: 0 auto; position: relative;
  display: grid; place-items: center;
}
.story-mark .ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(199,154,74,.35);
  animation: spin 30s linear infinite;
}
.story-mark .ring:nth-child(2) { inset: 24px; border-color: rgba(199,154,74,.5); animation-direction: reverse; animation-duration: 40s; }
.story-mark .ring:nth-child(3) { inset: 48px; border-color: rgba(199,154,74,.25); animation-duration: 50s; }
@keyframes spin { to { transform: rotate(360deg); } }
.story-mark .glyph {
  position: relative; z-index: 2; width: 180px; height: auto;
  filter: drop-shadow(0 8px 30px rgba(184,138,62,.45));
}
.story-mark .glyph-logo {
  position: relative; z-index: 2; width: 180px; height: auto;
  filter: drop-shadow(0 8px 30px rgba(184,138,62,.45));
}
.story h2 { font-family: var(--serif); font-size: clamp(38px, 4vw, 54px); margin: 14px 0 18px; font-weight: 500; line-height: 1.1; }
.story h2 em { font-style: italic; color: var(--gold-2); font-weight: 600; }
.story p { color: #c4b193; line-height: 1.85; font-size: 16.5px; margin: 0 0 16px; max-width: 540px; }
.story-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.pillar {
  padding: 22px; border: 1px solid rgba(199,154,74,.22);
  border-radius: 16px; background: rgba(199,154,74,.04);
  transition: border-color .2s, background .2s;
}
.pillar:hover { border-color: rgba(199,154,74,.5); background: rgba(199,154,74,.08); }
.pillar .num { font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--gold-2); margin-bottom: 8px; }
.pillar h4 { margin: 0 0 6px; color: #fbf6ec; font-size: 16px; }
.pillar p { margin: 0; font-size: 13.5px; color: #a08c70; line-height: 1.6; }

@media (max-width: 900px){
  .story { grid-template-columns: 1fr; gap: 40px; }
  .story-mark { width: 220px; height: 220px; }
  .story-mark .glyph, .story-mark .glyph-logo { width: 120px; font-size: 100px; }
  .story-pillars { grid-template-columns: 1fr; }
}

/* ---------- Marquee / ticker ---------- */
.marquee {
  overflow: hidden; padding: 14px 0; background: var(--noir);
  border-top: 1px solid rgba(199,154,74,.25); border-bottom: 1px solid rgba(199,154,74,.25);
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marq 32s linear infinite;
  font-family: var(--serif); font-style: italic; color: var(--gold-2);
  font-size: 22px;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
@keyframes marq { to { transform: translateX(50%); } }
html[dir="rtl"] .marquee-track { animation-direction: reverse; }

/* ---------- Animated stat counter ---------- */
.lux-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; }
.lux-stat { text-align: center; padding: 24px 8px; }
.lux-stat .v { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 64px; line-height: 1; color: var(--gold-2); }
.lux-stat .l { font-size: 14px; color: #a08c70; margin-top: 10px; letter-spacing: .04em; }
@media (max-width: 760px){ .lux-stats { grid-template-columns: 1fr 1fr; gap: 18px; } .lux-stat .v { font-size: 48px; } }

/* ---------- Product option chips (used in menu modal) ---------- */
.opt-group { margin-bottom: 22px; }
.opt-group-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.opt-group-head h4 { margin: 0; font-size: 15px; font-weight: 700; }
.opt-group-head .req { font-size: 11px; font-family: var(--mono); color: var(--accent); letter-spacing: .08em; text-transform: uppercase; }
.opt-group-head .req.opt { color: var(--muted); }
.opt-list { display: flex; flex-wrap: wrap; gap: 8px; }
.opt-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--line-2);
  font-size: 13.5px; font-weight: 600; color: var(--ink-2); cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.opt-chip:hover { border-color: var(--ink-2); }
.opt-chip.selected { border-color: var(--ink); background: var(--ink); color: var(--surface); }
.opt-chip .delta { font-family: var(--mono); font-size: 12px; opacity: .7; }
.opt-chip.selected .delta { opacity: .85; }

.opt-list.boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.opt-box {
  padding: 14px 16px; border-radius: 14px; background: var(--card);
  border: 1px solid var(--line-2); cursor: pointer; text-align: start;
  transition: border-color .15s, background .15s;
  position: relative;
}
.opt-box:hover { border-color: var(--accent); }
.opt-box.selected { border-color: var(--ink); background: rgba(28,19,10,.04); }
.opt-box .nm { font-weight: 700; font-size: 14px; }
.opt-box .sub { font-size: 11.5px; color: var(--muted); margin-top: 2px; font-family: var(--mono); }
.opt-box .selected-tick {
  position: absolute; top: 10px; inset-inline-end: 10px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--ink); color: #fff; display: none;
  align-items: center; justify-content: center; font-size: 10px;
}
.opt-box.selected .selected-tick { display: grid; }

/* ---------- Gender chooser (register) ---------- */
.gender-group { display: flex; gap: 10px; }
.gender-opt {
  flex: 1; padding: 14px; border: 1px solid var(--line-2);
  border-radius: 12px; background: var(--card); cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--ink-2); transition: all .15s;
  font-size: 14px;
}
.gender-opt svg { color: var(--muted); }
.gender-opt:hover { border-color: var(--ink-2); }
.gender-opt.selected { border-color: var(--ink); background: var(--ink); color: var(--surface); }
.gender-opt.selected svg { color: var(--gold-2); }

/* ---------- Corporate / Events cards ---------- */
.b2b-feature-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.b2b-feat {
  padding: 26px; border: 1px solid rgba(199,154,74,.25);
  border-radius: 18px; background: rgba(255,255,255,.02);
  transition: transform .2s, border-color .2s;
}
.b2b-feat:hover { transform: translateY(-4px); border-color: rgba(199,154,74,.55); }
.b2b-feat .ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(230,196,122,.16), rgba(160,125,46,.12));
  border: 1px solid rgba(199,154,74,.35);
  display: grid; place-items: center; color: var(--gold-2); margin-bottom: 16px;
}
.b2b-feat h3 { color: #fbf6ec; margin: 0 0 8px; font-size: 18px; font-family: var(--serif); font-weight: 600; }
.b2b-feat p { margin: 0; color: #a08c70; font-size: 14px; line-height: 1.7; }

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

/* ============================================
   POLISH · MICRO-INTERACTIONS · IDENTITY
   ============================================ */
html { scroll-behavior: smooth; }
::selection { background: var(--wine); color: #faf5ec; }

[data-reveal] { transition: opacity .8s cubic-bezier(.22,.8,.3,1), transform .8s cubic-bezier(.22,.8,.3,1); }

/* Nav: glassy + scroll shadow */
.nav {
  backdrop-filter: saturate(1.2) blur(10px);
  transition: box-shadow .25s, background .25s, border-color .25s;
}
.nav.scrolled { box-shadow: 0 6px 30px -18px rgba(42,28,15,.5); border-bottom-color: var(--line-2); }
.nav-link { position: relative; }
.nav-link:not(.active)::after {
  content: ''; position: absolute; bottom: 4px; inset-inline: 50%;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: inset-inline .22s ease;
}
.nav-link:not(.active):hover::after { inset-inline: 22%; }

/* Button shimmer for gold */
.btn-gold { position: relative; overflow: hidden; }
.btn-gold::after {
  content: ''; position: absolute; top: 0; inset-inline-start: -60%;
  width: 40%; height: 100%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transition: inset-inline-start .6s ease;
}
.btn-gold:hover::after { inset-inline-start: 120%; }

/* Primary/accent buttons lift */
.btn-primary, .btn-accent, .btn-gold, .btn-noir { transition: transform .15s cubic-bezier(.22,.8,.3,1), box-shadow .2s, background .15s, filter .15s; }
.btn-primary:hover, .btn-accent:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(42,28,15,.55); }
.btn-gold:hover, .btn-noir:hover { transform: translateY(-2px); }

/* Eyebrow shimmer line */
.eyebrow-gold::before, .eyebrow-gold::after { transition: width .4s ease; }
.eyebrow-gold:hover::before, .eyebrow-gold:hover::after { width: 40px; }

/* Card focus ring accent in wine for interactive cards */
.prod:focus-visible, .cat:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; }

/* Slider dots refined */
.slider-dot { transition: background .3s, width .3s, box-shadow .3s; }
.slider-dot.active { box-shadow: 0 0 0 1px rgba(230,196,122,.4); }

/* Marquee fade edges */
.marquee { position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }

/* Floating animation utility */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.floaty { animation: floaty 5s ease-in-out infinite; }

/* Gentle pulse for gold accents */
@keyframes goldPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(184,138,62,.0); } 50% { box-shadow: 0 0 0 6px rgba(184,138,62,.12); } }

/* Image zoom polish on any .img-wrap inside hover-parent */
.img-wrap img { transition: transform .8s cubic-bezier(.22,.8,.3,1); }

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
