/* RIX Coffee — coffee-dark atmosphere */
:root {
  --bg: #120e0c;
  --bg-soft: #1c1512;
  --bg-lift: #261c18;
  --cream: #faf9f6;
  --cream-dim: #c9bba8;
  --latte: #d4b896;
  --foam: #faf9f6;
  --ink: #faf9f6;
  --muted: #8f7f70;
  --line: rgba(243, 235, 224, 0.12);
  --accent: #c9a06a;
  --danger-soft: #b87a5c;
  --radius: 2px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space: clamp(1.25rem, 4vw, 3rem);
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 12% 0%, rgba(201, 160, 106, 0.12), transparent 55%),
    radial-gradient(ellipse 65% 45% at 92% 28%, rgba(168, 112, 70, 0.18), transparent 55%),
    linear-gradient(105deg, #15100d 0%, #1a1410 42%, #231912 78%, #2a1c14 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--latte);
}

button,
.btn {
  font: inherit;
}

/* Noise texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 1000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

/* Nav */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1.25rem 0;
}

.site-header--float {
  position: fixed;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header--float.is-scrolled {
  background: rgba(18, 14, 12, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.site-header--sticky {
  position: sticky;
  background: rgba(18, 14, 12, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.logo:hover {
  color: inherit;
  opacity: 0.92;
}

.logo img {
  height: 2.1rem;
  width: auto;
  display: block;
}

@media (min-width: 700px) {
  .logo img {
    height: 2.55rem;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
  color: var(--cream);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

.site-header--float.is-scrolled .nav a,
.site-header--sticky .nav a {
  text-shadow: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--foam);
  opacity: 1;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 14, 12, 0.42) 0%, rgba(18, 14, 12, 0.58) 45%, rgba(18, 14, 12, 0.94) 100%),
    url("../assets/hero.jpg") center 40% / cover no-repeat,
    linear-gradient(145deg, #2a1c16, #120e0c 60%);
  transform: scale(1.06);
  will-change: transform;
  animation: hero-drift 16s var(--ease) infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(0, -2.5%, 0);
  }
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  width: 1.6rem;
  height: 2.6rem;
  border: 1px solid rgba(243, 235, 224, 0.4);
  border-radius: 999px;
  display: none;
}

@media (min-width: 700px) {
  .scroll-cue {
    display: block;
  }
}

.scroll-cue span {
  position: absolute;
  top: 0.4rem;
  left: 50%;
  width: 0.3rem;
  height: 0.3rem;
  margin-left: -0.15rem;
  border-radius: 50%;
  background: var(--foam);
  animation: scroll-cue-move 1.8s var(--ease) infinite;
}

@keyframes scroll-cue-move {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(1.2rem); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  max-width: 100%;
  padding: 5.5rem 0 2rem;
  margin: 0 auto;
  text-align: center;
}

.brand-mark {
  margin: 0 0 0.65rem;
  animation: rise 1s var(--ease) both;
}

.brand-mark-img {
  display: block;
  width: min(100%, 11.5rem);
  height: auto;
  margin: 0 0 0.4rem;
}

.brand-mark-img--full {
  width: min(100%, 14rem);
  margin: 0 auto 0.75rem;
}

@media (min-width: 700px) {
  .brand-mark-img {
    width: 13.5rem;
  }

  .brand-mark-img--full {
    width: 16.5rem;
  }

  .hero-content {
    width: min(100%, 28rem);
  }
}

.brand-mark small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--latte);
}

.hero-lead {
  margin: 0 auto 1.15rem;
  color: var(--cream-dim);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 22rem;
  animation: rise 1s var(--ease) 0.12s both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  justify-content: center;
  animation: rise 1s var(--ease) 0.22s both;
}

.hero-content .btn {
  padding: 0.7rem 1.05rem;
  font-size: 0.84rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--cream);
  color: var(--bg);
  border-color: var(--cream);
}

.btn-primary:hover {
  background: var(--foam);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--cream-dim);
  color: var(--foam);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
}

.photo-break {
  position: relative;
  height: clamp(10rem, 28vw, 18rem);
  overflow: hidden;
  margin: 0;
}

.photo-break--collage {
  height: auto;
  padding: 0;
}

.photo-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  height: auto;
}

.photo-collage img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  border-radius: 0;
  filter: brightness(0.92) contrast(1.06) saturate(0.88) sepia(0.12);
}

.photo-break--collage-sm .photo-collage img {
  height: 220px;
  object-position: center 55%;
}

@media (max-width: 900px) {
  .photo-collage img {
    height: 240px;
  }

  .photo-break--collage-sm .photo-collage img {
    height: 180px;
  }
}

@media (max-width: 700px) {
  .photo-collage {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .photo-collage img {
    height: 200px;
  }

  .photo-break--collage-sm .photo-collage img {
    height: 160px;
  }
}

.photo-break::before,
.photo-break::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4.5rem;
  z-index: 1;
  pointer-events: none;
}

