:root {
  --sage: #55664f;
  --sage-dark: #3c4a38;
  --sage-light: #7c8c73;
  --cream: #f4f0e8;
  --cream-alt: #ece3d3;
  --coral: #e8785a;
  --coral-dark: #d4633f;
  --ink: #26261f;
  --ink-soft: #635f52;
  --paper: #fffdf9;

  --font-script: 'Kaushan Script', cursive;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.08; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; line-height: 1.15; }
h3 { font-size: 1.15rem; font-weight: 600; }

.script-accent {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--coral);
  display: inline-block;
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage);
  margin: 0 0 14px;
}

.body-text {
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 46ch;
}

/* ---------- Scroll reveal (Framer-style: blur + move up + fade) ---------- */
.reveal,
.reveal-hero {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
  will-change: opacity, transform, filter;
  transition-delay: var(--d, 0s);
}

.reveal.is-visible,
.reveal-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-hero {
    transition: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--sage);
  color: var(--cream);
}
.btn-primary:hover { background: var(--sage-dark); }

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-small { padding: 10px 22px; font-size: 0.82rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
}
.link-arrow span { transition: transform .3s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 240, 232, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(38, 38, 31, 0.06);
  transition: box-shadow .3s ease;
}

.site-header.scrolled { box-shadow: 0 6px 24px rgba(38, 38, 31, 0.06); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  height: 30px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 28px;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .3s ease, color .3s ease;
}

.nav a:hover, .nav a.active {
  color: var(--sage-dark);
  border-color: var(--coral);
}

.nav-cta { display: none; }

.nav-backdrop { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 13px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  text-align: center;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 620px;
  background: radial-gradient(60% 60% at 50% 20%, rgba(85, 102, 79, 0.16), transparent 70%),
              radial-gradient(40% 40% at 75% 10%, rgba(232, 120, 90, 0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url('/images/pattern-cream.webp');
  background-size: 320px;
  background-repeat: repeat;
  opacity: 0.022;
  filter: blur(0.5px);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(50% 55% at 50% 24%, transparent 30%, #000 75%);
  -webkit-mask-image: radial-gradient(50% 55% at 50% 24%, transparent 30%, #000 75%);
}

.hero-inner { position: relative; z-index: 1; }

.hero-sub {
  max-width: 46ch;
  margin: 0 auto 32px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 12px;
  padding: 0 20px;
}

.hero-cluster {
  position: relative;
  width: 100%;
  max-width: 660px;
  height: 460px;
  margin: 0 auto;
}

.hero-logo-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 253, 249, 0.9) 0%, rgba(255, 253, 249, 0.5) 45%, transparent 75%);
  filter: blur(4px);
  z-index: 0;
}

.hero-img { position: absolute; }

.hero-img-logo {
  width: 24%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 18px 24px rgba(38, 38, 31, 0.16));
}

.hero-img-cup {
  width: 32%;
  left: -1%;
  bottom: 2%;
  z-index: 1;
  filter: drop-shadow(0 30px 40px rgba(38, 38, 31, 0.22));
}

.hero-img-croissant {
  width: 32%;
  right: -1%;
  top: 6%;
  z-index: 1;
  filter: drop-shadow(0 24px 30px rgba(38, 38, 31, 0.2));
}

/* Idle floating motion, each element on its own duration/delay so the
   cluster drifts asynchronously instead of bobbing in sync. */
@keyframes floatCenter {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-14px); }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(-4deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50% { transform: translateY(-16px) rotate(8deg); }
}

.float-a { animation: floatA 6.5s ease-in-out infinite; animation-delay: .2s; }
.float-b { animation: floatB 7.5s ease-in-out infinite; animation-delay: 1s; }
.float-c { animation: floatCenter 5.5s ease-in-out infinite; animation-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
  .float-a, .float-b, .float-c { animation: none; }
}

