/* ===================================================================
   CHOCOLATE SARAYI CONGO
   Brand palette  : Brown #3b170b · Beige #fbe7cc · Orange #f96c2d
   Typefaces      : Playfair Display (headings) · Montserrat (text/UI)
   =================================================================== */

/* ---------- TYPEFACES (self-hosted, variable woff2) ---------- */
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/PlayfairDisplay.woff2") format("woff2");
  font-weight: 400 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat.woff2") format("woff2");
  font-weight: 300 700; font-style: normal; font-display: swap;
}

:root {
  /* exact brand colours */
  --brown:      #3b170b;
  --beige:      #fbe7cc;
  --orange:     #f96c2d;

  /* derived working shades */
  --brown-deep: #2a0f06;
  --brown-soft: #5a2c18;
  --beige-deep: #f3d9b6;
  --cream:      #fff7ec;
  --orange-deep:#e2551a;
  --muted:      #8a5b40;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", "Segoe UI", Helvetica, Arial, sans-serif;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 6px 22px rgba(59, 23, 11, 0.10);
  --shadow-md: 0 20px 50px rgba(59, 23, 11, 0.18);
  --shadow-lg: 0 30px 80px rgba(42, 15, 6, 0.34);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--beige);
  color: var(--brown);
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: .002em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--orange); color: #fff; }

.container { width: min(var(--maxw), 90%); margin-inline: auto; }

/* ---------- SECTION HEADINGS ---------- */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }

.section__head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section__kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--orange-deep);
  margin-bottom: 1.1rem;
  position: relative;
  padding-left: 2.6rem;
}
.section__kicker::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 2rem; height: 2px; background: var(--orange);
}
.section__head .section__kicker { padding-left: 0; }
.section__head .section__kicker::before { display: none; }
.section__kicker--light { color: var(--orange); }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--brown);
}
.section__title--light { color: var(--beige); }
.section__lead {
  margin-top: 1.2rem; color: var(--muted); font-size: 1.02rem; line-height: 1.65;
  max-width: 620px; margin-inline: auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 10px 26px rgba(249,108,45,.34); }
.btn--orange:hover { background: var(--orange-deep); box-shadow: 0 16px 34px rgba(226,85,26,.45); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: #fff; color: var(--brown); border-color: #fff; }
.btn--brown { background: var(--brown); color: var(--beige); margin-top: 1.6rem; }
.btn--brown:hover { background: var(--brown-deep); }

/* ===================================================================
   PRELOADER
   =================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--brown); display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader__inner { display: grid; place-items: center; gap: 1.6rem; }
.preloader__logo { width: 180px; border-radius: 12px; animation: pulse 1.6s ease-in-out infinite; }
.preloader__bar { width: 180px; height: 3px; background: rgba(251,231,204,.18); border-radius: 4px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--orange); animation: load 1.4s ease forwards; }
@keyframes load { to { width: 100%; } }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.96); opacity: .82; } }

/* ===================================================================
   NAVBAR
   =================================================================== */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 0.5rem 0;
}
.nav__container {
  width: min(var(--maxw), 92%); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav__brand img {
  height: 70px; width: auto;
  transition: height .4s var(--ease);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.28));
}
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  position: relative;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; transition: color .3s; padding: 0.4rem 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--orange); transition: width .35s var(--ease);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__cta--mobile { display: none; }
.nav__order { padding: 0.7rem 1.6rem; }

.nav.scrolled {
  background: rgba(251, 231, 204, .94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 30px rgba(59,23,11,.12);
}
.nav.scrolled .nav__brand img { height: 54px; filter: none; }
.nav.scrolled .nav__link { color: var(--brown); }
.nav.scrolled .nav__toggle span { background: var(--brown); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; z-index: 1100;
}
.nav__toggle span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: .35s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--brown); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--brown); }

