/* =========================================================
   SIKORI — Shared stylesheet (light theme)
   ========================================================= */

:root {
  --bg: #FBF7EC;
  --bg-2: #FFFFFF;
  --bg-3: #F4ECDC;
  --bg-soft: #FDF9F0;
  --text: #1A0F0A;
  --text-soft: rgba(26,15,10,.72);
  --text-dim: rgba(26,15,10,.5);
  --text-faint: rgba(26,15,10,.16);
  --terracotta: #AB4719;
  --terracotta-deep: #8a3713;
  --terracotta-soft: rgba(171,71,25,.08);
  --gold: #B8860B;
  --line: rgba(26,15,10,.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* subtle paper grain */
  background-image:
    radial-gradient(circle at 12% 18%, rgba(171,71,25,.04) 0%, transparent 35%),
    radial-gradient(circle at 88% 78%, rgba(184,134,11,.04) 0%, transparent 40%);
  background-attachment: fixed;
}

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

/* ------- Typography ------- */
.serif { font-family: 'Cormorant Garamond', 'Times New Roman', serif; font-weight: 500; }
.italic { font-style: italic; }
.eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
}
.eyebrow .num { color: var(--text-dim); margin-right: 14px; font-variant-numeric: tabular-nums; }
h1,h2,h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.05; letter-spacing: -0.005em; color: var(--text); }

/* ------- Layout ------- */
.container { width: min(100%, 1280px); margin: 0 auto; padding: 0 32px; }
.container--narrow { width: min(100%, 1080px); }
.section { padding: 120px 0; position: relative; }

/* =========================================================
   GRAPHICS / ORNAMENTS
   ========================================================= */
.ornament {
  display: block;
  margin: 0 auto 28px;
  width: 56px;
  height: 56px;
  background-image: url('../svg/ornament.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.divider {
  display: block;
  margin: 60px auto;
  width: 280px;
  height: 28px;
  background-image: url('../svg/divider.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .7;
}
.leaf-mark {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url('../svg/leaf.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin: 0 6px;
}
.section-head { text-align: center; margin-bottom: 80px; }
.section-head h2 {
  font-size: clamp(40px, 5.2vw, 72px);
  margin: 14px 0 18px;
}
.section-head h2 .italic { color: var(--terracotta); }
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.section-head p {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================================
   TOP NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease, border-color .3s ease;
  /* Always slightly opaque cream so nav is readable on any hero (dark photo OR cream bg).
     Was rgba(...,.0) before, which left the nav invisible on Standard hero pages. */
  background: rgba(251,247,236,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,15,10,0);
}
.nav.scrolled {
  background: rgba(251,247,236,.96);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 32px;
  border-bottom-color: var(--line);
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  letter-spacing: 0.02em;
  color: var(--text);
  font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.nav-brand .accent { color: var(--terracotta); }
.nav-brand .mark {
  width: 30px; height: 30px;
  background-image: url('../svg/mark.svg');
  background-size: contain; background-repeat: no-repeat;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color .2s ease;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active { color: var(--terracotta); }
.nav-links a.active::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 24px; height: 2px; background: var(--terracotta);
}
.nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--terracotta) !important;
  color: #fff !important;
  background: var(--terracotta);
  border-radius: 0;
  transition: background .2s ease, color .2s ease;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: transparent; color: var(--terracotta) !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text); margin: 5px 0; }

@media (max-width: 920px) {
  .nav { padding: 16px 20px; }
  .nav-brand { font-size: 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 20px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-2); padding: 28px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
  }
  .nav-toggle { display: block; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  transition: all .25s ease;
  cursor: pointer;
}
.btn:hover { border-color: var(--terracotta); background: var(--terracotta); color: #fff; }
.btn--primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}
.btn--primary:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); color: #fff; }
.btn--ghost {
  background: var(--bg-2);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

/* =========================================================
   PAGE HERO (used by inner pages — smaller than home hero)
   ========================================================= */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  background: var(--bg);
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 90px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  background-image: url('../svg/ornament.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .9;
}
.page-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  margin: 80px auto 22px;
  letter-spacing: -0.01em;
  max-width: 900px;
}
.page-hero h1 .italic { color: var(--terracotta); }
.page-hero .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
.page-hero .breadcrumb {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 32px;
}
.page-hero .breadcrumb a { color: var(--text-soft); }
.page-hero .breadcrumb a:hover { color: var(--terracotta); }
.page-hero .breadcrumb .sep { margin: 0 12px; color: var(--text-faint); }

