/* ==========================================================================
   1. Design tokens — change these per client
   ========================================================================== */

:root {
  /* Brand colours */
  --color-cream: #f7f2eb;
  --color-blush: #f0e6e2;
  --color-white: #ffffff;
  --color-ink: #241a26;
  --color-ink-soft: #625768;
  --color-plum: #582c5f;
  --color-plum-dark: #431f49;
  --color-violet: #8e3bcf;
  --color-line: rgba(36, 26, 38, 0.12);

  /* Roles */
  --bg: var(--color-cream);
  --bg-alt: var(--color-blush);
  --text: var(--color-ink);
  --text-soft: var(--color-ink-soft);
  --primary: var(--color-plum);
  --primary-hover: var(--color-plum-dark);
  --accent: var(--color-violet);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --text-display: clamp(2.5rem, 1.6rem + 3.6vw, 5rem);
  --text-h2: clamp(1.875rem, 1.4rem + 2vw, 2.75rem);
  --text-h3: 1.25rem;
  --text-body: 1.0625rem;
  --text-small: 0.9375rem;
  --text-tiny: 0.8125rem;

  /* Space */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --section-y: clamp(4rem, 6vw + 2rem, 7rem);
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --measure: 62ch;
  --container: 82rem;

  /* Shape */
  --radius: 0.75rem;
  --radius-btn: var(--radius-pill);
  --radius-pill: 999px;
  --shadow-soft: 0 12px 40px -20px rgba(36, 26, 38, 0.35);
}

/* ==========================================================================
   2. Fonts (self-hosted). Display font can be switched with ?font=
   ========================================================================== */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../assets/fonts/fraunces-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url("../assets/fonts/fraunces-italic-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../assets/fonts/newsreader-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Young Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/youngserif-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Gambetta";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/gambetta-400.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../assets/fonts/dmsans-latin.woff2") format("woff2");
}

html[data-font="newsreader"] { --font-display: "Newsreader", Georgia, serif; }
html[data-font="youngserif"] { --font-display: "Young Serif", Georgia, serif; }
html[data-font="gambetta"] { --font-display: "Gambetta", Georgia, serif; }

/* ==========================================================================
   3. Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 {
  font-size: var(--text-display);
}

h2 {
  font-size: var(--text-h2);
}

h3 {
  font-size: var(--text-h3);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin: 0;
  max-width: var(--measure);
}

p + p {
  margin-top: var(--space-4);
}

a {
  color: inherit;
}

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

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal],
  [data-reveal] img {
    opacity: 1 !important;
    transform: none !important;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   4. Layout helpers
   ========================================================================== */

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
  scroll-margin-top: 4.5rem;
}

.section--alt {
  background: var(--bg-alt);
}

.lead {
  font-size: 1.1875rem;
  color: var(--text-soft);
}

/* ==========================================================================
   5. Components
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-btn);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease;
}

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

.btn:active {
  transform: translateY(0);
  transition-duration: 0.05s;
}

.btn--primary:hover {
  box-shadow: 0 10px 24px -14px rgba(88, 44, 95, 0.7);
}

.btn__icon {
  width: 1.125rem;
  height: 1.125rem;
  flex: none;
  opacity: 0.9;
}



.btn--primary {
  background: var(--primary);
  color: var(--color-white);
}

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

.btn--secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn--secondary:hover {
  background: var(--primary);
  color: var(--color-white);
}

.btn svg {
  width: 1.125rem;
  height: 1.125rem;
  flex: none;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Text link with flip-up hover (span + data-text are added by main.js) */
.link {
  position: relative;
  display: inline-block;
  overflow: clip;
  text-decoration: none;
  color: inherit;
}

.link > span {
  display: block;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.link::after {
  content: attr(data-text);
  position: absolute;
  inset: 100% auto auto 0;
  display: block;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}

@media (hover: hover) {
  .link:hover > span,
  .link:hover::after {
    transform: translateY(-100%);
  }
}

/* Tag label (small coloured chip) */
.tag {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--color-white);
  font-size: var(--text-tiny);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.tag--soft {
  background: var(--color-white);
  color: var(--primary);
}

/* Trust strip */
.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-5);
  font-size: var(--text-small);
  color: var(--text-soft);
}

