/* ============================================================
   טאקו MEXICO — style.css
   Warm Earthy · Frank Ruhl Libre + Assistant · RTL Hebrew
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --cream:      #f7f0e3;
  --sand:       #e8d5b0;
  --sand-dark:  #d4bc91;
  --terra:      #c2623f;
  --brick:      #8b3a2a;
  --earth:      #1e1007;
  --earth-mid:  #2c1a0e;
  --olive:      #6b7c3e;
  --gold:       #c9952a;
  --gold-lt:    #e8c46a;

  --txt:        #2c1a0e;
  --txt-mid:    #5c3d25;
  --txt-lt:     #f7f0e3;
  --txt-muted:  rgba(247,240,227,.55);

  --fnt-head: 'Frank Ruhl Libre', serif;
  --fnt-body: 'Assistant', sans-serif;
  --fnt-acc:  'Cormorant Garamond', serif;

  --ease: cubic-bezier(.4,0,.2,1);
  --r:   4px;
  --rl:  14px;
  --pad: clamp(64px, 9vw, 128px);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html  { scroll-behavior:auto; font-size:16px; }
body  {
  font-family: var(--fnt-body);
  background: var(--earth);
  color: var(--txt);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.65;
}
img, video { max-width:100%; display:block; }
a   { text-decoration:none; color:inherit; }
ul  { list-style:none; }
address { font-style:normal; }

/* Subtle film-grain overlay */
body::after {
  content:'';
  position:fixed; inset:0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)' opacity='.045'/%3E%3C/svg%3E");
  pointer-events:none;
  z-index:9999;
}

/* ── LAYOUT HELPER ──────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ── TYPOGRAPHY HELPERS ─────────────────────────────────── */
.section-label {
  font-family: var(--fnt-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 1.1rem;
}
.section-label.light { color: var(--gold-lt); }

.body-text {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--txt-mid);
  margin-bottom: 1.1rem;
}
.body-text.light { color: rgba(247,240,227,.68); }
.body-text strong { color: var(--terra); font-weight:700; }