@media (max-width: 720px) {
  .page-hero { padding: 140px 0 60px; }
  .page-hero h1 { margin-top: 60px; }
}

/* =========================================================
   DISH GRID
   ========================================================= */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 32px;
}
.dish-grid--3 { grid-template-columns: repeat(3, 1fr); }
.dish-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 60px 50px; }

.dish {
  display: block;
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: border-color .3s ease, transform .4s ease, box-shadow .4s ease;
}
.dish:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(26,15,10,.12);
}
.dish-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--bg-3);
}
.dish-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.dish:hover .dish-photo img { transform: scale(1.05); }
.dish-meta {
  padding: 22px 20px 8px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.2;
  flex: 1;
}
.dish-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  white-space: nowrap;
}
.dish-note {
  padding: 0 20px 22px;
  color: var(--text-dim);
  font-size: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .dish-grid { grid-template-columns: repeat(3, 1fr); }
  .dish-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .dish-grid, .dish-grid--3, .dish-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .dish-name { font-size: 19px; }
  .dish-meta { padding: 16px 14px 6px; }
  .dish-note { padding: 0 14px 18px; font-size: 13px; }
}
@media (max-width: 460px) {
  .dish-grid, .dish-grid--3, .dish-grid--2 { grid-template-columns: 1fr; }
}

/* =========================================================
   SPLIT FEATURE (used on thalis, catering)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--bg);
}
.split--rev .split-photo { order: 2; }
.split--rev .split-text { order: 1; }
.split-photo {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 480px;
}
.split-photo::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,.4);
  pointer-events: none;
}
.split-text {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
}
.split-text .eyebrow { margin-bottom: 24px; }
.split-text h3 {
  font-size: clamp(36px, 4.6vw, 60px);
  margin-bottom: 28px;
  line-height: 1.05;
}
.split-text h3 .italic { color: var(--terracotta); }
.split-text p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 500px;
}

@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split-photo { order: 0; }
  .split--rev .split-text { order: 0; }
  .split-photo { aspect-ratio: 4/5; min-height: 0; }
  .split-text { padding: 60px 24px; }
}

/* =========================================================
   THALI ITEMS LIST
   ========================================================= */
.thali-items {
  list-style: none;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px 24px;
  max-width: 480px;
}
.thali-items li {
  color: var(--text-soft);
  padding-left: 18px;
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
}
.thali-items li::before {
  content: ""; width: 8px; height: 1px; background: var(--terracotta);
  position: absolute; left: 0; top: 13px;
}
.thali-price {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 16px;
  max-width: 480px;
}
.thali-price .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--terracotta);
  font-weight: 600;
}
.thali-price .price-note {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 600px) { .thali-items { grid-template-columns: 1fr; } }

/* =========================================================
   OUTLETS
   ========================================================= */
.outlets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.outlet {
  padding: 36px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.outlet:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(26,15,10,.1);
}
.outlet::before {
  content: "";
  position: absolute;
  top: 18px; right: 18px;
  width: 28px; height: 28px;
  background-image: url('../svg/leaf.svg');
  background-size: contain; background-repeat: no-repeat;
  opacity: .35;
}
.outlet-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.2;
}
.outlet-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
  font-weight: 700;
}
.outlet-row {
  display: flex; gap: 14px; padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}
