/* =========================================================
   Café Continenté — bold editorial rebuild
   Type-led. Big air. Sage / forest / charcoal / cream.
   ========================================================= */

:root {
  --cream: #f1ece0; /* warm paper */
  --cream-2: #e8e1d2;
  --ink: #161917; /* near-black */
  --ink-soft: #5b635e;
  --sage: #a6c3c5; /* shopfront duck-egg blue-green */
  --sage-2: #bcd5d6;
  --forest: #284c52; /* deep teal-blue for drama */
  --forest-soft: #365f66;

  --maxw: 1440px;
  --pad: clamp(1.25rem, 5vw, 5rem);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(40px);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

/* ---------- Reveal ---------- */
.reveal {
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1 !important;
  transform: none !important;
}

/* ---------- Type ---------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.035em;
}

.display {
  font-size: clamp(2.8rem, 9.5vw, 8.5rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.04em;
}
.xl {
  font-size: clamp(2.8rem, 11vw, 11rem);
  line-height: 0.84;
  letter-spacing: -0.04em;
}
.big {
  font-size: clamp(2.4rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
}
.italic {
  font-style: italic;
}

.lead {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 30ch;
  letter-spacing: 0;
}
.lead.wide {
  max-width: 46ch;
}

/* ---------- Header / Nav ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--pad);
  background: var(--cream);
  border-bottom: 1px solid rgba(22, 25, 23, 0.12);
}
.topbar,
.topbar a,
.topbar .menu-btn {
  color: var(--ink);
}
.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  letter-spacing: -0.03em;
  text-decoration: none;
}

/* desktop inline nav */
.top-nav {
  display: flex;
  gap: clamp(1.4rem, 2.6vw, 2.8rem);
  align-items: center;
}
.top-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.top-nav a:hover {
  opacity: 0.55;
}
.top-nav a.current {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* burger button (mobile only) */
.menu-btn {
  display: none;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: #f1ece0;
  padding: 0;
}
.menu-btn .bars {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}
.menu-btn .bars span {
  width: 26px;
  height: 2.5px;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}
.menu-btn:hover .bars span:first-child {
  transform: translateX(4px);
}
.menu-btn:hover .bars span:last-child {
  transform: translateX(-4px);
}

/* ---------- Slide-in menu ---------- */
.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(560px, 92vw);
  background: var(--forest);
  color: var(--cream);
  z-index: 60;
  transform: translateX(105%);
  transition: transform 0.6s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 2rem clamp(1.5rem, 4vw, 4rem) 2.5rem;
}
.nav-panel.open {
  transform: translateX(0);
}
.nav-top {
  display: flex;
  justify-content: flex-end;
}
.close-btn {
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 2.6rem;
  line-height: 1;
  font-family: var(--font-body);
  transition:
    transform 0.3s var(--ease),
    color 0.3s ease;
}
.close-btn:hover {
  transform: rotate(90deg);
  color: var(--sage);
}
.nav-label {
  display: none;
}

.nav-links {
  list-style: none;
  margin-top: auto;
  margin-bottom: auto;
}
.nav-links a {
  display: block;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--cream);
  padding: 0.35rem 0;
  transition:
    color 0.25s ease,
    transform 0.35s var(--ease),
    -webkit-text-stroke 0.2s ease;
}
.nav-links a:hover,
.nav-links a.current {
  color: var(--sage);
  transform: translateX(0.8rem);
}
.nav-foot {
  font-size: 1rem;
  color: #c2cdc5;
  line-height: 1.8;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.nav-foot a {
  color: var(--sage);
  text-decoration: none;
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(12, 16, 14, 0.55);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.scrim.open {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  letter-spacing: -0.01em;
  padding: 1rem 1.9rem;
  border-radius: 100px;
  background: var(--ink);
  color: var(--cream);
  transition:
    transform 0.3s var(--ease),
    background 0.25s ease,
    color 0.25s ease;
}
.btn:hover {
  transform: translateY(-3px);
  background: var(--forest);
}
.btn .arrow {
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow {
  transform: translateX(4px);
}
.btn.on-sage {
  background: var(--ink);
  color: var(--cream);
}
.btn.on-ink {
  background: var(--cream);
  color: var(--ink);
}
.btn.on-ink:hover {
  background: var(--sage);
}

/* ---------- Panels (big color blocks) ---------- */
.panel {
  padding-block: clamp(5rem, 13vw, 13rem);
}
.panel--slim {
  padding-block: clamp(2.5rem, 5vw, 5rem);
}
.panel--cream {
  background: var(--cream);
  color: var(--ink);
}
.panel--sage {
  background: var(--sage);
  color: var(--ink);
}
.panel--ink {
  background: var(--ink);
  color: var(--cream);
}
.panel--forest {
  background: var(--forest);
  color: var(--cream);
}
.panel--ink .lead,
.panel--forest .lead {
  color: #c2cdc5;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(8rem, 16vh, 14rem);
  padding-bottom: clamp(3rem, 7vw, 7rem);
}
.hero--slim {
  padding-top: clamp(5rem, 8vh, 7rem);
  padding-bottom: clamp(1.5rem, 3vw, 3rem);
}
.hero .lead {
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
}
.hero .btn {
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
}
.hero-foot {
  margin-top: clamp(2.5rem, 6vw, 5rem);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

/* hero with background photo */
.hero--bg {
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding-top: clamp(8rem, 16vh, 12rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}
.hero--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 22, 20, 0.82),
    rgba(18, 22, 20, 0.3) 55%,
    rgba(18, 22, 20, 0.45)
  );
}
.hero--bg .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  color: var(--cream);
}
.hero--bg .display {
  color: var(--cream);
}
.hero--bg .outline {
  -webkit-text-stroke-color: var(--cream);
  text-stroke-color: var(--cream);
}
.hero--bg .lead {
  color: rgba(247, 245, 239, 0.88);
  margin-top: clamp(1.2rem, 2.5vw, 2rem);
}

/* open / closed live status panel */
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--sage);
  color: var(--ink);
  padding: 0.6rem 1.15rem 0.6rem 1rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}
