/* ===== Mira - Berlin Café ===== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body, h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

:root {
  --bg: #F5F0E8;
  --paper: #FFFFFF;
  --ink: #1C1A18;
  --ink-2: #383230;
  --muted: #8B8278;
  --line: #E5DED1;
  --line-2: #D6CDBC;
  --olive: #7A8556;
  --olive-deep: #5D6741;
  --terracotta: #C45F36;
  --terracotta-deep: #9C4622;
  --cream: #EFEAE0;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --serif: 'DM Serif Display', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Demo Bar ---------- */
.demobar { background: var(--ink); color: rgba(255,255,255,.9); font-size: 12px; }
.demobar__inner {
  max-width: var(--max); margin: 0 auto; padding: 7px var(--pad);
  display: flex; align-items: center; gap: 12px;
  flex-wrap: nowrap; white-space: nowrap; overflow: hidden;
}
.demobar__inner > span:nth-child(2) { overflow: hidden; text-overflow: ellipsis; }
.demobar__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--terracotta); box-shadow: 0 0 0 4px rgba(196,95,54,.25);
  flex-shrink: 0;
}
.demobar a { color: var(--olive); text-decoration: none; font-weight: 500; }
.demobar__cta { margin-left: auto; flex-shrink: 0; }
@media (max-width: 600px) { .demobar__inner { font-size: 10px; gap: 8px; } }