.outlet-row .lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  min-width: 78px;
  flex-shrink: 0;
  padding-top: 4px;
  font-weight: 700;
}
.outlet-cta {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: gap .25s ease;
  font-weight: 700;
}
.outlet-cta:hover { gap: 16px; }
.outlet-cta svg { width: 16px; height: 8px; }

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

/* =========================================================
   CTA / RESERVE BAND
   ========================================================= */
.reserve {
  padding: 140px 0;
  background: var(--terracotta);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.reserve::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,238,202,.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(184,134,11,.18), transparent 40%);
}
.reserve-inner { position: relative; z-index: 1; padding: 0 32px; }
.reserve .ornament {
  filter: brightness(0) invert(1);
  opacity: .8;
}
.reserve .eyebrow { color: rgba(255,255,255,.7); margin-bottom: 14px; display: inline-block; }
.reserve h2 {
  font-size: clamp(40px, 5.4vw, 72px);
  color: #fff;
  margin: 8px 0 24px;
  line-height: 1.05;
}
.reserve h2 .italic { color: #FFE0A8; }
.reserve p {
  color: rgba(255,255,255,.85);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.reserve .btn {
  background: #fff; color: var(--terracotta);
  border-color: #fff;
  padding: 18px 40px;
}
.reserve .btn:hover { background: transparent; color: #fff; border-color: #fff; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--bg-3);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1;
  display: flex; align-items: center; gap: 12px;
}
.footer-brand .accent { color: var(--terracotta); }
.footer-brand .mark {
  width: 44px; height: 44px;
  background-image: url('../svg/mark.svg');
  background-size: contain; background-repeat: no-repeat;
}
.footer-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.5;
  max-width: 380px;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--text-soft);
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FADE-IN
   ========================================================= */
.fade { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.fade.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   CATEGORY PAGES (catering portfolio)
   ========================================================= */
.cat-hero {
  padding: 180px 0 60px;
  background: var(--bg);
  text-align: center;
  position: relative;
}
.cat-hero::before {
  content: "";
  position: absolute;
  top: 90px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 56px;
  background-image: url('../svg/ornament.svg');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .9;
}
.cat-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 6.6vw, 88px);
  margin: 80px auto 22px;
  line-height: 1.02;
  max-width: 1000px;
  font-weight: 500;
}
.cat-hero h1 .italic { color: var(--terracotta); font-style: italic; }
.cat-hero .lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.5;
}
.cat-hero .breadcrumb {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 30px;
}
.cat-hero .breadcrumb a { color: var(--text-soft); }
.cat-hero .breadcrumb a:hover { color: var(--terracotta); }
.cat-hero .breadcrumb .sep { margin: 0 12px; color: var(--text-faint); }

@media (max-width: 720px) {
  .cat-hero { padding: 140px 0 50px; }
  .cat-hero h1 { margin-top: 60px; }
}

/* Intro band with copy + a featured photo */
.cat-intro {
  padding: 90px 0 70px;
  background: var(--bg);
}
.cat-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.cat-intro .copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.4vw, 56px);
  margin: 18px 0 26px;
  line-height: 1.06;
  letter-spacing: -0.005em;
}
.cat-intro .copy h2 .italic { color: var(--terracotta); font-style: italic; }
.cat-intro .copy p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 560px;
}
.cat-intro .copy p.lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 28px;
}
.cat-intro .photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cat-intro .photo::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid var(--terracotta);
  z-index: -1;
}
@media (max-width: 920px) {
  .cat-intro .container { grid-template-columns: 1fr; gap: 50px; }
}

