/* ============================================================
   Bonny's Café & Bakery — "Anatolian Pastel Bauhaus"
   Custom CSS · no framework
   ============================================================ */

:root {
  /* Brand-aligned palette (from official logo: Forest Green + Cream + Terracotta-Berry) */
  --forest: #1F3D2E;           /* primary, logo green */
  --forest-deep: #15291F;
  --forest-soft: #4E7A60;
  --mint: #B7CFC1;             /* interior wainscoting, surface accent */
  --mint-deep: #6B8E7B;
  --cream: #F4EDE2;
  --cream-deep: #EAE0CC;
  --ink: #1B1410;
  --ink-soft: #5A4A40;
  --terracotta: #C44B2B;       /* berry accent from logo */
  --terracotta-soft: #E07A5A;

  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 4px;
  --radius-lg: 12px;

  --display: 'Fraunces', 'Times New Roman', serif;
  --body: 'Schibsted Grotesk', system-ui, sans-serif;

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; font-family: var(--display); font-weight: 400; }

/* ============== TOPBAR ============== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--pad);
  background: rgba(244, 237, 226, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 31, 26, 0.06);
}
.brand { display: flex; align-items: center; gap: 12px; line-height: 1; }
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(31, 61, 46, 0.18);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144;
}
.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin-top: 4px;
}
.topnav { display: flex; gap: 28px; align-items: center; font-size: 14px; }
.topnav a { color: var(--ink); transition: color .2s; }
.topnav a:hover { color: var(--terracotta); }
.topnav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.topnav-cta:hover { background: var(--terracotta); color: var(--cream) !important; }

/* ============== TYPOGRAPHY HELPERS ============== */
.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--forest);
  font-weight: 600;
  margin: 0 0 18px;
}
.section-h {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  font-variation-settings: 'opsz' 144;
}
.section-deck {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 40px;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 124, 62, 0.3);
}
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--terracotta);
  color: var(--cream);
}
.btn-accent:hover {
  background: var(--terracotta);
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196, 75, 43, 0.42);
}
.btn-ghost-light {
  border-color: rgba(244, 237, 226, 0.55);
  color: var(--cream);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--forest-deep);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 88px);
  position: relative;
}

/* Left text panel */
.hero-panel {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(56px, 7vw, 112px) clamp(28px, 5vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(244, 237, 226, 0.06), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(196, 75, 43, 0.12), transparent 55%);
  pointer-events: none;
}
.hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--mint);
  font-weight: 600;
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.hero-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--terracotta);
}
.hero-headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(64px, 9.5vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 36px;
  font-variation-settings: 'opsz' 144;
  position: relative;
  z-index: 1;
}
.hero-headline .line { display: block; color: var(--cream); }
.hero-headline .line-accent { color: var(--terracotta-soft); }
.hero-headline em {
  font-style: italic;
  font-variation-settings: 'opsz' 144;
}
.hero-sub {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
  max-width: 38ch;
  color: rgba(244, 237, 226, 0.78);
  margin: 0 0 40px;
  position: relative;
  z-index: 1;
}
.hero-sub strong { color: var(--cream); font-weight: 600; }
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 44px;
  position: relative;
  z-index: 1;
}
.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: rgba(244, 237, 226, 0.7);
  position: relative;
  z-index: 1;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 237, 226, 0.14);
}
.hero-meta li { white-space: nowrap; }

/* Right image panel */
.hero-visual {
  position: relative;
  min-height: 60vh;
}
.hero-visual-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 28s var(--ease) infinite alternate;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 41, 31, 0.35) 0%, transparent 30%, transparent 100%);
  pointer-events: none;
}

/* Floating Badge straddling the seam */
.hero-badge {
  position: absolute;
  left: -72px;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  z-index: 3;
  border: 2px solid var(--terracotta);
}
.hero-badge-top {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-badge-big {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.hero-badge-sub {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 8px;
  font-weight: 500;
}

@keyframes kenburns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.10) translate(-2%, -1.5%); }
}