/* ===================================================================
   HERO
   =================================================================== */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(42,15,6,.74) 0%, rgba(42,15,6,.5) 40%, rgba(42,15,6,.9) 100%),
    radial-gradient(ellipse at center, rgba(59,23,11,.12) 0%, rgba(42,15,6,.55) 100%);
}
.hero__content { text-align: center; color: #fff; width: min(920px, 90%); padding-top: 4rem; }
.hero__eyebrow {
  letter-spacing: 0.36em; text-transform: uppercase; font-size: 0.72rem;
  color: var(--beige); margin-bottom: 1.3rem;
}
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 6.4vw, 5rem); line-height: 1.08; letter-spacing: -0.01em;
  text-shadow: 0 6px 44px rgba(0,0,0,.46);
}
.hero__text {
  max-width: 600px; margin: 1.6rem auto 0; font-size: 1.02rem; color: rgba(255,255,255,.92);
  line-height: 1.7;
}
.hero__actions { margin-top: 2.4rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: grid; place-items: center; gap: .5rem; color: rgba(255,255,255,.82); }
.hero__mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; position: relative; }
.hero__mouse::before { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: #fff; border-radius: 2px; animation: scrolldot 1.8s infinite; }
.hero__scroll-text { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translate(-50%,12px); } }

/* ===================================================================
   MARQUEE
   =================================================================== */
.marquee { background: var(--brown); color: var(--beige); overflow: hidden; padding: 1.05rem 0; border-block: 2px solid rgba(249,108,45,.4); }
.marquee__track { display: inline-flex; align-items: center; gap: 2rem; white-space: nowrap; animation: scroll-x 30s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-size: 1.55rem; letter-spacing: .01em; }
.marquee__dot { color: var(--orange); font-size: 1rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ===================================================================
   VALUES
   =================================================================== */
.values { background: var(--beige); }
.values__grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(5, 1fr); }
.value-card {
  background: var(--cream); border-radius: 18px; padding: 2.4rem 1.4rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(59,23,11,.07);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.value-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: rgba(249,108,45,.45); }
.value-card__icon {
  width: 66px; height: 66px; margin: 0 auto 1.3rem; border-radius: 50%;
  display: grid; place-items: center; color: var(--orange-deep);
  background: var(--beige); border: 1.5px solid rgba(249,108,45,.3);
  transition: background .4s, color .4s, border-color .4s;
}
.value-card__icon svg { width: 30px; height: 30px; }
.value-card:hover .value-card__icon { background: var(--orange); color: #fff; border-color: var(--orange); }
.value-card h3 { font-family: var(--font-display); font-size: 1.7rem; color: var(--brown); margin-bottom: .4rem; }
.value-card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ===================================================================
   STORY
   =================================================================== */
.story { background: linear-gradient(180deg, var(--beige) 0%, var(--beige-deep) 100%); }
.story__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.story__media { position: relative; }
.story__media img { border-radius: 20px; width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-md); }
.story__badge {
  position: absolute; bottom: -28px; right: -10px;
  background: var(--orange); color: #fff; border-radius: 16px; padding: 1.2rem 1.5rem;
  display: flex; flex-direction: column; gap: .1rem; box-shadow: var(--shadow-md);
}
.story__badge-num { font-family: var(--font-display); font-size: 2.3rem; line-height: 1; }
.story__badge-label { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.story__body .section__title { margin: .6rem 0 1.4rem; }
.story__body p { color: var(--brown-soft); margin-bottom: 1.1rem; font-size: .98rem; }
.story__body strong { color: var(--orange-deep); font-weight: 600; }

/* split cards */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.split__card { border-radius: 20px; padding: clamp(2rem, 4vw, 3rem); min-height: 360px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.split__card--dark { background: var(--brown); color: var(--beige); }
.split__card h3 { font-family: var(--font-display); font-size: 2.1rem; margin: .5rem 0 1rem; color: #fff; }
.split__card--dark h3 { color: var(--beige); }
.split__card--dark p { color: rgba(251,231,204,.84); margin-bottom: 1rem; font-size: .95rem; }
.split__card--dark strong { color: var(--orange); font-weight: 600; }
/* video atmosphere card */
.split__card--video { color: #fff; }
.split__card--video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.split__card-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(42,15,6,.35), rgba(42,15,6,.86)); }
.split__card-inner { position: relative; z-index: 2; }
.split__card--video p { color: rgba(255,255,255,.92); font-size: .95rem; }

/* ===================================================================
   MISSION
   =================================================================== */
.mission { background: var(--brown); }
.mission__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.mission__card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(249,108,45,.28);
  border-radius: 20px; padding: clamp(2rem, 4vw, 3.2rem); position: relative; overflow: hidden;
  transition: border-color .4s, background .4s, transform .5s var(--ease);
}
.mission__card:hover { background: rgba(255,255,255,.06); border-color: var(--orange); transform: translateY(-6px); }
.mission__num { font-family: var(--font-display); font-size: 4.2rem; color: rgba(249,108,45,.4); line-height: 1; display: block; margin-bottom: .4rem; }
.mission__card h3 { font-family: var(--font-display); font-size: 2.1rem; color: #fff; margin-bottom: .8rem; }
.mission__card p { color: rgba(251,231,204,.82); font-size: .96rem; }

/* ===================================================================
   MENU
   =================================================================== */
.menu { background: var(--beige); }
.menu__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; align-items: start; }
.menu-card {
  background: var(--cream); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(59,23,11,.07);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.menu-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.menu-card__media { overflow: hidden; aspect-ratio: 3/4; position: relative; }
.menu-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.menu-card:hover .menu-card__media img { transform: scale(1.08); }
.menu-card__tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-display); font-size: 1.2rem; color: #fff;
  width: 42px; height: 42px; display: grid; place-items: center;
  background: rgba(249,108,45,.92); border-radius: 50%;
}
.menu-card__body { padding: 1.5rem 1.4rem 1.9rem; }
.menu-card__body h3 { font-family: var(--font-display); font-size: 1.7rem; color: var(--brown); margin-bottom: .4rem; line-height: 1.1; }
.menu-card__body p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ===================================================================
   FILMSTRIP (full-bleed video band)
   =================================================================== */