/* Highlights strip (two-up or three-up large photos) */
.cat-highlights {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cat-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.cat-highlights-grid .h-card {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.cat-highlights-grid .h-card::after {
  content: attr(data-cap);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 22px 20px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.3;
}
@media (max-width: 820px) {
  .cat-highlights-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .cat-highlights-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* =========================================================
   INFINITE MARQUEE — auto-scroll horizontal gallery
   ========================================================= */
.cat-marquee {
  padding: 90px 0;
  background: var(--bg);
  position: relative;
}
.cat-marquee .section-head { margin-bottom: 40px; }
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee-scroll var(--marquee-duration, 45s) linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .m-card {
  flex: 0 0 auto;
  width: clamp(280px, 28vw, 380px);
  height: clamp(360px, 36vw, 480px);
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.marquee-track .m-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35));
  pointer-events: none;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Stats band specific to category pages */
.cat-stats {
  padding: 80px 0;
  background: var(--bg-3);
  text-align: center;
}
.cat-stats .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 36px;
}
.cat-stats .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--terracotta);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
.cat-stats .stat-lbl {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 700;
}
@media (max-width: 720px) {
  .cat-stats .stats-row { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
}

/* Other categories tiles (cross-link block at bottom of each page) */
.cat-others {
  padding: 90px 0;
  background: var(--bg);
}
.cat-others-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.cat-tile {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform .4s ease;
}
.cat-tile:hover { transform: translateY(-4px); }
.cat-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 50%, rgba(0,0,0,.8));
  transition: background .3s ease;
}
.cat-tile:hover::before { background: linear-gradient(180deg, rgba(0,0,0,.1) 30%, rgba(0,0,0,.85)); }
.cat-tile-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px;
  color: #fff;
  z-index: 1;
}
.cat-tile-content .eyebrow { color: rgba(255,224,168,.9); margin-bottom: 8px; }
.cat-tile-content .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1.15;
}
.cat-tile-content .arrow {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.cat-tile-content .arrow svg { width: 16px; height: 8px; }
@media (max-width: 760px) {
  .cat-others-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 460px) {
  .cat-others-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PREMIUM SCROLL EXPERIENCE
   ========================================================= */

/* --- 1. Scroll progress bar (terracotta hairline at top) --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(26, 15, 10, 0.06);
  z-index: 200;
  pointer-events: none;
}
.scroll-progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--terracotta));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.05s linear;
}

/* --- 2. Reveal animation system (richer than the existing .fade) --- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition:
    opacity 0.95s cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 0.95s cubic-bezier(0.2, 0.65, 0.2, 1),
    filter 0.95s cubic-bezier(0.2, 0.65, 0.2, 1);
  will-change: opacity, transform;
}
.reveal[data-reveal="left"]  { transform: translate3d(-44px, 0, 0); }
.reveal[data-reveal="right"] { transform: translate3d(44px, 0, 0); }
.reveal[data-reveal="down"]  { transform: translate3d(0, -32px, 0); }
.reveal[data-reveal="scale"] { transform: scale(0.94); }
.reveal[data-reveal="zoom"]  { transform: scale(1.08); }
.reveal[data-reveal="rotate"] { transform: rotate(-6deg) translate3d(0, 20px, 0); transform-origin: center bottom; }
.reveal[data-reveal="blur"]  { filter: blur(8px); transform: translate3d(0, 24px, 0); }

.reveal.in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  filter: blur(0);
}

/* Enhance the existing .fade with smoother timing and richer easing */
.fade {
  transition:
    opacity 1s cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 1s cubic-bezier(0.2, 0.65, 0.2, 1);
}

/* --- 3. Image elegance: load with a soft zoom-out --- */
.img-elegant {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.2s cubic-bezier(0.2, 0.65, 0.2, 1),
    transform 1.4s cubic-bezier(0.2, 0.65, 0.2, 1);
  will-change: opacity, transform;
}
.img-elegant.loaded {
  opacity: 1;
  transform: scale(1);
}

/* Background-image hero photos: subtle Ken Burns slow zoom */
@keyframes hero-breathe {
  0%,100% { transform: scale(1.02); }
  50%     { transform: scale(1.06); }
}
.hero-img,
.home-hero-photo,
.split-photo,
.catering-photo,
.cat-intro .photo,
.story-intro-img,
.streetfood-img {
  will-change: transform;
}
.home-hero-photo::before,
.cat-intro .photo::before,
.story-intro-img::before {
  /* keep the terracotta frame static while the inner ages */
}

/* --- 4. Magnetic button cleanup (transition smoothing) --- */
.btn,
.btn--primary,
.nav-cta {
  transition:
    transform 0.45s cubic-bezier(0.2, 0.65, 0.2, 1),
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  will-change: transform;
}

/* --- 5. Headline text reveal (word/letter mask) --- */
.title-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.title-reveal > span {
  display: inline-block;
  transform: translateY(120%);
  transition: transform 1.1s cubic-bezier(0.2, 0.65, 0.2, 1);
  transition-delay: var(--td, 0ms);
}
.title-reveal.in > span,
.in .title-reveal > span {
  transform: translateY(0);
}

/* --- 6. Section ornament rotate-in --- */
.ornament {
  transition: transform 1.2s cubic-bezier(0.2, 0.65, 0.2, 1), opacity 1.2s ease;
  transform-origin: center;
}
.reveal:not(.in) .ornament,
.fade:not(.in) .ornament {
  transform: rotate(-30deg) scale(0.7);
  opacity: 0;
}
.in .ornament,
.reveal.in .ornament,
.fade.in .ornament {
  transform: rotate(0) scale(1);
  opacity: 1;
}

/* --- 7. Dish card hover lift (refined for premium feel) --- */
.dish, .outlet, .gallery-card, .h-card, .cat-tile {
  transition:
    transform 0.55s cubic-bezier(0.2, 0.65, 0.2, 1),
    box-shadow 0.55s cubic-bezier(0.2, 0.65, 0.2, 1),
    border-color 0.35s ease;
  will-change: transform, box-shadow;
}

/* --- 8. Smooth page mount fade so first paint isn't jarring --- */
@keyframes page-mount {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
body {
  animation: page-mount 0.6s ease both;
}

/* --- 9. Section dividers polish --- */
.divider {
  transition: opacity 1.2s cubic-bezier(0.2, 0.65, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.65, 0.2, 1);
}

/* --- 10. Cursor: refined for premium pointers --- */
@media (hover: hover) and (pointer: fine) {
  .dish, .outlet, .gallery-card, .h-card, .cat-tile, .btn {
    cursor: pointer;
  }
}

/* --- 11. Marquee smoother boundary --- */
.marquee-track .m-card {
  transition: transform 0.6s cubic-bezier(0.2, 0.65, 0.2, 1), filter 0.6s ease;
}
.marquee-track .m-card:hover {
  transform: scale(1.03);
}

/* --- 12. Lenis fixes (keeps the html scroll behaviour native-feeling) --- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* --- 13. Honour reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .img-elegant { opacity: 1; transform: none; }
  .reveal, .fade { opacity: 1; transform: none; }
}

/* =========================================================
   PHOTO HERO (photos first, content follows)
   ========================================================= */
.photo-hero {
  padding: 110px 0 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.photo-hero-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}
.photo-hero-card {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  filter: saturate(.96) contrast(1.02);
  transition: transform 1s cubic-bezier(.2,.65,.2,1), filter .6s ease, box-shadow .6s ease;
  cursor: pointer;
  background-color: var(--bg-3);
}
.photo-hero-card:hover {
  transform: scale(1.03);
  filter: saturate(1.04) contrast(1.04);
  box-shadow: 0 30px 60px -28px rgba(26,15,10,.45);
  z-index: 2;
}
.photo-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45));
  pointer-events: none;
  transition: background .4s ease;
}
.photo-hero-card:hover::after {
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.55));
}
.photo-hero-card.tall { margin-top: -24px; }
.photo-hero-card.drop { margin-top: 24px; }

