/* ============================================================
   Bujáki Cukrászda · Krém Bujáki Fagylalt Udvar
   Static landing page — "Summer 2026" variant
   ============================================================ */

:root {
  /* surfaces */
  --cream: #FFF8EC;
  --cream-soft: #FBEFD9;
  --cream-warm: #F6E1C2;
  --cream-deep: #EFD3AB;
  --paper: #FFFFFF;

  /* primary brand colors */
  --rose: #E37684;
  --rose-deep: #C84A52;
  --rose-soft: #F5C6CB;

  --peach: #F2A878;
  --peach-deep: #E48A4F;

  --pistachio: #B5C99A;
  --lemon: #F5D575;
  --gold: #D4A574;

  /* ink */
  --chocolate: #2E1F15;
  --cocoa: #4A2F1F;
  --warm-grey: #6B5546;
  --soft-grey: #A89687;

  /* utility */
  --shadow-sm: 0 2px 12px rgba(46, 31, 21, 0.06);
  --shadow-md: 0 12px 40px rgba(46, 31, 21, 0.10);
  --shadow-lg: 0 24px 60px rgba(46, 31, 21, 0.14);
  --shadow-card: 0 6px 28px rgba(200, 74, 82, 0.10);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --max-w: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--chocolate);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(242, 168, 120, 0.10) 0, transparent 28%),
    radial-gradient(circle at 92% 86%, rgba(227, 118, 132, 0.08) 0, transparent 32%);
  background-attachment: fixed;
}

img, svg, iframe { display: block; max-width: 100%; }

a { color: var(--rose-deep); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--chocolate); }

p { margin: 0 0 1rem; }

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--chocolate);
  margin: 0 0 1rem;
}

h1 { font-size: clamp(2.6rem, 5.5vw + 1rem, 5.25rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 3vw + 1rem, 3.4rem); font-weight: 500; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--warm-grey); }

em.hand {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25em;
  color: var(--rose-deep);
  letter-spacing: 0.01em;
}

h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
}

strong { font-weight: 600; color: var(--chocolate); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--chocolate);
  color: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; outline: 3px solid var(--rose); }

/* ====================  EYEBROW  ==================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--rose-deep);
  margin: 0 0 1rem;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(227, 118, 132, 0.18);
  flex: 0 0 8px;
}

/* ====================  SEASON STRIP  ==================== */
.season-strip {
  background: linear-gradient(90deg, var(--rose) 0%, var(--peach) 50%, var(--lemon) 100%);
  color: var(--chocolate);
}
.strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 500;
}
.strip-flag { font-size: 1.15rem; }
.strip-link {
  color: var(--chocolate);
  font-weight: 700;
  border-bottom: 1.5px solid rgba(46,31,21,0.3);
  padding-bottom: 1px;
}
.strip-link:hover { border-bottom-color: var(--chocolate); color: var(--chocolate); }

/* ====================  HEADER  ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 236, 0.92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid rgba(46, 31, 21, 0.06);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-mark { width: 40px; height: 40px; flex: 0 0 40px; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--chocolate);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--warm-grey);
  margin-top: 4px;
  font-weight: 500;
}

.nav { display: flex; gap: 1.6rem; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--chocolate);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--chocolate);
  color: var(--cream);
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s, background 0.2s;
}
.header-cta:hover { background: var(--rose-deep); color: var(--cream); transform: translateY(-1px); }
.header-cta-num { font-variant-numeric: tabular-nums; }

/* ====================  HERO  ==================== */
.hero {
  position: relative;
  padding: 4.5rem 1.5rem 3.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
}
.orb-1 {
  width: 520px; height: 520px;
  top: -120px; right: -100px;
  background: radial-gradient(circle, var(--peach) 0%, transparent 70%);
}
.orb-2 {
  width: 380px; height: 380px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, var(--rose-soft) 0%, transparent 70%);
}
.sprinkle {
  position: absolute;
  width: 6px; height: 16px;
  border-radius: 8px;
}
.s-1 { top: 12%; left: 8%; background: var(--rose); transform: rotate(35deg); }
.s-2 { top: 30%; right: 12%; background: var(--pistachio); transform: rotate(-20deg); }
.s-3 { bottom: 25%; left: 5%; background: var(--lemon); transform: rotate(70deg); }
.s-4 { bottom: 15%; right: 7%; background: var(--peach); transform: rotate(-45deg); }
.s-5 { top: 55%; right: 4%; background: var(--rose-deep); transform: rotate(15deg); }

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text { max-width: 640px; }

.hero-heading {
  margin: 0 0 1.5rem;
  letter-spacing: -0.025em;
}

.hero-sub {
  font-size: 1.18rem;
  color: var(--cocoa);
  line-height: 1.55;
  margin-bottom: 2.2rem;
  max-width: 560px;
}
.hero-sub strong { color: var(--chocolate); font-weight: 600; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 560px;
  border-top: 1px solid rgba(46, 31, 21, 0.12);
  padding-top: 1.75rem;
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: 'Fraunces', serif;
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--chocolate);
  line-height: 1;
}
.hero-stats span {
  font-size: 0.82rem;
  color: var(--warm-grey);
}