.filmstrip { position: relative; min-height: 78vh; display: grid; align-items: center; overflow: hidden; }
.filmstrip__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.filmstrip__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(42,15,6,.9) 0%, rgba(42,15,6,.6) 55%, rgba(42,15,6,.4) 100%); }
.filmstrip__content { position: relative; z-index: 2; color: #fff; max-width: 620px; padding-block: 5rem; }
.filmstrip__title { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; margin: .4rem 0 1.2rem; }
.filmstrip__content p { color: rgba(255,255,255,.9); margin-bottom: 2rem; font-size: 1rem; line-height: 1.7; }

/* ===================================================================
   GALLERY (auto-scroll strip)
   =================================================================== */
.gallery { overflow: hidden; background: var(--brown); padding: 0; }
.gallery__track { display: flex; gap: 0; width: max-content; animation: scroll-x 48s linear infinite; }
.gallery:hover .gallery__track { animation-play-state: paused; }
.gallery__item { width: clamp(220px, 26vw, 340px); aspect-ratio: 1/1; overflow: hidden; flex-shrink: 0; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }

/* ===================================================================
   CELEBRATIONS
   =================================================================== */
.celebrations { background: var(--beige-deep); }
.celebrations__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.celebrations__media img { border-radius: 20px; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-md); width: 100%; }
.celebrations__body .section__title { margin: .6rem 0 1.3rem; }
.celebrations__body > p { color: var(--brown-soft); font-size: .98rem; }
.celebrations__feature { margin-top: 1.6rem; padding: 1.6rem 1.8rem; background: var(--cream); border-radius: 16px; border-left: 4px solid var(--orange); box-shadow: var(--shadow-sm); }
.celebrations__feature h3 { font-family: var(--font-display); font-size: 1.7rem; color: var(--brown); margin-bottom: .4rem; }
.celebrations__feature p { font-size: .92rem; color: var(--muted); line-height: 1.6; }

/* ===================================================================
   IMPACT
   =================================================================== */
.impact { position: relative; overflow: hidden; }
.impact__bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-attachment: fixed; }
.impact__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(42,15,6,.94), rgba(59,23,11,.8)); }
.impact__content { position: relative; text-align: center; max-width: 780px; color: var(--beige); }
.impact__content .section__title { margin: .6rem 0 1.4rem; }
.impact__content p { color: rgba(251,231,204,.88); margin-bottom: 1rem; font-size: .98rem; }
.impact__stats { display: flex; justify-content: center; gap: clamp(2rem, 6vw, 5rem); margin-top: 3rem; flex-wrap: wrap; }
.impact__stats--left { justify-content: flex-start; gap: clamp(1.6rem, 4vw, 3.2rem); }