/* Optional caption overlay on hover */
.photo-hero-card .ph-cap {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  color: #fff;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.photo-hero-card:hover .ph-cap {
  opacity: 1;
  transform: translateY(0);
}
.photo-hero-card .ph-cap .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.15;
  display: block;
}
.photo-hero-card .ph-cap .role {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFE0A8;
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

/* Caption block under the strip */
.photo-hero-caption {
  text-align: center;
  padding: 70px 32px 50px;
  position: relative;
  z-index: 2;
}
.photo-hero-caption .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.photo-hero-caption h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 6.8vw, 100px);
  margin: 0 auto 22px;
  line-height: 1.02;
  max-width: 1000px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.photo-hero-caption h1 .italic {
  color: var(--terracotta);
  font-style: italic;
}
.photo-hero-caption .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 14px;
  line-height: 1.5;
}
.photo-hero-caption .actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.photo-hero-caption .breadcrumb {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 26px;
}
.photo-hero-caption .breadcrumb a { color: var(--text-soft); }
.photo-hero-caption .breadcrumb a:hover { color: var(--terracotta); }
.photo-hero-caption .breadcrumb .sep { margin: 0 12px; color: var(--text-faint); }

/* Variants */
.photo-hero--three .photo-hero-strip {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
}
.photo-hero--four .photo-hero-strip {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1380px;
}

