/* ==========================================================================
   Texas Burger — main stylesheet
   Fonts: Fraunces (display) + Mulish (body)
   ========================================================================== */

:root {
  --green-950: #06200f;
  --green-900: #06200f;
  --green-800: #0d2e1a;
  --green-700: #163d25;
  --gold: #e3bd6c;
  --gold-dark: #cf9d3e;
  --cream: #e6e8e4;
  --paper: #f3f4f2;
  --bg-soft: #f6f6f4;
  --white: #ffffff;
  --rust: #06200f;
  --ink: #111111;
  --muted: #5c6657;
  --muted-2: #8a9286;
  --line: #e3e3dd;
  --line-dark: rgba(255, 255, 255, .12);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Mulish', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(6, 32, 15, .08);
  --shadow-lg: 0 24px 60px rgba(6, 32, 15, .16);
  --header-h: 92px;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--green-900); color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Eyebrows & headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-950);
}
.eyebrow::before { content: ''; width: 28px; height: 1.5px; background: currentColor; }
.eyebrow--center::after { content: ''; width: 28px; height: 1.5px; background: currentColor; }
.section--dark .eyebrow { color: rgba(255, 255, 255, .7); }

.h-display { font-size: clamp(34px, 4.4vw, 56px); text-transform: uppercase; color: var(--green-950); font-weight: 700; letter-spacing: -.02em; }
.h-section { font-size: clamp(30px, 3.4vw, 44px); color: var(--green-950); }
.section--dark .h-display, .section--dark .h-section { color: var(--white); }
.lead { font-size: 17px; color: var(--muted); max-width: 560px; }
.section--dark .lead { color: rgba(255, 255, 255, .72); }
.text-center { text-align: center; }
.section-head { margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head .lead { margin-top: 14px; }
.section-head.text-center .lead { margin-left: auto; margin-right: auto; }
.section-head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 24px; border-radius: 10px; border: 1.5px solid transparent;
  font-size: 14px; font-weight: 700; letter-spacing: .01em; white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green-900); color: var(--white); }
.btn--primary:hover { background: var(--green-700); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--green-900); }
.btn--gold, .btn--light { background: var(--white); color: var(--green-950); }
.btn--gold:hover, .btn--light:hover { background: #e9ece8; }
.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; border-radius: 999px; }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--ghost-light { border-color: rgba(255, 255, 255, .6); color: var(--white); border-radius: 999px; }
.btn--ghost-light:hover { background: var(--white); color: var(--green-950); }
.btn--block { width: 100%; }
.btn--lg { height: 54px; padding: 0 30px; font-size: 15px; }
.btn--pill { border-radius: 999px; }

/* ==========================================================================
   Header — full width at top, shrinks into a floating pill on scroll
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white); padding: 0;
  transition: padding .5s cubic-bezier(.2, .8, .2, 1), background-color .35s;
}
[data-page="home"] .site-header { background: transparent; }
.header-inner {
  height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 20px;
  border: 1px solid transparent; border-radius: 0;
  transition: height .5s cubic-bezier(.2, .8, .2, 1), max-width .5s cubic-bezier(.2, .8, .2, 1), border-radius .5s cubic-bezier(.2, .8, .2, 1),
              padding .5s cubic-bezier(.2, .8, .2, 1), background-color .35s, box-shadow .5s, border-color .35s;
}
.site-header.is-scrolled { background: transparent; padding: 12px 16px 0; }
.site-header.is-scrolled .header-inner {
  height: 64px; max-width: 1080px; border-radius: 999px; padding: 0 10px 0 26px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(1.6) blur(16px); -webkit-backdrop-filter: saturate(1.6) blur(16px);
  border-color: rgba(6, 32, 15, .07); box-shadow: 0 14px 40px rgba(6, 32, 15, .10);
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 46px; width: auto; transition: height .5s cubic-bezier(.2, .8, .2, 1); }
.site-header.is-scrolled .logo img { height: 30px; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  position: relative; padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #4a5249;
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--green-950); }
.main-nav a.is-active { color: var(--green-950); }
.main-nav a::after {
  content: ''; position: absolute; left: 50%; bottom: 2px; width: 4px; height: 4px; border-radius: 50%;
  background: var(--green-950); transform: translateX(-50%) scale(0); transition: transform .25s;
}
.main-nav a.is-active::after, .main-nav a:hover::after { transform: translateX(-50%) scale(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { border-radius: 999px; height: 42px; padding: 0 20px; font-size: 13px; }

.lang-switch { display: inline-flex; padding: 3px; border-radius: 999px; background: #f1f2f0; }
.lang-switch button {
  border: 0; background: transparent; padding: 5px 11px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; color: var(--muted-2); transition: background .2s, color .2s;
}
.lang-switch button.is-active { background: var(--green-950); color: var(--white); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--green-950); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex; position: fixed; inset: 0; z-index: 99; background: var(--white);
  padding: 110px 24px 24px; flex-direction: column; gap: 4px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .3s, transform .3s, visibility .3s;
}
.mobile-nav a.m-link {
  padding: 14px 4px; border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--green-950);
}
.mobile-nav a.m-link.is-active { font-style: italic; }
.mobile-nav .mobile-nav-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 28px; }
.mobile-nav .mobile-nav-foot .btn { border-radius: 999px; }
.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
.nav-open { overflow: hidden; }

body { padding-top: var(--header-h); }

/* ==========================================================================
   Home — hero (full-screen photo, dark overlay, text on top)
   ========================================================================== */
