/* =========================================================
   LEVANTOZ — design tokens
   ink        #15130F  near-black warm charcoal (base bg)
   panel      #1E1A13  raised panel on dark
   ivory      #F3EEE4  warm ivory (light bg / dark text)
   brass      #C19A49  primary accent (gold/brass)
   brass-deep #8B6F35  secondary accent
   olive      #8C8370  muted text on dark
   ink-soft   #4A4636  muted text on light
   ========================================================= */

:root{
  --ink: #15130F;
  --panel: #1E1A13;
  --panel-2: #221D15;
  --ivory: #F3EEE4;
  --brass: #C19A49;
  --brass-deep: #8B6F35;
  --olive: #8C8370;
  --ink-soft: #6B6152;
  --line: rgba(243,238,228,0.12);
  --line-soft: rgba(21,19,15,0.1);

  --display: "Fraunces", serif;
  --body: "Inter", sans-serif;
  --mono: "IBM Plex Mono", monospace;

  --wrap: 1180px;
  --ease: cubic-bezier(.22,1,.36,1);
}

[data-theme="light"] {
  --ink: #FAF6F0;
  --panel: #FFFFFF;
  --panel-2: #F3ECE0;
  --ivory: #1C1914;
  --brass: #9E7A2C;
  --brass-deep: #73571A;
  --olive: #5C5446;
  --ink-soft: #7C7262;
  --line: rgba(28,25,20,0.12);
  --line-soft: rgba(28,25,20,0.08);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family: var(--display); font-weight:500; margin:0; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }

.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior:auto !important; }
}

/* film-grain overlay, purely decorative */
.grain{
  position:fixed; inset:0; pointer-events:none; z-index:999;
  opacity:0.035; mix-blend-mode: overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =============== reveal-on-scroll =============== */
.reveal{
  opacity:0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:none; }

/* =============== buttons =============== */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 13px 26px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  cursor:pointer;
  white-space: nowrap;
}
.btn--solid{ background: var(--brass); color: var(--ink); }
.btn--solid:hover{ background: var(--ivory); transform: translateY(-2px); }
.btn--outline{ border-color: var(--line); color: var(--ivory); }
.btn--outline:hover{ border-color: var(--brass); color: var(--brass); transform: translateY(-2px); }
.btn--ghost{ color: var(--ivory); font-size:13px; letter-spacing:.03em; text-transform:none; font-family: var(--body); font-weight:600; }
.btn--ghost svg{ stroke: var(--brass); }
.btn--ghost:hover{ color: var(--brass); }

.eyebrow{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 14px;
}

/* =============== header =============== */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  padding: 22px 0;
}
.site-header.is-scrolled{
  background: rgba(21,19,15,0.86);
  backdrop-filter: blur(10px);
  border-color: var(--line);
  padding: 14px 0;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.brand-mark{
  display:flex; align-items:baseline; gap:2px;
  font-family: var(--display);
  font-size: 22px;
}
.brand-mark__l{ color: var(--brass); }
.brand-mark__rest{ letter-spacing: .05em; }
.nav{ display:flex; gap:36px; }
.nav a{
  font-size: 13.5px; font-weight:500; color: var(--olive);
  position:relative; padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav a::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:1px;
  background: var(--brass); transition: right .35s var(--ease);
}
.nav a:hover{ color: var(--ivory); }
.nav a:hover::after{ right:0; }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:34px; height:34px; background:none; border:none; cursor:pointer;
  padding:0; position:relative; z-index:510;
}
.nav-toggle span{
  display:block; height:2px; background: var(--ivory); width:100%; border-radius:1px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.nav-toggle.is-active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2){
  opacity:0;
}
.nav-toggle.is-active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* =============== hero =============== */
.hero{
  position:relative;
  min-height: 100svh;
  display:flex; align-items:center;
  overflow:hidden;
  padding-top: 90px;
}
.hero__bg{ position:absolute; inset:0; z-index:0; }
.hero__linework{ width:100%; height:100%; }
.hero__inner{ position:relative; z-index:1; text-align:center; }