.photo-break::before {
  top: 0;
  background: linear-gradient(180deg, rgba(18, 14, 12, 0.55), transparent);
}

.photo-break::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(18, 14, 12, 0.55), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
  letter-spacing: 0.01em;
}

.section-lead {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 32rem;
}

.meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.meta-list li {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.meta-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.meta-list a {
  text-decoration: none;
}

.meta-list a:hover {
  text-decoration: underline;
}

.meta-list--narrow {
  max-width: 28rem;
}

.btn-spaced {
  margin-top: 2rem;
}

.about-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.about-text {
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: none;
}

.about-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 22rem;
  background: #1a1410;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.05);
}

@media (min-width: 900px) {
  .about-media {
    position: sticky;
    top: 5.5rem;
    min-height: min(70vh, 36rem);
    align-self: start;
  }

  .about-media img {
    position: absolute;
    inset: 0;
    min-height: 0;
  }
}

.about-text--wide {
  max-width: 42rem;
}

.meta-list--row {
  margin-top: 2.5rem;
}

@media (min-width: 800px) {
  .meta-list--row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.about-text p {
  margin: 0 0 1rem;
}

.about-kicker {
  margin: -0.15rem 0 0.75rem !important;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--latte);
}

.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 1.35rem !important;
}

.about-subtitle {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--latte);
  margin: 1.75rem 0 0.65rem;
}

.about-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.about-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--cream-dim);
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.about-list strong {
  color: var(--cream);
  font-weight: 600;
}

/* Featured picks */
.feature-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 14.5rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(243, 235, 224, 0.05), transparent 60%);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 160, 106, 0.45);
  background: linear-gradient(160deg, rgba(243, 235, 224, 0.08), transparent 65%);
}

.feature-kicker {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.feature-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
  color: var(--latte);
}

.feature-desc {
  flex: 1 1 auto;
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.feature-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  color: var(--cream-dim);
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  margin-top: auto;
}

.feature-price {
  font-weight: 700;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}

/* Contact */
#contact .section-title,
#contact .section-lead {
  text-align: center;
  margin-inline: auto;
}

#contact .section-lead {
  margin-bottom: 2.25rem;
}

.contact-cards {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: minmax(0, 16.5rem);
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  justify-content: center;
}

@media (min-width: 700px) {
  .contact-cards {
    grid-template-columns: repeat(2, 16.5rem);
  }
}

@media (min-width: 960px) {
  .contact-cards {
    grid-template-columns: repeat(3, 16.5rem);
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(243, 235, 224, 0.05), transparent 60%);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.contact-card--compact {
  width: 100%;
}

.contact-card:hover {
  border-color: rgba(201, 160, 106, 0.35);
  background: linear-gradient(160deg, rgba(243, 235, 224, 0.07), transparent 65%);
}

.contact-card-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.contact-card-stack {
  display: grid;
  gap: 0.7rem;
}

.contact-card-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--cream-dim);
  font-size: 0.88rem;
  line-height: 1.4;
}

.contact-card-row + .contact-card-row {
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.contact-card-row:hover {
  color: var(--foam);
}

.contact-card-row:hover .contact-icon {
  stroke: var(--foam);
}

.contact-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.12rem;
  stroke: var(--latte);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-item {
  display: grid;
  gap: 0.2rem;
}

.contact-card-item + .contact-card-item {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.contact-card-sublabel {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card-item a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.45;
}

.contact-card-item a:hover {
  color: var(--foam);
  text-decoration: underline;
}

.contact-card-value {
  margin-top: auto;
  text-decoration: none;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.45;
}

.contact-card-value:hover {
  color: var(--foam);
  text-decoration: underline;
}

.contact-card-social {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: auto;
}

.contact-card-social a {
  text-decoration: none;
  color: var(--cream-dim);
  font-size: 0.95rem;
}

.contact-card-social a:hover {
  color: var(--foam);
  text-decoration: underline;
}

.contact-group {
  margin: 1.75rem 0 0;
  color: var(--cream-dim);
  font-size: 0.95rem;
}

.contact-group a {
  text-decoration: none;
}

.contact-group a:hover {
  text-decoration: underline;
}

.contact-map {
  margin-top: 2.5rem;
}

.contact-map iframe {
  height: 18rem;
  min-height: 18rem;
}

@media (min-width: 700px) {
  .contact-map iframe {
    height: 20rem;
    min-height: 20rem;
  }
}

.reviews-block {
  margin-top: 2.5rem;
  text-align: center;
}

.reviews-kicker {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--latte);
}

.reviews-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
  text-align: left;
}

@media (min-width: 800px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 10rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(243, 235, 224, 0.04), transparent 65%);
}

.review-stars {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.review-text {
  flex: 1;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream-dim);
}

.review-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.review-author {
  color: var(--cream);
  font-weight: 600;
}