/* solid variant — no photo background, framed image beside text */
.impact--solid { background: linear-gradient(135deg, var(--brown-deep) 0%, var(--brown) 100%); }
.impact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.impact-grid__media img {
  width: 100%; border-radius: 20px; aspect-ratio: 4/3.4; object-fit: cover;
  box-shadow: var(--shadow-lg); border: 3px solid rgba(249,108,45,.35);
}
.impact-grid__body { color: var(--beige); }
.impact-grid__body .section__title { margin: .6rem 0 1.3rem; }
.impact-grid__body p { color: rgba(251,231,204,.86); margin-bottom: 1rem; font-size: .98rem; }
@media (max-width: 880px) {
  .impact-grid { grid-template-columns: 1fr; }
  .impact-grid__media { max-width: 480px; margin: 0 auto; }
  .impact__stats--left { justify-content: center; }
}
.impact__stat { display: grid; gap: .3rem; }
.impact__stat-num { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.2rem); color: var(--orange); line-height: 1; }
.impact__stat-label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(251,231,204,.78); }

/* ===================================================================
   CONTACT
   =================================================================== */
.contact { background: var(--beige); }
.contact__hours { margin-top: 1.4rem; color: var(--brown); font-size: 1.02rem; display: inline-flex; align-items: center; gap: .55rem; }
.contact__hours svg { width: 20px; height: 20px; color: var(--orange-deep); }
.contact__hours strong { font-weight: 400; color: var(--orange-deep); }
.contact__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-bottom: 3rem; }
.location {
  background: var(--cream); border-radius: 18px; padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(59,23,11,.07);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  position: relative; overflow: hidden;
}
.location::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.location:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.location:hover::before { transform: scaleX(1); }
.location h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--brown); margin-bottom: .8rem; line-height: 1.1; }
.location__addr { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; min-height: 3.4em; line-height: 1.55; }
.location__addr em { color: var(--orange-deep); font-style: normal; font-size: .8rem; }
.location__tel {
  display: inline-flex; align-items: center; gap: .5rem; color: var(--brown);
  font-size: .92rem; letter-spacing: .02em; border-bottom: 2px solid var(--orange); padding-bottom: 3px;
  transition: color .3s;
}
.location__tel svg { width: 17px; height: 17px; color: var(--orange-deep); }
.location__tel:hover { color: var(--orange-deep); }
.location__dir { display: inline-block; margin-top: 1rem; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-deep); transition: gap .3s, color .3s; }
.location__dir:hover { color: var(--brown); }