/* hero illustration */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-illo {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 22px 48px rgba(227, 118, 132, 0.22));
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-14px) rotate(1.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-illo { animation: none; }
}

/* ====================  BUTTONS  ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--rose-deep);
  color: var(--cream);
  box-shadow: 0 6px 20px rgba(200, 74, 82, 0.28);
}
.btn-primary:hover {
  background: var(--chocolate);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(46, 31, 21, 0.32);
}
.btn-ghost {
  background: transparent;
  color: var(--chocolate);
  border-color: var(--chocolate);
}
.btn-ghost:hover {
  background: var(--chocolate);
  color: var(--cream);
}
.btn-mark { font-size: 1rem; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--chocolate);
  border-bottom: 1.5px solid currentColor;
  padding: 2px 0;
  transition: color 0.2s, gap 0.2s;
}
.btn-link:hover { color: var(--rose-deep); gap: 0.6rem; }

/* ====================  MARQUEE  ==================== */
.marquee {
  background: var(--chocolate);
  color: var(--cream);
  padding: 1.4rem 0;
  overflow: hidden;
  border-top: 4px solid var(--rose);
  border-bottom: 4px solid var(--peach);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  width: max-content;
  animation: scroll 50s linear infinite;
}
.marquee-track > span {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--cream);
}
.marquee-track > .dot {
  color: var(--peach);
  font-size: 0.7rem;
  font-style: normal;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; gap: 1rem 1.5rem; }
}

/* ====================  SECTION FRAME  ==================== */
section { padding: 6rem 1.5rem; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-head .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 1rem; }
.section-lede {
  font-size: 1.08rem;
  color: var(--cocoa);
  margin: 0;
}

/* ====================  STORY  ==================== */
.story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-text h2 { margin-bottom: 1.5rem; }
.story-text p {
  font-size: 1.08rem;
  color: var(--cocoa);
  margin-bottom: 1.1rem;
}
.story-quote {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem 2.25rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(212, 165, 116, 0.35);
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow-card);
}
.story-quote .qmark {
  font-family: 'Fraunces', serif;
  font-size: 6rem;
  line-height: 0.4;
  color: var(--rose);
  display: block;
  margin-bottom: 1.5rem;
}
.story-quote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--chocolate);
  margin-bottom: 1.25rem;
}
.story-quote .qcred {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--warm-grey);
  font-weight: 600;
}

/* ====================  OFFER GRID  ==================== */
.offer {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  border-top: 1px solid rgba(46, 31, 21, 0.05);
  border-bottom: 1px solid rgba(46, 31, 21, 0.05);
}
.offer-inner { max-width: var(--max-w); margin: 0 auto; }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.offer-card {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(46, 31, 21, 0.04);
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.offer-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-soft);
  border-radius: 50%;
}
.offer-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.offer-card p {
  color: var(--cocoa);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.offer-card.featured {
  background: linear-gradient(135deg, var(--rose) 0%, var(--peach) 100%);
  color: var(--paper);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(227, 118, 132, 0.32);
}
.offer-card.featured h3,
.offer-card.featured p { color: var(--paper); }
.offer-card.featured p { opacity: 0.94; }
.offer-card.featured .offer-icon {
  background: rgba(255, 255, 255, 0.22);
  color: var(--paper);
  font-size: 2rem;
  font-family: 'Fraunces', serif;
}
.offer-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.24);
  color: var(--paper);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.85rem;
  align-self: flex-start;
}

/* CTA callout below offer grid */
.offer-callout {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  border: 2px dashed var(--gold);
  box-shadow: var(--shadow-card);
}
.callout-text .callout-eye {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--rose-deep);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.callout-text h3 { margin-bottom: 0.5rem; font-size: 1.6rem; }
.callout-text p { margin: 0; color: var(--cocoa); }

/* ====================  VENUES  ==================== */
.venues-inner { max-width: var(--max-w); margin: 0 auto; }
.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.venue {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(46, 31, 21, 0.06);
  position: relative;
  overflow: hidden;
}
.venue::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--gold);
}
.venue--krem::before {
  background: linear-gradient(90deg, var(--rose) 0%, var(--peach) 100%);
}
.venue-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding: 4px 10px;
  background: rgba(212, 165, 116, 0.14);
  border-radius: 999px;
  margin-bottom: 1rem;
}
.venue-tag--rose {
  color: var(--rose-deep);
  background: var(--rose-soft);
}
.venue h3 {
  font-size: 1.85rem;
  margin-bottom: 0.6rem;
}
.venue-line {
  color: var(--cocoa);
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.55;
}
.venue-meta {
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}
.venue-meta > div {
  border-left: 2px solid var(--rose);
  padding-left: 0.9rem;
}
.venue--cuk .venue-meta > div { border-left-color: var(--gold); }
.venue-meta dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--warm-grey);
  font-weight: 600;
  margin-bottom: 4px;
}
.venue-meta dd {
  margin: 0;
  font-size: 0.96rem;
  color: var(--chocolate);
  font-weight: 500;
  line-height: 1.45;
}
.venue-meta dd small {
  display: block;
  font-size: 0.82rem;
  color: var(--warm-grey);
  font-weight: 400;
  margin-top: 4px;
}
.venue-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(46, 31, 21, 0.08);
}

