/* ─────────────────────────────────────────
   THE KITCHEN PASS — Main Stylesheet
   ───────────────────────────────────────── */

:root {
  --green-deep:  #054030;
  --green-mid:   #0F6E56;
  --green-light: #1D9E75;
  --green-pale:  #E1F5EE;
  --green-mint:  #9FE1CB;
  --cream:       #F7F4EF;
  --warm-white:  #FDFCFA;
  --ink:         #1A1A18;
  --ink-mid:     #444441;
  --ink-light:   #888780;
  --border:      rgba(15,110,86,0.15);
  --shadow-sm:   0 2px 12px rgba(5,64,48,0.08);
  --shadow-md:   0 8px 32px rgba(5,64,48,0.12);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --transition:  0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── TYPOGRAPHY ── */
h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--green-deep);
}
h1 em { font-style: italic; color: var(--green-mid); }
h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: var(--green-deep);
  margin-bottom: 12px;
}
h2.light, h2.light em { color: white; }
h3 { font-size: 20px; font-weight: 500; color: var(--green-deep); margin-bottom: 8px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--green-mid);
  color: white;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-block;
  border: 1.5px solid var(--green-mid);
  color: var(--green-mid);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}
.btn-ghost:hover { background: var(--green-pale); }
.btn-full { width: 100%; text-align: center; }

/* ── SECTION SHARED ── */
.section { padding: 80px 0; }
.section-dark {
  background: var(--green-deep);
  padding: 80px 0;
}
.section-cream {
  background: var(--cream);
  padding: 80px 0;
}
.section-quote { padding: 64px 0; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}
.section-tag.light { color: var(--green-mint); }
.section-sub {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

/* ── NAVBAR ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,252,250,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--green-deep);
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--green-mid); }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green-mid); }
.nav-cta {
  background: var(--green-mid) !important;
  color: white !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--green-deep) !important; color: white !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  background: var(--cream);
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(29,158,117,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 18px;
}
.hero p {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat .stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 34px;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .stat-label {
  font-size: 13px;
  color: var(--ink-light);
}

.hero-visual { position: relative; }
.hero-video-card {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}
.hero-video-card:hover { transform: translateY(-4px); }
.kitchen-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.video-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background var(--transition);
}
.hero-video-card:hover .video-play-btn { background: rgba(255,255,255,0.25); }
.video-meta { position: relative; z-index: 1; }
.video-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.video-name {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.on-pass-pill {
  display: inline-block;
  background: rgba(29,158,117,0.3);
  border: 1px solid rgba(157,225,203,0.4);
  color: var(--green-mint);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--ink-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(5px); }
}

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 400;
  border: 1px solid var(--border);
  color: var(--ink-mid);
  background: white;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--green-mid); color: var(--green-mid); }
.filter-btn.active {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: white;
}

/* ── RESTAURANT CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}
.rest-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.rest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.rest-card.hidden { display: none; }

.card-thumb {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.thumb-1 { background: linear-gradient(135deg, #054030, #0F6E56); }
.thumb-2 { background: linear-gradient(135deg, #0a2a1e, #1D9E75); }
.thumb-3 { background: linear-gradient(135deg, #0a1a12, #0F6E56); }
.thumb-4 { background: linear-gradient(135deg, #042820, #085041); }
.thumb-5 { background: linear-gradient(135deg, #1a3520, #0F6E56); }
.thumb-6 { background: linear-gradient(135deg, #054030, #1D9E75); }

.card-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 1;
}
.card-thumb:hover .card-play { background: rgba(255,255,255,0.35); }

.card-thumb-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(5,64,48,0.85);
  border: 1px solid rgba(157,225,203,0.3);
  color: var(--green-mint);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 20px;
}
.card-duration {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
}

.card-body { padding: 18px; }
.card-name { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.card-type { font-size: 13px; color: var(--ink-light); margin-bottom: 4px; }
.card-address { font-size: 12px; color: var(--ink-light); margin-bottom: 14px; }
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.card-tour-date { font-size: 11px; color: var(--ink-light); }
.card-link { font-size: 13px; color: var(--green-mid); font-weight: 500; }
.card-link:hover { color: var(--green-deep); }

/* ── MAP ── */
.map-section {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.map-header h3 { margin: 0; font-size: 16px; }
.map-count { font-size: 12px; color: var(--ink-light); }
.map-placeholder {
  height: 320px;
  background: #d4e8df;
  position: relative;
  overflow: hidden;
}
.map-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,110,86,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,110,86,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin { position: absolute; display: flex; flex-direction: column; align-items: center; z-index: 2; }
.pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-mid);
  border: 2.5px solid white;
  box-shadow: 0 2px 8px rgba(15,110,86,0.5);
}
.pin-label {
  margin-top: 5px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 500;
  color: var(--green-deep);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.map-city-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  color: var(--ink-light);
}