/* ---------- Top Nav ---------- */
.topnav {
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 30; isolation: isolate;
  transition: box-shadow .3s ease;
}
.topnav__inner { height: 80px; display: flex; align-items: center; gap: 32px; transition: height .3s ease; }
.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.brand__logo {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--bg);
  font-family: var(--serif);
  font-size: 28px; font-style: italic;
  border-radius: 50%;
  flex-shrink: 0;
  transition: width .3s ease, height .3s ease, font-size .3s ease;
}
.brand__logo--xl { width: 72px; height: 72px; font-size: 44px; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-style: italic;
}
.mainnav { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.mainnav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
.mainnav a::after {
  content: ""; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 2px; background: var(--terracotta);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.mainnav a:hover::after, .mainnav a.is-active::after { transform: scaleX(1); }
.mainnav__ig {
  background: var(--ink); color: var(--bg) !important;
  padding: 9px 16px !important; border-radius: 999px;
  font-size: 13px;
}
.mainnav__ig::after { display: none; }
.mainnav__ig:hover { background: var(--terracotta); color: #fff !important; }

.navtoggle {
  display: none;
  background: transparent; border: 1px solid var(--line-2); color: var(--ink);
  width: 42px; height: 42px; margin-left: auto;
  cursor: pointer; position: relative; padding: 0; border-radius: 50%;
}
.navtoggle:hover { border-color: var(--ink); }
.navtoggle span {
  position: absolute; left: 11px; right: 11px; height: 1.5px;
  background: currentColor;
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.navtoggle span:nth-child(1) { top: 14px; }
.navtoggle span:nth-child(2) { top: 20px; }
.navtoggle span:nth-child(3) { top: 26px; }
.navtoggle.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.navtoggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navtoggle.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 760px) {
  .topnav__inner { gap: 12px; height: 64px; }
  .navtoggle { display: inline-flex; align-items: center; justify-content: center; }
  .mainnav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 8px 0; display: none;
  }
  .mainnav.is-open { display: flex; }
  .mainnav a { padding: 14px var(--pad); border-top: 1px solid var(--line); }
  .mainnav a:first-child { border-top: none; }
  .mainnav a::after { display: none; }
  .mainnav__ig { margin: 12px var(--pad); border-radius: 999px; text-align: center; }
}

/* Scroll-collapse */
.demobar { transition: transform .3s ease, max-height .35s ease, opacity .25s ease; max-height: 60px; overflow: hidden; }
body.scrolled .demobar { transform: translateY(-100%); max-height: 0; opacity: 0; }
body.scrolled .topnav__inner { height: 60px; }
body.scrolled .brand__logo { width: 36px; height: 36px; font-size: 22px; }
body.scrolled .topnav { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border: 2px solid transparent; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  cursor: pointer;
  transition: transform .15s, background .2s, border-color .2s, box-shadow .2s, color .2s;
}
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(196,95,54,.35); }
.btn--terra { background: var(--terracotta); color: #fff; }
.btn--terra:hover { background: var(--terracotta-deep); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--lg { padding: 18px 32px; font-size: 1.05rem; }

/* ---------- Headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--olive);
  font-weight: 700; margin-bottom: 12px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--olive);
  display: inline-block;
}
.h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 1.8rem + 4vw, 5.4rem);
  line-height: 1; letter-spacing: -0.025em; font-weight: 400;
  margin-bottom: 22px; color: var(--ink);
}
.h1 em { font-style: italic; color: var(--terracotta); }
.h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 1.3rem + 2.4vw, 3.4rem);
  line-height: 1.05; letter-spacing: -0.02em; font-weight: 400; color: var(--ink);
}
.h2 em { font-style: italic; color: var(--terracotta); }
.lead {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  color: var(--ink-2); max-width: 60ch; margin-bottom: 28px; line-height: 1.5;
}

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--bg); }
.section--ink .h2, .section--ink .lead, .section--ink .eyebrow { color: var(--bg); }
.section--ink .lead { color: rgba(255,255,255,.85); }
.section--ink .eyebrow { color: #C7D095; }
.section--ink .eyebrow::before { background: #C7D095; }
.section--ink .stat__label { color: rgba(255,255,255,0.78); }
.section--ink .stat__num { color: #FFB89C; }
.section__head { margin-bottom: 48px; max-width: 720px; }
.section__head--center { margin: 0 auto 48px; text-align: center; }
.section__head--center .eyebrow { display: inline-flex; }

/* ---------- HERO with video ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  color: #fff; isolation: isolate; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg video, .hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 50%;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.0) 30%, rgba(28,26,24,0.55) 70%, rgba(28,26,24,0.92) 100%);
}
.hero__inner {
  padding: 64px 0 80px;
  max-width: var(--max); width: 100%; margin: 0 auto;
  padding-left: var(--pad); padding-right: var(--pad);
}
.hero .badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 700; padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 24px;
}
.hero .badge__dot { width: 6px; height: 6px; border-radius: 50%; background: #5DD3A8; box-shadow: 0 0 8px #5DD3A8; }
.hero .h1 { color: #fff; }
.hero .h1 em { color: #FFB89C; }
.hero .lead { color: rgba(255,255,255,.92); max-width: 50ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero__tags {
  position: absolute;
  bottom: 80px; right: var(--pad);
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; align-items: flex-end;
}
.hero__tag {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 14px; border-radius: 999px;
  color: #fff; font-weight: 500;
}
@media (max-width: 760px) {
  .hero { min-height: 80vh; }
  .hero__tags { display: none; }
}

/* ---------- Story Bar (Insta-style) ---------- */
.story-bar-wrap {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  position: relative;
}
.story-bar {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-left: var(--pad);
  padding-right: var(--pad);
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.story-bar::-webkit-scrollbar { display: none; }
.story-circle {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0; cursor: pointer;
  scroll-snap-align: start;
  width: 76px;
}
.story-circle__ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--terracotta);
  padding: 3px;
  transition: transform .25s ease, border-color .2s ease;
  background: var(--paper);
}
.story-circle:hover .story-circle__ring { transform: scale(1.06); }
.story-circle__inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.story-circle__inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.story-circle__label {
  font-size: 12px; color: var(--ink-2);
  font-weight: 500; text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.story-circle--seen .story-circle__ring {
  border-color: var(--line-2);
  border-style: dashed;
}

/* ---------- Insta-style Grid ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
@media (max-width: 760px) { .ig-grid { gap: 3px; } }
.ig-card {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  background: var(--line);
  user-select: none;
}
.ig-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.ig-card:hover img { transform: scale(1.04); }
.ig-card__overlay {
  position: absolute;
  inset: 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45));
  color: #fff;
  font-size: 13px;
  opacity: 0; transition: opacity .25s ease;
  pointer-events: none;
}
.ig-card:hover .ig-card__overlay,
.ig-card:focus-within .ig-card__overlay { opacity: 1; }
.ig-card__likes, .ig-card__comments {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600;
}
.ig-card__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
  color: rgba(255,255,255,.9);
  font-size: 12px;
  opacity: 0; transition: opacity .25s ease;
  font-style: italic;
}
.ig-card:hover .ig-card__caption,
.ig-card:focus-within .ig-card__caption { opacity: 1; }

@keyframes heartPop {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  20% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
  60% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -100%) scale(1); opacity: 0; }
}
.heart-pop {
  position: absolute;
  pointer-events: none;
  font-size: 80px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(196,95,54,0.7);
  z-index: 10;
  animation: heartPop .9s ease forwards;
  user-select: none;
}

/* Liked state - small heart in corner */
.ig-card.liked::before {
  content: "♥";
  position: absolute;
  top: 10px; right: 12px;
  color: var(--terracotta);
  font-size: 22px;
  z-index: 5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  animation: heartPop .4s ease;
}

/* ---------- Reels Carousel ---------- */
.reels {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-left: var(--pad);
  padding-right: var(--pad);
  margin-left: calc(var(--pad) * -1);
  margin-right: calc(var(--pad) * -1);
  padding-bottom: 12px;
}
.reels-track { display: contents; }
.reels::-webkit-scrollbar { display: none; }
.reel {
  flex: 0 0 280px;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  background: var(--ink);
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  transition: transform .3s ease;
}
.reel:hover { transform: translateY(-4px); }
.reel img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter .3s ease, transform .8s ease;
}
.reel:hover img { filter: brightness(1); transform: scale(1.04); }
.reel__overlay {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px 18px 22px;
  background: linear-gradient(180deg, rgba(0,0,0,0.3), transparent 30%, transparent 60%, rgba(0,0,0,0.65));
  color: #fff;
}
.reel__top { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.reel__top__time {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: 999px;
  font-weight: 600;
}
.reel__bottom { font-size: 14px; line-height: 1.4; }
.reel__caption { font-weight: 600; margin-bottom: 6px; }
.reel__handle { color: rgba(255,255,255,0.75); font-size: 12px; }
.reel__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  font-size: 22px;
  color: #fff;
  pointer-events: none;
  opacity: 0.95;
}

/* ---------- Menu items (flex-based, robust) ---------- */
.menu-list { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 18px;
  padding: 20px 8px;
  margin: 0 -8px;
  border-top: 1px solid var(--line);
  border-radius: 8px;
}
.menu-item:first-child { border-top: none; }
.menu-item__head {
  flex: 1 1 60%;
  min-width: 0;
}
.menu-item__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.2;
  color: var(--ink);
}
.menu-item__price {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 400;
  color: var(--terracotta);
  white-space: nowrap;
  margin-left: auto;
  order: 2;
}
.menu-item__desc {
  flex-basis: 100%;
  font-size: 13px; color: var(--muted);
  margin: 0;
  line-height: 1.55;
  order: 3;
}
.menu-item__tags {
  flex-basis: 100%;
  display: flex; gap: 4px;
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 600;
  flex-wrap: wrap;
  order: 4;
}
.menu-tag {
  padding: 3px 8px; border-radius: 999px;
  background: var(--cream); color: var(--olive-deep);
  border: 1px solid var(--line-2);
}
.menu-tag--new { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
@media (min-width: 760px) {
  .menu-item { gap: 6px 24px; }
}

/* ---------- Testimonial / quote ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--paper);
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,0.06); }
.testimonial__quote {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 18px;
}
.testimonial__source {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--olive); color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
}
.testimonial__handle { font-size: 13px; font-weight: 500; }
.testimonial__platform {
  margin-left: auto;
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ---------- Crew strip ---------- */
.crew-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .crew-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.crew {
  text-align: center;
  background: var(--paper);
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s ease;
}
.crew:hover { transform: translateY(-4px); }
.crew img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.crew__body { padding: 14px 12px 18px; }
.crew__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 2px;
}
.crew__role {
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.crew__pronouns {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px; padding: 3px 8px;
  background: var(--cream); border-radius: 999px;
  color: var(--olive-deep); font-weight: 600;
}

/* ---------- About + photo ---------- */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 32px; } }
.about__photo img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 18px;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 1.6rem + 2.5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.stat__label {
  font-size: 13px; color: var(--ink-2);
  letter-spacing: 0.04em;
}