/* join */
.join { background: var(--brown); border-radius: 24px; padding: clamp(2.2rem, 5vw, 3.5rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.join__text h3 { font-family: var(--font-display); font-size: 2.2rem; color: #fff; margin: .4rem 0 .5rem; }
.join__text p { color: rgba(251,231,204,.82); max-width: 460px; font-size: .96rem; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--brown-deep); color: var(--beige); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand img { width: 165px; margin-bottom: 1.2rem; }
.footer__brand p { color: rgba(251,231,204,.68); font-size: .9rem; max-width: 320px; line-height: 1.7; }
.footer__col h4 { font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; color: var(--orange); margin-bottom: 1.2rem; }
.footer__col a { display: block; color: rgba(251,231,204,.78); font-size: .9rem; margin-bottom: .7rem; transition: color .3s, padding-left .3s; }
.footer__col a:hover { color: var(--orange); padding-left: 6px; }
.footer__hours { color: rgba(251,231,204,.55); font-size: .84rem; margin-top: .6rem; }
.footer__bottom { border-top: 1px solid rgba(249,108,45,.22); padding: 1.6rem 0; text-align: center; display: flex; flex-direction: column; gap: .3rem; }
.footer__bottom p { font-size: .8rem; color: rgba(251,231,204,.58); }
.footer__credit { font-family: var(--font-display); font-size: 1.05rem !important; color: rgba(249,108,45,.78) !important; }

/* ===================================================================
   BACK TO TOP
   =================================================================== */
.to-top {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%; background: var(--orange); color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(20px); transition: .4s var(--ease);
}
.to-top svg { width: 20px; height: 20px; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--orange-deep); transform: translateY(-4px); }

/* ===================================================================
   HEADING WEIGHTS (Playfair has a real weight axis)
   =================================================================== */
.value-card h3, .split__card h3, .mission__card h3, .menu-card__body h3,
.celebrations__feature h3, .location h3, .join__text h3 { font-weight: 600; }
.filmstrip__title, .story__badge-num, .mission__num { font-weight: 700; }
.menu-card__tag { font-weight: 700; }

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .impact__bg { background-attachment: scroll; }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
  .values__grid { grid-template-columns: repeat(3, 1fr); }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav__order { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px); height: 100vh;
    background: var(--beige); flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 3rem 2.4rem; gap: 1.6rem; transform: translateX(100%); transition: transform .5s var(--ease);
    box-shadow: -20px 0 60px rgba(42,15,6,.28);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link { color: var(--brown) !important; font-size: .92rem; }
  .nav__cta--mobile { display: inline-flex; background: var(--orange); color: #fff !important; padding: .8rem 1.8rem; border-radius: 100px; margin-top: .5rem; }
  .nav__cta--mobile::after { display: none; }

  .story__grid, .celebrations__grid { grid-template-columns: 1fr; }
  .story__media, .celebrations__media { max-width: 480px; margin: 0 auto; }
  .split, .mission__grid { grid-template-columns: 1fr; }
  .story__badge { right: 16px; }
  .impact__bg { background-attachment: scroll; }
}

@media (max-width: 620px) {
  .values__grid { grid-template-columns: 1fr 1fr; }
  .menu__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .location__addr { min-height: auto; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .join { flex-direction: column; align-items: flex-start; text-align: left; }
  .value-card { padding: 2rem 1.2rem; }
}

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

/* ===================================================================
   MULTI-PAGE COMPONENTS
   =================================================================== */

/* ---------- Page banner (sub-page hero) ---------- */
.page-banner {
  position: relative; min-height: 56vh; display: grid; align-items: center;
  text-align: center; overflow: hidden; isolation: isolate;
}
.page-banner__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; transform: scale(1.05); }
.page-banner__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(42,15,6,.85) 0%, rgba(42,15,6,.72) 50%, rgba(42,15,6,.94) 100%),
    radial-gradient(ellipse at center, rgba(42,15,6,.25) 0%, rgba(42,15,6,.5) 100%);
}
.page-banner__inner { color: #fff; padding: 8rem 1rem 3rem; width: min(820px, 92%); margin-inline: auto; }
.page-banner__kicker { display: inline-block; letter-spacing: .3em; text-transform: uppercase; font-size: .72rem; font-weight: 600; color: var(--orange); margin-bottom: 1rem; }
.page-banner__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.06; letter-spacing: -.01em; }
.page-banner__sub { margin-top: 1.1rem; color: rgba(255,255,255,.9); font-size: 1.05rem; max-width: 600px; margin-inline: auto; }
.breadcrumb { margin-top: 1.6rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.72); }
.breadcrumb a { color: rgba(255,255,255,.72); transition: color .3s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); margin: 0 .5rem; }
.breadcrumb .current { color: #fff; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--brown); color: var(--beige); text-align: center; padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.cta-band h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4.6vw, 3.2rem); color: #fff; margin-bottom: 1rem; line-height: 1.1; }
.cta-band p { color: rgba(251,231,204,.82); max-width: 560px; margin: 0 auto 2rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Home teaser link ---------- */
.section__cta { text-align: center; margin-top: 2.8rem; }

/* ---------- Pillars grid (responsive, no overflow) ---------- */
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; }

/* ---------- Menu feature rows (alternating) ---------- */
.menu-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; margin-bottom: clamp(3.5rem, 7vw, 6rem); }
.menu-feature:last-child { margin-bottom: 0; }
.menu-feature:nth-child(even) .menu-feature__media { order: 2; }
.menu-feature__media { position: relative; }
.menu-feature__media > img { width: 100%; border-radius: 20px; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }
.menu-feature__media .stack { display: grid; grid-template-columns: 2fr 1fr; grid-auto-rows: 1fr; gap: 1rem; }
.menu-feature__media .stack img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-sm); }
.menu-feature__media .stack img:first-child { grid-row: span 2; }
.menu-feature__num { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; background: var(--orange); width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; position: absolute; top: -18px; left: -18px; box-shadow: var(--shadow-sm); z-index: 2; }
.menu-feature__kicker { display: inline-block; letter-spacing: .26em; text-transform: uppercase; font-size: .72rem; font-weight: 600; color: var(--orange-deep); margin-bottom: .9rem; }
.menu-feature__body h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--brown); margin-bottom: 1rem; line-height: 1.1; }
.menu-feature__body > p { color: var(--brown-soft); margin-bottom: 1.3rem; }
.menu-list { display: grid; gap: .7rem; }
.menu-list li { display: flex; align-items: baseline; gap: .8rem; font-size: .95rem; color: var(--brown); }
.menu-list li::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); transform: translateY(-2px); }
.menu-list li em { font-style: normal; color: var(--muted); }