/* ── REVEAL ANIMATION ───────────────────────────────────── */
.section-reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.6rem 2.5rem;
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s;
}
.main-nav.solid {
  background: rgba(247,240,227,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 2.5rem;
  box-shadow: 0 1px 0 rgba(44,26,14,.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  gap: 1px;
}
.logo-heb {
  font-family: var(--fnt-head);
  font-size: 1.65rem;
  font-weight: 900;
  color: white;
  letter-spacing: -.02em;
  transition: color .3s;
}
.logo-lat {
  font-family: var(--fnt-acc);
  font-style: italic;
  font-size: .62rem;
  letter-spacing: .28em;
  color: var(--gold-lt);
  transition: color .3s;
}
.main-nav.solid .logo-heb { color: var(--txt); }
.main-nav.solid .logo-lat { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(247,240,227,.82);
  letter-spacing: .04em;
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content:'';
  position:absolute;
  bottom:-3px; right:0;
  width:0; height:1.5px;
  background: var(--terra);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { width:100%; }
.main-nav.solid .nav-links a { color: var(--txt-mid); }
.main-nav.solid .nav-links a:hover { color: var(--terra); }

.nav-cta {
  background: var(--terra) !important;
  color: white !important;
  padding: .52rem 1.4rem;
  border-radius: 2px;
  font-size: .83rem !important;
  transition: background .25s, transform .2s !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background: var(--brick) !important; transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: .35s var(--ease);
}
.main-nav.solid .nav-burger span { background: var(--txt); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--earth);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(110%);
  transition: transform .5s cubic-bezier(.76,0,.24,1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: 1.6rem; left: 2rem;
  background: none; border: none;
  font-size: 1.5rem;
  color: rgba(247,240,227,.5);
  cursor: pointer;
  transition: color .2s;
}
.mobile-close:hover { color: white; }

.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 1.4rem 0; }
.mobile-link {
  font-family: var(--fnt-head);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  color: rgba(247,240,227,.8);
  transition: color .25s;
}
.mobile-link:hover, .mobile-link.cta { color: var(--terra); }

/* ── LOADER ─────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--earth);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  transition: opacity .6s var(--ease), visibility .6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
}
.loader-heb {
  font-family: var(--fnt-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--txt-lt);
  letter-spacing: -.02em;
}
.loader-lat {
  font-family: var(--fnt-acc);
  font-style: italic;
  font-size: clamp(.75rem, 1.5vw, 1.1rem);
  letter-spacing: .32em;
  color: var(--gold-lt);
}
.loader-bar-wrap {
  width: min(280px, 60vw);
  height: 2px;
  background: rgba(247,240,227,.12);
  border-radius: 2px;
  overflow: hidden;
}
#loaderBar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to left, var(--terra), var(--gold));
  border-radius: 2px;
  transition: width .15s linear;
}
#loaderPercent {
  font-family: var(--fnt-acc);
  font-style: italic;
  font-size: .9rem;
  letter-spacing: .2em;
  color: rgba(247,240,227,.4);
}

/* ── HERO STANDALONE (100vh before scroll) ──────────────── */
.hero-standalone {
  position: sticky;
  top: 0;
  height: 50vh;
  background: var(--earth);
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12vh 5% 0 50%;
  pointer-events: none;
}
.hero-s-inner { text-align: right; }

.hero-eyebrow {
  font-family: var(--fnt-body);
  font-size: clamp(.7rem, 1.2vw, .88rem);
  font-weight: 300;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .3s forwards;
}
.hero-s-title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: .9;
  gap: .1rem;
  margin-bottom: 1.2rem;
}
.hero-word {
  font-family: var(--fnt-head);
  font-size: clamp(6rem, 17vw, 17rem);
  font-weight: 900;
  color: white;
  letter-spacing: -.03em;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .5s forwards;
}
.hero-word-lat {
  font-family: var(--fnt-acc);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--gold-lt);
  letter-spacing: .45em;
  animation-delay: .7s;
}
.hero-s-tagline {
  font-size: clamp(.85rem, 1.4vw, 1.05rem);
  font-weight: 300;
  color: rgba(247,240,227,.6);
  letter-spacing: .08em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .9s forwards;
}
.scroll-hint {
  position: absolute;
  bottom: 1.8rem;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) 1.1s forwards;
}
.scroll-hint span {
  font-size: .7rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(247,240,227,.4);
}
.hint-line {
  width: 1.5px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(247,240,227,.45), transparent);
  align-self: flex-end;
  animation: breathe 2.2s ease infinite;
}

/* ── CANVAS (fixed, covers viewport) ───────────────────── */
.canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  clip-path: circle(0% at 50% 50%);
  background: var(--earth);
}
#canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── DARK OVERLAY (fixed) ───────────────────────────────── */
#darkOverlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: var(--earth);
  opacity: 0;
  pointer-events: none;
}

/* ── GSAP MARQUEE (fixed, giant, scroll-driven) ─────────── */
.gsap-marquee {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
}
.gsap-marquee-text {
  font-family: var(--fnt-head);
  font-size: clamp(8vw, 12vw, 14vw);
  font-weight: 900;
  color: rgba(247,240,227,.06);
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: -.01em;
}

/* ── SCROLL CONTAINER (600vh for canvas animation) ──────── */
#scrollContainer {
  position: relative;
  height: 400vh;
  z-index: 4;
}

/* ── SCROLL SECTIONS (absolute within container) ────────── */
.scroll-section {
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
  padding: 5vh 0;
  visibility: hidden;
  opacity: 0;
}

/* RTL side alignment — text in outer 40% zone */
.align-right {
  padding-right: 5vw;
  padding-left: 55vw;
}
.align-left {
  padding-right: 55vw;
  padding-left: 5vw;
}
.section-inner { max-width: 480px; }

.sc-label {
  display: block;
  font-family: var(--fnt-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.2rem;
}
.sc-heading {
  font-family: var(--fnt-head);
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.2rem;
}
.sc-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(247,240,227,.7);
  max-width: 38ch;
  margin-bottom: 1.6rem;
}
.cta-btn {
  display: inline-block;
  background: var(--terra);
  color: white;
  padding: .88rem 2rem;
  font-family: var(--fnt-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: var(--r);
  transition: background .25s, transform .2s, box-shadow .25s;
}
.cta-btn:hover {
  background: var(--brick);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,58,42,.35);
}