/* ---------- Split section ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 90px 28px;
}

.split-media,
.why-media {
  background: var(--paper);
  padding: 12px;
  border-radius: 28px;
  border: 1px solid rgba(38, 38, 31, 0.08);
  box-shadow: 0 30px 60px rgba(38, 38, 31, 0.14);
}

.split-media img {
  display: block;
  border-radius: 18px;
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.split-copy h2 { max-width: 12ch; }

/* ---------- Section heading ---------- */
.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-sub { color: var(--ink-soft); margin-top: 8px; }

/* ---------- Flavor stage (auto-rotating, no-background product shots) ---------- */
.carousel-section { padding: 60px 28px 110px; }

.flavor-stage {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.flavor-item {
  position: absolute;
  left: 50%;
  top: 50%;
  transition: transform 1s var(--ease), opacity 1s var(--ease), filter 1s var(--ease);
  will-change: transform, opacity, filter;
}

.flavor-item img {
  width: 240px;
  max-width: 40vw;
  filter: drop-shadow(0 22px 30px rgba(38, 38, 31, 0.18));
}

.flavor-item[data-pos="active"] {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: blur(0);
  z-index: 5;
}
.flavor-item[data-pos="next"] {
  transform: translate(calc(-50% + 230px), -50%) scale(0.72);
  opacity: 0.55;
  filter: blur(3px);
  z-index: 4;
}
.flavor-item[data-pos="prev"] {
  transform: translate(calc(-50% - 230px), -50%) scale(0.72);
  opacity: 0.55;
  filter: blur(3px);
  z-index: 4;
}
.flavor-item[data-pos="next2"] {
  transform: translate(calc(-50% + 400px), -50%) scale(0.5);
  opacity: 0.3;
  filter: blur(5px);
  z-index: 3;
}
.flavor-item[data-pos="prev2"] {
  transform: translate(calc(-50% - 400px), -50%) scale(0.5);
  opacity: 0.3;
  filter: blur(5px);
  z-index: 3;
}
.flavor-item[data-pos="hidden"] {
  transform: translate(-50%, -50%) scale(0.35);
  opacity: 0;
  filter: blur(6px);
  z-index: 1;
  pointer-events: none;
}

.flavor-caption {
  text-align: center;
  max-width: 420px;
  margin: 8px auto 0;
  min-height: 84px;
}

.flavor-caption h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  transition: opacity .4s ease;
}

.flavor-caption p {
  color: var(--ink-soft);
  margin: 0;
  transition: opacity .4s ease;
}

.flavor-caption.is-changing h3,
.flavor-caption.is-changing p {
  opacity: 0;
}

@media (max-width: 720px) {
  .flavor-stage { height: 260px; }
  .flavor-item img { width: 170px; }
  .flavor-item[data-pos="next"] { transform: translate(calc(-50% + 130px), -50%) scale(0.68); }
  .flavor-item[data-pos="prev"] { transform: translate(calc(-50% - 130px), -50%) scale(0.68); }
  .flavor-item[data-pos="next2"] { transform: translate(calc(-50% + 210px), -50%) scale(0.45); }
  .flavor-item[data-pos="prev2"] { transform: translate(calc(-50% - 210px), -50%) scale(0.45); }
}

/* ---------- Why section ---------- */
.why-section { padding: 40px 28px 100px; }

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-media img {
  display: block;
  border-radius: 18px;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.why-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 30px; }
.why-list li { display: flex; gap: 18px; align-items: flex-start; }

.why-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream-alt);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-list h3 { margin-bottom: 4px; }
.why-list p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Atmosphere / gallery (auto-scrolling marquee) ---------- */
.atmosphere-section { padding: 20px 0 100px; }

.gallery-wrap {
  position: relative;
  overflow: hidden;
  padding: 4px 0 24px;
  mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.gallery-wrap:hover .gallery-track { animation-play-state: paused; }

.gallery-set {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track { animation: none; }
}

.gallery-item {
  flex: 0 0 auto;
  width: 260px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(38, 38, 31, 0.12);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }

/* ---------- Find us ---------- */
.find-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  padding: 40px 28px 100px;
  align-items: start;
}

.location-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.location-list li { display: flex; gap: 14px; align-items: flex-start; }
.location-list svg { color: var(--coral); margin-top: 3px; flex: 0 0 auto; }
.location-list strong { display: block; font-family: var(--font-display); font-weight: 600; }
.location-list span { color: var(--ink-soft); font-size: 0.92rem; }