.trust strong {
  color: var(--text);
  font-weight: 600;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.rating:hover {
  border-bottom-color: var(--text-soft);
}

.rating__icon {
  width: 1rem;
  height: 1rem;
  flex: none;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent);
  vertical-align: -2px;
}

.stars svg {
  width: 1rem;
  height: 1rem;
}

/* Price list */
.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-line);
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list .name {
  flex: 1;
}

.price-list .note {
  display: block;
  font-size: var(--text-tiny);
  color: var(--text-soft);
}

.price-list .price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  white-space: nowrap;
}

/* Review card */
.review {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.review blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  line-height: 1.45;
}

.review footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-small);
  color: var(--text-soft);
}

.review footer strong {
  color: var(--text);
  font-weight: 600;
}

/* Opening hours */
.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-body);
}

.hours th,
.hours td {
  padding-block: var(--space-2);
  text-align: left;
  font-weight: 400;
  border-bottom: 1px solid var(--color-line);
}

.hours td {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.hours tr:last-child th,
.hours tr:last-child td {
  border-bottom: 0;
}

.hours .is-today th,
.hours .is-today td {
  font-weight: 600;
  color: var(--primary);
}

.badge-open {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  background: var(--color-white);
  font-size: var(--text-tiny);
  font-weight: 600;
}

.badge-open::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #2f9e6a;
}

.badge-open.is-closed::before {
  background: #c0392b;
}

.price-list .price--text {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--text-soft);
}

/* ==========================================================================
   6. Page sections
   ========================================================================== */

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

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 100;
  padding: var(--space-3) var(--space-4);
  background: var(--primary);
  color: var(--color-white);
  border-radius: 0 0 var(--radius) var(--radius);
}

.skip-link:focus {
  top: 0;
}

.section-head {
  margin-bottom: var(--space-7);
}

.section-head h2 + .lead {
  margin-top: var(--space-4);
}

.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3) var(--space-6);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 235, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 4.75rem;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
}

.site-header__logo img {
  height: 3.25rem;
  width: auto;
}

@media (min-width: 48rem) {
  .site-header__inner {
    min-height: 5.5rem;
  }

  .site-header__logo img {
    height: 3.75rem;
  }
}

.site-nav {
  display: flex;
  gap: var(--space-5);
  font-size: var(--text-small);
  font-weight: 500;
}

.site-nav a {
  padding-block: var(--space-1);
}

.site-nav .link::before {
  display: none;
}