/* ---------- Info Cards (Hours, Address) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid var(--line);
}
.info-card h3 {
  font-family: var(--sans);
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.14em; font-weight: 700;
  color: var(--olive); margin-bottom: 14px;
}
.info-card p, .info-card dd { font-size: 15px; line-height: 1.7; }
.info-card dl { margin: 0; }
.info-card dl > div {
  display: flex; justify-content: space-between;
  padding: 5px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.info-card dl > div:first-child { border-top: none; }
.info-card dt { color: var(--muted); }
.info-card dd { font-weight: 500; }
.info-card a { color: var(--terracotta); text-decoration: none; font-weight: 600; }
.info-card a:hover { text-decoration: underline; }

/* ---------- Map card ---------- */
.map-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream);
  position: relative;
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
}
.map-card__map {
  width: 100%; height: 100%;
  position: relative;
  background: var(--cream);
}
.map-card__map iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.9) contrast(0.96);
}
.map-card__caption {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 14px 18px; border-radius: 12px;
  font-size: 14px;
  display: flex; gap: 14px; align-items: center;
}
.map-card__caption strong {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; font-weight: 400;
  display: block;
}

/* ---------- DM Floating Button ---------- */
.dm-floating {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 50;
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--terracotta), #E89A4F);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(196,95,54,0.45);
  transition: transform .25s ease, box-shadow .25s ease;
  font-size: 14px;
}
.dm-floating:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(196,95,54,0.55); }
.dm-floating svg { display: block; }
@media (max-width: 600px) {
  .dm-floating { bottom: 16px; right: 16px; padding: 12px 16px; font-size: 13px; }
}