/* Stats section (centred, shown with dark overlay) */
.section-stats {
  padding: 0 5%;
  text-align: center;
}
.stats-grid {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}
.stat-number {
  font-family: var(--fnt-head);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  color: white;
  line-height: 1;
}
.stat-suffix {
  font-family: var(--fnt-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
  display: inline;
}
.stat-label {
  font-size: clamp(.75rem, 1.2vw, .9rem);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247,240,227,.55);
  margin-top: .4rem;
}

/* ── MARQUEE STRIP ──────────────────────────────────────── */
.marquee-strip {
  background: var(--terra);
  overflow: hidden;
  padding: .72rem 0;
  position: relative;
  z-index: 10;
}
.marquee-track {
  display: flex;
  gap: 2.2rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--fnt-acc);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(247,240,227,.9);
  letter-spacing: .06em;
  flex-shrink: 0;
}
.marquee-track .dot {
  color: rgba(247,240,227,.4);
  font-style: normal;
}

/* ── STORY SECTION ──────────────────────────────────────── */
.story-section {
  padding: var(--pad) 0;
  background: var(--cream);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.story-title {
  font-family: var(--fnt-head);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 900;
  color: var(--txt);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 1.8rem;
}
.accent-dash { color: var(--terra); }
.title-rule {
  width: 56px; height: 3px;
  background: linear-gradient(to left, var(--terra), var(--gold));
  margin-bottom: 1.8rem;
  border-radius: 2px;
}

.story-quote-block {
  background: var(--earth-mid);
  border-radius: var(--rl);
  padding: 2.4rem;
  margin-bottom: 2.2rem;
  position: relative;
}
.q-mark {
  font-family: var(--fnt-acc);
  font-style: italic;
  font-size: 5.5rem;
  color: var(--terra);
  line-height: 0;
  position: absolute;
  top: 2.8rem; right: 2rem;
  opacity: .5;
  user-select: none;
}
blockquote {
  font-family: var(--fnt-head);
  font-size: 1.28rem;
  color: var(--txt-lt);
  line-height: 1.65;
  padding-top: 1.2rem;
}
figcaption {
  margin-top: .9rem;
  font-size: .82rem;
  color: var(--gold-lt);
  letter-spacing: .06em;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat {
  text-align: center;
  padding: 1.4rem 1rem;
  border: 1px solid var(--sand);
  border-radius: var(--r);
  transition: border-color .3s, transform .3s;
}
.stat:hover { border-color: var(--terra); transform: translateY(-3px); }
.stat-num {
  display: block;
  font-family: var(--fnt-head);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--terra);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-lbl {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--txt-mid);
}

/* ── ORIGINS SECTION ────────────────────────────────────── */
.origins-section {
  background: var(--earth);
  padding: var(--pad) 0;
}
.origins-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.origins-img-wrap {
  border-radius: var(--rl);
  overflow: hidden;
}
.origins-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.origins-img-wrap:hover img { transform: scale(1.04); }
.origins-title {
  font-family: var(--fnt-head);
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 900;
  color: var(--txt-lt);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: .8rem 0 1.4rem;
}
.type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.8rem;
}
.chip {
  background: rgba(247,240,227,.07);
  border: 1px solid rgba(247,240,227,.14);
  color: var(--txt-lt);
  padding: .48rem 1rem;
  border-radius: 100px;
  font-size: .86rem;
  font-weight: 600;
  transition: background .25s, border-color .25s;
  cursor: default;
}
.chip:hover { background: rgba(194,98,63,.25); border-color: var(--terra); }

/* ── AUTOPLAY LOOP VIDEO ────────────────────────────────── */
.loop-video-section {
  position: relative;
  height: clamp(380px, 66vh, 680px);
  overflow: hidden;
}
.loop-video-wrap {
  position: relative;
  width: 100%; height: 100%;
  background: var(--earth);
}
.loop-video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.loop-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,16,7,.78) 0%, rgba(30,16,7,.18) 65%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 4.5rem;
}
.loop-eyebrow {
  font-family: var(--fnt-body);
  font-size: .83rem;
  font-weight: 300;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: .8rem;
}
.loop-headline {
  font-family: var(--fnt-head);
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  font-weight: 900;
  color: white;
  line-height: .95;
  letter-spacing: -.02em;
}