.hero__wordmark{
  font-size: clamp(2.4rem, 8.4vw, 6.4rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  display:flex; justify-content:center; flex-wrap:wrap;
  gap: 0.02em;
  margin: 18px 0 22px;
}
.hero__wordmark [data-letter]{
  opacity:0; transform: translateY(24px);
  animation: letterIn .7s var(--ease) forwards;
}
.hero__wordmark .dot{
  color: var(--brass);
  opacity:0; animation: letterIn .5s var(--ease) forwards;
}
@keyframes letterIn{ to{ opacity:1; transform:none; } }

.hero__tagline{
  font-family: var(--display);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--olive);
  margin-bottom: 22px;
}
.hero__tagline em{ color: var(--ivory); font-style: italic; }

.hero__meta{
  display:flex; align-items:center; justify-content:center; gap:12px;
  font-size: 13.5px; color: var(--olive);
  margin-bottom: 40px; flex-wrap:wrap;
}
.hero__meta .rating{ display:inline-flex; align-items:center; gap:6px; color: var(--ivory); }
.divider-dot{ color: var(--brass); }

.hero__actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

.scroll-cue{
  display:block; width:1px; height:56px; margin: 56px auto 0;
  background: var(--line); position:relative; overflow:hidden;
}
.scroll-cue span{
  position:absolute; top:-56px; left:0; width:100%; height:100%;
  background: var(--brass);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue{ to{ top:56px; } }

/* =============== marquee =============== */
.marquee{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  overflow:hidden; background: var(--panel);
  padding: 16px 0;
}
.marquee__track{
  display:flex; gap: 14px; white-space:nowrap; width: max-content;
  font-family: var(--mono); font-size: 13px; letter-spacing:.1em;
  color: var(--olive);
  animation: marquee 26s linear infinite;
}
.marquee__track .dot{ color: var(--brass); }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* =============== section shared =============== */
section{ padding: 120px 0; }
.section-head{ max-width: 640px; margin: 0 0 56px; }
.section-head h2{ font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height:1.2; }
.section-head--split{
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.link-arrow{ font-family: var(--mono); font-size:13px; color: var(--brass); letter-spacing:.04em; white-space:nowrap; }
.link-arrow:hover{ color: var(--ivory); }

/* =============== collections =============== */
.grid{ display:grid; gap: 1px; background: var(--line); border:1px solid var(--line); }
.grid--4{ grid-template-columns: repeat(4, 1fr); }

.cat-card{
  background: var(--ink);
  padding: 44px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background .4s var(--ease);
}
.cat-card:hover{ background: var(--panel); }
.cat-card__art{
  width:64px; height:64px; color: var(--brass);
  margin: 0 auto 26px;
  transition: transform .4s var(--ease);
}
.cat-card:hover .cat-card__art{ transform: translateY(-4px); }
.cat-card h3{ font-size: 1.2rem; margin-bottom:10px; }
.cat-card p{ color: var(--olive); font-size: 14.5px; }

/* =============== story =============== */
.story{ background: var(--ivory); color: var(--ink); }
.story .eyebrow{ color: var(--brass-deep); }
.story__grid{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items:center; }
.story__figure{ width:100%; max-width:280px; margin:0 auto; display:block; }
.story__copy h2{ font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 22px; color: var(--ink); line-height:1.25; }
.story__copy p{ color: var(--ink-soft); margin-bottom: 18px; font-size: 15.5px; }
.story__stats{ display:flex; gap: 44px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line-soft); flex-wrap:wrap; }
.stat{ display:flex; flex-direction:column; gap:4px; }
.stat__num{ font-family: var(--display); font-size: 2.1rem; color: var(--brass-deep); }
.stat__label{ font-family: var(--mono); font-size: 11.5px; letter-spacing:.06em; text-transform:uppercase; color: var(--ink-soft); }

/* =============== reviews =============== */
.reviews__track{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.review-card{
  background: var(--ink); margin:0; padding: 34px 30px;
  display:flex; flex-direction:column; gap:16px;
}
.stars{ color: var(--brass); font-size: 13px; letter-spacing: 2px; }
.review-card p{ font-family: var(--display); font-size: 16.5px; line-height:1.5; color: var(--ivory); font-style: italic; }
.review-card footer{ font-family: var(--mono); font-size: 12px; color: var(--olive); display:flex; flex-direction:column; gap:2px; }
.review-card footer span{ color: var(--ink-soft); }
.reviews-mobile-hint{ display: none; }

/* =============== visit =============== */
.visit__grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items:start; }
.info-block{ margin-bottom: 28px; }
.info-block h4{ font-family: var(--mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--brass); margin-bottom:8px; }
.info-block p{ color: var(--olive); }
.info-block a{ color: var(--ivory); border-bottom:1px solid var(--line); }
.info-block a:hover{ color: var(--brass); border-color: var(--brass); }
.hours{ border-collapse: collapse; width:100%; }
.hours td{ padding: 8px 0; border-bottom:1px solid var(--line); color: var(--olive); font-size:14.5px; }
.hours td:last-child{ text-align:right; color: var(--ivory); font-family: var(--mono); font-size:13px; }
.visit__actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top:8px; }