/* ---------- Gallery grid (masonry) ---------- */
.gallery-grid { columns: 3; column-gap: 1rem; }
.gallery-grid figure { break-inside: avoid; margin: 0 0 1rem; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.gallery-grid img { width: 100%; display: block; transition: transform .6s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(42,15,6,.25)); opacity: 0; transition: opacity .4s; }
.gallery-grid figure:hover::after { opacity: 1; }

/* ---------- Video showcase ---------- */
.video-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.video-showcase__item { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/10; background: var(--brown); }
.video-showcase__item--wide { grid-column: span 2; aspect-ratio: 16/7; }
.video-showcase__item video { width: 100%; height: 100%; object-fit: cover; }
.video-showcase__cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 1.2rem 1.4rem; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; text-shadow: 0 2px 14px rgba(0,0,0,.6); }
.video-showcase__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(42,15,6,.7)); z-index: 1; pointer-events: none; }

/* ---------- Contact form ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-form { background: var(--cream); border-radius: 22px; padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--shadow-sm); border: 1px solid rgba(59,23,11,.07); }
.contact-form h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--brown); margin-bottom: .4rem; }
.contact-form > p { color: var(--muted); font-size: .92rem; margin-bottom: 1.6rem; }
.form-row { display: grid; gap: 1.1rem; margin-bottom: 1.1rem; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--brown-soft); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: .95rem; color: var(--brown);
  background: #fff; border: 1.5px solid rgba(59,23,11,.14); border-radius: 12px; padding: .85rem 1rem; width: 100%;
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,108,45,.16); }
.field textarea { resize: vertical; min-height: 130px; }
.contact-form .btn { width: 100%; margin-top: .4rem; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: .9rem; text-align: center; }
.form-status { text-align: center; font-weight: 600; margin-top: 1rem; color: var(--orange-deep); min-height: 1.2em; }
.contact-aside { display: grid; gap: 1.2rem; align-content: start; }

/* ---------- Map embed ---------- */
.map-embed { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(59,23,11,.08); margin-top: 1rem; }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---------- Interactive branch map (Leaflet) ---------- */
.branch-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.4rem 0 1rem; }
.branch-chip {
  font-family: var(--font-body); cursor: pointer;
  border: 1.5px solid rgba(59,23,11,.16); background: var(--cream); color: var(--brown);
  padding: .55rem 1.15rem; border-radius: 100px; font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.branch-chip:hover { transform: translateY(-2px); }
.branch-chip:hover, .branch-chip.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.branch-map { height: 460px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(59,23,11,.08); z-index: 0; background: var(--beige-deep); }
.map-pin svg { filter: drop-shadow(0 3px 4px rgba(0,0,0,.35)); }
.leaflet-popup-content-wrapper { border-radius: 12px; box-shadow: var(--shadow-md); }
.leaflet-popup-content { font-family: var(--font-body); color: var(--brown); margin: .85rem 1rem; line-height: 1.55; font-size: .86rem; }
.leaflet-popup-content strong { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--brown); }
.leaflet-popup-content a { color: var(--orange-deep); font-weight: 600; }
.map-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; text-align: center; }

/* ---------- Responsive (multi-page) ---------- */
@media (max-width: 880px) {
  .menu-feature { grid-template-columns: 1fr; gap: 1.6rem; }
  .menu-feature:nth-child(even) .menu-feature__media { order: 0; }
  .menu-feature__media { max-width: 540px; margin: 0 auto; }
  .gallery-grid { columns: 2; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .gallery-grid { columns: 1; }
  .video-showcase { grid-template-columns: 1fr; }
  .video-showcase__item--wide { grid-column: span 1; aspect-ratio: 16/10; }
  .form-row--2 { grid-template-columns: 1fr; }
  .page-banner { min-height: 46vh; }
}