/* ── KITCHEN SECTION ────────────────────────────────────── */
.kitchen-section {
  padding: var(--pad) 0;
  background: var(--cream);
}
.kitchen-title {
  font-family: var(--fnt-head);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 900;
  color: var(--txt);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: .5rem 0 .7rem;
}
.kitchen-sub {
  font-size: 1rem;
  color: var(--txt-mid);
  margin-bottom: 3.5rem;
  letter-spacing: .04em;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.4rem;
}
.ing-card {
  background: white;
  border: 1px solid var(--sand);
  border-radius: var(--rl);
  padding: 2rem 1.6rem;
  opacity: 0;
  transform: translateY(22px);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.ing-card.show {
  animation: cardUp .55s var(--ease) var(--d) forwards;
}
.ing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(44,26,14,.11);
  border-color: var(--terra);
}
.ing-icon { font-size: 2.4rem; margin-bottom: .9rem; line-height: 1; }
.ing-card h3 {
  font-family: var(--fnt-head);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: .5rem;
}
.ing-card p {
  font-size: .87rem;
  line-height: 1.72;
  color: var(--txt-mid);
}

/* ── FOOD GALLERY (3 big images in kitchen section) ────────── */
.food-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.food-card {
  border-radius: var(--rl);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
  display: block;
}
.food-card:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .food-gallery { grid-template-columns: 1fr; }
  .food-card { aspect-ratio: 4/3; }
}

/* ── LOOP VIDEO OVERLAY VARIANT (centered title) ────────────── */
.loop-video-overlay--center {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, rgba(30,16,7,.55) 0%, rgba(30,16,7,.55) 100%);
}
.loop-headline--large {
  font-size: clamp(3.2rem, 8vw, 8rem);
  letter-spacing: -.03em;
}

/* ── OWNERS LAYOUT (photo + text side by side) ──────────────── */
.owners-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.owners-photo {
  border-radius: var(--rl);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.owners-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.owners-photo:hover .owners-img { transform: scale(1.03); }
.owners-text-col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.owners-text-col .owner-card {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--sand);
}
.owners-text-col .owner-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 900px) {
  .owners-layout { grid-template-columns: 1fr; gap: 3rem; }
  .owners-photo { position: static; }
  .owners-img { height: 360px; }
}

/* ── FEATURED / PLAY-ON-CLICK VIDEO ─────────────────────── */
.featured-section {
  background: var(--earth-mid);
  padding: var(--pad) 0;
}
.featured-inner { text-align: center; }
.featured-title {
  font-family: var(--fnt-head);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--txt-lt);
  margin: .5rem 0 2.4rem;
}
.player-wrap {
  position: relative;
  border-radius: var(--rl);
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 900px;
  margin: 0 auto;
  background: var(--earth);
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
}
.player-poster {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.poster-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.65);
  transition: filter .4s, transform .4s var(--ease);
}
.player-poster:hover .poster-img { filter: brightness(.5); transform: scale(1.03); }
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.play-circle {
  width: 82px; height: 82px;
  transition: transform .3s var(--ease);
}
.play-circle svg { width: 100%; height: 100%; }
.player-poster:hover .play-circle { transform: scale(1.12); }
.play-btn span {
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(247,240,227,.75);
}
.featured-video {
  width: 100%; height: 100%;
  object-fit: contain;
  background: var(--earth);
}