.site-nav a:hover {
  color: var(--primary);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 1.375rem;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-toggle__bar {
  position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bar::before {
  top: -7px;
}

.nav-toggle__bar::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 47.99rem) {
  .site-header__book {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: var(--space-3) var(--gutter) var(--space-5);
    background: var(--bg);
    border-bottom: 1px solid var(--color-line);
    font-size: 1.125rem;
  }

  .site-nav:not(.is-open) {
    display: none;
  }

  .site-nav a {
    padding-block: var(--space-3);
  }
}

/* Hero. Two variants: .hero--poster (headline across the top) and .hero--arch. */
.hero__inner {
  display: grid;
  gap: var(--space-5);
  padding-block: var(--space-6) var(--space-8);
}

.hero__title {
  font-size: clamp(2.75rem, 1.25rem + 6.2vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.hero__title em {
  font-style: italic;
  font-weight: 350;
}

.hero__media {
  position: relative;
  margin: 0;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: var(--radius);
}

.hero__media figcaption {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-soft);
  text-align: right;
}

.hero__copy {
  display: grid;
  gap: var(--space-5);
}

.hero__copy .lead {
  max-width: 30ch;
}

.hero__rating {
  font-size: var(--text-small);
  color: var(--text-soft);
  justify-self: start;
}

.hero__rating strong {
  color: var(--text);
  font-weight: 600;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  font-size: var(--text-small);
  color: var(--text-soft);
  max-width: none;
}

.open-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.open-inline::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #2f9e6a;
  box-shadow: 0 0 0 3px rgba(47, 158, 106, 0.18);
}

.open-inline.is-closed::before {
  background: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

@media (min-width: 64rem) {
  .hero--poster .hero__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    grid-template-areas:
      "title title"
      "copy media";
    column-gap: clamp(2rem, 4vw, 4rem);
    row-gap: var(--space-7);
    padding-block: var(--space-6) var(--space-8);
  }

  .hero--poster .hero__title {
    grid-area: title;
    max-width: none;
  }

  .hero--poster .hero__media {
    grid-area: media;
  }

  .hero--poster .hero__media img {
    aspect-ratio: 5 / 4;
    max-height: min(62vh, 36rem);
    object-position: 50% 55%;
  }


  .hero--poster .hero__copy {
    grid-area: copy;
    align-self: end;
    padding-bottom: 2.25rem;
  }
}

/* Arch variant */
.hero__title--stack {
  display: grid;
  max-width: none;
  font-size: clamp(2.75rem, 1.25rem + 5.6vw, 6.25rem);
  line-height: 0.95;
}

.hero__title--stack span:nth-child(2) {
  padding-left: 0.9em;
}

.hero__title--stack em {
  font-size: 1.12em;
  font-weight: 350;
  letter-spacing: -0.03em;
  justify-self: end;
  padding-right: 0.15em;
}

.hero__media--arch img {
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px var(--radius) var(--radius);
}

.hero__vertical {
  display: none;
}

.scroll-cue {
  display: inline-grid;
  justify-items: center;
  gap: 0.25rem;
  justify-self: start;
  margin-top: var(--space-4);
  text-decoration: none;
  color: var(--text-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
}

.scroll-cue__arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (min-width: 64rem) {
  .hero--arch .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    grid-template-rows: 1fr auto;
    grid-template-areas:
      "copy media"
      "cue media";
    align-items: end;
    column-gap: clamp(2rem, 5vw, 5rem);
    min-height: calc(100svh - 5.5rem);
    padding-block: var(--space-5) var(--space-6);
  }



  .hero--arch .hero__copy {
    grid-area: copy;
    align-self: center;
  }

  .hero--arch .hero__media {
    grid-area: media;
  }

  .hero--arch .scroll-cue {
    grid-area: cue;
    align-self: end;
    justify-self: start;
    margin: 0 0 -0.25rem;
  }

  .hero--arch .hero__copy {
    max-width: 36rem;
  }

  .hero--arch .hero__media {
    justify-self: end;
    width: min(100%, 34rem);
    margin-right: 2.5rem;
  }

  .hero--arch .hero__media img {
    aspect-ratio: 3 / 4;
    max-height: min(calc(100svh - 14rem), 46rem);
  }

  .hero__vertical {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -2.25rem;
    margin: 0;
    writing-mode: vertical-rl;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9375rem;
    color: var(--text-soft);
    white-space: nowrap;
  }

  .hero--arch .hero__media > figcaption:not(.hero__vertical) {
    display: none;
  }

}

/* Load choreography: headline, then photo, then copy, cue last */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-photo {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: none; }
}

.js .hero__title {
  animation: hero-rise 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.js .hero__media img {
  animation: hero-photo 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s both;
}

.js .hero__copy > *,
.js .hero__media figcaption,
.js .scroll-cue {
  animation: hero-rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.js .scroll-cue { animation-delay: 1.1s; }

.js .hero__copy > :nth-child(1) { animation-delay: 0.45s; }
.js .hero__copy > :nth-child(2) { animation-delay: 0.57s; }
.js .hero__copy > :nth-child(3) { animation-delay: 0.69s; }
.js .hero__copy > :nth-child(4) { animation-delay: 0.78s; }
.js .hero__copy > :nth-child(5) { animation-delay: 0.86s; }
.js .hero__media figcaption { animation-delay: 0.7s; }

/* Loyalty offer: photo bleeds off the left, panel on the right */
.offer {
  background: var(--bg-alt);
  scroll-margin-top: 4.5rem;
}

.offer__inner {
  display: grid;
}

.offer__media {
  margin: 0;
  overflow: hidden;
}

.offer__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 40%;
}

.offer__panel {
  display: grid;
  gap: var(--space-4);
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
  padding-block: var(--space-7);
}

.offer__number {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 2.5rem + 8vw, 9rem);
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: var(--primary);
  max-width: none;
}