/* Mid-size: hide extra cards beyond what fits */
@media (max-width: 1100px) {
  .photo-hero-strip { grid-template-columns: repeat(3, 1fr); }
  .photo-hero-strip > *:nth-child(n+4) { display: none; }
  .photo-hero-card.tall, .photo-hero-card.drop { margin-top: 0; }
}
@media (max-width: 720px) {
  .photo-hero { padding-top: 88px; }
  .photo-hero-strip { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px; }
  .photo-hero-strip > *:nth-child(n+3) { display: none; }
  .photo-hero-caption { padding: 50px 24px 36px; }
}

/* =========================================================
   OFFICIAL LOGO (replaces text wordmark in nav + footer)
   ========================================================= */
.nav-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  font-size: 0; /* kills text whitespace */
  line-height: 0;
}
.nav-brand img {
  display: block;
  height: 46px;
  width: auto;
  transition: transform .5s cubic-bezier(.2,.65,.2,1);
}
.nav-brand:hover img {
  transform: scale(1.04);
}
.nav.scrolled .nav-brand img {
  height: 40px;
}

.footer-brand {
  margin-bottom: 16px;
}
.footer-brand img {
  display: block;
  height: 96px;
  width: auto;
}

@media (max-width: 920px) {
  .nav-brand img { height: 40px; }
  .nav.scrolled .nav-brand img { height: 36px; }
}
@media (max-width: 600px) {
  .nav-brand img { height: 36px; }
  .nav.scrolled .nav-brand img { height: 34px; }
}

/* =========================================================
   HERO VARIANTS
   1. .split-hero       (Home)
   2. .standard-hero    (Menu, Catering hub, Outlets, Category pages)
   3. .content-hero     (Catering hub option, clean text-led)
   The .photo-hero (group photo) is reserved for About / Story only.
   ========================================================= */

/* =============== 1. SPLIT HERO =============== */
.split-hero {
  padding: 140px 0 90px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.split-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 540px;
  height: 540px;
  background-image: url('../svg/ornament.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.split-hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.split-hero-text { padding-right: 12px; }
.split-hero-text .eyebrow { display: inline-block; margin-bottom: 22px; }
.split-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.012em;
  margin: 0 0 28px;
  font-weight: 500;
}
.split-hero-text h1 .italic { color: var(--terracotta); font-style: italic; font-weight: 400; }
.split-hero-text .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.45;
}
.split-hero-text .actions { display: flex; gap: 16px; flex-wrap: wrap; }
.split-hero-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
}
.split-hero-photo::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1.5px solid var(--terracotta);
  z-index: -1;
}
.split-hero-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--terracotta);
  color: #fff;
  padding: 14px 22px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  z-index: 2;
}
@media (max-width: 920px) {
  .split-hero { padding: 110px 0 70px; }
  .split-hero .container { grid-template-columns: 1fr; gap: 50px; }
  .split-hero-text { padding-right: 0; }
  .split-hero-badge { font-size: 16px; padding: 10px 16px; bottom: -16px; right: -10px; }
}