.hero {
  position: relative; margin-top: calc(-1 * var(--header-h));
  min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--green-950); color: var(--white); text-align: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; display: block; animation: heroFade 1.4s ease both; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .55) 45%, rgba(0, 0, 0, .72) 100%);
}
@keyframes heroFade { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: none; } }
.hero-inner { position: relative; z-index: 1; padding-top: var(--header-h); padding-bottom: 40px; }
.hero-eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(12px, 1.1vw, 15px);
  letter-spacing: .26em; text-transform: uppercase; color: rgba(255, 255, 255, .9);
  animation: upIn .9s cubic-bezier(.2, .8, .2, 1) .2s both;
}
.hero-title {
  margin-top: 2vh; font-size: clamp(46px, 7.6vw, 118px); font-weight: 700; line-height: 1;
  letter-spacing: -.035em; color: var(--white); white-space: nowrap; text-shadow: 0 4px 30px rgba(0, 0, 0, .25);
  animation: upIn 1s cubic-bezier(.2, .8, .2, 1) .35s both;
}
.hero-title .w1 { font-weight: 800; }
.hero-title .rotator { display: inline-block; position: relative; color: rgba(255, 255, 255, .78); font-weight: 400; font-style: italic; letter-spacing: -.02em; margin-left: .18em; }
.hero-title .rotator span { display: inline-block; animation: wordIn .7s cubic-bezier(.2, .8, .2, 1) both; }
.hero-title .bang { margin-left: .2em; font-weight: 800; }
@keyframes wordIn { from { opacity: 0; transform: translateY(35%); filter: blur(8px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes upIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 40px; animation: upIn 1s cubic-bezier(.2, .8, .2, 1) .5s both; }
.hero-actions .btn { border-radius: 999px; }


/* Header over the dark hero (home, before scrolling): white logo + links */
.logo .logo-light { display: none; }
[data-page="home"] .site-header:not(.is-scrolled) .logo .logo-dark { display: none; }
[data-page="home"] .site-header:not(.is-scrolled) .logo .logo-light { display: block; }
[data-page="home"] .site-header:not(.is-scrolled) .main-nav a { color: rgba(255, 255, 255, .85); }
[data-page="home"] .site-header:not(.is-scrolled) .main-nav a:hover,
[data-page="home"] .site-header:not(.is-scrolled) .main-nav a.is-active { color: var(--white); }
[data-page="home"] .site-header:not(.is-scrolled) .main-nav a::after { background: var(--white); }
[data-page="home"] .site-header:not(.is-scrolled) .lang-switch { background: rgba(255, 255, 255, .15); }
[data-page="home"] .site-header:not(.is-scrolled) .lang-switch button { color: rgba(255, 255, 255, .75); }
[data-page="home"] .site-header:not(.is-scrolled) .lang-switch button.is-active { background: var(--white); color: var(--green-950); }
[data-page="home"] .site-header:not(.is-scrolled) .header-actions .btn--primary { background: var(--white); color: var(--green-950); }
[data-page="home"] .site-header:not(.is-scrolled) .nav-toggle { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .35); }
[data-page="home"] .site-header:not(.is-scrolled) .nav-toggle span { background: var(--white); }
.nav-open[data-page="home"] .site-header .logo .logo-dark { display: block; }
.nav-open[data-page="home"] .site-header .logo .logo-light { display: none; }
.nav-open[data-page="home"] .site-header .nav-toggle { background: var(--white); border-color: var(--line); }
.nav-open[data-page="home"] .site-header .nav-toggle span { background: var(--green-950); }

/* ---------- Locations strip ---------- */
.locations-strip { position: relative; z-index: 3; padding: 72px 0 0; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.loc-card {
  display: flex; align-items: center; gap: 18px; background: var(--white); color: var(--green-950);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.loc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.loc-card .pin { width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; background: var(--green-950); color: var(--white); display: grid; place-items: center; }
.loc-card h3 { font-size: 26px; }
.loc-card .tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 2px; }
.loc-card p { font-size: 14px; color: var(--muted); }
.loc-card .arrow { margin-left: auto; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; transition: background .3s, color .3s; }
.loc-card:hover .arrow { background: var(--green-950); color: var(--white); border-color: var(--green-950); }

/* ==========================================================================
   Product cards (favorites + menu)
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.p-card {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.p-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.p-card .media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--green-950); }
.p-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.p-card:hover .media img { transform: scale(1.05); }
.p-card .body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.p-card h3 { font-size: 17px; text-transform: uppercase; color: var(--green-950); letter-spacing: .01em; }
.p-card p { margin-top: 8px; font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.p-card .foot { margin-top: auto; padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-weight: 800; font-size: 16px; color: var(--rust); }
.view-btn {
  border: 0; background: var(--ink); color: var(--white); border-radius: 999px; height: 30px; padding: 0 14px;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.view-btn:hover { background: var(--green-800); }
.p-card .badge {
  position: absolute; top: 12px; left: 12px; background: var(--white); color: var(--green-950);
  font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}
.p-card .media { position: relative; }

.cta-card {
  display: flex; flex-direction: column; justify-content: space-between; padding: 30px;
  border-radius: var(--radius); background: var(--green-900); color: var(--white); min-height: 320px;
  position: relative; overflow: hidden;
}
.cta-card::after {
  content: ''; position: absolute; right: -60px; bottom: -60px; width: 240px; height: 240px; border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, .18);
}
.cta-card h3 { font-size: 34px; color: var(--white); }
.cta-card p { color: rgba(255, 255, 255, .7); margin-top: 12px; font-size: 15px; }
.cta-card .btn { align-self: flex-start; position: relative; z-index: 1; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.ratings-row { display: flex; justify-content: center; gap: 48px; margin-top: 22px; }
.rating { text-align: center; }
.rating .stars { color: var(--green-950); letter-spacing: 3px; font-size: 15px; }
.rating strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--green-950); margin-top: 4px; }
.rating span { font-size: 12.5px; color: var(--muted); font-weight: 600; }

.review-group { margin-top: 54px; }
.review-group-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.review-group-head h3 { display: flex; align-items: center; gap: 12px; font-size: 24px; text-transform: uppercase; color: var(--green-950); }
.chip {
  display: inline-block; background: var(--ink); color: var(--white); border-radius: 4px; padding: 4px 9px;
  font-family: var(--font-body); font-size: 10.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.link-arrow { font-size: 13.5px; font-weight: 700; color: var(--green-950); border-bottom: 1.5px solid transparent; transition: border-color .2s; }
.link-arrow:hover { border-color: currentColor; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; }
.review-card .stars { color: var(--green-950); letter-spacing: 3px; font-size: 14px; }
.review-card blockquote { margin: 14px 0 22px; font-size: 14.5px; color: #2c332a; line-height: 1.65; }
.review-card .who { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--green-950); color: var(--white); display: grid; place-items: center; font-weight: 800; font-size: 13px; flex-shrink: 0; }
.review-card .who strong { display: block; font-size: 14px; line-height: 1.2; }
.review-card .who small { color: var(--muted-2); font-size: 12px; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 210px; gap: 14px;
}
.gallery a { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); display: block; }
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery a:hover img { transform: scale(1.06); }
.gallery a::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(6, 32, 15, .35)); opacity: 0; transition: opacity .3s; }
.gallery a:hover::after { opacity: 1; }
.gallery .g-big { grid-row: span 2; }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }

.lightbox { position: fixed; inset: 0; z-index: 400; background: rgba(6, 20, 12, .92); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-height: 86vh; max-width: 92vw; border-radius: 12px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .12); color: var(--white); font-size: 26px; line-height: 1; }
.lightbox-close:hover { background: rgba(255, 255, 255, .24); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: var(--white); margin-bottom: 14px; overflow: hidden; transition: border-color .2s; }
.faq-item.is-open { border-color: var(--green-950); }
.faq-q {
  width: 100%; border: 0; background: transparent; text-align: left; padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 15.5px; font-weight: 700; color: var(--ink);
}
.faq-q .plus { width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: var(--white); display: grid; place-items: center; flex-shrink: 0; transition: transform .3s, background .3s; font-size: 14px; }
.faq-item.is-open .plus { transform: rotate(45deg); background: var(--rust); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 22px; color: var(--muted); font-size: 15px; }

/* ==========================================================================
   Reservation block & forms
   ========================================================================== */
.reserve-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.reserve-copy h2 { margin-top: 16px; }
.reserve-copy .lead { margin-top: 18px; }
.checklist { margin-top: 28px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: #2c332a; }
.checklist .tick { width: 20px; height: 20px; border-radius: 50%; background: var(--ink); color: var(--white); display: grid; place-items: center; font-size: 11px; flex-shrink: 0; margin-top: 2px; }

.form-card { background: var(--white); border: 1.5px solid var(--ink); border-radius: var(--radius-lg); padding: 32px; box-shadow: 10px 10px 0 var(--green-950); }
.form-card h3 { font-size: 24px; color: var(--green-950); margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #3a4237; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; height: 48px; padding: 0 14px; border-radius: 10px; border: 1.5px solid #cfd3cb; background: var(--white);
  font: inherit; font-size: 14.5px; color: var(--ink); transition: border-color .2s, box-shadow .2s; appearance: none; -webkit-appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23111' stroke-width='1.6' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field textarea { height: 96px; padding: 12px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--green-900); box-shadow: 0 0 0 4px rgba(15, 77, 47, .12); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c0392b; }
.field .err { display: none; color: #c0392b; font-size: 12px; margin-top: 5px; font-weight: 600; }
.field.has-error .err { display: block; }
.field select:disabled { background-color: var(--bg-soft); color: var(--muted-2); }
.form-note { text-align: center; margin-top: 14px; font-size: 12.5px; color: var(--muted-2); }

.loc-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.loc-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.loc-toggle label {
  display: flex; flex-direction: column; gap: 2px; margin: 0; padding: 12px 14px; border-radius: 10px; border: 1.5px solid #cfd3cb; cursor: pointer;
  text-transform: none; letter-spacing: 0; font-size: 15px; font-weight: 700; color: var(--ink); transition: border-color .2s, background .2s;
}
.loc-toggle label small { font-size: 12px; font-weight: 600; color: var(--muted-2); }
.loc-toggle input:checked + label { border-color: var(--green-900); background: rgba(15, 77, 47, .06); box-shadow: inset 0 0 0 1px var(--green-900); }
.loc-toggle input:focus-visible + label { box-shadow: 0 0 0 4px rgba(15, 77, 47, .15); }

.slot-hint { font-size: 12px; color: var(--muted-2); margin-top: 6px; min-height: 18px; }
.form-alert { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 10px; font-size: 14px; font-weight: 600; }
.form-alert.is-error { display: block; background: #fbecea; color: #9b2c1f; }
.form-success { display: none; text-align: center; padding: 20px 6px; }
.form-success.is-visible { display: block; }
.form-success .big-tick { width: 64px; height: 64px; border-radius: 50%; background: var(--green-900); color: var(--white); display: grid; place-items: center; margin: 0 auto 18px; font-size: 28px; }
.form-success h3 { margin-bottom: 8px; }
.form-success .ref { display: inline-block; margin: 16px 0; padding: 10px 18px; border-radius: 10px; background: var(--paper); font-weight: 800; letter-spacing: .12em; color: var(--green-950); }
.form-success .summary { font-size: 14px; color: var(--muted); }
.btn.is-loading { opacity: .7; pointer-events: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--green-950); color: var(--white); overflow: hidden; }
.marquee { overflow: hidden; white-space: nowrap; border-bottom: 1px solid var(--line-dark); }
.marquee-track { display: inline-flex; animation: marquee 38s linear infinite; }
.marquee--small { padding: 16px 0; }
.marquee--small span { font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .5); padding: 0 22px; display: inline-flex; align-items: center; gap: 44px; }
.marquee--small span::after { content: '•'; color: var(--gold); }
.marquee--small span:nth-child(3n+1) { color: var(--white); }
.marquee--big { padding: 18px 0 10px; }
.marquee--big .marquee-track { animation-duration: 30s; animation-direction: reverse; }
.marquee--big span { font-family: var(--font-display); font-weight: 700; font-size: clamp(64px, 11vw, 150px); line-height: 1; text-transform: uppercase; padding-right: .35em; letter-spacing: -.02em; }
.marquee--big .o { color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .55); }
.marquee--big .g { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

.footer-main { padding: 56px 0 30px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.footer-main h4 { font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-main p, .footer-main li { font-size: 14px; color: rgba(255, 255, 255, .7); }
.footer-main li + li { margin-top: 9px; }
.footer-main a:hover { color: var(--white); }
.footer-brand img { height: 58px; width: auto; margin-bottom: 20px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; transition: background .2s, border-color .2s; }
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--green-950); }
.socials svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 20px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255, 255, 255, .5); }

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: var(--white); display: grid; place-items: center; box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; }

/* ==========================================================================
   Inner-page heroes
   ========================================================================== */
.page-hero { position: relative; color: var(--white); padding: 120px 0 110px; overflow: hidden; background: var(--green-950); }
.page-hero .bg { position: absolute; inset: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6, 32, 15, .92) 0%, rgba(6, 32, 15, .7) 45%, rgba(6, 32, 15, .25) 100%); }
.page-hero--grid { background-color: var(--green-900); background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px); background-size: 44px 44px; }
.page-hero .container { position: relative; z-index: 1; }
.tag-chip { display: inline-block; background: var(--white); color: var(--ink); padding: 6px 12px; border-radius: 4px; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.page-hero h1 { margin-top: 22px; font-size: clamp(46px, 7.4vw, 96px); font-weight: 700; text-transform: uppercase; line-height: .95; letter-spacing: -.03em; max-width: 12ch; }
.page-hero h1 em { font-style: italic; font-weight: 400; color: rgba(255, 255, 255, .78); }
.page-hero p { margin-top: 24px; max-width: 520px; font-size: 17px; color: rgba(255, 255, 255, .8); }
.page-hero .actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }

/* ---------- About ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-media { position: relative; }
.story-media img { border-radius: var(--radius-lg); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.story-media .float-img { position: absolute; width: 46%; right: -8%; bottom: -8%; aspect-ratio: 1; border: 8px solid var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.story-copy h2 { margin: 14px 0 22px; }
.story-copy p + p { margin-top: 16px; }
.story-copy p { color: var(--muted); font-size: 16px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.stat { border-top: 2px solid var(--green-950); padding-top: 14px; }
.stat strong { display: block; font-family: var(--font-display); font-size: 40px; color: var(--green-950); line-height: 1; }
.stat span { font-size: 13px; color: var(--muted); font-weight: 700; letter-spacing: .04em; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: var(--green-800); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 30px; transition: transform .25s, background .25s; }
.value-card:hover { transform: translateY(-4px); background: var(--green-700); }
.value-card .emoji { font-size: 30px; }
.value-card h3 { font-size: 22px; margin: 16px 0 10px; color: var(--white); }
.value-card p { font-size: 14.5px; color: rgba(255, 255, 255, .7); }

.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 23px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.t-item { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding-bottom: 40px; }
.t-item:last-child { padding-bottom: 0; }
.t-dot { width: 48px; height: 48px; border-radius: 50%; background: var(--green-900); color: var(--white); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; position: relative; z-index: 1; }
.t-item small { font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--rust); }
.t-item h3 { font-size: 26px; color: var(--green-950); margin: 6px 0 10px; }
.t-item p { color: var(--muted); }

.cta-band { background: var(--green-950); border-radius: var(--radius-lg); padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(30px, 3.6vw, 46px); color: var(--white); max-width: 16ch; }
.cta-band p { color: rgba(255, 255, 255, .7); margin-top: 10px; font-weight: 600; }
.cta-band .btn--primary { background: var(--white); color: var(--green-950); }
.cta-band .btn--outline { border-color: rgba(255, 255, 255, .5); color: var(--white); }
.cta-band .btn--outline:hover { background: var(--white); color: var(--green-950); }

/* ---------- Menu page ---------- */
.menu-hero { padding: 56px 0 34px; text-align: center; background: var(--white); }
.menu-hero .eyebrow { justify-content: center; }
.menu-hero .eyebrow::before, .menu-hero .eyebrow::after { content: ''; width: 28px; height: 1.5px; background: currentColor; }
.menu-hero h1 { margin-top: 14px; font-size: clamp(44px, 6vw, 76px); font-weight: 700; color: var(--green-950); letter-spacing: -.03em; }
.menu-hero .lead { margin: 12px auto 0; }