.offer__number span {
  font-size: 0.45em;
  vertical-align: 0.55em;
  letter-spacing: 0;
  margin-left: 0.05em;
}

.offer__panel h2 {
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.125rem);
  max-width: 30ch;
}

.offer__sub {
  color: var(--text-soft);
  max-width: 40ch;
}

.offer__more {
  margin-top: var(--space-2);
}

.offer__more summary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 500;
  font-size: var(--text-small);
  color: var(--primary);
  list-style: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.offer__more summary:hover {
  background: var(--primary);
  color: var(--color-white);
}

.offer__more summary::-webkit-details-marker {
  display: none;
}

.offer__more summary::after {
  content: "+";
  font-size: 1.1em;
  line-height: 1;
}

.offer__more[open] summary::after {
  content: "\2212";
}

.offer__more ul {
  margin: var(--space-4) 0 0;
  padding-left: 1.2em;
  font-size: var(--text-small);
  color: var(--text-soft);
}

.offer__more li + li {
  margin-top: var(--space-2);
}

@media (min-width: 48rem) {
  .offer__inner {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(16rem, 26rem)
      minmax(24rem, 44rem)
      minmax(var(--gutter), 1fr);
    align-items: stretch;
  }

  .offer__media {
    grid-column: 1 / 3;
    max-height: 28rem;
  }

  .offer__media img {
    height: 100%;
    aspect-ratio: auto;
    object-position: 40% 50%;
  }

  .offer__panel {
    grid-column: 3;
    width: auto;
    margin: 0;
    align-content: center;
    padding: var(--space-7) clamp(2rem, 4vw, 5rem);
  }
}

/* Prices */
.prices__head {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}

.menu {
  border-top: 1px solid var(--text);
}

.menu__group {
  display: grid;
  gap: var(--space-4);
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--color-line);
}

.menu__group:last-child {
  border-bottom: 1px solid var(--text);
}

.menu__head {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-3);
  align-items: baseline;
}

.menu__index {
  font-family: var(--font-display);
  font-size: var(--text-small);
  font-variant-numeric: tabular-nums;
  color: var(--text-soft);
}

.menu__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.1;
}

.menu__desc {
  grid-column: 2;
  margin-top: var(--space-2);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--text-soft);
  max-width: 28ch;
}

.price-list {
  max-width: 44rem;
}

.price-list li {
  align-items: baseline;
  gap: var(--space-3);
  border-bottom: 0;
  padding-block: 0.6rem;
}

.price-list .leader {
  flex: 1;
  min-width: 1.5rem;
  border-bottom: 1px dotted rgba(36, 26, 38, 0.35);
  transform: translateY(-0.3em);
}

.price-list .name {
  flex: 0 1 auto;
}

.price-list .mark {
  margin-left: 0.35rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-small);
  color: var(--primary);
}

.price-list .price {
  font-variant-numeric: tabular-nums;
}

.price-footnote {
  margin-top: var(--space-6);
  font-size: var(--text-small);
  color: var(--text-soft);
}

.price-footnote a {
  color: var(--primary);
  font-weight: 500;
}

@media (min-width: 48rem) {
  .prices__head {
    grid-template-columns: 1fr 2fr;
    gap: var(--space-8);
    align-items: end;
  }

  .prices__head .lead {
    max-width: 44ch;
  }

  .menu__group {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: var(--space-8);
    padding-block: var(--space-7);
  }

  .menu__head {
    position: sticky;
    top: 6rem;
    align-self: start;
  }
}

/* About */
.about {
  padding-block: var(--section-y);
  background: var(--bg-alt);
  overflow: hidden;
}