/* =============== 2. STANDARD HERO (cinematic full-bleed) =============== */
.standard-hero {
  position: relative;
  min-height: 88vh;
  padding: 160px 0 90px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.standard-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,15,10,.45) 0%, rgba(26,15,10,.25) 35%, rgba(26,15,10,.7) 100%),
    linear-gradient(90deg, rgba(26,15,10,.4) 0%, rgba(26,15,10,0) 50%);
  z-index: 1;
}
.standard-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 1080px;
  padding: 0 32px;
}
.standard-hero-content .ornament {
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 22px;
}
.standard-hero-content .eyebrow {
  color: #FFE0A8;
  display: inline-block;
  margin-bottom: 20px;
}
.standard-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 7vw, 110px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 0 auto 26px;
  font-weight: 500;
  color: #fff;
  max-width: 1000px;
}
.standard-hero-content h1 .italic { color: #FFE0A8; font-style: italic; font-weight: 400; }
.standard-hero-content .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(255,255,255,.86);
  max-width: 680px;
  margin: 0 auto 30px;
  line-height: 1.5;
}
.standard-hero-content .actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-top: 24px;
}
.standard-hero-content .breadcrumb {
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.standard-hero-content .breadcrumb a { color: rgba(255,255,255,.85); }
.standard-hero-content .breadcrumb a:hover { color: #FFE0A8; }
.standard-hero-content .breadcrumb .sep { margin: 0 12px; color: rgba(255,255,255,.3); }
/* Overlap the buttons to a lighter style on dark */
.standard-hero-content .btn {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.standard-hero-content .btn:hover {
  background: #fff; color: var(--text); border-color: #fff;
}
.standard-hero-content .btn--primary {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}
.standard-hero-content .btn--primary:hover {
  background: #fff; color: var(--terracotta); border-color: #fff;
}

@media (max-width: 720px) {
  .standard-hero { min-height: 78vh; padding: 130px 0 70px; }
}

/* =============== 3. CONTENT HERO (clean text-led) =============== */
.content-hero {
  padding: 180px 0 90px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.content-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 620px;
  height: 620px;
  background-image: url('../img/brand/sikori-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  filter: saturate(0.9);
}
@media (max-width: 720px) {
  .content-hero::before { width: 380px; height: 380px; }
}
.content-hero .container { max-width: 1080px; padding: 0 32px; position: relative; z-index: 1; }
.content-hero .ornament { margin: 0 auto 28px; }
.content-hero .eyebrow { display: inline-block; margin-bottom: 18px; }
.content-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 7vw, 110px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 0 auto 26px;
  font-weight: 500;
  max-width: 1000px;
}
.content-hero h1 .italic { color: var(--terracotta); font-style: italic; font-weight: 400; }
.content-hero .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--text-soft);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.5;
}
.content-hero .stat-line {
  display: flex; gap: 50px;
  justify-content: center; flex-wrap: wrap;
  margin: 40px 0 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.content-hero .stat-line .stat .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--terracotta);
  font-weight: 600;
  line-height: 1;
}
.content-hero .stat-line .stat .l {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 700;
  margin-top: 6px;
}
.content-hero .breadcrumb {
  margin-top: 30px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.content-hero .breadcrumb a { color: var(--text-soft); }
.content-hero .breadcrumb a:hover { color: var(--terracotta); }
.content-hero .breadcrumb .sep { margin: 0 12px; color: var(--text-faint); }

@media (max-width: 720px) {
  .content-hero { padding: 140px 0 70px; }
}