/* ---------- Page hero (sub) ---------- */
.page-hero { padding: clamp(56px, 7vw, 96px) 0 clamp(20px, 3vw, 36px); }
.page-hero + .section { padding-top: clamp(40px, 5vw, 72px); }
.page-hero + .parallax-band { margin-top: clamp(20px, 3vw, 40px); }

/* ---------- Parallax band (between sections) ---------- */
.parallax-band {
  position: relative;
  height: clamp(280px, 40vh, 460px);
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.parallax-band__bg {
  position: absolute;
  top: -15%; left: 0; right: 0; bottom: -15%;
  z-index: -2;
}
.parallax-band__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0);
}
.parallax-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,26,24,0.35) 0%, rgba(28,26,24,0.55) 100%);
}
.parallax-band__caption {
  position: relative; z-index: 1;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.6rem);
  font-style: italic;
  text-align: center;
  padding: 0 24px;
  max-width: 26ch;
  line-height: 1.18;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.parallax-band__caption span {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-style: normal;
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 56px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr; gap: 32px; } }
.footer__brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; }
.footer__brand .brand__logo--xl { background: var(--terracotta); color: var(--ink); }
.footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer__cols h4 {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.14em; margin-bottom: 14px;
  color: #fff; font-weight: 700;
}
.footer__cols a {
  display: block; padding: 4px 0;
  font-size: 14px; color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.footer__cols a:hover { color: var(--terracotta); }
.footer__bottom {
  max-width: var(--max); margin: 36px auto 0;
  padding: 22px var(--pad) 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12px; color: rgba(255,255,255,.5);
  font-style: italic;
}

/* ---------- Forms ---------- */
.form { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 32px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--line-2); background: #fff;
  font-size: 1rem; border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,95,54,0.15);
}
.field textarea { resize: vertical; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .7s ease, transform .7s ease; will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Hero subtle ken-burns on bg image (when no video) ---------- */
@keyframes heroKen {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.hero__bg img { animation: heroKen 30s ease-in-out infinite; }

/* ---------- Living-page micro-animations ---------- */

/* Brand logo wobble on hover */
.brand__logo { transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.brand:hover .brand__logo { transform: rotate(-12deg) scale(1.06); }

/* DM floating button gentle pulse */
@keyframes dmPulse {
  0%, 100% { box-shadow: 0 14px 32px rgba(196,95,54,0.45), 0 0 0 0 rgba(196,95,54,0.4); }
  50% { box-shadow: 0 14px 32px rgba(196,95,54,0.45), 0 0 0 14px rgba(196,95,54,0); }
}
.dm-floating { animation: dmPulse 2.8s ease-out infinite; }

/* Story circle ring active pulse on unseen */
@keyframes storyRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,95,54,0); }
  50% { box-shadow: 0 0 0 4px rgba(196,95,54,0.18); }
}
.story-circle:not(.story-circle--seen) .story-circle__ring { animation: storyRing 3s ease-in-out infinite; }