.about__inner {
  display: grid;
  gap: var(--space-6);
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

.about__media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about__panel {
  display: grid;
  gap: var(--space-5);
}

.about__quote {
  margin: 0;
  padding-left: var(--space-5);
  border-left: 2px solid var(--primary);
}

.about__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1rem + 1.4vw, 1.875rem);
  font-style: italic;
  line-height: 1.45;
  max-width: 28ch;
}

.about__quote footer {
  margin-top: var(--space-3);
  font-size: var(--text-small);
  color: var(--text-soft);
}

.about__copy {
  display: grid;
  gap: var(--space-4);
  max-width: 36rem;
}

@media (min-width: 48rem) {
  .about {
    padding-block: 0;
  }

  .about__inner {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(18rem, 30rem)
      minmax(24rem, 42rem)
      minmax(var(--gutter), 1fr);
    width: 100%;
    max-width: none;
    gap: 0;
    align-items: stretch;
  }

  .about__media {
    grid-column: 1 / 3;
    border-radius: 0;
    max-height: 52rem;
  }

  .about__media img {
    height: 100%;
    aspect-ratio: auto;
    object-position: 50% 20%;
  }

  .about__panel {
    grid-column: 3;
    align-content: center;
    padding: var(--section-y) clamp(2rem, 4vw, 5rem);
  }
}

/* Work */
.work {
  padding-block: var(--section-y) clamp(4rem, 6vw + 2rem, 8rem);
}

.work__head {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

.work__intro {
  font-size: 1.1875rem;
  color: var(--text-soft);
}

.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  width: min(100% - 2 * var(--gutter), 84rem);
  margin-inline: auto;
}

.work__item {
  margin: 0;
}

.work__frame {
  overflow: hidden;
  border-radius: var(--radius);
}

.work__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (hover: hover) {
  .work__item:hover img,
  .js .work__item[data-reveal].is-visible:hover img {
    transform: scale(1.06);
  }
}

.work__item--lead {
  grid-column: 1 / -1;
}

.work__item--lead img {
  aspect-ratio: 4 / 3;
  object-position: 50% 60%;
}

.work__item figcaption {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text-soft);
}

@media (min-width: 48rem) {
  .work__grid {
    grid-template-columns: 1.55fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-4);
  }

  .work__item--lead {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .work__item--lead .work__frame {
    height: 100%;
  }

  .work__item--lead img {
    height: 100%;
    aspect-ratio: auto;
  }

  .work__item:not(.work__item--lead) img {
    aspect-ratio: 4 / 3;
  }

  .work__head {
    grid-template-columns: 1fr 2fr;
    gap: var(--space-8);
    align-items: end;
  }
}

/* Reviews */
.reviews__head {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

.reviews__score {
  color: var(--text-soft);
}

.reviews__score strong {
  color: var(--text);
}

.reviews__score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-4);
}

.reviews__also {
  font-size: var(--text-small);
}

.reviews__also a {
  color: var(--primary);
}

.reviews__body {
  display: grid;
  gap: var(--space-7);
}

.review-featured {
  position: relative;
  margin: 0;
  padding-top: var(--space-6);
}

.review-featured::before {
  content: "\201C";
  position: absolute;
  top: -0.1em;
  left: -0.05em;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  opacity: 0.7;
}

.review-featured p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.375rem);
  line-height: 1.4;
  letter-spacing: -0.005em;
  max-width: 24ch;
}

.review-featured footer,
.review-list footer {
  margin-top: var(--space-4);
  font-size: var(--text-small);
  color: var(--text-soft);
}

.review-featured footer strong,
.review-list footer strong {
  color: var(--text);
  font-weight: 600;
}

.review-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.review-list li {
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--color-line);
}

.review-list p {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  line-height: 1.45;
  max-width: 40ch;
}

.review-list footer {
  margin-top: var(--space-2);
}

@media (min-width: 48rem) {
  .reviews__head {
    max-width: 40rem;
  }

  .reviews__body {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-8);
    align-items: start;
  }
}