.hero-marquee {
  border-top: 1px solid rgba(244, 237, 226, 0.14);
  border-bottom: 1px solid rgba(244, 237, 226, 0.14);
  padding: 16px 0;
  display: flex;
  gap: 28px;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 24px);
  color: var(--mint);
  animation: marquee 38s linear infinite;
  background: var(--forest-deep);
}
.hero-marquee span { flex-shrink: 0; }
.hero-marquee .m-dot { color: var(--terracotta); font-size: 0.45em; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes kenburns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -1%); }
}

.hero-marquee {
  margin-top: clamp(48px, 7vw, 96px);
  border-top: 1px solid rgba(42, 31, 26, 0.12);
  border-bottom: 1px solid rgba(42, 31, 26, 0.12);
  padding: 18px 0;
  display: flex;
  gap: 32px;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--forest);
  animation: marquee 38s linear infinite;
}
.hero-marquee span { flex-shrink: 0; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============== CLAIM BAND ============== */
.claim-band {
  background: var(--forest);
  color: var(--cream);
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid rgba(244, 237, 226, 0.08);
  border-bottom: 1px solid rgba(244, 237, 226, 0.08);
}
.claim-track {
  display: flex;
  gap: 36px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  animation: marquee 28s linear infinite;
}
.claim-track em {
  color: var(--terracotta-soft);
  font-style: italic;
}
.claim-track .dot {
  color: var(--terracotta);
  font-size: 0.4em;
  vertical-align: middle;
}

/* ============== WOCHENEND-FRÜHSTÜCK ============== */
.weekend {
  background: var(--cream);
  padding: clamp(80px, 12vw, 140px) var(--pad);
  position: relative;
}
.weekend::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--forest-soft), transparent);
}
.weekend-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.weekend-when {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 36px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.pill-accent {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.weekend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.weekend-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 18px 0;
  border-top: 1px solid rgba(31, 61, 46, 0.15);
  align-items: baseline;
  gap: 20px;
}
.weekend-list li:last-child { border-bottom: 1px solid rgba(31, 61, 46, 0.15); }
.weekend-list .w-name {
  font-weight: 600;
  font-size: 19px;
}
.weekend-list .w-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--forest-soft);
}
.weekend-list .w-highlight .w-name { color: var(--terracotta); }
.weekend-list .w-highlight .w-tag {
  color: var(--terracotta);
  font-weight: 600;
  font-style: normal;
}
.weekend-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 24px 60px rgba(31, 61, 46, 0.16);
}
.weekend-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============== TESTIMONIAL ============== */
.testimonial {
  background: var(--mint);
  padding: clamp(70px, 10vw, 120px) var(--pad);
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -40px;
  left: clamp(20px, 8vw, 96px);
  font-family: var(--display);
  font-size: clamp(220px, 28vw, 380px);
  line-height: 1;
  color: var(--forest);
  opacity: 0.18;
  font-weight: 600;
}
.testimonial-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.testimonial .kicker { color: var(--forest); }
.testimonial-quote {
  margin: 0 0 32px;
  padding: 0;
}
.testimonial-quote p {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 24px;
}
.testimonial-quote cite {
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--forest);
  font-weight: 600;
}
.testimonial-quote cite span {
  color: var(--terracotta);
  font-weight: 500;
}
.testimonial-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.testimonial-tags span {
  background: var(--cream);
  color: var(--forest);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

/* ============== INTRO ============== */
.intro {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) var(--pad);
  text-align: left;
}
.intro-body {
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 32ch;
  font-family: var(--display);
  font-weight: 400;
}

/* ============== MENU ============== */
.menu {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: clamp(80px, 12vw, 140px) var(--pad);
  position: relative;
}
.menu-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(48px, 8vw, 100px);
}
.menu-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px clamp(24px, 4vw, 56px);
}
.menu-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(42, 31, 26, 0.12);
}
.menu-image img { width: 100%; height: 100%; object-fit: cover; }
.menu-image-1 { grid-column: 1 / span 5; aspect-ratio: 4/5; align-self: start; transform: translateY(20px); }
.menu-image-2 { grid-column: 8 / span 5; aspect-ratio: 1/1; align-self: end; transform: translateY(-30px); }