/* IG-card subtle lift on hover */
.ig-card { transition: transform .35s ease, z-index 0s .35s; }
.ig-card:hover { transform: scale(1.01); z-index: 2; }

/* Reel hover glow */
.reel { transition: transform .3s ease, box-shadow .3s ease; }
.reel:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.28); }

/* Reel play button micro-pulse */
@keyframes playPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}
.reel__play { animation: playPulse 2.4s ease-in-out infinite; }

/* Menu item hover bg tint */
.menu-item { transition: background-color .2s ease; padding-left: 8px; padding-right: 8px; margin-left: -8px; margin-right: -8px; border-radius: 8px; }
.menu-item:hover { background: rgba(196,95,54,0.05); }

/* Menu price scale on hover */
.menu-item__price { transition: transform .25s ease, color .25s ease; }
.menu-item:hover .menu-item__price { transform: scale(1.08); color: var(--terracotta-deep); }

/* Testimonial tilt on hover */
.testimonial { transform-origin: center bottom; }
.testimonial:hover { transform: translateY(-3px) rotate(-0.4deg); }

/* Crew tilt on hover */
.crew img { transition: transform .6s ease; }
.crew:hover img { transform: scale(1.03); }
.crew__name { transition: color .25s ease; }
.crew:hover .crew__name { color: var(--terracotta); }

/* Hero tag chips slow fade-in cascade (separate from reveal logic since hero loads on first paint) */
@keyframes heroTagIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: none; }
}
.hero__tag { opacity: 0; animation: heroTagIn .8s ease forwards; }
.hero__tag:nth-child(1) { animation-delay: 0.6s; }
.hero__tag:nth-child(2) { animation-delay: 0.8s; }
.hero__tag:nth-child(3) { animation-delay: 1.0s; }

/* Hero badge subtle live-dot pulse already in green dot - already rendering */
@keyframes liveDot {
  0%, 100% { box-shadow: 0 0 8px #5DD3A8, 0 0 0 0 rgba(93,211,168,.5); }
  50% { box-shadow: 0 0 8px #5DD3A8, 0 0 0 8px rgba(93,211,168,0); }
}
.badge__dot { animation: liveDot 2s ease-out infinite; }

/* Map pin gentle bob */
@keyframes pinFloat {
  0%, 100% { transform: translate(-50%, -100%); }
  50% { transform: translate(-50%, -110%); }
}
.map-card__pin { animation: pinFloat 2.4s ease-in-out infinite; }

/* Buttons: shimmer on primary */
.btn--primary, .btn--terra { position: relative; overflow: hidden; }
.btn--primary::after, .btn--terra::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%);
  transition: transform .7s ease;
  pointer-events: none;
}
.btn--primary:hover::after, .btn--terra:hover::after { transform: translateX(100%); }

/* Footer brand tiny rotate on hover */
.footer__brand .brand__logo { transition: transform .4s ease; }
.footer__brand:hover .brand__logo { transform: rotate(8deg); }

/* Demo bar dot pulse */
@keyframes demobarDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(196,95,54,.25); }
  50% { box-shadow: 0 0 0 6px rgba(196,95,54,.0); }
}
.demobar__dot { animation: demobarDot 2.6s ease-out infinite; }

/* Stat numbers subtle scale-in on appearance */
.stat__num { transition: transform .25s ease; }
.stat:hover .stat__num { transform: scale(1.04); }

/* Section ink area glow */
.section--ink { position: relative; isolation: isolate; }
.section--ink::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(800px 400px at 80% 50%, rgba(196,95,54,0.18), transparent 60%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