/* ── OWNERS SECTION ─────────────────────────────────────── */
.owners-section {
  padding: var(--pad) 0;
  background: var(--cream);
}
.owners-title {
  font-family: var(--fnt-head);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 900;
  color: var(--txt);
  margin: .5rem 0 .4rem;
}
.owners-sub {
  font-size: .98rem;
  color: var(--txt-mid);
  margin-bottom: 3.5rem;
}
.owners-grid {
  max-width: 960px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.owner-card { display: flex; flex-direction: column; gap: 1.4rem; }
.owner-img-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3/4;
}
.owner-placeholder {
  width: 100%; height: 100%;
  background: var(--earth-mid);
  border-radius: var(--rl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owner-placeholder svg { width: 70%; height: 70%; }
.owner-frame {
  position: absolute;
  top: 12px; left: -12px;
  right: 12px; bottom: -12px;
  border: 2px solid var(--terra);
  border-radius: var(--rl);
  pointer-events: none;
  z-index: -1;
  transition: transform .3s var(--ease);
}
.owner-card:hover .owner-frame { transform: translate(-4px, 4px); }
.owner-name {
  font-family: var(--fnt-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--txt);
}
.owner-role {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: -.5rem;
}
.owner-bio {
  font-size: .95rem;
  line-height: 1.82;
  color: var(--txt-mid);
}

/* ── LOCATIONS SECTION ──────────────────────────────────── */
.locations-section {
  background: var(--earth-mid);
  padding: var(--pad) 0;
}
.locations-title {
  font-family: var(--fnt-head);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 900;
  color: var(--txt-lt);
  margin: .5rem 0 3rem;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.loc-card {
  background: rgba(247,240,227,.05);
  border: 1px solid rgba(247,240,227,.1);
  border-radius: var(--rl);
  padding: 2.4rem;
  position: relative;
  transition: background .3s, border-color .3s, transform .3s;
}
.loc-card:hover {
  background: rgba(247,240,227,.08);
  border-color: rgba(194,98,63,.35);
  transform: translateY(-4px);
}
.loc-card.featured { border-color: var(--terra); background: rgba(194,98,63,.07); }
.loc-badge {
  position: absolute;
  top: -12px; right: 1.5rem;
  background: var(--terra);
  color: white;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .28rem .75rem;
  border-radius: 100px;
}
.loc-num {
  display: block;
  font-family: var(--fnt-acc);
  font-style: italic;
  font-size: 3rem;
  color: rgba(247,240,227,.12);
  line-height: 1;
  margin-bottom: .3rem;
}
.loc-city {
  font-family: var(--fnt-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--txt-lt);
  margin-bottom: .4rem;
}
.loc-addr {
  font-size: .88rem;
  color: rgba(247,240,227,.45);
  margin-bottom: 1.4rem;
}
.loc-hours {
  border-top: 1px solid rgba(247,240,227,.08);
  padding-top: 1.1rem;
  margin-bottom: 1.4rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .83rem;
  color: rgba(247,240,227,.52);
  padding: .28rem 0;
}
.hours-row span:last-child { color: rgba(247,240,227,.82); font-weight: 600; }
.loc-phone {
  font-size: .98rem;
  font-weight: 700;
  color: var(--terra);
  letter-spacing: .04em;
  transition: color .25s;
}
.loc-phone:hover { color: var(--gold-lt); }

/* ── BOOKING SECTION ────────────────────────────────────── */
.booking-section {
  padding: var(--pad) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(194,98,63,.07), transparent 65%);
  pointer-events: none;
}
.booking-inner { max-width: 680px; }
.booking-title {
  font-family: var(--fnt-head);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 900;
  color: var(--txt);
  margin: .5rem 0 .4rem;
}
.booking-sub {
  font-size: .98rem;
  color: var(--txt-mid);
  margin-bottom: 2.8rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--txt-mid);
}
.form-group input,
.form-group select {
  background: white;
  border: 1.5px solid var(--sand);
  border-radius: var(--r);
  padding: .88rem 1rem;
  font-family: var(--fnt-body);
  font-size: .96rem;
  color: var(--txt);
  direction: rtl;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .25s, box-shadow .25s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3.5px rgba(194,98,63,.13);
}
.form-group input::placeholder { color: rgba(44,26,14,.3); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c3d25' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left .9rem center;
  background-size: 15px;
  padding-left: 2.4rem;
}

.submit-btn {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: .8rem;
  background: var(--terra);
  color: white;
  border: none;
  padding: 1rem 2.2rem;
  font-family: var(--fnt-body);
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: var(--r);
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
  min-width: 190px;
  justify-content: center;
}
.submit-btn:hover {
  background: var(--brick);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(139,58,42,.3);
}
.submit-btn svg { flex-shrink: 0; transition: transform .2s; }
.submit-btn:hover svg { transform: translateX(-4px); }

/* Booking success */
.booking-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
  animation: fadeUp .6s var(--ease) forwards;
}
.success-check {
  width: 68px; height: 68px;
  background: var(--olive);
  color: white;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
}
.booking-success h3 {
  font-family: var(--fnt-head);
  font-size: 2.4rem;
  color: var(--txt);
  margin-bottom: .9rem;
}
.booking-success p {
  font-size: 1rem;
  color: var(--txt-mid);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.booking-success p strong { color: var(--terra); }
.reset-btn {
  background: none;
  border: 2px solid var(--terra);
  color: var(--terra);
  padding: .78rem 2rem;
  font-family: var(--fnt-body);
  font-size: .9rem;
  font-weight: 700;
  border-radius: var(--r);
  cursor: pointer;
  transition: background .25s, color .25s;
}
.reset-btn:hover { background: var(--terra); color: white; }

/* ── FOOTER ─────────────────────────────────────────────── */
.main-footer {
  background: var(--earth);
  padding: 5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(247,240,227,.08);
  margin-bottom: 2rem;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: .8rem;
}
.footer-logo .logo-heb {
  font-family: var(--fnt-head);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--txt-lt);
}
.footer-logo .logo-lat {
  font-family: var(--fnt-acc);
  font-style: italic;
  font-size: .82rem;
  letter-spacing: .26em;
  color: var(--gold-lt);
}
.footer-tag {
  font-size: .88rem;
  color: rgba(247,240,227,.38);
  line-height: 1.6;
  max-width: 220px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--fnt-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--txt-lt);
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: .65rem; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(247,240,227,.45);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--terra); }
.socials { display: flex; gap: .9rem; }
.social {
  width: 40px; height: 40px;
  background: rgba(247,240,227,.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,240,227,.45);
  transition: background .25s, color .25s;
}
.social:hover { background: var(--terra); color: white; }
.social svg { width: 17px; height: 17px; }
.footer-bottom {
  text-align: center;
  font-size: .78rem;
  color: rgba(247,240,227,.22);
  letter-spacing: .05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  opacity: .45;
  filter: brightness(0) invert(1);
}