.menu-group { grid-column: span 6; }
.menu-group:nth-of-type(2) { grid-column: 6 / span 7; }
.menu-group:nth-of-type(3) { grid-column: 1 / span 7; }
.menu-group-wide { grid-column: 1 / span 12 !important; }

.menu-group-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--forest);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  padding: 18px 0;
  border-top: 1px dashed rgba(42, 31, 26, 0.2);
}
.menu-list li:last-child { border-bottom: 1px dashed rgba(42, 31, 26, 0.2); }
.m-name {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.005em;
}
.m-tag {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 9px;
  background: var(--terracotta);
  color: var(--ink);
  font-family: var(--body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 999px;
  vertical-align: middle;
  font-weight: 600;
}
.m-leader {
  border-bottom: 1px dotted rgba(42, 31, 26, 0.3);
  align-self: end;
  margin-bottom: 8px;
}
.m-price {
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;
}
.m-desc {
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.menu-list-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
}
.menu-list-cols li:nth-child(2) { border-top: 1px dashed rgba(42, 31, 26, 0.2); }

.menu-note {
  max-width: var(--maxw);
  margin: 56px auto 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
}
.menu-note a { text-decoration: underline; text-decoration-color: var(--terracotta); text-underline-offset: 4px; }

/* ============== STORY ============== */
.story {
  padding: clamp(80px, 12vw, 140px) var(--pad);
}
.story-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.story-portrait {
  position: relative;
  transform: rotate(-2deg);
}
.story-portrait img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(42, 31, 26, 0.18);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.story-portrait-cap {
  position: absolute;
  bottom: -16px;
  left: -12px;
  background: var(--mint);
  color: var(--cream);
  padding: 8px 16px;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  border-radius: 999px;
  transform: rotate(2deg);
  box-shadow: 0 8px 20px rgba(42, 31, 26, 0.15);
}
.story-text p { font-size: 18px; margin: 0 0 18px; color: var(--ink); }
.story-quote {
  margin: 36px 0 0;
  padding: 28px 32px;
  border-left: 4px solid var(--terracotta);
  background: rgba(232, 154, 91, 0.08);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.story-quote p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  margin: 0 0 12px;
  line-height: 1.35;
}
.story-quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* ============== ATMOSPHERE ============== */
.atmosphere {
  background: var(--cream);
  padding: clamp(80px, 12vw, 140px) var(--pad);
}
.atmo-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.atmo-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 28px 70px rgba(31, 61, 46, 0.18);
}
.atmo-image img { width: 100%; height: 100%; object-fit: cover; }
.atmo-image-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--cream);
  color: var(--forest);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.atmo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.atmo-text .kicker { color: var(--forest); }
.atmo-text .section-h em { color: var(--terracotta); }
.atmo-deck {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 28ch;
}
.atmo-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.atmo-chips li {
  padding: 13px 18px;
  background: transparent;
  border: 1.5px solid rgba(31, 61, 46, 0.22);
  color: var(--forest-deep);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: border-color .25s, background .25s, color .25s;
}
.atmo-chips li:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: rgba(196, 75, 43, 0.06);
}

/* ============== VISIT ============== */
.visit {
  padding: clamp(80px, 12vw, 140px) var(--pad);
}
.visit-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 6vw, 72px);
}
.visit-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.visit-address {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 36px;
  font-size: 16px;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 12px 0;
  border-top: 1px solid rgba(42, 31, 26, 0.1);
}
.hours-table th { font-weight: 600; width: 80px; }
.hours-table td.closed { color: var(--ink-soft); font-style: italic; font-family: var(--display); }
.visit-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(42, 31, 26, 0.12);
  aspect-ratio: 4/3;
}
.visit-map iframe { width: 100%; height: 100%; border: 0; }