.location-block { padding-top: 4px; }
.location-block-divider {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(38, 38, 31, 0.1);
}
.location-block h3 { margin-bottom: 12px; }

.location-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0 0 10px;
}
.location-line svg { color: var(--coral); margin-top: 2px; flex: 0 0 auto; }

.hours-list-compact {
  max-width: none;
  margin: 18px 0 0;
  gap: 8px;
}
.hours-list-compact li {
  padding-bottom: 8px;
  font-size: 0.9rem;
}

.find-maps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 92px;
}

.find-map {
  border-radius: 24px;
  overflow: hidden;
  height: 220px;
  background: var(--cream-alt);
  box-shadow: 0 30px 60px rgba(38, 38, 31, 0.14);
}
.find-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) contrast(1.02); }

/* ---------- Newsletter ---------- */
.newsletter-section { padding: 0 28px 110px; }

.newsletter-card {
  background: var(--sage);
  border-radius: 28px;
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/pattern-subtle.webp');
  background-size: 160px;
  background-repeat: repeat;
  opacity: 0.35;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.newsletter-card > * { position: relative; z-index: 1; }

.newsletter-body {
  text-align: center;
  color: var(--cream);
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.newsletter-body .eyebrow { color: var(--cream); opacity: .8; }
.newsletter-body h2 { color: var(--cream); }
.newsletter-body .body-text { color: rgba(244, 240, 232, 0.82); margin: 0 auto 26px; }

.newsletter-img {
  position: absolute;
  bottom: -8%;
  width: 240px;
  z-index: 1;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.35));
}

@keyframes floatNewsLeft {
  0%, 100% { transform: rotate(-10deg) translateY(0); }
  50% { transform: rotate(-10deg) translateY(-14px); }
}
@keyframes floatNewsRight {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(-14px); }
}

.newsletter-img-left { left: -34px; animation: floatNewsLeft 6s ease-in-out infinite; }
.newsletter-img-right { right: -34px; animation: floatNewsRight 6.8s ease-in-out infinite .5s; }

@media (prefers-reduced-motion: reduce) {
  .newsletter-img-left, .newsletter-img-right { animation: none; transform: rotate(-10deg); }
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1 1 200px;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter-success {
  display: none;
  color: var(--cream);
  font-weight: 600;
  margin-top: 16px;
}
.newsletter-success.show { display: block; }

/* ---------- Page hero (menu/about/contact/404) ---------- */
.page-hero { padding: 90px 28px 40px; }
.page-hero h1 { max-width: 16ch; }

/* ---------- Menu page ---------- */
.menu-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 20px 28px 60px;
}

.menu-page-bakery { grid-template-columns: 1fr; padding-top: 0; }
.menu-col-wide { max-width: 680px; }

.menu-heading {
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 700;
  border-bottom: 2px solid var(--cream-alt);
  padding-bottom: 10px;
  margin-top: 44px;
}
.menu-heading:first-child { margin-top: 0; }

.menu-list { list-style: none; padding: 0; margin: 0; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(38, 38, 31, 0.14);
}

.menu-item-name { font-family: var(--font-display); font-weight: 600; margin-right: 10px; }
.menu-item-desc { display: block; color: var(--ink-soft); font-size: 0.88rem; margin-top: 2px; }
.menu-item-price { color: var(--sage-dark); font-weight: 700; white-space: nowrap; font-family: var(--font-display); }

/* ---------- About / hours ---------- */
.hours-list {
  list-style: none;
  padding: 0;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(38, 38, 31, 0.14);
}
.hours-list span { color: var(--ink-soft); }

/* ---------- Contact form ---------- */
.contact-form-section { padding: 0 28px 100px; max-width: 560px; }

.contact-form { display: flex; flex-direction: column; }
.contact-form label {
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 16px;
  font-size: 0.88rem;
}
.contact-form input, .contact-form textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(38, 38, 31, 0.16);
  border-radius: 12px;
  font-family: var(--font-body);
  margin-top: 6px;
  background: var(--paper);
}
.contact-form button { margin-top: 24px; align-self: flex-start; }