.review-source {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews-more {
  margin: 1.35rem 0 0;
  font-size: 0.88rem;
}

.reviews-more a {
  text-decoration: none;
  color: var(--latte);
}

.reviews-more a:hover {
  color: var(--foam);
  text-decoration: underline;
}

.facilities-row {
  margin-top: 2.75rem;
  padding-top: 0;
}

/* Map */
.map-frame {
  position: relative;
  margin-top: 2.5rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  filter: grayscale(0.35) sepia(0.15) brightness(0.85) contrast(1.05);
}

.map-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(160deg, rgba(38, 28, 24, 0.94), rgba(18, 14, 12, 0.97));
  color: var(--cream-dim);
}

.map-placeholder p {
  margin: 0;
  max-width: 24rem;
  font-size: 0.85rem;
}

.map-frame iframe {
  width: 100%;
  height: 20rem;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--latte);
}

.site-footer-brand p {
  margin: 0;
}

.site-footer-credit {
  margin-top: 0.35rem !important;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(243, 235, 224, 0.45);
}

.site-footer-grid {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .site-footer-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.site-footer-links,
.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  margin: 0;
}

.site-footer-legal {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  background: rgba(18, 14, 12, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  animation: rise 0.4s var(--ease) both;
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner-inner p {
  margin: 0;
  max-width: 42rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.cookie-banner-inner a {
  color: var(--latte);
  text-decoration: underline;
}

.cookie-accept {
  flex-shrink: 0;
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
}

@media (max-width: 700px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-accept {
    width: 100%;
  }
}

/* Legal pages */
.legal-content {
  max-width: 42rem;
  padding-bottom: 4rem;
  color: var(--cream-dim);
}

.legal-note {
  margin: 0 0 2rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(243, 235, 224, 0.03);
}

.legal-note code {
  color: var(--latte);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--latte);
  margin: 2.25rem 0 0.75rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 1rem;
}

.legal-list {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.4rem;
}

/* Menu page */
.page-hero {
  padding: 5.5rem 0 1.25rem;
}

.page-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--latte);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 400;
  margin: 0 0 0.55rem;
  line-height: 1.05;
}

.page-hero p {
  margin: 0;
  max-width: 32rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.menu-layout {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 2rem;
}

@media (min-width: 900px) {
  .menu-layout {
    grid-template-columns: 14rem 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.menu-nav {
  position: sticky;
  top: 4.25rem;
  z-index: 12;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.65rem 0 0.75rem;
  margin: 0 0 0.25rem;
  background: linear-gradient(180deg, var(--bg) 75%, transparent);
  scrollbar-width: thin;
}

@media (min-width: 900px) {
  .menu-nav {
    flex-direction: column;
    overflow: visible;
    padding: 0;
  }
}

.menu-nav a {
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.7rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.menu-nav a:hover,
.menu-nav a.is-active {
  color: var(--cream);
  border-color: var(--line);
  background: rgba(243, 235, 224, 0.04);
}

.menu-category {
  scroll-margin-top: 5rem;
  margin-bottom: 0;
}

.menu-category[hidden] {
  display: none;
}

.menu-category h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  margin: 0 0 0.35rem;
  color: var(--latte);
}

.menu-note {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  align-items: start;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}

.menu-item:hover {
  background: rgba(243, 235, 224, 0.03);
}

.menu-item-name {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.menu-item-desc {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-item-meta {
  margin-top: 0.2rem;
  color: var(--cream-dim);
  font-size: 0.85rem;
}

.menu-item-price {
  font-variant-numeric: tabular-nums;
  color: var(--cream);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 0.15rem;
}

.allergens {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.allergens-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--latte);
  margin: 0 0 0.6rem;
}

.allergens-lead {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  font-size: 0.92rem;
}

.allergens-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  counter-reset: allergen;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .allergens-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem 2rem;
  }
}

.allergens-list li {
  counter-increment: allergen;
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.allergens-list li::before {
  content: counter(allergen) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.allergens-note {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

/* QR page — printable table card */
.qr-body {
  background: var(--bg);
}

.qr-page {
  min-height: 100svh;
  display: grid;
  place-content: center;
  gap: 1.5rem;
  padding: 2rem;
  text-align: center;
}

.qr-print-sheet {
  display: flex;
  justify-content: center;
}

.qr-tent {
  width: min(100%, 18rem);
  aspect-ratio: 1 / 1.15;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.5rem 1.25rem 1.35rem;
  background: var(--foam);
  color: var(--bg);
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.qr-logo {
  width: 46%;
  height: auto;
  display: block;
  margin: 0 0 0.1rem;
}

.qr-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6e5d4d;
}

.qr-frame {
  width: 68%;
  margin: 0.35rem 0;
}

.qr-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.qr-cta {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1210;
}

.qr-url {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #6e5d4d;
}

.qr-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

@media print {
  body::before {
    display: none !important;
  }

  .qr-body,
  .qr-page {
    background: #fff !important;
    min-height: auto;
    padding: 0;
  }

  .no-print {
    display: none !important;
  }

  .qr-tent {
    box-shadow: none;
    width: 100mm;
    aspect-ratio: auto;
    border: 1px solid #d7cbb8;
    break-inside: avoid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media {
    transform: none;
  }
}