/* Location picker: two simple cards */
.loc-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 560px; margin: 30px auto 0; }
.loc-switch button {
  display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 16px 12px;
  border: 1.5px solid var(--line); border-radius: 16px; background: var(--white); color: var(--green-950);
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
}
.loc-switch button strong { font-family: var(--font-display); font-size: 21px; font-weight: 600; }
.loc-switch button small { font-size: 12.5px; color: var(--muted-2); font-weight: 600; }
.loc-switch button:hover { border-color: var(--green-950); }
.loc-switch button.is-active { background: var(--green-950); border-color: var(--green-950); color: var(--white); box-shadow: var(--shadow); }
.loc-switch button.is-active small { color: rgba(255, 255, 255, .7); }
.menu-meta { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 22px; margin-top: 18px; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.menu-meta > span, .menu-meta > a { display: inline; }
.menu-meta svg { width: 15px; height: 15px; opacity: .7; display: inline-block; vertical-align: -2px; margin-right: 6px; }
.menu-meta a:hover { color: var(--green-950); }

/* Sticky category pills */
.cat-bar { position: sticky; top: 76px; z-index: 50; background: rgba(255, 255, 255, .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.cat-pills { display: flex; justify-content: center; gap: 8px; padding: 12px 0; overflow-x: auto; scrollbar-width: none; }
.cat-pills::-webkit-scrollbar { display: none; }
.cat-pills a {
  flex-shrink: 0; padding: 9px 20px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 14px; font-weight: 700; color: var(--muted); background: var(--white); transition: all .2s;
}
.cat-pills a:hover { color: var(--green-950); border-color: var(--green-950); }
.cat-pills a.is-active { background: var(--green-950); border-color: var(--green-950); color: var(--white); }

/* Sections */
.menu-body { background: var(--bg-soft); padding-bottom: 80px; }
.menu-section { padding: 56px 0 8px; scroll-margin-top: 150px; }
.menu-section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.menu-section-head h2 { font-size: clamp(30px, 3.2vw, 40px); color: var(--green-950); }
.menu-section-head p { color: var(--muted); font-size: 15px; }
.menu-note { display: inline-flex; align-items: center; gap: 8px; margin: -6px 0 22px; font-size: 13px; font-weight: 700; color: var(--green-800); }
.menu-group-title { margin: 34px 0 14px; font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); }

/* Item rows */
.m-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.m-item {
  display: flex; gap: 16px; align-items: center; width: 100%; text-align: left; padding: 12px; border-radius: 16px;
  border: 1px solid var(--line); background: var(--white); color: inherit; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.m-item:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-2px); }
.m-thumb { width: 88px; height: 88px; border-radius: 12px; object-fit: cover; flex-shrink: 0; background: var(--bg-soft); }
.m-info { display: block; flex: 1; min-width: 0; }
.m-top { display: flex; align-items: baseline; gap: 12px; }
.m-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--green-950); }
.m-top .dots { flex: 1; border-bottom: 1.5px dotted #cfd3cb; transform: translateY(-4px); min-width: 12px; }
.m-price { font-weight: 800; font-size: 16px; color: var(--green-950); white-space: nowrap; }
.m-desc { margin-top: 4px; font-weight: 400; font-size: 13.5px; color: var(--muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.m-tag { display: inline-block; margin-top: 6px; font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--green-800); background: #eef1ec; border-radius: 999px; padding: 3px 9px; }

/* Drinks lists + extras */
.list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.list-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; }
.list-card h4 { font-family: var(--font-display); font-size: 19px; color: var(--green-950); margin-bottom: 8px; }
.list-row { display: flex; align-items: baseline; gap: 10px; padding: 9px 0; border-bottom: 1px solid #eef0ec; font-size: 14.5px; }
.list-row:last-child { border-bottom: 0; }
.list-row .name { font-weight: 700; }
.list-row .note { display: block; font-size: 12.5px; color: var(--muted-2); font-weight: 500; }
.list-row .dots { flex: 1; }
.list-row .price { font-size: 14.5px; white-space: nowrap; }
.extras { display: flex; flex-wrap: wrap; gap: 10px; }
.extras span { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: 13.5px; font-weight: 700; }
.extras span b { color: var(--green-950); margin-left: 6px; font-weight: 800; }

@media (max-width: 900px) { .m-list, .list-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .menu-hero { padding: 36px 0 26px; }
  .loc-switch button { padding: 13px 8px; }
  .loc-switch button strong { font-size: 18px; }
  .cat-bar { top: 68px; }
  .cat-pills { justify-content: flex-start; }
  .m-thumb { width: 72px; height: 72px; }
  .m-name { font-size: 16.5px; }
}

.modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(6, 20, 12, .7); }
.modal.is-open { display: flex; animation: fadeIn .2s ease; }
.modal-box { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; width: min(760px, 100%); display: grid; grid-template-columns: 1fr 1fr; position: relative; max-height: 90vh; }
.modal-box img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.modal-body { padding: 34px 30px; display: flex; flex-direction: column; overflow-y: auto; }
.modal-body .eyebrow { font-size: 11px; }
.modal-body h3 { font-size: 30px; margin: 12px 0; color: var(--green-950); text-transform: uppercase; }
.modal-body p { color: var(--muted); }
.modal-body .price { font-size: 26px; margin-top: 18px; }
.modal-body .btn { margin-top: auto; }
.modal-close { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .92); font-size: 22px; line-height: 1; z-index: 2; }
@keyframes fadeIn { from { opacity: 0; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.info-list { margin-top: 30px; display: grid; gap: 14px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.info-item .ico { width: 44px; height: 44px; border-radius: 50%; background: var(--green-900); color: var(--white); display: grid; place-items: center; flex-shrink: 0; }
.info-item .ico svg { width: 20px; height: 20px; }
.info-item small { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
.info-item strong { display: block; font-size: 16px; color: var(--ink); }
.info-item .sub { font-size: 13px; color: var(--muted); }
.hours-table { width: 100%; font-size: 14px; border-collapse: collapse; margin-top: 4px; }
.hours-table td { padding: 3px 0; }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.hours-table .loc td { padding-top: 10px; font-weight: 800; color: var(--green-950); }
.google-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.google-box h3 { font-size: 26px; text-transform: uppercase; color: var(--green-950); }
.google-score { display: flex; align-items: center; gap: 18px; margin: 22px 0 26px; padding: 20px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); }
.google-score strong { font-family: var(--font-display); font-size: 52px; line-height: 1; color: var(--green-950); }
.google-score .stars { letter-spacing: 3px; color: var(--green-950); }
.google-score small { display: block; color: var(--muted); font-size: 13px; }
.google-box .review-card { background: var(--white); margin-bottom: 14px; }

.loc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.loc-detail { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); display: flex; flex-direction: column; }
.loc-detail iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(.25) contrast(1.05); }
.loc-detail .body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.loc-detail .kicker { font-size: 11.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--rust); }
.loc-detail h3 { font-size: 32px; color: var(--green-950); margin: 8px 0 18px; }
.loc-detail dl { margin: 0 0 22px; display: grid; gap: 12px; }
.loc-detail dt { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.loc-detail dd { margin: 2px 0 0; font-size: 15px; font-weight: 600; }
.loc-detail .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Reservation page ---------- */
.reserve-page { background: var(--bg-soft); padding: 72px 0 96px; }
.reserve-page .h-section { font-size: clamp(36px, 4.4vw, 56px); }
.why-list { margin-top: 36px; display: grid; gap: 14px; }
.why-list .loc-mini { display: flex; gap: 14px; padding: 16px 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.why-list .loc-mini .pin { width: 40px; height: 40px; border-radius: 50%; background: var(--green-900); color: var(--white); display: grid; place-items: center; flex-shrink: 0; }
.why-list .loc-mini strong { display: block; font-family: var(--font-display); font-size: 19px; color: var(--green-950); }
.why-list .loc-mini span { font-size: 13px; color: var(--muted); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .main-nav, .header-actions .btn, .header-actions .lang-switch { display: none; }
  .nav-toggle { display: flex; }
  .site-header.is-scrolled .header-inner { max-width: 640px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .card-grid, .review-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .reserve-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-media .float-img { right: 4%; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery .g-wide { grid-column: span 2; }
  .loc-cards { grid-template-columns: 1fr; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-box img { min-height: 0; aspect-ratio: 16 / 10; }
}
@media (max-width: 640px) {
  :root { --header-h: 72px; }
  .container { padding: 0 16px; }
  .logo img { height: 38px; }
  .site-header.is-scrolled .logo img { height: 28px; }
  .site-header.is-scrolled { padding: 10px 10px 0; }
  .site-header.is-scrolled .header-inner { height: 58px; padding: 0 6px 0 18px; }
  .hero-title { white-space: normal; }
  .hero-title .w1 { display: block; }
  .hero-bg img, .hero-bg video { object-position: 50% 30%; }
  .section { padding: 60px 0; }
  .loc-grid, .card-grid, .review-grid, .values-grid, .list-grid, .form-grid, .stats { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat strong { font-size: 30px; }
  .form-card { padding: 24px 18px; box-shadow: 6px 6px 0 var(--green-950); }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .ratings-row { gap: 28px; }
  .gallery { grid-auto-rows: 140px; gap: 10px; }
  .page-hero { padding: 80px 0 72px; }
  .cta-band { padding: 36px 24px; }
  .menu-info-inner { gap: 10px 18px; }
  .t-item { grid-template-columns: 40px 1fr; gap: 16px; }
  .t-dot { width: 40px; height: 40px; font-size: 16px; }
  .timeline::before { left: 19px; }
}

/* ==========================================================================
   Home — "Our house" (portrait video + copy)
   ========================================================================== */
.house-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: center; }
.house-video {
  position: relative; aspect-ratio: 9 / 16; max-height: 720px; width: 100%; max-width: 420px; justify-self: center;
  border-radius: 32px; overflow: hidden; background: var(--green-950); box-shadow: var(--shadow-lg);
}
.house-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.house-video .chip {
  position: absolute; left: 18px; top: 18px; background: rgba(255, 255, 255, .92); color: var(--green-950);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-radius: 999px; padding: 7px 12px;
}
.house-video .sound {
  position: absolute; right: 16px; bottom: 16px; width: 42px; height: 42px; border-radius: 50%; border: 0;
  background: rgba(255, 255, 255, .92); color: var(--green-950); display: grid; place-items: center;
}
.house-video .sound svg { width: 18px; height: 18px; }
.house-copy h2 { margin: 14px 0 20px; }
.house-copy p { color: var(--muted); font-size: 17px; max-width: 520px; }
.house-stats { display: flex; gap: 40px; margin: 34px 0; flex-wrap: wrap; }
.house-stats strong { display: block; font-family: var(--font-display); font-size: 40px; line-height: 1; color: var(--green-950); }
.house-stats span { font-size: 13px; font-weight: 700; color: var(--muted-2); }
.house-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
.house-photos img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.house-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.house-actions .btn--primary { border-radius: 999px; }

/* scroll-in zoom for the video card */
.house-video.reveal { transform: translateY(40px) scale(.92); }
.house-video.reveal.is-in { transform: none; }

@media (max-width: 900px) {
  .house-grid { grid-template-columns: 1fr; gap: 44px; }
  .house-video { max-width: 360px; }
}