.visit__map{ border:1px solid var(--line); }
.visit__map iframe{ width:100%; height:460px; border:0; filter: grayscale(0.25) contrast(1.05); }

/* =============== footer =============== */
.site-footer{ background: var(--panel); border-top:1px solid var(--line); padding-top: 80px; }
.footer__inner{ display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.brand-mark--footer{ margin-bottom: 18px; }
.footer__brand p{ color: var(--olive); font-size: 14px; line-height:1.7; }
.footer__col h5{ font-family: var(--mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--brass); margin-bottom:16px; }
.footer__col{ display:flex; flex-direction:column; gap:11px; }
.footer__col a{ color: var(--olive); font-size:14px; }
.footer__col a:hover{ color: var(--ivory); }
.footer__bottom{ border-top:1px solid var(--line); padding: 22px 0; }
.footer__bottom p{ color: var(--ink-soft); font-size:12.5px; font-family: var(--mono); }

/* =============== theme toggle =============== */
.theme-toggle{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--line); background: rgba(243,238,228,0.05);
  color: var(--brass); cursor:pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.theme-toggle:hover{ border-color: var(--brass); transform: scale(1.08); background: rgba(193,154,73,0.12); }
[data-theme="light"] .theme-toggle{ background: rgba(28,25,20,0.05); color: var(--brass); }

/* =============== light mode specific overrides =============== */
[data-theme="light"] .site-header.is-scrolled{
  background: rgba(250,246,240,0.88);
}
[data-theme="light"] .story{
  background: #ECE4D6;
  color: var(--ink);
}
[data-theme="light"] .story .story__copy h2{
  color: var(--ivory);
}

/* =============== header right & mobile cta =============== */
.header-right{ display:flex; align-items:center; gap:14px; }
.header-cta{ display:flex; align-items:center; gap:16px; }
.header-social-icons{ display:flex; align-items:center; gap:8px; }
.header-icon-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--line); color: var(--ivory);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.header-icon-btn:hover{ border-color: var(--brass); color: var(--brass); transform: translateY(-2px); }

.nav-mobile-cta{ display:none; }

/* =============== section head extensions =============== */
.section-desc{ color: var(--olive); font-size: 15px; max-width: 480px; margin-top: 8px; }
.section-head--center{ text-align: center; margin: 0 auto 56px; max-width: 640px; }
.section-head--center .section-desc{ margin-left: auto; margin-right: auto; }