/* ====================  REVIEWS  ==================== */
.reviews {
  background: var(--cream);
}
.reviews-inner { max-width: var(--max-w); margin: 0 auto; }
.rating-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0.5rem 1.1rem;
  background: var(--paper);
  border-radius: 999px;
  border: 1px solid rgba(46, 31, 21, 0.08);
  font-size: 0.92rem;
  color: var(--cocoa);
}
.rating-strip .stars { color: var(--gold); letter-spacing: 0.14em; }
.rating-strip strong { color: var(--chocolate); font-weight: 700; }

.lead-quote {
  max-width: 880px;
  margin: 0 auto 3rem;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.lead-quote .qmark {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  line-height: 0.3;
  color: var(--rose);
  display: block;
  margin-bottom: 1rem;
}
.lead-quote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw + 0.5rem, 2.05rem);
  font-weight: 500;
  line-height: 1.32;
  color: var(--chocolate);
  margin: 0 auto 1.5rem;
  max-width: 720px;
}
.lead-quote footer {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--warm-grey);
  font-weight: 600;
}

.review-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review {
  background: var(--paper);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46, 31, 21, 0.06);
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  margin: 0 0 1rem;
}
.review-text {
  font-family: 'Fraunces', serif;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--chocolate);
  flex-grow: 1;
  margin: 0 0 1.25rem;
}
.review-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--warm-grey);
  font-weight: 600;
  margin: 0;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--rose-deep);
  border-bottom: 1.5px solid var(--rose-deep);
  padding-bottom: 2px;
  transition: gap 0.2s, color 0.2s;
}
.reviews-link:hover { gap: 0.75rem; color: var(--chocolate); border-bottom-color: var(--chocolate); }
.reviews .reviews-inner { display: flex; flex-direction: column; align-items: center; }
.reviews .reviews-inner > .section-head,
.reviews .reviews-inner > .lead-quote,
.reviews .reviews-inner > .review-grid { width: 100%; }

/* ====================  VISIT  ==================== */
.visit { background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%); }
.visit-inner { max-width: var(--max-w); margin: 0 auto; }
.visit-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-block {
  background: var(--paper);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--rose);
  box-shadow: var(--shadow-sm);
}
.info-block h4 { margin: 0 0 0.5rem; }
.info-block p { margin: 0; font-size: 1rem; line-height: 1.55; color: var(--chocolate); }
.info-block .muted { color: var(--warm-grey); font-size: 0.9rem; }

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ====================  FOOTER  ==================== */
.site-footer {
  background: var(--chocolate);
  color: var(--cream);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.footer-brand .brand-name { color: var(--cream); font-size: 2rem; }
.footer-brand .brand-sub { color: var(--peach); margin-top: 8px; }
.footer-tag {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--cream-soft);
  margin: 0;
}
.footer-tag em { color: var(--peach); }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: left;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 248, 236, 0.14);
  border-bottom: 1px solid rgba(255, 248, 236, 0.14);
}
.footer-cols h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--peach);
  margin: 0 0 0.6rem;
  font-weight: 700;
}
.footer-cols p {
  font-size: 0.92rem;
  color: var(--cream-soft);
  margin: 0;
  line-height: 1.6;
}
.footer-cols a { color: var(--cream-soft); border-bottom: 1px dotted rgba(255, 248, 236, 0.35); padding-bottom: 1px; }
.footer-cols a:hover { color: var(--peach); border-bottom-color: var(--peach); }
.footer-meta {
  font-size: 0.82rem;
  color: rgba(255, 248, 236, 0.5);
  margin: 0;
}

/* ====================  RESPONSIVE  ==================== */
@media (max-width: 980px) {
  .hero-grid,
  .story-inner,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }
  .story-quote { transform: rotate(0); margin-top: 1rem; }
  .venue-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .visit-map iframe { min-height: 380px; }
}

@media (max-width: 720px) {
  section { padding: 4rem 1.25rem; }
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .header-inner { padding: 0.7rem 1rem; gap: 0.75rem; }
  .brand-name { font-size: 1.2rem; }
  .brand-sub { font-size: 0.58rem; }
  .header-cta-num { display: none; }
  .header-cta { padding: 0.6rem 0.85rem; }
  .strip-inner { font-size: 0.85rem; gap: 0.75rem; padding: 0.6rem 1rem; }
  .strip-link { display: none; }
  .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
  .hero-stats li {
    flex-direction: row;
    align-items: baseline;
    gap: 0.85rem;
  }
  .hero-stats strong { font-size: 1.4rem; }
  .marquee-track > span { font-size: 1.2rem; }
  .offer-callout {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .offer-callout .btn { justify-self: center; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
  .footer-cols > div { display: flex; flex-direction: column; align-items: center; }
  .lead-quote { padding: 2rem 1.5rem; }
  .review { padding: 1.5rem; }
  .venue { padding: 1.75rem; }
}

@media (max-width: 440px) {
  .footer-cols { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}