/* ── HOW IT WORKS ── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.how-step {
  padding: 36px 30px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.how-step:last-child { border-right: none; }
.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  color: rgba(157,225,203,0.25);
  line-height: 1;
  margin-bottom: 18px;
}
.step-title {
  font-size: 17px;
  font-weight: 500;
  color: white;
  margin-bottom: 10px;
}
.step-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.stat-card.featured {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.stat-card-num {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: var(--green-mid);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-card.featured .stat-card-num { color: var(--green-mint); }
.stat-card-text {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 10px;
}
.stat-card.featured .stat-card-text { color: rgba(255,255,255,0.75); }
.stat-card-source {
  font-size: 11px;
  color: var(--ink-light);
  font-style: italic;
}
.stat-card.featured .stat-card-source { color: rgba(255,255,255,0.4); }

/* ── TESTIMONIAL ── */
.quote-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 80px;
  color: var(--green-mint);
  line-height: 0.6;
  margin-bottom: 16px;
}
blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.35;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.quote-attr { font-size: 14px; color: var(--ink-light); }

/* ── OWNERS ── */
.owners-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.owners-copy h2 { margin-bottom: 14px; }
.owners-copy p { font-size: 16px; color: var(--ink-mid); margin-bottom: 28px; line-height: 1.65; }
.benefit-list { list-style: none; margin-bottom: 32px; }
.benefit-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--ink-mid);
}
.benefit-list li:first-child { padding-top: 0; }
.benefit-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1px solid var(--green-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-pill {
  background: var(--green-pale);
  border: 1px solid var(--green-mint);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pricing-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--green-deep);
  line-height: 1;
}
.pricing-amount span { font-size: 18px; color: var(--ink-light); }
.pricing-note { font-size: 12px; color: var(--ink-light); line-height: 1.45; }

/* ── BADGE ── */
.badge-showcase {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}
.badge-preview-label { font-size: 12px; color: var(--ink-light); margin-bottom: 24px; }
.badge-large {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border: 1px solid var(--green-mint);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  box-shadow: 0 4px 24px rgba(15,110,86,0.1);
  margin-bottom: 24px;
}
.badge-bar {
  width: 100%;
  height: 4px;
  background: var(--green-mid);
  border-radius: 2px;
  margin-bottom: 18px;
}
.badge-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.badge-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--green-deep);
  line-height: 1.25;
  text-align: center;
}
.badge-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-top: 9px;
}
.badge-use-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.badge-use-pills span {
  font-size: 11px;
  background: var(--green-pale);
  color: var(--green-mid);
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid var(--green-mint);
}

/* ── CONTACT ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: flex-start;
}
.contact-copy h2 { margin-bottom: 14px; }
.contact-copy p.light { color: rgba(255,255,255,0.65); font-size: 16px; margin-bottom: 32px; line-height: 1.65; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.optional { font-weight: 400; color: var(--ink-light); }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: white;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(15,110,86,0.08); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--green-pale);
  border: 1px solid var(--green-mint);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--green-deep);
  margin-top: 12px;
}
.form-success.visible { display: flex; }

/* ── FOOTER ── */
footer {
  background: var(--green-deep);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.footer-logo span { color: var(--green-mint); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--green-mint); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mint);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 9px;
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-city-pill {
  font-size: 11px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── VIDEO MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,64,48,0.88);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-inner {
  background: var(--green-deep);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 760px;
  overflow: hidden;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.25s ease;
}
.modal-overlay.open .modal-inner { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-video-wrap { aspect-ratio: 16/9; position: relative; }
.modal-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}
.modal-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.modal-kitchen-name {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: white;
  margin-bottom: 6px;
}
.modal-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.modal-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  max-width: 360px;
  line-height: 1.5;
}
.modal-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}
.modal-footer span { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-video-card { aspect-ratio: 16/9; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .how-step:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .owners-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 16px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .section { padding: 56px 0; }
}