/* Practical */
.practical {
  padding-top: var(--space-7);
}

.practical__band {
  width: min(100% - 2 * var(--gutter), 84rem);
  margin-inline: auto;
}

.practical__band {
  overflow: hidden;
  border-radius: var(--radius);
}

.practical__band img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: 50% 45%;
}

.practical__grid {
  display: grid;
  gap: var(--space-7);
  padding-top: var(--space-7);
}

.practical__title {
  display: grid;
  gap: var(--space-3);
  align-content: start;
}

.map {
  margin-top: var(--space-4);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map__load {
  display: grid;
  gap: var(--space-1);
  place-content: center;
  justify-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.map__load:hover {
  background: rgba(88, 44, 95, 0.06);
}

.map__note {
  font-size: var(--text-tiny);
  font-weight: 400;
  color: var(--text-soft);
}

.practical h3 {
  margin-bottom: var(--space-4);
}

.practical .badge-open {
  margin-bottom: var(--space-4);
}

.practical address {
  font-style: normal;
  line-height: 1.6;
}

.contact-list {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a {
  color: var(--primary);
  font-weight: 500;
}

.practical__note {
  margin-top: var(--space-5);
  font-size: var(--text-small);
  color: var(--text-soft);
}

@media (min-width: 48rem) {
  .practical__band img {
    aspect-ratio: 21 / 8;
  }

  .practical__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-7) var(--space-8);
    padding-top: var(--space-8);
  }

  .practical__title {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-4) var(--space-8);
  }

  .practical__title .map {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
  }

  .practical__title h2 {
    font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.5rem);
  }
}

@media (min-width: 64rem) {
  .practical__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  }

  .practical__title {
    grid-column: 1;
    grid-template-columns: minmax(0, 1fr);
  }

  .practical__title .map {
    grid-column: 1;
    grid-row: auto;
    margin-top: var(--space-4);
  }
}

/* Closing */
.closing {
  background: var(--primary);
  color: var(--color-white);
  padding-top: var(--section-y);
}

.closing__inner {
  display: grid;
  gap: var(--space-5);
  justify-items: start;
  padding-bottom: var(--section-y);
}

.closing__mark {
  width: 3rem;
  height: 3rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.closing h2 {
  font-size: clamp(2.25rem, 1.6rem + 3vw, 4rem);
  max-width: 16ch;
}

.closing p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 44ch;
}

.btn--light {
  background: var(--color-white);
  color: var(--primary);
}

.btn--light:hover {
  background: var(--color-cream);
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}

.closing :focus-visible {
  outline-color: var(--color-white);
}

/* Footer (inside closing) */
.site-footer {
  padding-block: var(--space-5) calc(var(--space-5) + 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__inner {
  display: grid;
  gap: var(--space-2);
}

.site-footer strong {
  color: var(--color-white);
  font-weight: 600;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 48rem) {
  .site-footer {
    padding-bottom: var(--space-5);
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
  }
}

/* Mobile action bar */
.action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3) calc(var(--space-2) + env(safe-area-inset-bottom));
  background: rgba(247, 242, 235, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-line);
}

.action-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 3rem;
  padding-inline: var(--space-3);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-btn);
  font-size: var(--text-small);
  font-weight: 500;
  text-decoration: none;
  color: var(--primary);
}

.action-bar a svg {
  width: 1.125rem;
  height: 1.125rem;
}

.action-bar .action-bar__primary {
  background: var(--primary);
  color: var(--color-white);
}

@media (min-width: 48rem) {
  .action-bar {
    display: none;
  }
}

/* ==========================================================================
   7. Motion
   ========================================================================== */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 70ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js .about__media[data-reveal] img,
.js .practical__band[data-reveal] img,
.js .work__item[data-reveal] img {
  transform: scale(1.04);
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .about__media[data-reveal].is-visible img,
.js .practical__band[data-reveal].is-visible img,
.js .work__item[data-reveal].is-visible img {
  transform: none;
}

a:not(.btn):not(.rating) {
  text-underline-offset: 0.2em;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