/* ── KEYFRAMES ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0);    }
}
@keyframes breathe {
  0%,100% { opacity:.45; transform:scaleY(1);   }
  50%      { opacity:1;   transform:scaleY(1.18); }
}
@keyframes marquee {
  from { transform:translateX(0); }
  to   { transform:translateX(-33.333%); }
}
@keyframes cardUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0);    }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .story-inner    { grid-template-columns: 1fr; gap: 3rem; }
  .origins-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .origins-img-wrap img { height: 360px; }
  .owners-grid    { grid-template-columns: 1fr; max-width: 420px; }
  .footer-inner   { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .footer-cols    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --pad: 56px; }

  /* Scroll sections: collapse side alignment on mobile */
  #scrollContainer { height: 350vh; }
  .align-right,
  .align-left {
    padding-right: 5vw;
    padding-left: 5vw;
  }
  .section-inner { max-width: 100%; }
  .scroll-section { padding: 3vh 5vw; }
  .sc-heading { font-size: clamp(1.8rem, 6vw, 3rem); }
  .stats-grid { gap: 2rem; }
  .stat-number { font-size: clamp(2.8rem, 10vw, 5rem); }
  .gsap-marquee-text { font-size: 18vw; }

  .hero-standalone {
    height: 50vh;
    align-items: center;
    justify-content: center;
    padding: 0 6%;
  }
  .hero-s-inner { text-align: center; }
  .hero-s-title { align-items: center; }
  .hero-word { font-size: clamp(3.2rem, 14vw, 5.5rem); }

  .nav-links  { display: none; }
  .nav-burger { display: flex; }

  .hero-content { bottom: 10%; right: 4%; }

  .loop-video-overlay { padding: 2.5rem; align-items: center; text-align: center; }

  .locations-grid { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-cols    { grid-template-columns: 1fr; }

  .submit-btn { width: 100%; }
  .hero-progress-track { display: none; }

  .stat-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .main-nav  { padding: 1.1rem 1.25rem; }
  .stat-row  { grid-template-columns: repeat(3,1fr); }
  .footer-cols { grid-template-columns: 1fr; }
}