.open-status .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #8a938f;
  flex: none;
}
.open-status[data-status="open"] .dot {
  background: #2f9e62;
  animation: pulse 2s infinite;
}
.open-status[data-status="soon"] .dot {
  background: #e0a32e;
  animation: pulse 2s infinite;
}
.open-status[data-status="closed"] .dot {
  background: #cf5236;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 158, 98, 0.45);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(47, 158, 98, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 158, 98, 0);
  }
}

/* rotating round badge */
.badge {
  width: clamp(108px, 12vw, 168px);
  height: clamp(108px, 12vw, 168px);
  flex: none;
  position: relative;
}
.badge svg {
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
}
.badge .badge-dot {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 32%;
  height: 32%;
  background: var(--ink);
  border-radius: 50%;
}
.badge text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 1px;
  fill: currentColor;
  text-transform: uppercase;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* full-bleed media */
.media {
  padding-inline: var(--pad);
}
.media-frame {
  border-radius: clamp(22px, 4vw, 48px);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  max-width: var(--maxw);
  margin-inline: auto;
  background: var(--cream-2);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Feature blocks (editorial) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature + .feature {
  margin-top: clamp(5rem, 12vw, 11rem);
}
.feature.reverse .feature-media {
  order: -1;
}
.feature-media {
  border-radius: clamp(20px, 3vw, 40px);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--cream-2);
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.feature:hover .feature-media img {
  transform: scale(1.06);
}
.feature .lead {
  margin-top: clamp(1.2rem, 2.5vw, 2rem);
}
.feature .btn {
  margin-top: clamp(1.4rem, 2.5vw, 2.2rem);
}
.feature h2 a {
  text-decoration: none;
}

/* compact hours section */
.hours-section {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.hours-section .statement {
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
}
.hours-section .hours-grid {
  margin-top: clamp(1.5rem, 3.5vw, 2.5rem);
}
.hours-section .hours-grid .time {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

/* big statement (hours / quote) */
.statement {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 6vw, 5.5rem);
  line-height: 0.95;
}
.hours-grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 900px;
}
.hours-grid .day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--forest);
}
.hours-grid .time {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: -0.03em;
}