/* ============== FOOTER ============== */
.footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: clamp(56px, 8vw, 96px) var(--pad) 32px;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.footer-tag {
  font-family: var(--display);
  font-style: italic;
  color: var(--mint);
  margin: 0;
}
.footer-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 10px;
  color: var(--mint);
  font-weight: 600;
}
.footer p { margin: 0 0 6px; }
.footer a { transition: color .2s; }
.footer a:hover { color: var(--terracotta); }
.footer-credit {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 237, 226, 0.15);
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--mint);
}

/* ============== REVEAL ANIMATIONS ============== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal] img {
  transform: scale(1.04);
  filter: saturate(0.7);
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
}
[data-reveal].is-visible img {
  transform: scale(1.0);
  filter: saturate(1.0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  [data-reveal] img { transform: none; filter: none; }
  .hero-image-frame img { animation: none; }
  .hero-marquee { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: 58vh auto;
    min-height: 0;
  }
  .hero-visual { order: 1; min-height: 0; }
  .hero-panel {
    order: 2;
    padding: clamp(40px, 8vw, 64px) clamp(24px, 6vw, 56px) clamp(40px, 8vw, 56px);
  }
  .hero-headline { font-size: clamp(56px, 14vw, 96px); }
  .hero-badge {
    left: auto;
    right: clamp(20px, 6vw, 40px);
    top: auto;
    bottom: -68px;
    transform: rotate(-6deg);
    width: 136px;
    height: 136px;
  }
  .hero-badge-big { font-size: 26px; }
  .weekend-grid { grid-template-columns: 1fr; gap: 40px; }
  .weekend-image { aspect-ratio: 4/3; }
  .hero-image-frame { aspect-ratio: 5/6; }
  .menu-grid {
    display: block;
  }
  .menu-grid > * { margin-bottom: 40px; }
  .menu-image-1, .menu-image-2 {
    transform: none;
    aspect-ratio: 16/10;
    width: 100%;
  }
  .menu-list-cols { grid-template-columns: 1fr; }
  .menu-list-cols li { border-top: 1px dashed rgba(42, 31, 26, 0.2); }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-portrait { max-width: 380px; margin: 0 auto; }
  .atmo-grid { grid-template-columns: 1fr; gap: 40px; }
  .atmo-image { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .topbar { padding: 12px 18px; }
  .topnav { gap: 14px; font-size: 13px; }
  .topnav a:not(.topnav-cta) { display: none; }
  .brand-sub { display: none; }
  .brand-logo { width: 36px; height: 36px; }
  .brand-name { font-size: 20px; }
  .weekend-list li { grid-template-columns: 1fr; gap: 4px; }
  .hero-wrap { grid-template-rows: 52vh auto; }
  .hero-kicker {
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
  }
  .hero-kicker::before { width: 24px; }
  .hero-headline {
    font-size: clamp(56px, 16vw, 88px);
    margin-bottom: 24px;
  }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 32px; }
  .hero-cta .btn { width: 100%; }
  .hero-meta { gap: 12px; font-size: 13px; padding-top: 20px; flex-direction: column; }
  .hero-meta li { white-space: normal; }
  .hero-badge {
    width: 116px;
    height: 116px;
    right: 20px;
    bottom: -58px;
  }
  .hero-badge-big { font-size: 22px; }
  .hero-badge-top, .hero-badge-sub { font-size: 9px; }
  .hero-marquee { font-size: 17px; padding: 14px 0; }
  .section-h { font-size: clamp(32px, 9vw, 48px); }
  .atmo-chips { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .topnav-cta { padding: 8px 14px; font-size: 13px; }
}

@media (max-width: 380px) {
  :root { --pad: 16px; }
  .hero-headline { font-size: 54px; line-height: 0.95; }
  .hero-panel { padding: 36px 22px 44px; }
  .btn { padding: 12px 18px; font-size: 14px; }
  .hero-badge { width: 104px; height: 104px; right: 12px; bottom: -52px; }
  .hero-badge-big { font-size: 19px; }
  .brand-name { font-size: 18px; }
  .topnav-cta { padding: 7px 12px; font-size: 12px; }
}
