:root {
  color-scheme: light;
  --cream: #eef2f7;
  --cream-strong: #d8e3ef;
  --card: #ffffff;
  --ink: #1a2b3c;
  --muted: #4a6077;
  --accent: #1a2b3c;
  --accent-strong: #0f1c28;
  --mint: #c8d8e8;
  --pistachio: #5a8fb5;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.04);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(26, 43, 60, 0.07), transparent 30rem),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f7 45%, #fff 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.sugar-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(26, 43, 60, 0.13), transparent 24rem),
    radial-gradient(circle at 78% 72%, rgba(90, 143, 181, 0.2), transparent 26rem),
    linear-gradient(135deg, #f7f9fc 0%, #eef2f7 52%, #ffffff 100%);
  color: var(--ink);
}

.sugar-loader::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(26, 43, 60, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(26, 43, 60, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(26, 43, 60, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.14);
  background-size: 44px 44px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.sugar-loader__glow {
  position: absolute;
  width: min(76vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 48%),
    radial-gradient(circle, rgba(26, 43, 60, 0.18), transparent 66%);
  filter: blur(10px);
}

.sugar-loader__card {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(86vw, 360px);
  border: 1px solid rgba(26, 43, 60, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(26px, 7vw, 42px);
  box-shadow:
    0 24px 72px rgba(26, 43, 60, 0.16),
    0 8px 24px rgba(26, 43, 60, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(26px) saturate(1.35);
  -webkit-backdrop-filter: blur(26px) saturate(1.35);
}

.sugar-loader__tag {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sugar-loader__seal {
  position: relative;
  display: grid;
  width: clamp(148px, 36vw, 206px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 43%, transparent 44%),
    conic-gradient(from 0deg, rgba(26, 43, 60, 0), rgba(26, 43, 60, 0.2), rgba(26, 43, 60, 0) 38%),
    #1a2b3c;
  color: var(--ink);
  font-family: "Baloo 2", cursive;
  font-size: clamp(4.7rem, 15vw, 7.4rem);
  font-weight: 800;
  line-height: 1;
  box-shadow:
    0 24px 58px rgba(26, 43, 60, 0.22),
    inset 0 0 0 10px #ffffff,
    inset 0 0 0 16px #1a2b3c;
  transform-origin: 50% 50%;
  will-change: transform;
}

.sugar-loader__seal strong {
  position: relative;
  z-index: 2;
  color: var(--ink);
  text-shadow: 0 8px 20px rgba(26, 43, 60, 0.12);
}

.sugar-loader__ring {
  position: absolute;
  inset: 8px;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.sugar-loader__ring--outer {
  border: 2px solid #1a2b3c;
  border-right-color: rgba(26, 43, 60, 0.2);
  border-left-color: rgba(26, 43, 60, 0.2);
}

.sugar-loader__ring--inner {
  inset: 31px;
  border: 1px solid rgba(26, 43, 60, 0.32);
}

.sugar-loader__orbit {
  position: absolute;
  z-index: 3;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #1a2b3c;
  box-shadow: 0 0 0 5px rgba(26, 43, 60, 0.1);
}

.sugar-loader__orbit--one {
  top: 17px;
  left: 50%;
}

.sugar-loader__orbit--two {
  right: 17px;
  bottom: 50%;
}

.sugar-loader__seal-top,
.sugar-loader__seal-bottom {
  position: absolute;
  z-index: 2;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(0.56rem, 2vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.sugar-loader__seal-top {
  top: 23px;
}

.sugar-loader__seal-bottom {
  bottom: 24px;
}

.sugar-loader__card p {
  margin: 22px 0 16px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.sugar-loader__bar {
  width: min(220px, 66vw);
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(26, 43, 60, 0.08);
  box-shadow: inset 0 1px 2px rgba(26, 43, 60, 0.06);
}

.sugar-loader__bar span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1a2b3c, #5a8fb5, #1a2b3c);
  box-shadow: 0 0 22px rgba(26, 43, 60, 0.26);
  transform: translateX(-115%);
}

.sugar-loader__line {
  position: absolute;
  width: clamp(82px, 16vw, 180px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(26, 43, 60, 0.42), transparent);
  box-shadow: 0 12px 32px rgba(26, 43, 60, 0.08);
}

.sugar-loader__line--one {
  top: 20%;
  left: 11%;
}

.sugar-loader__line--two {
  right: 10%;
  bottom: 22%;
  width: clamp(120px, 18vw, 220px);
}

.sugar-loader__line--three {
  top: 62%;
  left: 8%;
  width: clamp(64px, 12vw, 140px);
}

a {
  color: inherit;
}

.ambient-motion {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.motion-orb {
  position: absolute;
  width: clamp(180px, 26vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  will-change: transform;
  animation: float-gentle 12s ease-in-out infinite;
}

.motion-orb--pink {
  top: 9%;
  right: -72px;
  background: radial-gradient(circle, rgba(26, 43, 60, 0.14), transparent 68%);
}

.motion-orb--mint {
  bottom: 16%;
  left: -92px;
  background: radial-gradient(circle, rgba(90, 143, 181, 0.18), transparent 70%);
}

.motion-orb--cream {
  top: 48%;
  right: 16%;
  background: radial-gradient(circle, rgba(200, 216, 232, 0.22), transparent 70%);
}

.site-header,
.section,
.footer {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  padding: 24px 0 40px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  position: sticky;
  top: 14px;
  z-index: 10;
  transition: background 300ms ease, box-shadow 300ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), #2d4a63);
  color: #fff;
  font-family: "Baloo 2", cursive;
  font-size: 1.75rem;
  font-weight: 700;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(26, 43, 60, 0.28);
  transform-origin: 50% 70%;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
h1,
h2 {
  font-family: "Baloo 2", cursive;
  line-height: 0.98;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav__links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav__links a {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  background: var(--cream-strong);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  padding: 68px 0 12px;
}

.hero__content,
.hero-card,
.info-card,
.menu-card,
.highlight-card,
.proof,
.hours-card,
.contact-card {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero__content {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  padding: clamp(32px, 7vw, 72px);
}

.hero__content > * {
  position: relative;
  z-index: 1;
}

.hero__content::after {
  content: "";
  position: absolute;
  inset: -35% auto auto -20%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 43, 60, 0.06), transparent 68%);
  animation: soft-pulse 7s ease-in-out infinite;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.hero__text,
.section__heading p,
.hero-card p,
.proof p,
.contact-card p,
.menu-card p,
.highlight-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero__text {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.sticky-cta a,
.social-links a,
.category-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 280ms ease,
    color 200ms ease,
    background 200ms ease;
}

.button:active {
  transform: scale(0.95);
}

.button--primary,
.sticky-cta a:first-child,
.category-tab[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.button--ghost,
.sticky-cta a:last-child,
.social-links a,
.category-tab {
  background: var(--cream-strong);
  color: var(--ink);
}

.hero-card {
  position: relative;
  display: block;
  min-height: clamp(600px, 72vh, 740px);
  overflow: hidden;
  border-radius: 42px;
  padding: 0;
  isolation: isolate;
}

.hero-sparkle {
  position: absolute;
  z-index: 2;
  width: 14px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.22),
    0 0 24px rgba(255, 255, 255, 0.78);
  animation: sparkle-drift 4.4s ease-in-out infinite;
  pointer-events: none;
}

.hero-sparkle--one {
  top: 22%;
  left: 18%;
}

.hero-sparkle--two {
  top: 44%;
  right: 15%;
  width: 10px;
  animation-delay: -1.4s;
}

.hero-sparkle--three {
  right: 34%;
  bottom: 24%;
  width: 8px;
  animation-delay: -2.7s;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 42%, rgba(247, 249, 252, 0.7) 64%, #f7f9fc 88%),
    radial-gradient(circle at 50% 74%, rgba(255, 255, 255, 0.9), transparent 19rem),
    linear-gradient(180deg, rgba(26, 43, 60, 0.02), rgba(26, 43, 60, 0.12));
  z-index: 1;
  pointer-events: none;
}

.hero-card__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.4);
  padding: 8px 14px;
  color: var(--accent-strong);
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}

.hero-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  color: var(--accent-strong);
  font-family: "Baloo 2", cursive;
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  object-fit: cover;
  object-position: center top;
  box-shadow: none;
}

.hero-card__image--fallback {
  display: grid;
  height: 100%;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
}

.hero-card h2 {
  position: absolute;
  right: clamp(24px, 5vw, 36px);
  bottom: 124px;
  left: clamp(24px, 5vw, 36px);
  z-index: 2;
  max-width: 9ch;
  font-size: clamp(2.45rem, 5.4vw, 3.8rem);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.52);
}

.hero-card p {
  position: absolute;
  right: clamp(24px, 5vw, 36px);
  bottom: 34px;
  left: clamp(24px, 5vw, 36px);
  z-index: 2;
  max-width: 34ch;
  margin: 0;
  font-weight: 600;
}

.section {
  padding: 58px 0;
}

.section--intro {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 28px;
  align-items: start;
}

.intro-grid,
.proof__items,
.location {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-card,
.menu-card,
.highlight-card,
.hours-card,
.contact-card {
  border-radius: var(--radius);
  padding: 24px;
}

.info-card span,
.menu-card__meta,
.highlight-card span {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.2rem;
}

.section__heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.scroll-showcase {
  margin: 12px 0 34px;
  /* Höhe ergänzt GSAP beim Desktop (min-height); hier nur Basis */
}

.scroll-showcase__sticky {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 18%, rgba(26, 43, 60, 0.06), transparent 18rem),
    linear-gradient(135deg, rgba(247, 249, 252, 0.98), rgba(238, 242, 247, 0.96));
  padding: clamp(18px, 4vw, 34px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

@media (min-width: 861px) {
  /* Native sticky + Horizontal-Translate per ScrollTrigger (ohne position:fixed / pin) */

  #karte .scroll-showcase__sticky {
    position: sticky;
    top: 92px;
    z-index: 4;
    isolation: isolate;
  }

  /* Genug Luft am Ende der Reihe für die Animation */
  #karte .scroll-showcase__track {
    padding-right: min(10vw, 140px);
  }
}

.scroll-showcase__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.scroll-showcase__intro span,
.scroll-card span {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-showcase__intro strong {
  max-width: 520px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-align: right;
}

.scroll-showcase__window {
  overflow: hidden;
}

.scroll-showcase__track {
  display: flex;
  width: max-content;
  gap: 16px;
  will-change: transform;
}

.scroll-card {
  display: flex;
  width: min(76vw, 360px);
  min-height: 260px;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: end;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  padding: 24px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform-origin: 50% 72%;
  will-change: transform;
}

.scroll-card h3 {
  margin: 18px 0 8px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
}

.scroll-card p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.scroll-card--pink {
  background: linear-gradient(160deg, #fff, #d8e3ef);
}

.scroll-card--green {
  background: linear-gradient(160deg, #fff, #c8d8e8);
}

.scroll-card--cream {
  background: linear-gradient(160deg, #fff, #e8edf3);
}

.scroll-card--dark {
  background: linear-gradient(160deg, #1a2b3c, #0f1c28);
}

.scroll-card--dark h3,
.scroll-card--dark p {
  color: #eef2f7;
}

.scroll-card--dark span {
  color: #a8c4d8;
}

.category-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scrollbar-width: thin;
}

.category-tab {
  flex: 0 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.menu-card {
  display: grid;
  gap: 14px;
}

.menu-card__image {
  width: 100%;
  height: 190px;
  border-radius: 22px;
  object-fit: cover;
}

.menu-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.menu-card h3,
.highlight-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.menu-card p,
.highlight-card p {
  margin: 0;
}

.menu-card__price {
  align-self: start;
  border-radius: 999px;
  background: var(--mint);
  padding: 8px 12px;
  color: #1a3a5c;
  font-weight: 800;
  white-space: nowrap;
}

.menu-board-section {
  scroll-margin-top: 110px;
}

.menu-board-grid {
  display: grid;
  gap: 22px;
}

.menu-board-grid.is-pinned {
  position: static;
  height: auto;
  min-height: 0;
  overflow: visible;
  border-radius: 0;
}

.menu-board-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(26, 43, 60, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.menu-board-grid.is-pinned .menu-board-card {
  position: static;
  transform: none !important;
  opacity: 1 !important;
}

.menu-board-card img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-board-grid.is-pinned .menu-board-card img {
  height: auto;
  object-fit: cover;
  background: none;
}

.best-cafe-scroll {
  height: 400vh;
  margin: 8px 0 18px;
  overflow: clip;
}

.best-cafe-scroll__sticky {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.best-cafe-scroll__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  padding: 0;
  color: var(--ink);
  font-family: "Baloo 2", cursive;
  font-size: clamp(4rem, 13vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-transform: uppercase;
  will-change: transform;
}

.best-cafe-scroll__track span {
  display: block;
  min-width: max-content;
  color: rgba(26, 43, 60, 0.12);
  transition:
    color 420ms ease,
    text-shadow 420ms ease,
    transform 420ms ease;
  text-shadow:
    0 2px 0 #fff,
    0 28px 70px rgba(26, 43, 60, 0.18);
}

.best-cafe-scroll__track span.active {
  color: var(--ink);
  transform: scale(1.02);
}

.highlight-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(216, 227, 239, 0.78)),
    var(--card);
}

.highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.highlight-card:hover::after,
.highlight-card:focus-within::after {
  transform: translateX(120%);
}

.highlight-card__emoji {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 24px;
  background: #fff;
  font-size: 2.4rem;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(26, 43, 60, 0.08);
}

.highlight-card__emoji:not(.highlight-card__emoji--fallback) {
  width: 100%;
  height: 180px;
  margin-bottom: 22px;
}

.highlight-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.highlight-feature,
.highlight-rail {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.highlight-feature {
  position: sticky;
  top: 108px;
  display: grid;
  min-height: min(690px, calc(100vh - 132px));
  overflow: hidden;
  border-radius: 42px;
  isolation: isolate;
}

.highlight-feature::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(26, 43, 60, 0.58));
  z-index: 1;
  pointer-events: none;
}

.highlight-feature__media {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.highlight-feature__media--fallback {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.82), transparent 14rem),
    linear-gradient(145deg, #d8e3ef, #e8edf3);
  color: var(--accent-strong);
  font-family: "Baloo 2", cursive;
  font-size: clamp(6rem, 18vw, 13rem);
  font-weight: 800;
}

.highlight-feature__copy {
  position: absolute;
  right: clamp(22px, 4vw, 40px);
  bottom: clamp(22px, 4vw, 40px);
  left: clamp(22px, 4vw, 40px);
  z-index: 2;
  color: #f5f7fa;
}

.highlight-feature__copy span {
  color: #a8c4d8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.highlight-feature__copy h3 {
  margin: 10px 0;
  font-family: "Baloo 2", cursive;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.86;
  text-shadow: 0 8px 30px rgba(26, 43, 60, 0.36);
}

.highlight-feature__copy p {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 250, 242, 0.88);
  font-weight: 700;
  line-height: 1.65;
}

.highlight-rail {
  display: grid;
  gap: 12px;
  border-radius: 32px;
  padding: 14px;
}

.highlight-thumb {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 118px;
  border: 0;
  border-radius: 24px;
  background: rgba(238, 242, 247, 0.65);
  color: var(--ink);
  padding: 10px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    background 260ms ease,
    box-shadow 260ms ease;
}

.highlight-thumb[aria-pressed="true"] {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.highlight-thumb__media {
  width: 112px;
  height: 96px;
  border-radius: 18px;
  object-fit: cover;
}

.highlight-thumb__media--fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fff, #d8e3ef);
  color: var(--accent-strong);
  font-family: "Baloo 2", cursive;
  font-size: 2.8rem;
  font-weight: 800;
}

.highlight-thumb__copy span {
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.highlight-thumb__copy strong {
  display: block;
  margin: 4px 0;
  font-size: 1rem;
}

.highlight-thumb__copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.proof {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  border-radius: 38px;
  padding: 32px;
}

.proof article {
  border-radius: 24px;
  background: var(--cream);
  padding: 20px;
}

.proof strong {
  font-size: 1.1rem;
}

.location {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.card-kicker .eyebrow {
  margin: 0;
}

.status-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(90, 143, 181, 0.3);
  background: rgba(90, 143, 181, 0.14);
  padding: 8px 12px;
  color: #1a3a5c;
  font-size: 0.78rem;
  font-weight: 900;
}

.hours-list {
  margin: 24px 0 0;
}

.hours-list div {
  display: flex;
  position: relative;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(26, 43, 60, 0.18);
  padding: 13px 0;
}

.hours-list div.is-today {
  margin-inline: -12px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(200, 216, 232, 0.9), rgba(216, 227, 239, 0.58));
  padding-inline: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dt {
  font-weight: 800;
}

.hours-list dd {
  color: var(--muted);
}

.hours-note {
  margin: 20px 0 0;
  border-radius: 20px;
  background: rgba(238, 242, 247, 0.88);
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.contact-card {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  align-content: space-between;
  gap: 34px;
  background:
    radial-gradient(circle at 90% 6%, rgba(26, 43, 60, 0.12), transparent 17rem),
    radial-gradient(circle at 20% 96%, rgba(200, 216, 232, 0.84), transparent 18rem),
    rgba(255, 255, 255, 0.86);
}

.contact-card::after {
  content: "Sweet Spot";
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  color: rgba(26, 43, 60, 0.055);
  font-family: "Baloo 2", cursive;
  font-size: clamp(4rem, 9vw, 7.8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
  pointer-events: none;
}

.contact-card__content,
.contact-card__panel {
  position: relative;
  z-index: 1;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-links a:hover,
.social-links a:focus-visible,
.contact-action:hover,
.contact-action:focus-visible {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  outline: 0;
  transform: translateY(-4px) scale(1.02);
}

.contact-card__panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-action {
  display: grid;
  min-height: 118px;
  align-content: end;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  background: rgba(238, 242, 247, 0.82);
  padding: 18px;
  text-decoration: none;
  transition:
    background 260ms ease,
    box-shadow 260ms ease,
    transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-action span {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-action strong {
  margin-top: 8px;
  font-size: 1.15rem;
}

.sticky-cta {
  position: fixed;
  right: auto;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 20;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -0.5px 0 rgba(0, 0, 0, 0.05);
  transform: translateX(-50%);
  isolation: isolate;
  overflow: visible;
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  transition: box-shadow 300ms ease, border-color 300ms ease;
}

.sticky-cta:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 12px 44px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.sticky-cta a {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  min-height: 52px;
  place-items: center;
  padding: 0;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26, 43, 60, 0.85), rgba(15, 28, 40, 0.95));
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform-origin: 50% 100%;
  will-change: transform;
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 280ms ease;
}

.sticky-cta a:nth-child(1) {
  background: linear-gradient(145deg, #2d4a63, #1a2b3c);
}

.sticky-cta a:nth-child(2) {
  background: linear-gradient(145deg, #3d6080, #1a2b3c);
}

.sticky-cta a:nth-child(3) {
  background: linear-gradient(145deg, #5a7a99, #2d4a63);
}

.sticky-cta a:nth-child(4) {
  background: linear-gradient(145deg, #2d4a63, #1a2b3c);
}

.sticky-cta a:nth-child(5) {
  color: #fff;
  background: linear-gradient(145deg, #4a6077, #1a2b3c);
}

.sticky-cta a::before {
  content: attr(data-dock-label);
  position: absolute;
  top: -36px;
  left: 50%;
  border-radius: 8px;
  background: rgba(30, 20, 10, 0.88);
  color: #fff;
  padding: 6px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translate(-50%, 6px);
  transition: opacity 200ms ease, transform 200ms ease;
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.sticky-cta a::after {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  height: 50%;
  border-radius: 15px 15px 12px 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent);
  pointer-events: none;
}

.sticky-cta a:hover::before,
.sticky-cta a:focus-visible::before,
.sticky-cta a.is-dock-active::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.dock-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  will-change: transform;
}

.sticky-cta a:hover,
.sticky-cta a:focus-visible,
.sticky-cta a.is-dock-active {
  outline: 0;
  transform: translateY(-6px) scale(1.12);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 96px;
  color: var(--muted);
}

.footer a {
  font-weight: 800;
  text-decoration: none;
}

@keyframes soft-pulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate3d(12px, 10px, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes sparkle-drift {
  0%,
  100% {
    opacity: 0.4;
    transform: translate3d(0, 0, 0) scale(0.85);
  }

  25% {
    opacity: 0.9;
    transform: translate3d(4px, -8px, 0) scale(1.05);
  }

  50% {
    opacity: 1;
    transform: translate3d(8px, -12px, 0) scale(1.15);
  }

  75% {
    opacity: 0.8;
    transform: translate3d(5px, -6px, 0) scale(1);
  }
}

@keyframes float-gentle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.editor-fab {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 30;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(26, 43, 60, 0.24);
  cursor: pointer;
}

.admin-page {
  min-height: 100vh;
}

.admin-login-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 32px);
  background: rgba(26, 43, 60, 0.35);
  backdrop-filter: blur(14px);
}

.admin-login-gate--dismissed {
  display: none !important;
}

.admin-login-card {
  width: min(100%, 380px);
  padding: clamp(22px, 4vw, 32px);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 43, 60, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.admin-login-card h2 {
  margin: 0 0 6px;
  font-family: "Baloo 2", cursive;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.admin-login-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.admin-login-card label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

.admin-login-card input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(26, 43, 60, 0.15);
  font: inherit;
}

.admin-login-card .button--primary {
  width: 100%;
}

.admin-login-card__status {
  margin: 12px 0 0;
  min-height: 1.35em;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 600;
}

.admin-page .nav__logout {
  border: none;
  cursor: pointer;
  align-self: center;
}

.admin-header,
.admin-main {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.admin-header {
  padding-top: 24px;
}

.admin-main {
  display: grid;
  gap: 22px;
  padding: 28px 0 40px;
}

.admin-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.admin-intro > div,
.admin-help,
.admin-editor-card {
  border: 1px solid rgba(26, 43, 60, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.admin-intro > div {
  padding: clamp(24px, 4vw, 38px);
}

.admin-intro h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.admin-intro p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.admin-help {
  align-self: stretch;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(26, 43, 60, 0.10), transparent 16rem),
    rgba(255, 255, 255, 0.78);
}

.admin-help strong {
  display: block;
  font-size: 1.08rem;
}

.admin-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-quick-grid article,
.admin-guide,
.admin-editor-card {
  border: 1px solid rgba(26, 43, 60, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.admin-quick-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.admin-quick-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.admin-quick-grid strong {
  font-size: 1.04rem;
}

.admin-quick-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.admin-editor-shell {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-guide {
  position: sticky;
  top: 96px;
  padding: 22px;
}

.admin-guide h2 {
  margin: 0 0 16px;
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.admin-guide dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.admin-guide div {
  border-radius: 18px;
  background: var(--cream);
  padding: 14px;
}

.admin-guide dt {
  font-weight: 900;
}

.admin-guide dd {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.admin-editor-card {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 32px);
}

.admin-editor-card .editor-panel__header h2 {
  margin: 0;
}

.editor-open {
  overflow: hidden;
}

.editor-shell {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.editor-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 43, 60, 0.38);
}

.editor-panel {
  position: absolute;
  inset: 0 0 0 auto;
  display: flex;
  width: min(620px, 100%);
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
  background: #f7f9fc;
  padding: 28px;
  box-shadow: -24px 0 70px rgba(26, 43, 60, 0.22);
}

.editor-panel__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.editor-panel__header h2 {
  font-size: clamp(2rem, 6vw, 3rem);
}

.editor-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--cream-strong);
  color: var(--ink);
  font-size: 1.7rem;
  cursor: pointer;
}

.editor-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.editor-tabs,
.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-page .editor-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.editor-tab {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--cream-strong);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-page .editor-tab {
  display: grid;
  min-height: 86px;
  align-content: start;
  gap: 6px;
  border: 1px solid rgba(26, 43, 60, 0.08);
  border-radius: 20px;
  padding: 15px;
  text-align: left;
}

.admin-page .editor-tab strong,
.admin-page .editor-tab span {
  display: block;
}

.admin-page .editor-tab span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.editor-tab[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.admin-page .editor-tab[aria-pressed="true"] span {
  color: rgba(255, 255, 255, 0.82);
}

.admin-page .editor-actions {
  position: sticky;
  bottom: 14px;
  z-index: 5;
  border: 1px solid rgba(26, 43, 60, 0.08);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.92);
  padding: 12px;
  box-shadow: 0 18px 46px rgba(26, 43, 60, 0.12);
  backdrop-filter: blur(18px);
}

.editor-form {
  display: grid;
  gap: 14px;
}

.editor-section-intro {
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(141, 189, 105, 0.2), transparent 12rem),
    var(--cream);
  padding: 18px;
}

.editor-section-intro h3 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.editor-section-intro p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.editor-field {
  display: grid;
  gap: 7px;
}

.editor-field span,
.editor-group h3,
.editor-subgroup h4 {
  font-weight: 800;
}

.editor-field input:not([type="file"]),
.editor-field textarea {
  width: 100%;
  border: 1px solid rgba(26, 43, 60, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.editor-field textarea {
  resize: vertical;
}

.editor-field--image {
  border: 1px dashed rgba(26, 43, 60, 0.2);
  border-radius: 18px;
  padding: 14px;
  background: var(--cream);
}

.editor-field--image small {
  color: var(--muted);
}

.editor-field--image input[type="file"] {
  width: 100%;
}

.editor-preview {
  width: 100%;
  max-height: 180px;
  border-radius: 14px;
  object-fit: cover;
}

.editor-remove-image {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  background: #ffe0e8;
  color: var(--accent-strong);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.editor-group,
.editor-subgroup {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(26, 43, 60, 0.1);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.editor-group h3,
.editor-subgroup h4 {
  margin: 0;
}

.editor-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.editor-file {
  display: none;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    border-radius: 28px;
    flex-direction: column;
  }

  .nav__links {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .admin-intro {
    grid-template-columns: 1fr;
  }

  .admin-quick-grid,
  .admin-editor-shell,
  .admin-page .editor-tabs {
    grid-template-columns: 1fr;
  }

  .admin-guide {
    position: static;
  }

  .hero,
  .section--intro,
  .proof,
  .location {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-card {
    min-height: min(480px, 60vh);
  }

  .scroll-showcase__sticky {
    border-radius: 30px;
  }

  .scroll-showcase__intro {
    align-items: start;
    flex-direction: column;
  }

  .scroll-showcase__intro strong {
    text-align: left;
  }

  .scroll-showcase__window {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .scroll-showcase__window::-webkit-scrollbar {
    display: none;
  }

  .scroll-card {
    scroll-snap-align: start;
  }

  .intro-grid,
  .proof__items,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .highlight-carousel {
    grid-template-columns: 1fr;
  }

  .highlight-feature {
    position: relative;
    top: auto;
    min-height: 460px;
  }

  .contact-card {
    min-height: auto;
  }

  .editor-fab {
    bottom: 90px;
  }
}

@media (max-width: 520px) {
  .card-kicker {
    align-items: flex-start;
    flex-direction: column;
  }

  .editor-panel {
    padding: 20px;
  }

  .editor-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   MOBILE EXPERIENCE — completely reimagined
   ═══════════════════════════════════════════════════ */
.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  /* ─── Bottom Navigation ─── */
  .mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 72px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(32px) saturate(1.6);
    -webkit-backdrop-filter: blur(32px) saturate(1.6);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 -4px 30px rgba(26, 43, 60, 0.06);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mobile-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 8px 0;
    text-decoration: none;
    color: rgba(26, 43, 60, 0.45);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    -webkit-tap-highlight-color: transparent;
    transition: color 220ms ease, transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .mobile-nav__item svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .mobile-nav__item.is-active {
    color: var(--accent);
  }

  .mobile-nav__item.is-active svg {
    transform: scale(1.1);
  }

  .mobile-nav__item:active {
    transform: scale(0.88);
  }

  /* ─── Hide Desktop Elements ─── */
  .sticky-cta {
    display: none !important;
  }

  .ambient-motion {
    display: none;
  }

  /* ─── Layout Basics ─── */
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
    background: #fff;
  }

  .site-header,
  .section,
  .footer {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0;
  }

  .site-header {
    padding-top: 12px;
    padding-bottom: 0;
  }

  .footer {
    padding-top: 20px;
    padding-bottom: 80px;
  }

  /* ─── Navigation (simplified brand only) ─── */
  .nav {
    position: relative;
    top: auto;
    flex-direction: row;
    align-items: center;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 8px 0;
  }

  .nav__links {
    display: none;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .brand strong {
    font-size: 1.1rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  /* ─── Hero ─── */
  .hero {
    gap: 16px;
    padding-top: 16px;
  }

  .hero__content {
    padding: 24px 20px;
    border-radius: 24px;
    border: none;
    background: linear-gradient(145deg, rgba(255, 219, 229, 0.3), rgba(255, 232, 200, 0.25));
    box-shadow: none;
  }

  .hero__content::after {
    display: none;
  }

  h1 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
    line-height: 1.02;
  }

  .hero__text {
    font-size: 0.92rem;
    margin-top: 14px;
    line-height: 1.55;
  }

  .hero__actions {
    margin-top: 20px;
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
    font-size: 0.95rem;
  }

  .hero-card {
    min-height: 320px;
    border-radius: 24px;
    border: none;
    box-shadow: 0 12px 32px rgba(26, 43, 60, 0.1);
  }

  .hero-card h2 {
    bottom: 70px;
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    left: 20px;
    right: 20px;
  }

  .hero-card p {
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: 0.85rem;
  }

  .hero-card__badge {
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    font-size: 0.72rem;
  }

  .hero-sparkle {
    display: none;
  }

  /* ─── Intro Section ─── */
  .section--intro {
    gap: 16px;
  }

  .section--intro .eyebrow {
    margin-bottom: 8px;
  }

  #intro-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .info-card {
    padding: 18px;
    border-radius: 18px;
    border: none;
    background: #fff;
    box-shadow: 0 4px 16px rgba(26, 43, 60, 0.06);
  }

  .info-card span {
    font-size: 0.7rem;
  }

  .info-card strong {
    font-size: 1rem;
    margin-top: 8px;
  }

  /* ─── Sections General ─── */
  .section {
    padding: 28px 16px;
  }

  .section__heading {
    margin-bottom: 14px;
  }

  .section__heading h2 {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  .section__heading p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }

  /* ─── Scroll Showcase (swipeable cards) ─── */
  .scroll-showcase {
    min-height: 0 !important;
    height: auto !important;
    margin: 0 0 12px;
  }

  .scroll-showcase__sticky {
    position: relative;
    top: auto;
    border-radius: 20px;
    padding: 16px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 232, 200, 0.5));
    box-shadow: 0 8px 28px rgba(26, 43, 60, 0.06);
    border: none;
  }

  .scroll-showcase__intro {
    margin-bottom: 12px;
  }

  .scroll-showcase__intro span {
    font-size: 0.7rem;
  }

  .scroll-showcase__intro strong {
    font-size: clamp(1.3rem, 4.5vw, 1.8rem);
  }

  .scroll-showcase__window {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin: 0 -16px;
    padding: 0 16px 12px;
    scrollbar-width: none;
  }

  .scroll-showcase__window::-webkit-scrollbar {
    display: none;
  }

  .scroll-showcase__track {
    transform: none !important;
  }

  .scroll-card {
    width: 70vw;
    min-height: 180px;
    border-radius: 18px;
    padding: 16px;
    scroll-snap-align: start;
    transform: none !important;
    box-shadow: 0 8px 20px rgba(26, 43, 60, 0.08);
    border: none;
  }

  .scroll-card h3 {
    font-size: clamp(1.3rem, 3.5vw, 1.7rem);
    margin-top: 10px;
  }

  .scroll-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* ─── Menu Board (Bilderkarte) ─── */
  .menu-board-section {
    scroll-margin-top: 80px;
  }

  .menu-board-grid {
    gap: 10px;
  }

  .menu-board-grid.is-pinned {
    position: static;
    height: auto;
    min-height: auto;
    overflow: visible;
    border-radius: 0;
  }

  .menu-board-grid.is-pinned .menu-board-card {
    position: static;
    transform: none !important;
    opacity: 1 !important;
  }

  .menu-board-grid.is-pinned .menu-board-card img {
    height: auto;
    object-fit: cover;
    background: none;
  }

  .menu-board-card {
    border-radius: 14px;
    border: none;
    background: #fff;
    box-shadow: 0 4px 16px rgba(26, 43, 60, 0.06);
    overflow: hidden;
  }

  .menu-board-card img {
    border-radius: 0;
  }

  /* ─── Best Cafe Scroll ─── */
  .best-cafe-scroll {
    height: auto;
    margin: 20px 0;
    overflow: visible;
  }

  .best-cafe-scroll__sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
  }

  .best-cafe-scroll__track {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    gap: 8px;
    font-size: clamp(2rem, 8vw, 3rem);
    transform: none !important;
  }

  .best-cafe-scroll__track span {
    color: var(--ink) !important;
    transform: none !important;
    text-shadow: none;
    min-width: auto;
  }

  /* ─── Highlights ─── */
  .highlight-carousel {
    gap: 12px;
  }

  .highlight-feature {
    min-height: 340px;
    border-radius: 22px;
    border: none;
    box-shadow: 0 10px 30px rgba(26, 43, 60, 0.1);
  }

  .highlight-feature__copy {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .highlight-feature__copy h3 {
    font-size: clamp(1.7rem, 5.5vw, 2.4rem);
  }

  .highlight-feature__copy p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .highlight-rail {
    border-radius: 20px;
    padding: 8px;
    border: none;
    box-shadow: 0 4px 16px rgba(26, 43, 60, 0.06);
    background: #fff;
  }

  .highlight-thumb {
    grid-template-columns: 72px 1fr;
    gap: 10px;
    min-height: 80px;
    border-radius: 14px;
    padding: 6px;
    background: rgba(255, 247, 237, 0.5);
  }

  .highlight-thumb[aria-pressed="true"] {
    background: rgba(255, 219, 229, 0.2);
  }

  .highlight-thumb__media {
    width: 72px;
    height: 62px;
    border-radius: 12px;
  }

  .highlight-thumb__copy strong {
    font-size: 0.88rem;
  }

  .highlight-thumb__copy p {
    font-size: 0.78rem;
    -webkit-line-clamp: 1;
  }

  /* ─── Proof / Social ─── */
  .proof {
    padding: 20px;
    border-radius: 22px;
    border: none;
    box-shadow: 0 4px 16px rgba(26, 43, 60, 0.06);
    gap: 16px;
  }

  .proof article {
    padding: 14px;
    border-radius: 14px;
  }

  .proof strong {
    font-size: 1rem;
  }

  .proof p {
    font-size: 0.85rem;
    margin-top: 4px;
  }

  /* ─── Hours & Contact ─── */
  .hours-card {
    padding: 20px;
    border-radius: 22px;
    border: none;
    box-shadow: 0 4px 16px rgba(26, 43, 60, 0.06);
  }

  .hours-list div {
    padding: 10px 0;
  }

  .hours-list dt {
    font-size: 0.9rem;
  }

  .hours-list dd {
    font-size: 0.88rem;
  }

  .hours-note {
    font-size: 0.82rem;
    padding: 12px;
    border-radius: 14px;
  }

  .contact-card {
    padding: 20px;
    border-radius: 22px;
    border: none;
    box-shadow: 0 4px 16px rgba(26, 43, 60, 0.06);
    min-height: auto;
    gap: 20px;
  }

  .contact-card::after {
    font-size: 3.2rem;
    right: 16px;
    bottom: 16px;
  }

  .contact-card h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .social-links {
    margin-top: 16px;
    gap: 8px;
  }

  .social-links a {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
    min-height: 42px;
  }

  .contact-card__panel {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-action {
    min-height: 80px;
    padding: 14px;
    border-radius: 14px;
  }

  .contact-action span {
    font-size: 0.68rem;
  }

  .contact-action strong {
    font-size: 1rem;
    margin-top: 4px;
  }

  /* ─── Location section ─── */
  .location {
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .motion-orb,
  .hero-sparkle {
    display: none;
  }
}