/* ---------- Menu page ---------- */
.menu-section {
  margin-top: clamp(4rem, 9vw, 8rem);
}
.menu-section:first-of-type {
  margin-top: clamp(1rem, 3vw, 3rem);
}
.menu-section > .note {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 64ch;
  margin-top: 1rem;
}
.menu-list {
  list-style: none;
  margin-top: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  gap: 0;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem 2rem;
  align-items: baseline;
  padding-block: 1.3rem;
  border-bottom: 1px solid rgba(22, 25, 23, 0.14);
}
.menu-item .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  letter-spacing: -0.02em;
}
.menu-item .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--forest);
  white-space: nowrap;
}
.menu-item .desc {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 70ch;
  margin-top: 0.2rem;
}
.menu-note-top {
  background: rgba(255, 255, 255, 0.5);
  padding: 1.1rem 1.4rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 1.6rem;
  border-radius: 14px;
}
.jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: clamp(1.8rem, 4vw, 3rem);
}
.jump a {
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  background: rgba(22, 25, 23, 0.07);
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.jump a:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ---------- Cakes ---------- */
.cakes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(3rem, 7vw, 6rem);
}
.cake-card {
  text-decoration: none;
  color: inherit;
}
.cake-card .ph {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: clamp(18px, 2.5vw, 32px);
  background: var(--cream-2);
}
.cake-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.cake-card:hover .ph img {
  transform: scale(1.06);
}
.cake-card .body {
  padding-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cake-card h3 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}
.cake-card .price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--forest);
  font-size: 1.3rem;
}
.cake-card p {
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 3;
  column-gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: clamp(3rem, 7vw, 6rem);
}
.gallery-grid img {
  width: 100%;
  margin-bottom: clamp(1rem, 2.5vw, 2rem);
  border-radius: clamp(14px, 2vw, 26px);
  break-inside: avoid;
  transition: transform 0.5s var(--ease);
}
.gallery-grid img:hover {
  transform: scale(1.03) rotate(-1deg);
}

/* ---------- About facts ---------- */
.facts {
  margin-top: clamp(3rem, 7vw, 6rem);
  display: grid;
  gap: 0;
}
.fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: baseline;
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(22, 25, 23, 0.16);
}
.fact:last-child {
  border-bottom: 1px solid rgba(22, 25, 23, 0.16);
}
.fact .num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--sage);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}
.fact .txt {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(1.3rem, 3.2vw, 2.6rem);
  line-height: 1.05;
}
.fact:hover .txt {
  color: var(--forest);
}
.badge-star {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
}
.badge-star .star {
  color: var(--sage);
}

/* ---------- Prose (privacy / legal) ---------- */
.prose {
  max-width: 72ch;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
.prose .updated {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2rem;
}
.prose h2 {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.05;
  margin-top: 2.6rem;
  margin-bottom: 0.8rem;
}
.prose h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.1;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.prose p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.prose ul {
  list-style: none;
  margin: 0 0 1.4rem;
  display: grid;
  gap: 0.5rem;
}
.prose li {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.6;
  padding-left: 1.4rem;
  position: relative;
}
.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
}
.prose a {
  color: var(--forest);
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(4rem, 10vw, 9rem);
}
.site-foot .foot-big {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(3rem, 13vw, 13rem);
  line-height: 0.84;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: end;
  margin-top: clamp(3rem, 7vw, 6rem);
}
.site-foot a {
  color: var(--sage);
  text-decoration: none;
}
.site-foot a:hover {
  color: var(--cream);
}
.foot-contact p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #c2cdc5;
}
.foot-contact .big-contact {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}
.socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.3rem;
  flex-wrap: wrap;
}
.socials a {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream);
}
.socials a:hover {
  background: var(--sage);
  color: var(--ink);
}
.foot-map {
  border-radius: clamp(18px, 2.5vw, 32px);
  overflow: hidden;
  display: block;
}
.foot-map img {
  width: 100%;
}
.copyright {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  font-size: 0.9rem;
  color: #7d847f;
}
.copyright a {
  color: #7d847f;
}

/* ---------- Scroll to top ---------- */
.to-top {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 45;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  cursor: pointer;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(22, 25, 23, 0.25);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    background 0.25s ease,
    border-color 0.25s ease;
}
.to-top.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.to-top:hover {
  background: var(--forest);
  transform: translateY(-4px);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 80;
  width: min(340px, calc(100vw - 3.2rem));
  background: var(--ink);
  color: var(--cream);
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: 0 16px 48px rgba(22, 25, 23, 0.3);
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.cookie-banner.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.cookie-banner a {
  color: var(--sage);
}
.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.cookie-banner .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.88rem;
}
.cookie-banner .cookie-decline {
  background: none;
  border: none;
  color: rgba(241, 236, 224, 0.45);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.cookie-banner .cookie-decline:hover {
  color: var(--cream);
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .top-nav {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
  }
}
@media (max-width: 900px) {
  .feature {
    grid-template-columns: 1fr;
  }
  .feature:nth-of-type(even) .feature-media {
    order: 0;
  }
  .feature-media {
    order: -1;
  }
  .cakes-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    columns: 2;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .hours-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    columns: 1;
  }
  .menu-item {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