/* =============== videos section =============== */
.videos-section{ background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.videos-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card{
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  cursor: pointer;
}
.video-card:hover{
  transform: translateY(-6px);
  border-color: var(--brass);
  box-shadow: 0 16px 36px rgba(0,0,0,0.5);
}
.video-card--featured{
  grid-column: span 2;
}
.video-card__media{
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  background: #0b0907;
  overflow: hidden;
}
.video-card--featured .video-card__media{
  aspect-ratio: 16 / 10;
}
.video-card__media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.video-card:hover .video-card__media video{
  transform: scale(1.03);
}
.video-badge{
  position: absolute;
  top: 14px; left: 14px; z-index: 2;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(21,19,15,0.85);
  backdrop-filter: blur(6px);
  color: var(--brass);
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid var(--line);
}
.video-card__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(21,19,15,0.8) 0%, rgba(21,19,15,0.15) 50%, rgba(21,19,15,0.25) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card:hover .video-card__overlay{ opacity: 1; }

.video-card__play{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--ink);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.video-card__play:hover{
  transform: scale(1.12);
  background: var(--ivory);
}

.video-card__mute{
  position: absolute;
  bottom: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(21,19,15,0.8);
  backdrop-filter: blur(6px);
  color: var(--ivory);
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.video-card__mute:hover{
  border-color: var(--brass);
  color: var(--brass);
  transform: scale(1.08);
}

.video-card__info{
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-card__info h3{ font-size: 1.15rem; margin-bottom: 6px; color: var(--ivory); }
.video-card__info p{ font-size: 13.5px; color: var(--olive); }

/* =============== social section =============== */
.social-section{ background: var(--ink); border-bottom: 1px solid var(--line); }
.social-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.social-card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
  text-decoration: none;
}
.social-card:hover{
  transform: translateY(-5px);
  border-color: var(--brass);
  background: var(--panel-2);
}
.social-card__header{ display: flex; align-items: center; justify-content: space-between; }
.social-card__icon{
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(243,238,228,0.05);
  color: var(--brass);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease);
}
.social-card:hover .social-card__icon{ transform: scale(1.1); }
.social-card__icon--instagram{ color: #E1306C; border-color: rgba(225,48,108,0.25); background: rgba(225,48,108,0.08); }
.social-card__icon--whatsapp{ color: #25D366; border-color: rgba(37,211,102,0.25); background: rgba(37,211,102,0.08); }
.social-card__icon--google{ color: #4285F4; border-color: rgba(66,133,244,0.25); background: rgba(66,133,244,0.08); }
.social-card__icon--facebook{ color: #1877F2; border-color: rgba(24,119,242,0.25); background: rgba(24,119,242,0.08); }

.social-card__tag{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--olive);
}
.social-card__body h3{ font-size: 1.1rem; margin-bottom: 6px; color: var(--ivory); }
.social-card__body p{ font-size: 13.5px; color: var(--olive); line-height: 1.5; }
.social-card__footer{
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--brass);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  transition: color .3s var(--ease);
}
.social-card:hover .social-card__footer{ color: var(--ivory); }

/* =============== footer social icons =============== */
.footer-social-icons{ display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.footer-social-icons a{
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--olive);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.footer-social-icons a:hover{ border-color: var(--brass); color: var(--brass); transform: translateY(-2px); }

/* =============== video modal lightbox =============== */
.video-modal{
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.video-modal.is-active{ opacity: 1; visibility: visible; }
.video-modal__backdrop{
  position: absolute; inset: 0;
  background: rgba(15,13,10,0.92);
  backdrop-filter: blur(12px);
}
.video-modal__content{
  position: relative; z-index: 1;
  width: 100%; max-width: 900px;
  max-height: 90vh;
  background: var(--ink);
  border: 1px solid var(--brass);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,0.8);
  transform: scale(0.94);
  transition: transform .4s var(--ease);
}
.video-modal.is-active .video-modal__content{ transform: scale(1); }
.video-modal__close{
  position: absolute; top: 14px; right: 16px; z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(21,19,15,0.8); border: 1px solid var(--line);
  color: var(--ivory); font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.video-modal__close:hover{ border-color: var(--brass); color: var(--brass); transform: rotate(90deg); }
.video-modal__player-wrap{
  width: 100%; background: #000;
  display: flex; justify-content: center; align-items: center;
  max-height: 70vh;
}
.video-modal__player-wrap video{ width: 100%; max-height: 70vh; object-fit: contain; }
.video-modal__caption{ padding: 20px 24px; background: var(--panel); border-top: 1px solid var(--line); }
.video-modal__caption h4{ font-size: 1.2rem; color: var(--ivory); margin-bottom: 4px; }
.video-modal__caption p{ font-size: 14px; color: var(--olive); }

/* =============== whatsapp fab =============== */
.whatsapp-fab{
  position: fixed; right: 24px; bottom: 24px; z-index: 400;
  width: 54px; height:54px; border-radius:50%;
  background: #25D366; color:#0c1a10;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform .3s var(--ease);
}
.whatsapp-fab:hover{ transform: scale(1.08); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px){
  .videos-grid{ grid-template-columns: repeat(2, 1fr); }
  .video-card--featured{ grid-column: span 2; }
  .social-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px){
  .story__grid{ grid-template-columns: 1fr; gap: 48px; }
  .story__art{ order:-1; max-width:220px; margin:0 auto; }
  .visit__grid{ grid-template-columns: 1fr; gap: 48px; }
  .footer__inner{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .reviews__track{ grid-template-columns: repeat(2,1fr); }
  .grid--4{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px){
  section{ padding: 76px 0; }
  .wrap{ padding: 0 18px; }

  .site-header{ padding: 14px 0; }
  .site-header.is-scrolled{ padding: 10px 0; }

  .nav{
    position:fixed; inset: 58px 0 0 0; height: calc(100svh - 58px);
    background: var(--ink); flex-direction:column; align-items:center; justify-content:flex-start; gap: 18px;
    transform: translateX(100%); transition: transform .4s var(--ease);
    padding: 32px 24px 40px; z-index: 500; overflow-y: auto;
  }
  .nav.is-open{ transform: none; }
  .nav a{ font-size: 19px; font-weight: 500; color: var(--ivory); }

  .nav-toggle{ display:flex; }
  .header-cta{ display:none; }

  .nav-mobile-cta{
    display: flex; flex-direction: column; align-items: center; gap: 18px;
    margin-top: 8px; padding-top: 20px; border-top: 1px solid var(--line); width: 100%; max-width: 270px;
  }
  .nav-mobile-cta .btn--solid{
    width: 100%; justify-content: center; padding: 12px 20px;
    background: transparent; border: 1px solid var(--brass); color: var(--brass);
    font-weight: 500; box-shadow: none;
  }
  .mobile-social-row{ display: flex; align-items: center; gap: 14px; }
  .mobile-social-row a{
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid var(--line); background: transparent; color: var(--ivory);
    transition: border-color .3s var(--ease), color .3s var(--ease);
  }
  .mobile-social-row a:hover{ border-color: var(--brass); color: var(--brass); }

  .hero{ min-height: calc(100svh - 60px); padding-top: 80px; padding-bottom: 40px; }
  .hero__wordmark{ font-size: clamp(2.1rem, 10.5vw, 4.2rem); margin: 12px 0 18px; gap: 0; }
  .hero__tagline{ font-size: 1.1rem; margin-bottom: 18px; }
  .hero__meta{ flex-direction:column; gap:6px; margin-bottom: 30px; font-size: 13px; }
  .hero__actions{ flex-direction:column; width:100%; gap: 12px; }
  .hero__actions .btn{ justify-content:center; width: 100%; }

  .videos-grid{ grid-template-columns: 1fr; gap: 20px; }
  .video-card--featured{ grid-column: span 1; }
  .video-card--featured .video-card__media{ aspect-ratio: 9 / 13; }
  .video-card__media{ aspect-ratio: 9 / 13; }
  .video-card__overlay{
    opacity: 1;
    background: linear-gradient(to top, rgba(21,19,15,0.85) 0%, rgba(21,19,15,0.1) 60%, rgba(21,19,15,0.2) 100%);
  }
  .video-card__play{ width: 50px; height: 50px; }

  .social-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .social-card{
    padding: 18px 12px;
    gap: 14px;
    border-radius: 6px;
  }
  .social-card__icon{
    width: 38px; height: 38px;
  }
  .social-card__icon svg{
    width: 20px; height: 20px;
  }
  .social-card__tag{
    font-size: 10px;
  }
  .social-card__body h3{
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .social-card__body p{
    font-size: 11.5px;
    line-height: 1.35;
  }
  .social-card__footer{
    padding-top: 10px;
    font-size: 11px;
  }

  .reviews__track{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    background: transparent;
    border: none;
    padding: 4px 18px 16px;
    margin: 0 -18px;
    scrollbar-width: none;
  }
  .reviews__track::-webkit-scrollbar{ display: none; }
  .review-card{
    flex: 0 0 85%;
    max-width: 320px;
    scroll-snap-align: center;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 24px 20px;
    background: var(--ink);
  }
  .review-card p{ font-size: 15px; line-height: 1.45; }
  .reviews-mobile-hint{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brass);
    margin-top: 14px;
    opacity: 0.85;
  }

  .grid--4{ grid-template-columns: repeat(2, 1fr); }
  .cat-card{ padding: 28px 16px; text-align: center; }
  .cat-card__art{ width: 44px; height: 44px; margin: 0 auto 16px; }
  .cat-card h3{ font-size: 1.08rem; margin-bottom: 6px; }
  .cat-card p{ font-size: 13px; line-height: 1.45; }

  .story__stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
  }
  .stat{ display: flex; flex-direction: column; align-items: center; text-align: center; }
  .stat__num{ font-size: 1.7rem; line-height: 1.1; }
  .stat__label{ font-size: 10.5px; letter-spacing: 0; line-height: 1.2; margin-top: 4px; text-align: center; }

  .visit__grid{ gap: 36px; }
  .visit__map iframe{ height: 320px; }

  .site-footer{ padding-top: 56px; }
  .footer__inner{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    padding-bottom: 36px;
  }
  .footer__brand{
    grid-column: span 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__brand p{
    text-align: center;
    max-width: 320px;
    font-size: 13.5px;
  }
  .footer-social-icons{
    justify-content: center;
    margin-top: 14px;
  }
  .footer__col h5{
    font-size: 11px;
    margin-bottom: 12px;
  }
  .footer__col a, .footer__col p{
    font-size: 13.5px;
  }
  .footer__col--hours{
    grid-column: span 2;
    text-align: center;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-top: 4px;
  }
  .footer__bottom{
    text-align: center;
    padding: 18px 0;
  }
  .footer__bottom p{
    text-align: center;
  }

  .whatsapp-fab{ width: 48px; height: 48px; right: 16px; bottom: 16px; }
  .whatsapp-fab svg{ width: 22px; height: 22px; }

  .video-modal{ padding: 8px; }
  .video-modal__content{ max-height: 94vh; border-radius: 6px; }
  .video-modal__player-wrap{ max-height: 58vh; }
  .video-modal__close{ width: 44px; height: 44px; font-size: 24px; top: 10px; right: 10px; }
}

@media (max-width: 480px){
  section{ padding: 60px 0; }
  .wrap{ padding: 0 16px; }
  .brand-mark{ font-size: 19px; }
  .theme-toggle{ width: 34px; height: 34px; }

  .grid--4{ grid-template-columns: repeat(2, 1fr); }
  .cat-card{ padding: 22px 10px; }
  .cat-card__art{ width: 38px; height: 38px; margin-bottom: 12px; }
  .cat-card h3{ font-size: 0.98rem; }
  .cat-card p{ font-size: 12px; }

  .social-grid{ grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .social-card{ padding: 16px 10px; gap: 10px; }
  .social-card__body h3{ font-size: 0.9rem; }
  .social-card__body p{ font-size: 11px; }

  .hero__wordmark{ font-size: clamp(1.8rem, 9.5vw, 3.2rem); }
  .section-head h2{ font-size: 1.55rem; }

  .story__stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    text-align: center;
  }
  .stat__num{ font-size: 1.5rem; }
  .stat__label{ font-size: 9.5px; }

  .hours td{ font-size: 13.5px; }
  .visit__map iframe{ height: 270px; }
}