.alert-success {
  background: #e4f0e0;
  color: var(--sage-dark);
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sage-dark);
  color: var(--cream-alt);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/pattern-subtle.webp');
  background-size: 140px;
  background-repeat: repeat;
  opacity: 0.3;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.site-footer > * { position: relative; z-index: 1; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 60px 28px 40px;
}

.footer-tagline { font-size: 0.9rem; opacity: .8; margin: 10px 0 18px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(244,240,232,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  text-decoration: none;
  transition: background .3s ease, border-color .3s ease;
}
.footer-social a:hover { background: rgba(244,240,232,0.14); border-color: var(--cream); }

.footer-col h4 {
  color: var(--cream);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.footer-col p, .footer-col a {
  display: block;
  color: rgba(244,240,232,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0 0 10px;
}
.footer-col a:hover { color: var(--cream); }
.footer-col p span { display: block; color: rgba(244,240,232,0.55); font-size: 0.82rem; }

.copyright {
  text-align: center;
  padding: 18px 28px;
  border-top: 1px solid rgba(244, 240, 232, 0.12);
  font-size: 0.8rem;
  color: rgba(244,240,232,0.6);
}

/* ---------- Menu page floating decoration ---------- */
.menu-float {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  z-index: -1;
  opacity: 0.9;
  filter: drop-shadow(0 20px 30px rgba(38, 38, 31, 0.16));
  pointer-events: none;
}
.menu-float-left { left: -36px; }
.menu-float-right { right: -36px; }

@media (max-width: 1100px) {
  .menu-float { display: none; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(38, 38, 31, 0.22);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
  z-index: 80;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--sage-dark); transform: translateY(-3px) scale(1.05); }

@media (max-width: 720px) {
  .back-to-top { right: 16px; bottom: 16px; width: 46px; height: 46px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split-section, .why-grid, .find-section { grid-template-columns: 1fr; gap: 36px; }
  .find-maps { position: static; }
  .menu-page { grid-template-columns: 1fr; gap: 10px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .newsletter-card { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 720px) {
  /* Tighter vertical rhythm, sections sized for one-handed scrolling
     rather than reusing desktop's generous whitespace. */
  .hero { padding: 68px 0 48px; }
  .hero-cluster { height: 260px; max-width: 320px; }
  .split-section { padding: 56px 28px; gap: 32px; }
  .carousel-section { padding: 44px 28px 64px; }
  .why-section { padding: 32px 28px 64px; }
  .atmosphere-section { padding: 8px 0 64px; }
  .find-section { padding: 28px 28px 64px; }
  .newsletter-section { padding: 0 28px 72px; }
  .newsletter-card { padding: 52px 24px; }
  .page-hero { padding: 68px 28px 28px; }
  .menu-page { padding: 12px 28px 40px; }
  .contact-form-section { padding: 0 28px 64px; }
  .footer-inner { padding: 44px 28px 32px; }

  /* Blur is the most expensive part of the reveal transition; a smaller
     radius keeps scroll-triggered animations smooth on weaker GPUs. */
  .reveal, .reveal-hero { filter: blur(6px); }

  .nav {
    position: fixed;
    inset: 68px 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 8px 28px 24px;
    margin: 0;
    border-bottom: 1px solid rgba(38,38,31,0.08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
    z-index: 95;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; box-shadow: 0 20px 30px rgba(38,38,31,0.08); }
  .nav a { padding: 12px 0; border-bottom: 1px solid rgba(38,38,31,0.06); width: 100%; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .nav-cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 14px;
    border-bottom: none;
    padding: 14px 30px;
  }
  .nav-cta:hover, .nav-cta.active { border-bottom: none; color: var(--cream); }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(38, 38, 31, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 90;
  }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }

  .newsletter-img { width: 108px; }
  .newsletter-img-left { left: -18px; }
  .newsletter-img-right { right: -18px; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .location-list li { justify-content: center; text-align: left; }
}
