@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
}

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

@font-face {
  font-family: "Noto Sans Arabic";
  src: url("assets/fonts/noto-sans-arabic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --paper: oklch(0.985 0.009 92);
  --paper-warm: oklch(0.955 0.028 88);
  --paper-olive: oklch(0.925 0.038 108);
  --ink: oklch(0.245 0.047 74);
  --muted: oklch(0.48 0.035 78);
  --walnut: oklch(0.29 0.072 70);
  --walnut-deep: oklch(0.19 0.055 71);
  --olive: oklch(0.42 0.088 122);
  --olive-soft: oklch(0.58 0.09 105);
  --ochre: oklch(0.55 0.112 86);
  --saffron: oklch(0.79 0.165 88);
  --saffron-deep: oklch(0.64 0.15 78);
  --scrollbar-yellow: oklch(0.789 0.161 87.4);
  --blue: oklch(0.34 0.145 280);
  --rose: oklch(0.68 0.15 15);
  --cream-line: oklch(0.82 0.035 87);
  --cream-white: oklch(0.995 0.006 92);
  --shadow: 0 24px 70px oklch(0.245 0.047 74 / 0.14);
  --tight-shadow: 0 12px 34px oklch(0.245 0.047 74 / 0.12);
  --radius: 7px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --font-body: "Manrope", "Montserrat", Arial, sans-serif;
  --viewport-section-max: 100vh;
  --number-zellij-shape: polygon(50% 0%, 63% 16%, 84% 16%, 84% 37%, 100% 50%, 84% 63%, 84% 84%, 63% 84%, 50% 100%, 37% 84%, 16% 84%, 16% 63%, 0% 50%, 16% 37%, 16% 16%, 37% 16%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.62;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 16px 16px, oklch(0.55 0.112 86 / 0.16) 0 2px, transparent 2px 100%),
    linear-gradient(90deg, oklch(0.82 0.035 87 / 0.24) 1px, transparent 1px),
    linear-gradient(180deg, oklch(0.82 0.035 87 / 0.2) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px, 56px 56px, 56px 56px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 49%, oklch(0.42 0.088 122 / 0.065) 50% 52%, transparent 53% 100%),
    linear-gradient(45deg, transparent 0 49%, oklch(0.34 0.145 280 / 0.045) 50% 52%, transparent 53% 100%);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  opacity: 0.62;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a[href],
area[href],
button:not(:disabled),
[role="button"],
summary,
label[for],
select {
  cursor: pointer;
}

button:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
}

button,
input,
textarea,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid oklch(0.34 0.145 280 / 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  background: var(--walnut-deep);
  color: var(--paper);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
  border-bottom: 1px solid oklch(0.82 0.035 87 / 0.66);
  background: oklch(0.985 0.009 92 / 0.96);
  box-shadow: 0 8px 22px oklch(0.245 0.047 74 / 0.055);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 0.78rem;
  min-width: 234px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 7px;
  border: 1px solid oklch(0.79 0.165 88 / 0.28);
  border-radius: 3px;
  background: var(--walnut-deep);
}

.brand strong {
  display: block;
  color: var(--walnut-deep);
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.brand span span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 0.16rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  color: var(--walnut-deep);
  background: var(--paper-warm);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: background 0.2s var(--ease), transform 0.24s var(--ease), opacity 0.24s var(--ease);
}

.nav-toggle span {
  position: relative;
}

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

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(6px);
}

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

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  padding: 0.32rem;
  border: 1px solid oklch(0.82 0.035 87 / 0.62);
  background: oklch(0.995 0.006 92 / 0.78);
  border-radius: calc(var(--radius) + 5px);
}

.nav-links > a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 820;
  padding: 0.56rem 0.56rem;
  transition: background 0.24s var(--ease), color 0.24s var(--ease), transform 0.24s var(--ease);
}

.nav-links > a:hover {
  color: var(--walnut-deep);
  background: var(--paper-warm);
}

.nav-links > a.active {
  color: var(--paper);
  background: var(--walnut);
}

.nav-links > a:active,
.button:active,
.filter-button:active {
  transform: translateY(1px) scale(0.99);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-mobile-heading,
.nav-mobile-visit,
.nav-mobile-actions,
.nav-mobile-number,
.nav-mobile-arrow {
  display: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 47px;
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  color: var(--walnut-deep);
  background: var(--paper-warm);
  padding: 0 0.65rem;
}

.language-switcher svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.language-switcher select {
  min-height: 43px;
  max-width: 7.6rem;
  border: 0;
  outline: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  text-align-last: center;
}

.language-switcher select option {
  color: var(--paper);
  background: var(--walnut-deep);
  text-align: center;
}

.language-switcher select option:checked {
  color: var(--walnut-deep);
  background: var(--saffron);
}

.language-switcher select option:hover {
  color: var(--walnut-deep);
  background: var(--olive-soft);
}

.language-switcher:focus-within {
  outline: 3px solid oklch(0.34 0.145 280 / 0.34);
  outline-offset: 3px;
}

.language-switcher select:disabled {
  cursor: wait;
  opacity: 0.62;
}

.language-switcher-header {
  min-height: 41px;
  background: var(--paper);
  padding-inline: 0.48rem;
}

.language-switcher-header select {
  min-height: 39px;
  max-width: 5.4rem;
  font-size: 0.72rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 47px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.8rem 1.06rem;
  font-weight: 860;
  line-height: 1;
  transition: transform 0.24s var(--ease), background 0.24s var(--ease), border-color 0.24s var(--ease), color 0.24s var(--ease);
}

.button.primary {
  background: var(--saffron);
  color: var(--walnut-deep);
  box-shadow: 0 12px 24px oklch(0.79 0.165 88 / 0.24);
}

.button.primary:hover {
  background: oklch(0.83 0.17 87);
}

.button.secondary {
  background: var(--paper);
  color: var(--walnut);
  border-color: oklch(0.29 0.072 70 / 0.3);
}

.button.secondary:hover {
  background: var(--paper-warm);
  border-color: var(--ochre);
}

.button.ghost {
  color: var(--paper);
  border-color: oklch(0.985 0.009 92 / 0.36);
  background: transparent;
}

.button.ghost:hover {
  color: var(--walnut-deep);
  background: var(--saffron);
}

.button .button-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.section {
  position: relative;
  padding: clamp(4.8rem, 9vw, 8.2rem) 0;
}

.section.tight {
  padding: clamp(3.4rem, 7vw, 5.4rem) 0;
}

.section.alt {
  background:
    linear-gradient(115deg, oklch(0.925 0.038 108 / 0.72), oklch(0.955 0.028 88 / 0.86)),
    var(--paper-olive);
  border-block: 1px solid oklch(0.42 0.088 122 / 0.18);
}

.social-section {
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
  background:
    linear-gradient(112deg, oklch(0.19 0.055 71 / 0.98) 0 44%, oklch(0.42 0.088 122 / 0.96) 44% 100%);
}

.container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  gap: 0.58rem;
  margin: 0 0 1.1rem;
  color: var(--walnut);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--saffron);
  background: var(--olive);
  transform: rotate(45deg);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 3.15rem;
  max-width: 12ch;
}

.page-title {
  max-width: 13ch;
}

h2 {
  font-size: 2.35rem;
  max-width: 12ch;
}

h3 {
  font-size: 1.42rem;
}

p {
  margin: 0;
  color: var(--muted);
  text-wrap: pretty;
}

.lead {
  max-width: 66ch;
  color: oklch(0.42 0.04 75);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero {
  min-height: calc(100dvh - 82px);
  display: grid;
  align-items: center;
  padding: clamp(4.2rem, 8vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, oklch(0.985 0.009 92 / 0.94) 0 58%, oklch(0.42 0.088 122 / 0.15) 58% 100%),
    var(--paper);
}

.page-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, oklch(0.79 0.165 88 / 0.22), transparent 0 19rem),
    linear-gradient(103deg, var(--paper) 0 62%, oklch(0.42 0.088 122 / 0.13) 62% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.home-hero {
  min-height: auto;
  padding-block: clamp(3.4rem, 6vw, 5.4rem);
}

.home-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.94;
  text-wrap: balance;
}

.home-hero-title-line {
  display: block;
}

.home-hero .proof-card strong {
  font-size: clamp(1.28rem, 2vw, 1.56rem);
}

.home-hero .proof-card span {
  max-width: 15ch;
  line-height: 1.35;
}

.hero-copy {
  padding-left: clamp(0rem, 5vw, 4rem);
}

.hero-copy .lead,
.section-head .lead {
  margin-top: 1.35rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
  margin-top: 1.85rem;
}

.home-hero .hero-actions .button {
  min-height: 50px;
}

.media-collage {
  position: relative;
  min-height: 650px;
}

.media-frame {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid oklch(0.29 0.072 70 / 0.22);
  border-radius: var(--radius);
  background: var(--paper-warm);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.media-frame.main {
  inset: 0 8% 16% 0;
}

.media-frame.floating.one {
  right: 0;
  top: 8%;
  width: 38%;
  aspect-ratio: 0.82;
  box-shadow: 12px 12px 0 oklch(0.79 0.165 88 / 0.3), var(--tight-shadow);
}

.media-frame.floating.two {
  left: 8%;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1.18;
  box-shadow: 12px 12px 0 oklch(0.42 0.088 122 / 0.2), var(--tight-shadow);
}

.media-frame.hero-food-detail img {
  object-position: center 55%;
}

.media-frame.hero-tea-detail img {
  object-position: center 64%;
}

.media-frame:hover img {
  transform: scale(1.035);
}

.booking-note {
  position: absolute;
  right: 4%;
  bottom: 5%;
  width: min(360px, 64%);
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: 1.45rem;
  border-radius: var(--radius);
  color: var(--paper);
  background:
    linear-gradient(135deg, oklch(0.19 0.055 71 / 0.96), oklch(0.29 0.072 70 / 0.96)),
    var(--walnut-deep);
  box-shadow: 12px 12px 0 oklch(0.79 0.165 88 / 0.32), var(--tight-shadow);
}

.split > .booking-note {
  position: relative;
  right: auto;
  bottom: auto;
  width: auto;
  min-height: 330px;
}

.booking-note p,
.booking-note span {
  color: oklch(0.955 0.028 88 / 0.84);
}

.booking-note strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.62rem;
  line-height: 1.02;
  margin-bottom: 0.7rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 720px;
}

.proof-card {
  min-height: 104px;
  display: grid;
  align-content: end;
  padding: 1rem;
  border: 1px solid oklch(0.82 0.035 87 / 0.76);
  background: var(--cream-white);
  box-shadow: 8px 8px 0 oklch(0.55 0.112 86 / 0.18);
}

.proof-card:nth-child(2) {
  background: var(--paper-olive);
  box-shadow: 8px 8px 0 oklch(0.42 0.088 122 / 0.18);
}

.proof-card:nth-child(3) {
  background: oklch(0.965 0.032 92);
  box-shadow: 8px 8px 0 oklch(0.79 0.165 88 / 0.2);
}

.proof-card:nth-child(4) {
  background: oklch(0.955 0.03 285);
  box-shadow: 8px 8px 0 oklch(0.34 0.145 280 / 0.15);
}

.proof-card strong {
  display: block;
  color: var(--walnut-deep);
  font-family: var(--font-display);
  font-size: 1.72rem;
  line-height: 1;
}

.proof-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid oklch(0.29 0.072 70 / 0.2);
  background: var(--walnut-deep);
  color: var(--paper);
  padding: 0.86rem 0;
}

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

.marquee-track.is-motion-visible {
  animation-play-state: running;
  will-change: transform;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  padding: 0 1.2rem;
  font-family: var(--font-display);
  font-weight: 820;
}

.marquee span::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 1.2rem;
  background: var(--saffron);
  transform: rotate(45deg);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 6vw, 5.4rem);
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.section-head {
  max-width: 740px;
}

.path-grid,
.experience-grid,
.audience-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.path-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.path-card,
.experience-card,
.feature-band {
  position: relative;
  overflow: hidden;
  border: 1px solid oklch(0.29 0.072 70 / 0.2);
  border-radius: var(--radius);
  background: var(--cream-white);
  padding: clamp(1.3rem, 3vw, 2.35rem);
  box-shadow: 0 1px 0 oklch(0.995 0.006 92 / 0.65) inset;
}

.path-card,
.experience-card {
  grid-column: span 6;
  min-height: 250px;
  display: grid;
  align-content: space-between;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.path-card.large,
.experience-card.large {
  grid-column: span 7;
  min-height: 330px;
  background: var(--paper-warm);
}

.path-card.olive,
.experience-card.olive {
  background: var(--paper-olive);
}

.path-card.blue,
.experience-card.blue {
  color: var(--paper);
  background: var(--blue);
  box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.28);
}

.path-card.blue h3,
.path-card.blue p,
.path-card.blue span,
.experience-card.blue h3,
.experience-card.blue p,
.experience-card.blue span {
  color: var(--paper);
}

.path-card span,
.experience-card span {
  width: max-content;
  border-radius: 999px;
  color: var(--walnut-deep);
  background: var(--saffron);
  font-weight: 920;
  padding: 0.36rem 0.62rem;
}

.path-card h3,
.experience-card h3 {
  margin-top: 2.4rem;
}

.path-card p,
.experience-card p {
  margin-top: 0.84rem;
}

.visit-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.9rem, 6vw, 5.6rem);
  background:
    radial-gradient(circle at 10% 18%, oklch(0.79 0.165 88 / 0.18), transparent 18rem),
    radial-gradient(circle at 92% 82%, oklch(0.42 0.088 122 / 0.16), transparent 20rem),
    var(--paper);
}

.visit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background:
    radial-gradient(circle at 50% 50%, oklch(0.79 0.165 88 / 0.44) 0 2px, transparent 2.5px),
    linear-gradient(45deg, transparent 47.5%, oklch(0.42 0.088 122 / 0.12) 48.8% 51.2%, transparent 52.5%),
    linear-gradient(-45deg, transparent 47.5%, oklch(0.29 0.072 70 / 0.08) 48.8% 51.2%, transparent 52.5%);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black 0 38%, transparent 82% 100%);
}

.visit-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(1.6rem, 5vw, 4.6rem);
  align-items: center;
}

.visit-copy {
  align-self: center;
}

.visit-copy h2 {
  max-width: 13.5ch;
}

.visit-copy .lead {
  max-width: 38rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  margin-top: clamp(1.35rem, 2.6vw, 2rem);
}

.visit-actions .button svg {
  width: 1rem;
  height: 1rem;
  transition: transform 180ms ease;
}

.visit-actions .button:hover svg,
.visit-actions .button:focus-visible svg {
  transform: translate(0.18rem, -0.18rem);
}

.visit-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(9.4rem, 1fr);
  gap: clamp(0.68rem, 1.4vw, 1rem);
  min-height: clamp(29rem, 52vw, 38rem);
}

.visit-card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-content: end;
  min-height: 0;
  overflow: hidden;
  border: 1px solid oklch(0.29 0.072 70 / 0.18);
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--walnut-deep);
  box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.16);
}

.visit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, oklch(0.19 0.055 71 / 0.1) 0%, oklch(0.19 0.055 71 / 0.86) 100%),
    linear-gradient(90deg, oklch(0.19 0.055 71 / 0.42), transparent 62%);
}

.visit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: oklch(0.79 0.165 88 / 0.18);
  transition: opacity 220ms ease;
}

.visit-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.visit-number {
  position: absolute;
  top: 0.82rem;
  left: 0.82rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--walnut-deep);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 920;
  line-height: 1;
  isolation: isolate;
  filter: drop-shadow(0 8px 10px color-mix(in oklch, var(--walnut-deep) 34%, transparent));
}

.visit-number::before,
.visit-number::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  clip-path: var(--number-zellij-shape);
}

.visit-number::before {
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--saffron) 86%, var(--paper-warm)) 0 48%, var(--saffron) 49% 100%);
  transition: transform 240ms var(--ease), filter 240ms var(--ease);
}

.visit-number::after {
  inset: 0.48rem;
  z-index: -1;
  background: color-mix(in oklch, var(--saffron) 76%, var(--paper-warm));
  opacity: 0.5;
}

.visit-card:hover .visit-number::before,
.visit-card:focus-visible .visit-number::before {
  transform: scale(1.04);
  filter: saturate(1.08) brightness(1.02);
}

.visit-card-copy {
  display: grid;
  gap: 0.45rem;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.visit-card-copy small {
  color: var(--saffron);
  font-size: 0.68rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.visit-card-copy h3 {
  max-width: 14ch;
  color: var(--paper);
  font-size: clamp(1.38rem, 2vw, 2rem);
  line-height: 0.98;
}

.visit-card-copy p {
  max-width: 36ch;
  color: oklch(0.955 0.028 88 / 0.88);
  font-size: 0.92rem;
  line-height: 1.45;
}

.visit-card-feature {
  grid-column: 1 / span 3;
  grid-row: span 3;
}

.visit-card-feature .visit-card-copy {
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
}

.visit-card-feature .visit-card-copy h3 {
  max-width: 13ch;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.visit-card:not(.visit-card-feature) .visit-card-copy {
  gap: 0.34rem;
  padding: 3.7rem 1rem 0.95rem;
}

.visit-card:not(.visit-card-feature) .visit-card-copy small {
  font-size: 0.62rem;
}

.visit-card:not(.visit-card-feature) .visit-card-copy h3 {
  max-width: 17ch;
  font-size: clamp(1.28rem, 1.72vw, 1.75rem);
}

.visit-card:not(.visit-card-feature) .visit-card-copy p {
  font-size: 0.84rem;
  line-height: 1.36;
}

.visit-card-workshop,
.visit-card-school,
.visit-card-experience {
  grid-column: 4 / span 3;
}

.visit-card-school::before {
  background:
    linear-gradient(180deg, oklch(0.42 0.088 122 / 0.08) 0%, oklch(0.19 0.055 71 / 0.83) 100%),
    linear-gradient(90deg, oklch(0.42 0.088 122 / 0.5), transparent 68%);
}

.visit-card-experience {
  box-shadow: 10px 10px 0 oklch(0.34 0.145 280 / 0.18);
}

.visit-card-experience::before {
  background:
    linear-gradient(180deg, oklch(0.34 0.145 280 / 0.08) 0%, oklch(0.19 0.055 71 / 0.88) 100%),
    linear-gradient(90deg, oklch(0.34 0.145 280 / 0.54), transparent 70%);
}

.visit-card:hover,
.visit-card:focus-visible {
  border-color: oklch(0.79 0.165 88 / 0.72);
  transform: translateY(-4px);
}

.visit-card:hover::after,
.visit-card:focus-visible::after {
  opacity: 1;
}

.visit-card:hover img,
.visit-card:focus-visible img {
  transform: scale(1.045);
}

.memory-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 78%, oklch(0.79 0.165 88 / 0.14), transparent 19rem),
    radial-gradient(circle at 86% 18%, oklch(0.42 0.088 122 / 0.16), transparent 17rem),
    var(--paper-olive);
  padding-block: 0;
  height: auto;
  min-height: 0;
}

.memory-section::before {
  content: "";
  position: absolute;
  inset: clamp(0.65rem, 1.4vh, 1rem) clamp(0.75rem, 1.6vw, 1.35rem);
  pointer-events: none;
  border: 1px solid oklch(0.42 0.088 122 / 0.13);
  opacity: 0.34;
  background:
    radial-gradient(circle at 50% 50%, oklch(0.79 0.165 88 / 0.46) 0 2px, transparent 2.5px),
    conic-gradient(
      from 45deg at 50% 50%,
      transparent 0 11.5%,
      oklch(0.42 0.088 122 / 0.24) 11.5% 13.5%,
      transparent 13.5% 36.5%,
      oklch(0.34 0.145 280 / 0.14) 36.5% 38.5%,
      transparent 38.5% 61.5%,
      oklch(0.55 0.112 86 / 0.18) 61.5% 63.5%,
      transparent 63.5% 86.5%,
      oklch(0.42 0.088 122 / 0.24) 86.5% 88.5%,
      transparent 88.5% 100%
    ),
    linear-gradient(45deg, transparent 48.6%, oklch(0.29 0.072 70 / 0.14) 49.3% 50.7%, transparent 51.4%),
    linear-gradient(-45deg, transparent 48.6%, oklch(0.29 0.072 70 / 0.1) 49.3% 50.7%, transparent 51.4%);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, black 0 38%, transparent 78% 100%);
}

.memory-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(4.5rem, 12vh, 7.5rem);
  pointer-events: none;
  opacity: 0.5;
  background:
    radial-gradient(circle at 50% 50%, oklch(0.79 0.165 88 / 0.4) 0 2px, transparent 2.5px),
    linear-gradient(45deg, transparent 47.5%, oklch(0.42 0.088 122 / 0.18) 48.6% 51.4%, transparent 52.5%),
    linear-gradient(-45deg, transparent 47.5%, oklch(0.34 0.145 280 / 0.12) 48.6% 51.4%, transparent 52.5%);
  background-size: 44px 44px;
  mask-image: linear-gradient(to top, black 0 54%, transparent 100%);
}

.memory-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.4rem, 4.6vw, 4rem);
  align-items: center;
  box-sizing: border-box;
  height: auto;
  min-height: 0;
  padding-block: clamp(0.6rem, 1.4vh, 1rem);
}

.memory-copy h2 {
  max-width: 10ch;
}

.memory-copy .lead {
  max-width: 34rem;
}

.memory-copy.section-head .lead {
  margin-top: clamp(0.78rem, 1.6vh, 1.05rem);
}

.memory-copy .section-actions {
  margin-top: clamp(1rem, 2vh, 1.45rem);
}

.memory-copy .section-actions .button svg {
  width: 1rem;
  height: 1rem;
  transition: transform 180ms ease;
}

.memory-copy .section-actions .button:hover svg,
.memory-copy .section-actions .button:focus-visible svg {
  transform: translate(0.18rem, -0.18rem);
}

.memory-wall {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(13rem, 0.78fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: clamp(0.55rem, 1.3vh, 0.9rem);
  align-items: stretch;
  height: clamp(24.5rem, 70vh, 44rem);
  height: clamp(24.5rem, 70svh, 44rem);
  min-height: 0;
  max-height: none;
}

.memory-wall::before {
  content: "";
  position: absolute;
  inset: -0.6rem;
  z-index: 0;
  pointer-events: none;
  opacity: 0.44;
  background:
    radial-gradient(circle at 50% 50%, oklch(0.79 0.165 88 / 0.5) 0 2px, transparent 2.5px),
    linear-gradient(45deg, transparent 47%, oklch(0.42 0.088 122 / 0.2) 48.4% 51.6%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, oklch(0.29 0.072 70 / 0.13) 48.4% 51.6%, transparent 53%);
  background-size: 48px 48px;
}

.memory-photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  border: 1px solid oklch(0.29 0.072 70 / 0.16);
  background: var(--cream-white);
  box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.18);
}

.memory-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.memory-photo:hover img {
  transform: scale(1.035);
}

.memory-photo figcaption {
  position: absolute;
  right: 0.72rem;
  bottom: 0.72rem;
  left: 0.72rem;
  display: grid;
  gap: 0.34rem;
  padding: 0.78rem 0.86rem;
  color: var(--paper);
  background: oklch(0.19 0.055 71 / 0.86);
}

.memory-photo figcaption span {
  color: var(--saffron);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.memory-photo figcaption strong {
  max-width: 30ch;
  font-size: 0.96rem;
  line-height: 1.25;
}

.memory-photo-feature {
  grid-row: 1 / span 2;
}

.memory-photo-food,
.memory-photo-house {
  min-height: 0;
}

.memory-note-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.55rem, 1.1vh, 0.8rem);
  min-height: 0;
}

.memory-note-row p {
  display: grid;
  gap: 0.35rem;
  min-height: 0;
  padding: clamp(0.7rem, 1.25vh, 0.92rem) 1rem;
  border: 1px solid oklch(0.29 0.072 70 / 0.14);
  background: var(--paper);
}

.memory-note-row strong {
  color: var(--walnut-deep);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1;
}

.memory-note-row span {
  color: var(--walnut-soft);
  font-size: 0.92rem;
  line-height: 1.4;
}

.home-events-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  color: var(--paper);
  background: var(--walnut-deep);
  border-block: 1px solid oklch(0.955 0.028 88 / 0.16);
}

.home-events-layout {
  display: grid;
  grid-template-columns: minmax(21rem, 0.82fr) minmax(26rem, 1fr);
  align-items: center;
  gap: clamp(2.6rem, 5.6vw, 5.6rem);
  padding-block: clamp(3.25rem, 5vw, 4.8rem);
}

.home-events-media {
  position: relative;
  width: 100%;
  max-width: 43rem;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid oklch(0.955 0.028 88 / 0.3);
  border-radius: var(--radius);
  background: var(--walnut);
  box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.2), var(--tight-shadow);
}

.home-events-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(1.08) contrast(1.04);
}

.home-events-media-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 54%, oklch(0.19 0.055 71 / 0.84));
}

.home-events-media figcaption {
  position: absolute;
  right: clamp(0.8rem, 2vw, 1.4rem);
  bottom: clamp(0.8rem, 2vw, 1.4rem);
  left: clamp(0.8rem, 2vw, 1.4rem);
  display: grid;
  gap: 0.28rem;
  max-width: 24rem;
  color: var(--paper);
}

.home-events-media figcaption span {
  color: var(--saffron);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-events-media figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}

.home-events-copy {
  min-width: 0;
  max-width: 41rem;
}

.home-events-copy .eyebrow,
.home-events-copy h2,
.home-events-copy .lead {
  color: var(--paper);
}

.home-events-copy h2 {
  max-width: 14ch;
  margin-top: 0.6rem;
  font-size: clamp(2.65rem, 4.4vw, 4.35rem);
  line-height: 0.96;
  text-wrap: balance;
}

.home-events-copy .lead {
  max-width: 48ch;
  margin-top: 1rem;
  color: oklch(0.955 0.028 88 / 0.82);
  font-size: clamp(0.94rem, 1.15vw, 1.05rem);
  line-height: 1.58;
}

.home-events-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  margin: 1.35rem 0 0;
  padding: 1rem 0;
  list-style: none;
  border-block: 1px solid oklch(0.955 0.028 88 / 0.28);
}

.home-events-services li {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.home-events-services strong {
  color: var(--saffron);
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  line-height: 1.08;
}

.home-events-services span {
  color: oklch(0.955 0.028 88 / 0.72);
  font-size: 0.76rem;
  line-height: 1.38;
}

.home-events-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 0.95rem;
  margin-top: 1.25rem;
}

.home-events-actions .button > svg {
  width: 1rem;
  height: 1rem;
}

.home-events-story-link {
  color: var(--paper);
  border-color: oklch(0.955 0.028 88 / 0.36);
  background: oklch(0.955 0.028 88 / 0.08);
}

.home-events-note {
  flex-basis: 100%;
  max-width: 52ch;
  color: oklch(0.955 0.028 88 / 0.62);
  font-size: 0.75rem;
  line-height: 1.35;
}

.reviews-section {
  overflow: hidden;
  background: var(--paper);
  padding-block: clamp(2.6rem, 4vw, 4rem);
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.reviews-heading h2 {
  max-width: 18ch;
  margin-top: 0.7rem;
}

.reviews-heading h2 span {
  display: block;
  white-space: nowrap;
}

.reviews-rating {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 0.7rem;
  padding: 0.9rem 1.05rem;
  border: 1px solid oklch(0.29 0.072 70 / 0.18);
  background: var(--cream-white);
}

.reviews-rating strong {
  grid-row: span 2;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}

.reviews-stars,
.review-stars {
  color: var(--saffron-deep);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.reviews-rating small {
  color: var(--walnut-soft);
  font-size: 0.72rem;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1rem;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  display: grid;
  flex: 0 0 calc((100% - 2rem) / 3);
  gap: 1rem;
  min-height: 244px;
  padding: clamp(1.2rem, 2vw, 1.65rem);
  border: 1px solid oklch(0.29 0.072 70 / 0.16);
  background: var(--cream-white);
  box-shadow: 8px 8px 0 oklch(0.79 0.165 88 / 0.16);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.review-avatar {
  display: grid;
  flex: 0 0 2.45rem;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  color: var(--paper);
  background: var(--walnut);
  font-weight: 800;
}

.review-card-top div {
  display: grid;
  gap: 0.15rem;
}

.review-card-top small {
  color: var(--walnut-soft);
  font-size: 0.72rem;
}

.review-google {
  margin-left: auto;
  width: 1.55rem;
  height: 1.55rem;
}

.review-google path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.45;
}

.review-google .google-blue {
  stroke: var(--blue);
}

.review-google .google-saffron {
  stroke: var(--saffron);
}

.review-google .google-olive {
  stroke: var(--olive);
}

.review-card p {
  max-width: 34ch;
  color: var(--walnut-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.reviews-indicators {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  padding: 0.4rem 0.5rem;
  border: 1px solid oklch(0.29 0.072 70 / 0.16);
  border-radius: 999px;
  background: var(--paper-warm);
  box-shadow: 0 8px 22px oklch(0.29 0.072 70 / 0.08);
}

.reviews-indicators::before {
  content: "";
  position: absolute;
  right: 1.32rem;
  left: 1.32rem;
  top: 50%;
  height: 1px;
  background: oklch(0.29 0.072 70 / 0.18);
  transform: translateY(-50%);
}

.reviews-indicator {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 1;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease;
}

.reviews-indicator::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border: 1px solid oklch(0.29 0.072 70 / 0.34);
  background: var(--cream-white);
  transform: rotate(45deg);
  transition: width 180ms ease, height 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reviews-indicator::after {
  content: "";
  position: absolute;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background: transparent;
  transition: background 180ms ease, transform 180ms ease;
}

.reviews-indicator.active {
  transform: translateY(-1px);
}

.reviews-indicator.active::before {
  width: 0.94rem;
  height: 0.94rem;
  border-color: var(--walnut-deep);
  background: var(--saffron);
  box-shadow: 0 0 0 4px oklch(0.79 0.165 88 / 0.2);
}

.reviews-indicator.active::after {
  background: var(--walnut-deep);
}

.reviews-indicator:hover::before,
.reviews-indicator:focus-visible::before {
  border-color: var(--walnut);
  background: var(--paper-olive);
}

.reviews-indicator.active:hover::before,
.reviews-indicator.active:focus-visible::before {
  background: var(--saffron);
}

.reviews-indicator[data-review-slide="3"],
.reviews-indicator[data-review-slide="4"] {
  display: none;
}

.reviews-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.15rem;
}

.reviews-control {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid oklch(0.29 0.072 70 / 0.22);
  border-radius: 50%;
  color: var(--walnut);
  background: var(--cream-white);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.reviews-control svg {
  width: 1.1rem;
  height: 1.1rem;
}

.reviews-control:hover:not(:disabled),
.reviews-control:focus-visible:not(:disabled) {
  border-color: var(--walnut);
  color: var(--paper);
  background: var(--walnut);
  transform: translateY(-2px);
}

.reviews-control:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.reviews-actions .button svg {
  width: 1rem;
  height: 1rem;
  transition: transform 180ms ease;
}

.reviews-actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reviews-actions .button:hover svg,
.reviews-actions .button:focus-visible svg {
  transform: translate(0.18rem, -0.18rem);
}

.feature-band::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 120px;
  height: 120px;
  background:
    linear-gradient(45deg, transparent 44%, oklch(0.79 0.165 88 / 0.3) 45% 56%, transparent 57%),
    linear-gradient(-45deg, transparent 44%, oklch(0.42 0.088 122 / 0.22) 45% 56%, transparent 57%);
  background-size: 24px 24px;
  transform: rotate(14deg);
}

.feature-band.dark {
  background: var(--olive);
  color: var(--paper);
  box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.22);
}

.feature-band.dark:nth-child(odd) {
  background: var(--walnut);
}

.feature-band.dark h2,
.feature-band.dark h3,
.feature-band.dark .eyebrow {
  color: var(--paper);
}

.feature-band.dark p,
.feature-band.dark li {
  color: oklch(0.955 0.028 88 / 0.86);
}

.feature-band h3 + p {
  margin-top: 0.84rem;
}

.audience-row .feature-band {
  grid-column: span 4;
}

.audience-row .feature-band.dark {
  grid-column: span 12;
}

.detail-list {
  display: grid;
  gap: 0.78rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.65rem;
  color: var(--muted);
}

.detail-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.55rem;
  background: var(--saffron);
  box-shadow: 0 0 0 3px oklch(0.79 0.165 88 / 0.16);
  transform: rotate(45deg);
}

.feature-band.dark .detail-list li::before,
.booking-note .detail-list li::before {
  background: var(--paper);
  box-shadow: 0 0 0 3px oklch(0.985 0.009 92 / 0.18);
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  border: 1px solid oklch(0.29 0.072 70 / 0.16);
  background: var(--cream-white);
}

.timeline-item strong {
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--walnut);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.timeline-item:nth-child(even) strong {
  background: var(--olive);
}

.timeline-item > div {
  padding: 1rem 1rem 1rem 0;
}

.timeline-item h3 {
  font-size: 1.24rem;
}

.timeline-item p {
  margin-top: 0.35rem;
}

.image-strip {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  grid-template-rows: 265px 265px;
  gap: 1rem;
}

.image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid oklch(0.29 0.072 70 / 0.22);
  border-radius: var(--radius);
  box-shadow: var(--tight-shadow);
}

.image-strip img:first-child {
  grid-row: span 2;
}

.image-strip img.image-focus-rooftop-table {
  object-position: center 58%;
}

.image-strip img.image-focus-rooftop-tagine {
  object-position: center 54%;
}

.school-visit-collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(0, 1fr));
  width: min(100%, 40rem);
  aspect-ratio: 1.08 / 1;
  gap: 0.72rem;
  align-self: stretch;
  margin-inline: auto;
}

.school-visit-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 0;
  border: 1px solid oklch(0.29 0.072 70 / 0.22);
  border-radius: var(--radius);
  background: var(--paper-warm);
  box-shadow: 0 1px 0 oklch(0.995 0.006 92 / 0.62) inset, var(--tight-shadow);
}

.school-visit-photo-main {
  grid-column: 1 / 8;
  grid-row: 1 / 10;
  box-shadow: 12px 12px 0 oklch(0.79 0.165 88 / 0.2), var(--tight-shadow);
}

.school-visit-photo-demo {
  grid-column: 8 / 13;
  grid-row: 1 / 6;
  box-shadow: 8px 8px 0 oklch(0.42 0.088 122 / 0.16), var(--tight-shadow);
}

.school-visit-photo-workshop {
  grid-column: 8 / 13;
  grid-row: 6 / 13;
  box-shadow: 8px 8px 0 oklch(0.34 0.145 280 / 0.12), var(--tight-shadow);
}

.school-visit-photo-craft {
  grid-column: 1 / 8;
  grid-row: 10 / 13;
  box-shadow: 8px 8px 0 oklch(0.55 0.112 86 / 0.16), var(--tight-shadow);
}

.school-visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-position, center);
  filter: saturate(1.04) contrast(1.02);
  transition: transform 0.7s var(--ease);
}

.school-visit-photo-main img {
  object-position: center 48%;
}

.school-visit-photo-demo img {
  object-position: center 38%;
}

.school-visit-photo-workshop img {
  object-position: center 48%;
}

.school-visit-photo-craft img {
  object-position: center 62%;
}

.school-visit-photo figcaption {
  position: absolute;
  left: 0.76rem;
  right: 0.76rem;
  bottom: 0.76rem;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 1.52rem);
  border: 1px solid oklch(0.955 0.028 88 / 0.22);
  border-radius: var(--radius);
  color: var(--paper);
  background: oklch(0.19 0.055 71 / 0.86);
  padding: 0.52rem 0.64rem;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.school-visit-photo:hover img {
  transform: scale(1.035);
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 1rem;
  align-items: stretch;
}

.wide-photo {
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.wide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
  margin: 1.4rem 0 2rem;
}

.filter-button {
  min-height: 44px;
  border: 1px solid oklch(0.29 0.072 70 / 0.24);
  border-radius: 999px;
  cursor: pointer;
  color: var(--walnut);
  background: var(--cream-white);
  font-weight: 860;
  padding: 0.68rem 0.95rem;
  transition: transform 0.24s var(--ease), background 0.24s var(--ease), color 0.24s var(--ease), border-color 0.24s var(--ease);
}

.filter-button:hover {
  border-color: var(--saffron);
  background: var(--paper-warm);
}

.filter-button.active {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: grid;
  grid-template-rows: 220px auto;
  grid-column: span 4;
  border: 1px solid oklch(0.29 0.072 70 / 0.2);
  border-radius: var(--radius);
  background: var(--cream-white);
  transition: transform 0.34s var(--ease), box-shadow 0.34s var(--ease), border-color 0.34s var(--ease);
}

.service-card:nth-child(2),
.service-card:nth-child(7) {
  grid-column: span 5;
}

.service-card:nth-child(3),
.service-card:nth-child(8) {
  grid-column: span 3;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--paper-warm);
}

.service-card-body {
  display: grid;
  gap: 0.8rem;
  padding: 1.18rem;
  background: var(--cream-white);
}

.service-card:nth-child(even) .service-card-body {
  background: var(--paper-olive);
}

.service-card:nth-child(3n) .service-card-body {
  background: oklch(0.965 0.032 92);
}

.service-card p {
  font-size: 0.94rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid oklch(0.29 0.072 70 / 0.15);
  border-radius: 999px;
  color: var(--walnut-deep);
  background: var(--saffron);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.34rem 0.58rem;
}

.service-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.54rem;
  margin-top: 0.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid oklch(0.29 0.072 70 / 0.16);
}

.service-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 760;
}

.service-meta strong {
  display: block;
  color: var(--walnut-deep);
  font-size: 0.84rem;
  line-height: 1.18;
}

.gallery-hero {
  overflow: hidden;
  background: var(--paper);
  padding-block: clamp(2.8rem, 6vw, 5.5rem);
}

.gallery-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5.8rem);
  min-height: min(720px, calc(100dvh - 82px));
  align-items: center;
}

.gallery-hero-copy {
  max-width: 40rem;
}

.gallery-hero-copy h1 {
  max-width: 11ch;
}

.gallery-hero-copy .lead {
  max-width: 52ch;
}

.gallery-stage {
  position: relative;
  min-height: 590px;
}

.gallery-stage-main,
.gallery-stage-detail {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid oklch(0.29 0.072 70 / 0.22);
  border-radius: var(--radius);
  background: var(--paper-warm);
  box-shadow: var(--shadow);
}

.gallery-stage-main {
  inset: 0 16% 7% 0;
}

.gallery-stage-detail {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 43%;
  box-shadow: 12px 12px 0 oklch(0.42 0.088 122 / 0.18), var(--tight-shadow);
}

.gallery-stage-main img,
.gallery-stage-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-stage figcaption,
.gallery-mosaic-item figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  display: grid;
  gap: 0.28rem;
  padding: 0.72rem 0.82rem;
  border-radius: 5px;
  background: oklch(0.19 0.055 71 / 0.92);
  color: var(--paper);
}

.gallery-stage figcaption span,
.gallery-mosaic-item figcaption span {
  color: var(--saffron);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-stage figcaption strong,
.gallery-mosaic-item figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  line-height: 1.02;
}

.gallery-stage-tag {
  position: absolute;
  top: 8%;
  right: 3%;
  display: inline-flex;
  padding: 0.55rem 0.7rem;
  border: 1px solid oklch(0.29 0.072 70 / 0.22);
  border-radius: 999px;
  color: var(--walnut-deep);
  background: var(--saffron);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.gallery-collection {
  background: var(--paper-warm);
  border-block: 1px solid oklch(0.82 0.035 87 / 0.62);
}

.gallery-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.gallery-section-head h2 {
  max-width: 12ch;
  font-size: clamp(2.45rem, 4.2vw, 3.8rem);
  line-height: 0.98;
}

.gallery-section-head .lead {
  max-width: 42ch;
  margin: 0;
}

@media (min-width: 1120px) {
  .gallery-section-head .lead {
    margin-top: 2.65rem;
  }
}

.gallery-collection {
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.gallery-hero .section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.gallery-hero .section-actions .button {
  width: auto;
}

.gallery-instagram-button {
  gap: 0.55rem;
  white-space: nowrap;
}

.gallery-instagram-button > svg:last-child {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.24s var(--ease);
}

.gallery-instagram-button:hover > svg:last-child {
  transform: translate(3px, -3px);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 170px;
  gap: 1rem;
}

.gallery-mosaic-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid oklch(0.29 0.072 70 / 0.22);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--tight-shadow);
}

.gallery-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease), filter 0.75s var(--ease);
}

.gallery-mosaic-rooftop {
  grid-column: span 7;
  grid-row: span 3;
}

.gallery-mosaic-courtyard {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-mosaic-craft,
.gallery-mosaic-table,
.gallery-mosaic-salon {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-mosaic-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.gallery-mosaic-item:hover figcaption {
  background: var(--saffron);
  color: var(--walnut-deep);
}

.gallery-mosaic-item:hover figcaption span {
  color: var(--walnut-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 190px;
  gap: 1rem;
}

.gallery-item {
  grid-column: span 4;
  grid-row: span 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid oklch(0.29 0.072 70 / 0.22);
  border-radius: var(--radius);
  background: var(--paper-warm);
  box-shadow: var(--tight-shadow);
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item.tall {
  grid-row: span 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.social-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  color: var(--paper);
}

.social-band-head {
  max-width: 44rem;
}

.social-band h2,
.social-band .eyebrow {
  color: var(--paper);
}

.social-band h2 {
  max-width: none;
  font-size: clamp(2.35rem, 3.8vw, 3.5rem);
  line-height: 0.98;
}

.social-title-line {
  display: inline-block;
  white-space: nowrap;
}

.social-band .lead {
  color: oklch(0.955 0.028 88 / 0.84);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  min-width: 0;
  min-height: 174px;
  display: grid;
  align-content: space-between;
  gap: 0.8rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius);
  border: 1px solid oklch(0.985 0.009 92 / 0.22);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.social-card.instagram {
  color: var(--walnut-deep);
  background: var(--saffron);
}

.social-card.tiktok {
  color: var(--paper);
  background: var(--blue);
}

.social-card-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-card-top > svg:first-child {
  width: 1.7rem;
  height: 1.7rem;
}

.social-card-top > span {
  flex: 1;
}

.social-card-top > svg:last-child {
  width: 1.1rem;
  height: 1.1rem;
  transition: transform 0.24s var(--ease);
}

.social-card:hover .social-card-top > svg:last-child {
  transform: translate(3px, -3px);
}

.social-card strong {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.55vw, 1.35rem);
  line-height: 1.05;
}

.social-card small {
  font-size: 0.95rem;
  line-height: 1.55;
}

.school-social-proof {
  background: var(--paper-warm);
  border-block: 1px solid oklch(0.82 0.035 87 / 0.62);
  padding-block: clamp(2.8rem, 5vw, 4.6rem);
}

.school-social-layout {
  display: grid;
  gap: clamp(1.45rem, 3vw, 2.4rem);
}

.school-social-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: end;
}

.school-social-header .section-head {
  max-width: 60rem;
}

.school-social-header h2 {
  max-width: none;
  width: 100%;
}

.school-social-header .section-head .lead {
  max-width: 59ch;
  margin-bottom: 0;
}

.school-social-follow {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) 1.1rem;
  gap: 0.7rem;
  align-items: center;
  min-width: min(20rem, 100%);
  border: 1px solid oklch(0.29 0.072 70 / 0.2);
  border-radius: var(--radius);
  background: var(--cream-white);
  color: var(--walnut-deep);
  padding: 0.72rem 0.85rem;
  box-shadow: 6px 6px 0 oklch(0.42 0.088 122 / 0.14);
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.school-social-follow:hover {
  transform: translateY(-3px);
  border-color: var(--saffron);
  box-shadow: 6px 6px 0 oklch(0.79 0.165 88 / 0.24);
}

.school-social-follow:focus-visible,
.school-social-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.school-social-follow-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--walnut-deep);
}

.school-social-follow-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.school-social-follow > span:nth-child(2) {
  display: grid;
  gap: 0.22rem;
}

.school-social-follow strong {
  font-size: 0.88rem;
  line-height: 1.2;
}

.school-social-follow small {
  color: var(--muted);
  font-size: 0.74rem;
}

.school-social-follow > svg {
  width: 1.1rem;
  height: 1.1rem;
  transition: transform 0.24s var(--ease);
}

.school-social-follow:hover > svg {
  transform: translate(2px, -2px);
}

.school-social-reel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.5vw, 1.05rem);
}

.school-social-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--walnut-deep);
  border: 1px solid oklch(0.29 0.072 70 / 0.22);
  box-shadow: 8px 8px 0 oklch(0.42 0.088 122 / 0.14);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.school-social-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 oklch(0.79 0.165 88 / 0.24);
}

.school-social-thumb {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  color: var(--paper);
}

.school-social-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
}

.school-social-card:hover .school-social-thumb img {
  transform: scale(1.05);
  filter: saturate(1.06);
}

.school-social-play {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid oklch(0.995 0.006 92 / 0.66);
  border-radius: 50%;
  background: var(--saffron);
  color: var(--walnut-deep);
  box-shadow: 3px 3px 0 oklch(0.19 0.055 71 / 0.2);
  transition: transform 0.24s var(--ease), background-color 0.24s var(--ease);
}

.school-social-play svg {
  width: 1.15rem;
  height: 1.15rem;
  margin-left: 0.14rem;
}

.school-social-card:hover .school-social-play {
  transform: rotate(8deg) scale(1.08);
  background: var(--paper);
}

.school-social-caption {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.4rem;
  padding: 0.55rem 0.7rem;
  border-radius: 5px;
  background: oklch(0.19 0.055 71 / 0.94);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  transition: background-color 0.24s var(--ease), color 0.24s var(--ease);
}

.school-social-caption strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1;
}

.school-social-caption small {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: oklch(0.94 0.025 88);
  font-size: 0.72rem;
  line-height: 1.2;
}

.school-social-caption svg {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 0.24s var(--ease);
}

.school-social-thumb:hover .school-social-caption {
  background: var(--saffron);
  color: var(--walnut-deep);
}

.school-social-thumb:hover .school-social-caption svg {
  transform: translate(2px, -2px);
}

.booking-panel {
  border: 1px solid oklch(0.29 0.072 70 / 0.2);
  border-radius: var(--radius);
  background: var(--paper-warm);
  box-shadow: 12px 12px 0 oklch(0.42 0.088 122 / 0.16), var(--tight-shadow);
  padding: clamp(1.25rem, 3vw, 2.2rem);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--walnut-deep);
  font-size: 0.83rem;
  font-weight: 860;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 49px;
  border: 1px solid oklch(0.29 0.072 70 / 0.22);
  border-radius: var(--radius);
  outline: none;
  background: var(--cream-white);
  color: var(--ink);
  padding: 0.8rem 0.9rem;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease);
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  background: var(--paper);
  box-shadow: 0 0 0 3px oklch(0.34 0.145 280 / 0.12);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px oklch(0.68 0.15 15 / 0.12);
}

.helper,
.error-text {
  min-height: 1.1rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.error-text {
  color: var(--rose);
}

.form-status {
  display: none;
  margin-top: 1rem;
  border: 1px solid oklch(0.42 0.088 122 / 0.28);
  border-radius: var(--radius);
  background: var(--paper-olive);
  color: var(--olive);
  padding: 0.82rem;
  font-weight: 780;
}

.form-status.show {
  display: block;
}

.form-status a {
  color: var(--walnut-deep);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.map-panel {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid oklch(0.29 0.072 70 / 0.2);
  border-radius: var(--radius);
  background: var(--walnut-deep);
  box-shadow: var(--tight-shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(0.9) contrast(0.96);
}

.map-stack {
  display: grid;
  gap: 1rem;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-desk-section {
  display: grid;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1.2rem, 4vh, 3rem) 0;
  background:
    linear-gradient(116deg, var(--walnut-deep) 0 39%, oklch(0.26 0.068 72) 39% 46%, var(--paper) 46% 73%, var(--paper-olive) 73% 100%);
}

.contact-desk-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, oklch(0.985 0.009 92 / 0.18) 1px, transparent 1px),
    linear-gradient(180deg, oklch(0.985 0.009 92 / 0.14) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, black 0 43%, transparent 78%);
  opacity: 0.72;
}

.contact-desk-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.98fr) minmax(190px, 0.42fr) minmax(390px, 0.9fr);
  grid-template-areas: "intro media form";
  gap: clamp(1rem, 2.4vw, 2.1rem);
  align-items: center;
}

.contact-intro {
  grid-area: intro;
  color: var(--paper);
}

.contact-intro .eyebrow {
  color: var(--saffron);
}

.contact-intro .eyebrow::before {
  border-color: oklch(0.985 0.009 92 / 0.56);
  background: var(--saffron);
}

.contact-page .page-title {
  max-width: 17.5ch;
  color: var(--paper);
  font-size: clamp(2.65rem, 3.25vw, 3.95rem);
  line-height: 0.95;
}

.contact-page .page-title span {
  display: block;
  white-space: nowrap;
}

.contact-intro .lead {
  max-width: 40ch;
  margin-top: 1.18rem;
  color: oklch(0.955 0.028 88 / 0.86);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.62;
}

.contact-visit-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  margin-top: clamp(1.2rem, 2.5vw, 1.7rem);
  border: 1px solid oklch(0.985 0.009 92 / 0.2);
  border-radius: var(--radius);
  background: oklch(0.985 0.009 92 / 0.055);
}

.contact-visit-types span {
  display: inline-flex;
  align-items: center;
  min-height: 41px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 860;
  padding: 0.58rem 0.75rem;
  white-space: nowrap;
}

.contact-visit-types span + span {
  border-left: 1px solid oklch(0.985 0.009 92 / 0.18);
}

.contact-hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.82rem;
  max-width: 100%;
  margin-top: clamp(1rem, 2.3vw, 1.45rem);
  border: 1px solid oklch(0.79 0.165 88 / 0.48);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, oklch(0.79 0.165 88 / 0.14), transparent 54%),
    oklch(0.19 0.055 71 / 0.72);
  box-shadow: 8px 8px 0 oklch(0.79 0.165 88 / 0.18);
  color: inherit;
  padding: 0.66rem 0.7rem 0.66rem 0.72rem;
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), background 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.contact-hero-note svg {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 auto;
  border: 1px solid oklch(0.79 0.165 88 / 0.38);
  border-radius: var(--radius);
  background: oklch(0.79 0.165 88 / 0.16);
  color: var(--saffron);
  padding: 0.58rem;
}

.contact-hero-note span {
  display: grid;
  gap: 0.16rem;
  flex: 1 1 auto;
  min-width: 0;
}

.contact-hero-note strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.25vw, 1.26rem);
  line-height: 0.96;
}

.contact-hero-note small {
  color: oklch(0.955 0.028 88 / 0.76);
  font-size: 0.78rem;
  line-height: 1.35;
}

.contact-hero-note em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 42px;
  border-radius: var(--radius);
  background: var(--saffron);
  color: var(--walnut-deep);
  box-shadow: inset 0 -2px 0 oklch(0.19 0.055 71 / 0.18);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 920;
  line-height: 1;
  padding: 0.68rem 0.78rem;
  white-space: nowrap;
}

.contact-house-figure {
  position: relative;
  grid-area: media;
  align-self: center;
  margin: 0;
  overflow: hidden;
  width: 100%;
  height: clamp(21rem, 58vh, 34rem);
  min-height: 0;
  border: 1px solid oklch(0.29 0.072 70 / 0.22);
  border-radius: var(--radius);
  background: var(--walnut-deep);
  box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.24), var(--tight-shadow);
}

.contact-house-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, oklch(0.19 0.055 71 / 0.56) 100%);
}

.contact-house-figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.75s var(--ease), filter 0.75s var(--ease);
}

.contact-house-figure figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: grid;
  gap: 0.24rem;
  border: 1px solid oklch(0.985 0.009 92 / 0.18);
  border-radius: 5px;
  background: oklch(0.19 0.055 71 / 0.9);
  color: var(--paper);
  padding: 0.72rem 0.78rem;
}

.contact-house-figure figcaption span {
  color: var(--saffron);
  font-size: 0.68rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-house-figure figcaption strong {
  color: var(--paper);
  font-size: 0.82rem;
  line-height: 1.25;
}

.contact-booking-panel {
  grid-area: form;
  justify-self: end;
  width: min(100%, 490px);
  background:
    linear-gradient(180deg, oklch(0.995 0.006 92 / 0.96), oklch(0.955 0.028 88 / 0.98)),
    var(--paper-warm);
  box-shadow: 12px 12px 0 oklch(0.42 0.088 122 / 0.16), var(--tight-shadow);
  padding: clamp(1.18rem, 2.15vw, 1.65rem);
}

.booking-panel-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.18rem;
  padding-bottom: 1.08rem;
  border-bottom: 1px solid oklch(0.29 0.072 70 / 0.16);
}

.booking-panel-head span {
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-panel-head h2 {
  max-width: 13ch;
  font-size: clamp(1.82rem, 2.7vw, 2.62rem);
  line-height: 0.98;
}

.booking-panel-head p {
  max-width: 44ch;
  color: oklch(0.42 0.04 75);
  font-size: 0.95rem;
  line-height: 1.52;
}

.contact-booking-panel .form-grid {
  gap: 0.92rem 0.9rem;
}

.contact-booking-panel .field {
  gap: 0.42rem;
}

@media (min-width: 821px) {
  .contact-booking-panel .field {
    grid-template-rows: minmax(1.15rem, auto) auto minmax(1.1rem, auto);
    align-content: start;
  }

  .contact-booking-panel .field label {
    display: flex;
    align-items: end;
    min-height: 1.15rem;
    line-height: 1.15;
  }

  .contact-booking-panel .field input,
  .contact-booking-panel .field select {
    height: 52px;
    min-height: 52px;
  }
}

.contact-booking-panel .field input,
.contact-booking-panel .field textarea,
.contact-booking-panel .field select {
  min-height: 50px;
  padding: 0.76rem 0.88rem;
}

.contact-booking-panel .field textarea {
  min-height: 108px;
}

.contact-booking-panel .button[type="submit"] {
  width: 100%;
  min-height: 52px;
  margin-top: 1.08rem;
}

.contact-essentials-section {
  padding-block: clamp(3.4rem, 5.8vw, 5.4rem) clamp(2.6rem, 4.5vw, 4.2rem);
  background:
    linear-gradient(180deg, var(--paper-warm), oklch(0.925 0.038 108 / 0.5)),
    var(--paper-warm);
  border-block: 1px solid oklch(0.42 0.088 122 / 0.16);
}

.contact-essentials-layout {
  display: grid;
  gap: clamp(1rem, 2.8vw, 1.9rem);
}

.contact-essentials-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  grid-template-areas:
    "eyebrow copy"
    "title copy";
  gap: 0.35rem clamp(1.5rem, 5vw, 4rem);
  align-items: end;
}

.contact-essentials-head .eyebrow {
  grid-area: eyebrow;
  margin-bottom: 0.3rem;
}

.contact-essentials-head h2 {
  grid-area: title;
  max-width: 17ch;
}

.contact-essentials-head .lead {
  grid-area: copy;
  max-width: 34ch;
  margin-bottom: 0.35rem;
}

.contact-essentials-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(0.85rem, 2vw, 1.15rem);
  align-items: stretch;
}

.contact-map-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid oklch(0.29 0.072 70 / 0.2);
  border-radius: var(--radius);
  background: var(--cream-white);
  box-shadow: 9px 9px 0 oklch(0.42 0.088 122 / 0.12), var(--tight-shadow);
}

.contact-map-card .map-panel,
.contact-map-card .tourist-map {
  min-height: clamp(19rem, 34vw, 22rem);
}

.contact-map-card .map-panel {
  position: relative;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tourist-map-toolbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.72rem;
  background: var(--walnut-deep);
  color: var(--paper);
}

.tourist-map-toolbar > span {
  padding-inline: 0.25rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tourist-route-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid oklch(0.985 0.009 92 / 0.16);
  border-radius: var(--radius);
  background: oklch(0.985 0.009 92 / 0.16);
}

.tourist-route-tab {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: oklch(0.29 0.072 70 / 0.95);
  color: var(--paper);
  padding: 0.5rem 0.62rem;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.24s var(--ease), color 0.24s var(--ease);
}

.tourist-route-tab strong,
.tourist-route-tab small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tourist-route-tab strong {
  font-size: 0.76rem;
  line-height: 1.1;
}

.tourist-route-tab small {
  color: oklch(0.925 0.038 108 / 0.76);
  font-size: 0.66rem;
  font-weight: 700;
}

.tourist-route-tab.active {
  background: var(--saffron);
  color: var(--walnut-deep);
}

.tourist-route-tab.active small {
  color: oklch(0.29 0.072 70 / 0.72);
}

.tourist-route-tab:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid var(--blue);
  outline-offset: -3px;
}

.tourist-map {
  width: 100%;
  height: 100%;
  background: var(--paper-olive);
}

.tourist-map-tiles {
  filter: saturate(0.72) contrast(0.96) brightness(1.04) sepia(0.06);
}

.tourist-map-status {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 500;
  display: none;
  width: min(78%, 22rem);
  transform: translate(-50%, -50%);
  border: 1px solid oklch(0.29 0.072 70 / 0.16);
  border-radius: var(--radius);
  background: var(--cream-white);
  color: var(--walnut-deep);
  box-shadow: var(--tight-shadow);
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  font-weight: 750;
  text-align: center;
}

.tourist-map-status.show {
  display: block;
}

.tourist-map-fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 0.6rem;
  background: var(--paper-olive);
  color: var(--walnut-deep);
  padding: 2rem;
  text-align: center;
}

.tourist-map-fallback a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.tourist-map-dock {
  display: none;
}

.tourist-map-locate {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 650;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid oklch(0.29 0.072 70 / 0.18);
  border-radius: var(--radius);
  background: var(--cream-white);
  color: var(--blue);
  box-shadow: 0 12px 26px oklch(0.245 0.047 74 / 0.16), 4px 4px 0 oklch(0.34 0.145 280 / 0.12);
  cursor: pointer;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), color 0.22s var(--ease), background-color 0.22s var(--ease);
}

.tourist-map-locate svg {
  width: 1.2rem;
  height: 1.2rem;
}

.tourist-map-locate.is-locating svg {
  animation: tourist-locate 0.9s linear infinite;
}

.tourist-map-locate:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.contact-map-card .contact-map-overlay {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 650;
  max-width: calc(100% - 1.8rem);
  border-color: oklch(0.64 0.15 78 / 0.38);
  background: var(--saffron);
  color: var(--walnut-deep);
  box-shadow: 0 12px 26px oklch(0.245 0.047 74 / 0.16), 5px 5px 0 oklch(0.19 0.055 71 / 0.12);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), background-color 0.22s var(--ease);
}

.contact-map-card .button svg {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.22s var(--ease);
}

.tourist-marker-shell {
  border: 0;
  background: transparent;
}

.tourist-marker {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--paper);
  border-radius: 50% 50% 50% 9px;
  color: var(--paper);
  background: var(--olive);
  box-shadow: 0 8px 20px oklch(0.19 0.055 71 / 0.34);
  transform: rotate(-45deg);
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease);
}

.tourist-marker > * {
  transform: rotate(45deg);
}

.tourist-marker svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tourist-marker-riad {
  width: 62px;
  height: 62px;
  border-width: 3px;
  border-radius: 50%;
  background: var(--cream-white);
  box-shadow: 0 12px 28px oklch(0.19 0.055 71 / 0.38), 0 0 0 5px oklch(0.79 0.165 88 / 0.78), 0 0 0 8px oklch(0.985 0.009 92 / 0.82);
  padding: 8px;
  transform: none;
}

.tourist-marker-riad::before {
  content: "";
  position: absolute;
  inset: -9px;
  z-index: -1;
  border: 2px solid oklch(0.79 0.165 88 / 0.6);
  border-radius: 50%;
  opacity: 0;
}

.tourist-map.is-ready .tourist-marker-riad::before {
  animation: tourist-destination-pulse 1.7s var(--ease) 2;
}

.tourist-marker-riad > * {
  transform: none;
}

.tourist-marker-riad img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tourist-marker-parking {
  color: var(--paper);
  background: var(--blue);
}

.tourist-marker-landmark {
  color: var(--walnut-deep);
  background: var(--saffron);
}

.tourist-marker-palace {
  color: var(--walnut-deep);
  background: var(--saffron);
  border-color: var(--cream-white);
  box-shadow: 0 8px 20px oklch(0.19 0.055 71 / 0.34), 0 0 0 4px oklch(0.79 0.165 88 / 0.28);
}

.tourist-marker-palace svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.7;
}

.tourist-marker-parking strong {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1;
}

.tourist-user-location {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 3px solid var(--cream-white);
  border-radius: 50%;
  background: oklch(0.34 0.145 280 / 0.25);
  box-shadow: 0 5px 14px oklch(0.19 0.055 71 / 0.28);
}

.tourist-user-location span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.tourist-walking-route {
  filter: drop-shadow(0 2px 2px oklch(0.19 0.055 71 / 0.22));
  transition: stroke 0.28s var(--ease), stroke-width 0.28s var(--ease), stroke-opacity 0.28s var(--ease);
}

.tourist-walking-route.is-active {
  stroke-dasharray: 12 8;
  animation: tourist-route-flow 1.15s linear infinite;
}

.leaflet-marker-icon:focus-visible .tourist-marker {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.tourist-leaflet-popup .leaflet-popup-content-wrapper {
  overflow: hidden;
  border: 1px solid oklch(0.29 0.072 70 / 0.16);
  border-radius: var(--radius);
  background: var(--cream-white);
  color: var(--ink);
  box-shadow: 0 18px 42px oklch(0.19 0.055 71 / 0.24);
}

.tourist-leaflet-popup .leaflet-popup-content {
  margin: 0;
}

.tourist-leaflet-popup .leaflet-popup-tip {
  background: var(--cream-white);
}

.tourist-map-panel .tourist-leaflet-popup .leaflet-popup-close-button {
  top: 0.42rem;
  right: 0.42rem;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--walnut-deep);
  font-size: 1.3rem;
}

.tourist-map-popup {
  display: grid;
  gap: 0.38rem;
  padding: 1rem;
}

.tourist-map-popup > span {
  width: fit-content;
  border-radius: 999px;
  background: var(--paper-olive);
  color: var(--olive);
  padding: 0.34rem 0.5rem;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tourist-map-popup > strong {
  max-width: calc(100% - 1.9rem);
  color: var(--walnut-deep);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.15;
}

.tourist-map-popup p {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.45;
}

.tourist-map-route-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 0.25rem;
  border-radius: var(--radius);
  background: var(--saffron);
  color: var(--walnut-deep);
  padding: 0.68rem 0.82rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  transition: background-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.tourist-map-panel .tourist-map-route-link {
  color: var(--walnut-deep);
}

.tourist-map-route-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.tourist-map-panel .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid oklch(0.29 0.072 70 / 0.18);
  border-radius: var(--radius);
  box-shadow: var(--tight-shadow);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}

.tourist-map-panel .leaflet-control-zoom a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-color: oklch(0.29 0.072 70 / 0.12);
  background: var(--cream-white);
  color: var(--walnut-deep);
}

.tourist-map-panel .leaflet-control-attribution {
  background: oklch(0.985 0.009 92 / 0.9);
  color: var(--muted);
  font-size: 0.58rem;
}

.tourist-map-panel .leaflet-control-attribution a {
  color: var(--walnut-deep);
}

@keyframes tourist-route-flow {
  to { stroke-dashoffset: -20; }
}

@keyframes tourist-destination-pulse {
  0% { opacity: 0.72; transform: scale(0.82); }
  100% { opacity: 0; transform: scale(1.42); }
}

@keyframes tourist-locate {
  to { transform: rotate(360deg); }
}

.contact-info-panel {
  display: grid;
  align-self: stretch;
  align-content: stretch;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  border: 1px solid oklch(0.29 0.072 70 / 0.18);
  border-radius: var(--radius);
  background: var(--cream-white);
  box-shadow: 8px 8px 0 oklch(0.42 0.088 122 / 0.1);
}

.contact-info-row {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.contact-info-row + .contact-info-row {
  border-top: 1px solid oklch(0.29 0.072 70 / 0.12);
}

.contact-info-row > span {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: var(--radius);
  color: var(--olive);
  background: var(--paper-olive);
}

.contact-info-row svg {
  width: 1.18rem;
  height: 1.18rem;
}

.contact-info-row strong {
  display: block;
  color: var(--walnut-deep);
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.05;
  margin-bottom: 0.28rem;
}

.contact-info-row p,
.contact-info-row a {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-page .floating-whatsapp {
  display: none;
}

@media (hover: hover) {
  .contact-hero-note:hover {
    transform: translateY(-2px);
    border-color: var(--saffron);
    background:
      linear-gradient(90deg, oklch(0.79 0.165 88 / 0.22), oklch(0.42 0.088 122 / 0.16) 74%),
      oklch(0.19 0.055 71 / 0.8);
    box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.22);
  }

  .contact-hero-note:hover em {
    background: oklch(0.84 0.17 87);
  }

  .contact-house-figure:hover img {
    transform: scale(1.035);
    filter: saturate(1.05);
  }

  .contact-map-card .button:hover svg {
    transform: translate(2px, -2px);
  }

  .tourist-route-tab:not(.active):hover {
    background: var(--olive);
  }

  .leaflet-marker-icon:hover .tourist-marker {
    box-shadow: 0 12px 25px oklch(0.19 0.055 71 / 0.4);
    transform: translateY(-2px) rotate(-45deg);
  }

  .leaflet-marker-icon:hover .tourist-marker-riad {
    box-shadow: 0 15px 32px oklch(0.19 0.055 71 / 0.4), 0 0 0 5px oklch(0.79 0.165 88 / 0.86), 0 0 0 8px oklch(0.985 0.009 92 / 0.9);
    transform: translateY(-3px) scale(1.035);
  }

  .tourist-map-locate:hover {
    color: var(--paper);
    background: var(--blue);
    transform: translateY(-2px);
  }

  .tourist-map-route-link:hover {
    transform: translateY(-1px);
    background: oklch(0.84 0.17 87);
  }

}

@media (max-height: 780px) and (min-width: 1121px) {
  .contact-desk-section {
    padding-block: 0.9rem;
  }

  .contact-page .page-title {
    font-size: clamp(2.5rem, 3.05vw, 3.65rem);
  }

  .contact-intro .lead {
    margin-top: 0.9rem;
  }

  .contact-hero-note,
  .contact-visit-types {
    margin-top: 0.9rem;
  }

  .contact-booking-panel {
    padding: 1.12rem;
  }

  .booking-panel-head {
    margin-bottom: 0.9rem;
    padding-bottom: 0.82rem;
  }

  .contact-booking-panel .field textarea {
    min-height: 96px;
  }

  .contact-house-figure {
    height: clamp(18rem, 52vh, 29rem);
  }
}

@media (max-width: 1120px) {
  .contact-desk-section {
    align-items: start;
    background:
      linear-gradient(142deg, var(--walnut-deep) 0 48%, var(--paper) 48% 74%, var(--paper-olive) 74% 100%);
  }

  .contact-desk-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
    grid-template-areas:
      "intro form"
      "media form";
    align-items: center;
  }

  .contact-booking-panel {
    width: 100%;
    max-width: none;
  }

  .contact-house-figure {
    height: clamp(18rem, 34vh, 25rem);
  }

  .contact-essentials-head,
  .contact-essentials-grid {
    grid-template-columns: 1fr;
  }

  .contact-essentials-head {
    grid-template-areas:
      "eyebrow"
      "title"
      "copy";
    align-items: start;
  }
}

@media (max-width: 820px) {
  .contact-desk-section {
    align-items: start;
    overflow: visible;
    padding-block: 0 2.6rem;
    background:
      linear-gradient(180deg, var(--paper) 0 72%, var(--paper-olive) 100%);
  }

  .contact-desk-section::before {
    display: none;
  }

  .contact-desk-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "form"
      "media";
    gap: 0;
  }

  .contact-page .page-title {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 0.98;
  }

  .contact-page .page-title span:nth-child(2) {
    display: block;
    white-space: nowrap;
  }

  .contact-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-inline: -16px;
    overflow: hidden;
    border-bottom: 1px solid oklch(0.79 0.165 88 / 0.34);
    background:
      linear-gradient(90deg, oklch(0.985 0.009 92 / 0.12) 1px, transparent 1px),
      linear-gradient(180deg, oklch(0.985 0.009 92 / 0.1) 1px, transparent 1px),
      linear-gradient(150deg, var(--walnut-deep) 0 64%, oklch(0.25 0.07 72) 64% 100%);
    background-size: 56px 56px, 56px 56px, auto;
    box-shadow: inset 0 -7px 0 oklch(0.79 0.165 88 / 0.16);
    padding: 2.25rem 16px 1.55rem;
  }

  .contact-intro .lead {
    max-width: 35rem;
    margin-top: 1.08rem;
  }

  .contact-visit-types {
    order: 5;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.58rem;
    margin-top: 0.96rem;
    border: 0;
    background: transparent;
  }

  .contact-hero-note {
    order: 4;
    display: inline-grid;
    grid-template-columns: 2.5rem minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    max-width: 23rem;
    margin-top: 1.22rem;
    gap: 0.62rem;
    border-color: oklch(0.985 0.009 92 / 0.2);
    background: var(--saffron);
    box-shadow: 7px 7px 0 oklch(0.985 0.009 92 / 0.13);
    color: var(--walnut-deep);
    padding: 0.52rem;
  }

  .contact-hero-note svg {
    grid-row: auto;
    align-self: center;
    width: 2.5rem;
    height: 2.5rem;
    border-color: oklch(0.19 0.055 71 / 0.16);
    background: var(--walnut-deep);
    color: var(--saffron);
    padding: 0.54rem;
  }

  .contact-hero-note span {
    display: block;
    min-width: 0;
  }

  .contact-hero-note strong {
    color: var(--walnut-deep);
    font-size: clamp(0.95rem, 4.25vw, 1.06rem);
    line-height: 1;
  }

  .contact-hero-note small {
    display: none;
  }

  .contact-hero-note em {
    grid-column: auto;
    justify-self: end;
    align-items: center;
    align-self: center;
    min-height: 36px;
    background: var(--walnut-deep);
    color: var(--paper);
    box-shadow: none;
    padding: 0.48rem 0.62rem;
    font-size: 0.68rem;
  }

  .contact-visit-types span {
    min-height: 46px;
    justify-content: center;
    border: 1px solid oklch(0.985 0.009 92 / 0.18);
    border-radius: var(--radius);
    background: oklch(0.985 0.009 92 / 0.075);
    padding: 0.58rem 0.62rem;
  }

  .contact-visit-types span:nth-child(odd) {
    border-left: 1px solid oklch(0.985 0.009 92 / 0.18);
  }

  .contact-visit-types span:nth-child(n + 3) {
    border-top: 1px solid oklch(0.985 0.009 92 / 0.18);
  }

  .contact-booking-panel {
    margin-top: 1.18rem;
    padding: 0.9rem;
    box-shadow: 7px 7px 0 oklch(0.42 0.088 122 / 0.14), var(--tight-shadow);
  }

  .contact-booking-panel .form-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
    gap: 0.68rem;
  }

  .contact-booking-panel .field:nth-child(n + 5),
  .contact-booking-panel .field.full {
    grid-column: 1 / -1;
  }

  .contact-booking-panel .field {
    gap: 0.3rem;
  }

  .contact-booking-panel .field label {
    font-size: 0.78rem;
  }

  .contact-booking-panel .field input,
  .contact-booking-panel .field textarea,
  .contact-booking-panel .field select {
    min-height: 45px;
    padding: 0.64rem 0.72rem;
  }

  .contact-booking-panel .field textarea {
    min-height: 86px;
  }

  .booking-panel-head {
    gap: 0.34rem;
    margin-bottom: 0.72rem;
    padding-bottom: 0.68rem;
  }

  .booking-panel-head h2 {
    font-size: clamp(1.48rem, 7vw, 1.82rem);
  }

  .booking-panel-head p {
    display: none;
  }

  .contact-booking-panel .helper,
  .contact-booking-panel .error-text:empty {
    display: none;
  }

  .contact-booking-panel .error-text {
    min-height: 0;
    font-size: 0.72rem;
  }

  .contact-booking-panel .button[type="submit"] {
    min-height: 47px;
    margin-top: 0.76rem;
  }

  .booking-panel-head h2,
  .contact-essentials-head h2 {
    max-width: none;
  }

  .contact-house-figure {
    height: 18rem;
  }

  .contact-house-figure figcaption {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    padding: 0.68rem 0.72rem;
  }

  .contact-map-card .map-panel,
  .contact-map-card .tourist-map {
    min-height: clamp(22rem, 56svh, 27rem);
  }

  .contact-map-card .contact-map-overlay {
    right: 0.7rem;
    left: auto;
    width: fit-content;
    max-width: calc(100% - 1.4rem);
  }

  .tourist-map-panel.has-open-popup .contact-map-overlay,
  .tourist-map-panel.has-open-popup .tourist-map-locate,
  .tourist-map-panel.has-open-popup .leaflet-control-zoom {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .tourist-map-panel.has-open-popup .leaflet-control-zoom {
    transform: translateY(8px);
  }

  .tourist-map-locate {
    top: 0.7rem;
    left: 0.7rem;
    width: 44px;
    height: 44px;
  }

  .tourist-map-toolbar {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.68rem;
  }

  .tourist-map-toolbar > span {
    padding-inline: 0.1rem;
  }

  .tourist-route-tabs {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .tourist-route-tabs::-webkit-scrollbar {
    display: none;
  }

  .tourist-route-tab {
    flex: 0 0 9.2rem;
    scroll-snap-align: start;
  }

  .tourist-map-panel .tourist-leaflet-popup {
    display: none;
  }

  .tourist-map-dock {
    position: absolute;
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    z-index: 700;
    display: grid;
    gap: 0.28rem;
    border: 1px solid oklch(0.29 0.072 70 / 0.16);
    border-radius: var(--radius);
    background: var(--cream-white);
    color: var(--ink);
    box-shadow: 0 14px 34px oklch(0.19 0.055 71 / 0.28), 5px 5px 0 oklch(0.79 0.165 88 / 0.2);
    padding: 0.82rem;
  }

  .tourist-map-dock[hidden] {
    display: none;
  }

  .tourist-map-dock-close {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--paper-olive);
    color: var(--walnut-deep);
    cursor: pointer;
  }

  .tourist-map-dock-close svg {
    width: 1rem;
    height: 1rem;
  }

  .tourist-map-dock-close:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 2px;
  }

  .tourist-map-dock > span {
    width: fit-content;
    max-width: calc(100% - 2.6rem);
    border-radius: 999px;
    background: var(--paper-olive);
    color: var(--olive);
    padding: 0.32rem 0.48rem;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .tourist-map-dock > strong {
    max-width: calc(100% - 2.4rem);
    color: var(--walnut-deep);
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.14;
  }

  .tourist-map-dock > p {
    max-width: calc(100% - 1.6rem);
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.42;
  }

  .tourist-map-dock .tourist-map-route-link {
    margin-top: 0.2rem;
  }

  .contact-info-panel {
    align-self: start;
    align-content: start;
    grid-template-rows: none;
  }

  .contact-info-row {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.72rem;
    align-items: start;
  }

  .contact-info-row > span {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.quote-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 4.2rem);
  color: var(--paper);
  background:
    linear-gradient(110deg, var(--walnut-deep) 0 50%, var(--blue) 50% 100%);
  box-shadow: 14px 14px 0 oklch(0.79 0.165 88 / 0.35);
}

.quote-band p {
  max-width: 40ch;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.12;
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.58fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.policy-stack {
  display: grid;
  gap: 1rem;
}

.policy-panel {
  border: 1px solid oklch(0.29 0.072 70 / 0.18);
  border-radius: var(--radius);
  background: var(--cream-white);
  padding: clamp(1.3rem, 3vw, 2.35rem);
  box-shadow: 8px 8px 0 oklch(0.55 0.112 86 / 0.12);
}

.policy-panel:nth-child(even) {
  background: var(--paper-olive);
  box-shadow: 8px 8px 0 oklch(0.42 0.088 122 / 0.13);
}

.policy-panel h2 {
  max-width: 18ch;
  font-size: 2.25rem;
}

.policy-panel p {
  max-width: 72ch;
  margin-top: 0.9rem;
}

.policy-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 1rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--walnut-deep);
  color: var(--paper);
  padding: clamp(4rem, 7vw, 6.2rem) 0 2rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--walnut) 0 25%, var(--olive) 25% 50%, var(--saffron) 50% 75%, var(--blue) 75% 100%);
}

.footer-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.62fr);
  gap: clamp(2.5rem, 6vw, 5.8rem);
  align-items: start;
}

.footer-brand-block {
  display: grid;
  gap: 1.15rem;
  max-width: 520px;
}

.site-footer .footer-brand-block {
  text-align: center;
  justify-items: center;
}

.footer-intro {
  display: grid;
  gap: 0.55rem;
  max-width: 42ch;
}

.site-footer .footer-intro {
  justify-items: center;
}

.footer-kicker {
  margin: 0;
  color: var(--saffron) !important;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(285px, 100%);
  cursor: pointer;
  border: 1px solid oklch(0.985 0.009 92 / 0.24);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1rem;
  box-shadow: 12px 12px 0 oklch(0.79 0.165 88 / 0.22);
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease), border-color 0.26s var(--ease);
}

.footer-logo {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
}

.site-footer {
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.35rem;
}

.site-footer .footer-shell {
  gap: clamp(2rem, 4vw, 3.5rem);
}

.site-footer .footer-logo-link {
  width: min(250px, 100%);
  padding: 0.8rem;
  box-shadow: 8px 8px 0 oklch(0.79 0.165 88 / 0.22);
}

.site-footer .footer-logo {
  max-height: 125px;
}

.footer-nav-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.82fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
}

.footer-nav-block > div {
  min-width: 0;
  padding-top: 0.85rem;
  border-top: 1px solid oklch(0.985 0.009 92 / 0.18);
}

.footer-nav-block h4 {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-visit-list {
  display: grid;
  gap: 0.9rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-visit-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
}

.footer-visit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron) !important;
}

.footer-visit-icon svg {
  width: 20px;
  height: 20px;
}

.footer-visit-list li > div {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.footer-visit-label {
  color: var(--saffron) !important;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-visit-list a {
  overflow-wrap: anywhere;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: oklch(0.955 0.028 88 / 0.74);
}

.site-footer h3,
.site-footer h4 {
  color: var(--paper);
}

.footer-links {
  display: grid;
  gap: 0.52rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  line-height: 1.45;
}

.footer-links a {
  cursor: pointer;
  transition: color 0.22s var(--ease), transform 0.22s var(--ease);
}

.footer-links a:hover {
  color: var(--saffron);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 0.85rem;
}

.footer-social-link {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.76rem;
  cursor: pointer;
  border: 1px solid oklch(0.985 0.009 92 / 0.2);
  border-radius: var(--radius);
  color: var(--paper);
  background: oklch(0.985 0.009 92 / 0.08);
  padding: 0.48rem 0.65rem;
  justify-content: center;
  transition: transform 0.26s var(--ease), background 0.26s var(--ease), border-color 0.26s var(--ease), color 0.26s var(--ease), box-shadow 0.26s var(--ease);
}

.footer-social-link svg {
  width: 24px;
  height: 24px;
  justify-self: center;
}

.footer-social-link span {
  color: currentColor;
  font-weight: 860;
}

.footer-social-link.instagram:hover,
.footer-social-link.facebook:hover,
.footer-social-link.tiktok:hover {
  color: var(--walnut-deep);
  background: var(--saffron);
  border-color: var(--saffron);
  box-shadow: 8px 8px 0 oklch(0.985 0.009 92 / 0.16);
}

.footer-logo-link:hover,
.footer-social-link:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid oklch(0.985 0.009 92 / 0.14);
}

.footer-bottom span,
.footer-bottom a {
  font-size: 0.82rem;
}

.footer-bottom .language-switcher {
  margin-left: auto;
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer-bottom a {
  cursor: pointer;
  color: var(--paper) !important;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: oklch(0.79 0.165 88 / 0.55);
  text-underline-offset: 0.2em;
}

.footer-bottom a:hover {
  color: var(--saffron) !important;
}

.floating-whatsapp {
  --whatsapp-footer-shift: 0px;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 16;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: var(--olive);
  box-shadow: 0 18px 34px oklch(0.42 0.088 122 / 0.28);
  transform: translateY(var(--whatsapp-footer-shift));
  transition: transform 0.24s var(--ease), background 0.24s var(--ease);
}

.floating-whatsapp .button-icon {
  width: 25px;
  height: 25px;
}

.floating-whatsapp:hover {
  transform: translateY(calc(var(--whatsapp-footer-shift) - 3px));
  background: var(--walnut);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.72s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 90ms);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: hover) {
  .path-card:hover,
  .experience-card:hover,
  .service-card:hover,
  .social-card:hover {
    transform: translateY(-5px);
    border-color: oklch(0.79 0.165 88 / 0.7);
    box-shadow: var(--shadow);
  }

  .gallery-item:hover img {
    transform: scale(1.035);
  }
}

@media (min-width: 760px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3.45rem;
  }

  h3 {
    font-size: 1.68rem;
  }

  .lead {
    font-size: 1.18rem;
  }

  .quote-band p {
    font-size: 2.05rem;
  }
}

@media (min-width: 1120px) {
  .gallery-hero {
    height: calc(100dvh - 82px);
    min-height: 0;
    padding-block: clamp(1.25rem, 3vw, 2.7rem);
  }

  .gallery-hero-grid {
    height: 100%;
    min-height: 0;
  }

  .gallery-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(3.35rem, 5vw, 5rem);
    line-height: 0.96;
  }

  .gallery-stage {
    height: 100%;
    min-height: 0;
  }

  .home-hero {
    height: calc(100dvh - 82px);
    min-height: 0;
    padding-block: clamp(1.75rem, 3vw, 3rem);
  }

  .home-hero .hero-grid {
    height: 100%;
    min-height: 0;
  }

  .home-hero .hero-copy {
    max-height: 100%;
    display: grid;
    align-content: center;
  }

  .home-hero .hero-copy .lead {
    margin-top: 1rem;
    line-height: 1.55;
  }

  .home-hero .hero-actions {
    margin-top: 1.25rem;
  }

  .home-hero .proof-strip {
    margin-top: 1.25rem;
  }

  .home-hero .media-collage {
    height: 100%;
    min-height: 0;
  }

  h1 {
    font-size: 5.9rem;
  }

  h2 {
    font-size: 4.45rem;
  }

  .page-title {
    max-width: 12ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .memory-section {
    height: auto;
    min-height: 0;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 2;
  }

  .nav-shell {
    min-height: 74px;
  }

  .nav-cta {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-links {
    position: fixed;
    inset: 74px 0 0;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: max-content;
    align-content: start;
    gap: 0.2rem;
    padding: 1.25rem max(1rem, calc((100vw - 760px) / 2)) max(1.25rem, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.65rem);
    border: 0;
    border-top: 1px solid var(--cream-line);
    border-radius: 0;
    background: var(--paper);
    box-shadow: none;
    transition: transform 0.28s var(--ease), visibility 0s linear 0.28s;
  }

  .nav-links::before,
  .nav-links::after {
    content: "";
    position: absolute;
    top: 0;
    width: 12rem;
    height: 12rem;
    pointer-events: none;
    opacity: 0.048;
    background: url("patterns/Asset 2transparent.svg") top left / 12rem auto no-repeat;
  }

  .nav-links::before {
    left: 0;
  }

  .nav-links::after {
    right: 0;
    transform: scaleX(-1);
  }

  .nav-links > * {
    position: relative;
    z-index: 1;
  }

  .nav-links.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .nav-mobile-heading {
    display: grid;
    gap: 0.05rem;
    margin-bottom: 0.7rem;
    color: var(--walnut-deep);
  }

  .nav-mobile-heading > span {
    color: var(--olive);
    font-size: 0.7rem;
    font-weight: 850;
    text-transform: uppercase;
  }

  .nav-mobile-heading strong {
    font-family: var(--font-display);
    font-size: 2.35rem;
    line-height: 1;
  }

  .nav-links > a {
    display: grid;
    grid-template-columns: 2.2rem minmax(0, 1fr) 1.25rem;
    align-items: center;
    min-height: 48px;
    padding: 0.55rem 0.35rem;
    border-bottom: 1px solid var(--cream-line);
    border-radius: 0;
    color: var(--walnut-deep);
    background: transparent;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 780;
  }

  .nav-links > a:hover {
    color: var(--walnut-deep);
    background: var(--paper-warm);
  }

  .nav-links > a.active,
  .nav-links > a.active:hover {
    margin-top: 0.1rem;
    border-bottom-color: transparent;
    border-radius: var(--radius);
    color: var(--paper);
    background: var(--walnut-deep);
  }

  .nav-mobile-number {
    display: block;
    color: var(--olive);
    font-family: var(--font-body);
    font-size: 0.67rem;
    font-weight: 850;
    font-variant-numeric: tabular-nums;
  }

  .nav-links > a.active .nav-mobile-number {
    color: var(--saffron);
  }

  .nav-mobile-arrow {
    display: grid;
    place-items: center;
  }

  .nav-mobile-arrow svg {
    width: 1rem;
    height: 1rem;
  }

  .nav-mobile-visit {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .nav-mobile-actions {
    display: grid;
    align-content: stretch;
    gap: 0.65rem;
    min-width: 218px;
  }

  .language-switcher-mobile {
    width: 100%;
    justify-content: center;
  }

  .language-switcher-mobile select {
    width: 100%;
    max-width: none;
  }

  .nav-mobile-photo {
    position: relative;
    min-height: 104px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--cream-line);
    border-radius: var(--radius);
    background: var(--walnut);
  }

  .nav-mobile-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 43%;
  }

  .nav-mobile-photo figcaption {
    position: absolute;
    left: 0.55rem;
    bottom: 0.55rem;
    display: grid;
    gap: 0.08rem;
    max-width: calc(100% - 1.1rem);
    padding: 0.42rem 0.55rem;
    border-radius: 3px;
    color: var(--paper);
    background: oklch(0.205 0.04 70 / 0.92);
  }

  .nav-mobile-photo figcaption strong {
    font-family: var(--font-display);
    font-size: 0.76rem;
    line-height: 1.1;
  }

  .nav-mobile-photo figcaption span {
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .nav-mobile-reserve {
    align-self: stretch;
    min-width: 218px;
    justify-content: center;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .visit-layout,
  .memory-layout,
  .social-band,
  .school-social-layout,
  .image-story,
  .policy-grid,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .gallery-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gallery-hero-copy {
    max-width: 46rem;
  }

  .gallery-stage {
    width: min(100%, 760px);
    min-height: 540px;
    margin-inline: auto;
  }

  .gallery-section-head {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .visit-copy h2,
  .visit-copy .lead {
    max-width: 44rem;
  }

  .visit-board {
    min-height: auto;
    grid-auto-rows: minmax(12rem, auto);
  }

  .visit-card-feature,
  .visit-card-workshop,
  .visit-card-school,
  .visit-card-experience {
    grid-column: span 3;
    grid-row: auto;
  }

  .visit-card-feature {
    grid-column: 1 / -1;
    min-height: 24rem;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-mosaic-rooftop,
  .gallery-mosaic-courtyard,
  .gallery-mosaic-craft,
  .gallery-mosaic-table,
  .gallery-mosaic-salon {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-mosaic-rooftop,
  .gallery-mosaic-courtyard {
    grid-column: span 2;
    grid-row: span 2;
  }

  .school-social-header {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .school-social-follow {
    justify-self: start;
  }

  .memory-layout {
    align-items: start;
    height: auto;
    min-height: auto;
    padding-block: 4rem;
  }

  .memory-copy h2,
  .memory-copy .lead {
    max-width: 44rem;
  }

  .memory-wall {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
    height: auto;
    max-height: none;
  }

  .school-social-reel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    background: var(--paper);
  }

  .hero-copy {
    padding-left: 0;
  }

  .media-collage {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 1rem;
  }

  .media-frame,
  .media-frame.main,
  .media-frame.floating.one,
  .media-frame.floating.two,
  .booking-note {
    position: relative;
    inset: auto;
    right: auto;
    bottom: auto;
    width: auto;
    aspect-ratio: auto;
  }

  .media-frame.main {
    grid-row: span 2;
    min-height: 520px;
  }

  .media-frame.floating.one,
  .media-frame.floating.two {
    min-height: 250px;
  }

  .booking-note {
    grid-column: 1 / -1;
  }

  .path-grid,
  .experience-grid,
  .workshop-grid,
  .audience-row,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .path-card,
  .path-card.large,
  .experience-card,
  .experience-card.large,
  .service-card,
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(7),
  .service-card:nth-child(8),
  .audience-row .feature-band,
  .audience-row .feature-band.dark,
  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .quote-band {
    background: var(--walnut-deep);
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-nav-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-aside {
    position: static;
  }
}

@media (max-width: 700px) {
  .container,
  .nav-shell {
    width: min(100% - 24px, 1220px);
  }

  .nav-links {
    padding-inline: 1.75rem;
  }

  .brand {
    min-width: 0;
    grid-template-columns: 44px 1fr;
  }

  .brand img {
    width: 44px;
    height: 44px;
    padding: 5px;
  }

  .brand span span {
    display: none;
  }

  .nav-mobile-heading strong {
    font-size: 2.15rem;
  }

  .nav-links::before,
  .nav-links::after {
    top: 0.75rem;
    width: 10rem;
    height: 10rem;
    opacity: 0.22;
    background-size: 10rem auto;
  }

  .nav-links::before {
    left: 0.75rem;
  }

  .nav-links::after {
    right: 0.75rem;
  }

  .nav-mobile-heading {
    justify-self: center;
    width: fit-content;
    max-width: calc(100% - 4rem);
    margin: 0.65rem auto 1rem;
    padding: 0.2rem 0.8rem 0.35rem;
    text-align: center;
    background: var(--paper);
  }

  .nav-mobile-visit {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-top: 0.85rem;
  }

  .nav-mobile-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .nav-mobile-photo {
    min-height: 98px;
  }

  .nav-mobile-reserve {
    min-width: 0;
    min-height: 50px;
  }

  .language-switcher {
    min-height: 44px;
    padding-inline: 0.55rem;
  }

  .language-switcher select {
    max-width: 6.2rem;
    font-size: 0.74rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  h1 {
    font-size: 3rem;
    max-width: 10ch;
  }

  .home-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
    max-width: none;
    line-height: 0.96;
  }

  .home-hero {
    padding-block: 2.35rem 2.8rem;
  }

  .home-hero .hero-grid {
    gap: 1.5rem;
  }

  .home-hero .hero-copy {
    padding-left: 0;
    display: block;
  }

  .home-hero .hero-copy .lead {
    max-width: 36ch;
    margin-top: 0.9rem;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .home-hero .hero-actions {
    display: grid;
    gap: 0.55rem;
    margin-top: 1.25rem;
  }

  .home-hero .hero-actions .button {
    width: 100%;
  }

  .home-hero .hero-actions .button.secondary {
    width: 100%;
    justify-self: stretch;
    border: 1px solid oklch(0.29 0.072 70 / 0.3);
    background: var(--paper);
    color: var(--walnut);
    box-shadow: none;
    padding-block: 0.8rem;
  }

  .home-hero .proof-strip {
    display: none;
  }

  .home-hero .proof-card {
    min-height: 72px;
    padding: 0.7rem;
  }

  .home-hero .proof-card strong {
    font-size: 0.98rem;
  }

  .home-hero .proof-card span {
    max-width: none;
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .reviews-heading {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .reviews-heading h2 {
    max-width: 100%;
  }

  .reviews-heading h2 span {
    white-space: normal;
  }

  .reviews-rating {
    display: inline-grid;
    grid-template-columns: auto auto;
    width: fit-content;
    align-items: center;
    column-gap: 0.52rem;
    row-gap: 0.06rem;
    padding: 0.48rem 0.72rem 0.48rem 0.5rem;
    border-radius: 999px;
    box-shadow: 5px 5px 0 oklch(0.79 0.165 88 / 0.16);
  }

  .reviews-rating strong {
    display: grid;
    grid-row: span 2;
    place-items: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    color: var(--walnut-deep);
    background: var(--saffron);
    font-size: 1.08rem;
  }

  .reviews-rating .reviews-stars {
    font-size: 0.64rem;
    letter-spacing: 0.02em;
  }

  .reviews-rating small {
    font-size: 0.65rem;
    line-height: 1;
  }

  .reviews-track {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    margin-inline: -1rem;
    padding: 0.2rem 1rem 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .reviews-control {
    display: none;
  }

  .reviews-carousel-controls {
    margin-top: 0.25rem;
  }

  .reviews-indicators {
    display: flex;
    gap: 0.12rem;
    padding: 0.34rem 0.4rem;
  }

  .reviews-indicators::before {
    right: 1.12rem;
    left: 1.12rem;
  }

  .reviews-indicator {
    width: 1.72rem;
    height: 1.72rem;
  }

  .reviews-indicator::before {
    width: 0.58rem;
    height: 0.58rem;
  }

  .reviews-indicator.active::before {
    width: 0.82rem;
    height: 0.82rem;
  }

  .reviews-indicator[data-review-slide="3"],
  .reviews-indicator[data-review-slide="4"] {
    display: grid;
  }

  .reviews-track::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 min(86vw, 22rem);
    min-height: 225px;
    scroll-snap-align: start;
    box-shadow: 5px 5px 0 oklch(0.79 0.165 88 / 0.16);
  }

  .reviews-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 8rem;
    margin-top: 0.35rem;
  }

  .reviews-actions .button.secondary {
    display: none;
  }

  .reviews-actions .button {
    width: min(100%, 19rem);
    margin-inline: auto;
  }

  .home-hero .media-collage {
    display: block;
    min-height: 0;
  }

  .home-hero .media-frame.main {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .home-hero .media-frame.floating.one,
  .home-hero .media-frame.floating.two {
    display: none;
  }

  .home-hero .booking-note {
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
    width: auto;
    min-height: 0;
    padding: 0.85rem;
  }

  .home-hero .booking-note strong {
    margin-bottom: 0.3rem;
    font-size: 1.18rem;
  }

  .home-hero .booking-note p {
    font-size: 0.76rem;
    line-height: 1.34;
  }

  .gallery-hero {
    padding-block: 3rem;
  }

  .gallery-hero-copy h1 {
    max-width: 10ch;
  }

  .gallery-stage {
    min-height: 430px;
  }

  .gallery-stage-main {
    inset: 0 11% 8% 0;
  }

  .gallery-stage-detail {
    width: 48%;
    height: 42%;
  }

  .gallery-stage-tag {
    top: 3%;
    right: 2%;
    font-size: 0.64rem;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(250px, 68vw);
  }

  .gallery-mosaic-rooftop,
  .gallery-mosaic-courtyard,
  .gallery-mosaic-craft,
  .gallery-mosaic-table,
  .gallery-mosaic-salon {
    grid-column: auto;
    grid-row: auto;
  }

  .social-section {
    background:
      linear-gradient(180deg, var(--walnut-deep) 0 72%, var(--olive) 72% 100%);
  }

  .social-band {
    gap: 1.2rem;
  }

  .social-band-head {
    max-width: 100%;
  }

  .social-band h2 {
    max-width: 15ch;
    font-size: clamp(2rem, 8.5vw, 2.7rem);
    line-height: 0.98;
  }

  .social-title-line {
    white-space: normal;
  }

  .social-band .lead {
    max-width: 31ch;
    margin-top: 0.7rem;
    font-size: 0.98rem;
    line-height: 1.5;
    color: oklch(0.955 0.028 88 / 0.86);
  }

  .social-grid {
    gap: 0.72rem;
  }

  .social-card {
    min-height: 0;
    align-content: start;
    gap: 0.68rem;
    padding: 0.92rem 1rem;
    box-shadow: 7px 7px 0 oklch(0.19 0.055 71 / 0.22);
  }

  .social-card.instagram {
    min-height: 7.2rem;
  }

  .social-card.tiktok {
    min-height: 6.4rem;
    border-color: oklch(0.955 0.028 88 / 0.26);
    background: oklch(0.34 0.145 280 / 0.92);
  }

  .social-card-top {
    gap: 0.62rem;
    font-size: 0.72rem;
  }

  .social-card-top > svg:first-child {
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    border-radius: 5px;
    padding: 0.42rem;
  }

  .social-card.instagram .social-card-top > svg:first-child {
    background: var(--walnut-deep);
    color: var(--saffron);
  }

  .social-card.tiktok .social-card-top > svg:first-child {
    background: var(--paper);
    color: var(--blue);
  }

  .social-card strong {
    margin-top: 0.2rem;
    font-size: 1rem;
  }

  .social-card small {
    max-width: 32ch;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .section-actions,
  .proof-strip,
  .form-grid,
  .footer-shell,
  .footer-nav-block,
  .policy-grid,
  .path-grid,
  .path-grid.compact,
  .visit-board,
  .experience-grid,
  .workshop-grid,
  .audience-row,
  .gallery-grid,
  .social-grid,
  .school-social-reel,
  .media-collage {
    grid-template-columns: 1fr;
  }

  .visit-section {
    padding-block: 1.85rem 1.35rem;
  }

  .visit-section::before {
    opacity: 0.28;
    mask-image: linear-gradient(to bottom, black 0 52%, transparent 100%);
  }

  .visit-layout {
    gap: 0.95rem;
  }

  .visit-copy h2 {
    max-width: 13.5ch;
  }

  .visit-copy .lead {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .visit-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.54rem;
    margin-top: 0.95rem;
  }

  .visit-actions .button {
    width: 100%;
  }

  .visit-board {
    display: flex;
    gap: 0.74rem;
    min-height: 0;
    margin-inline: -12px;
    padding: 0 12px 0.55rem;
    overflow-x: auto;
    scroll-padding-inline: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .visit-board::-webkit-scrollbar {
    display: none;
  }

  .visit-card,
  .visit-card-feature,
  .visit-card-workshop,
  .visit-card-school,
  .visit-card-experience {
    flex: 0 0 min(82vw, 20.5rem);
    grid-column: auto;
    grid-row: auto;
    min-height: 16.8rem;
    scroll-snap-align: start;
    box-shadow: 6px 6px 0 oklch(0.79 0.165 88 / 0.16);
  }

  .visit-card-feature {
    flex-basis: min(88vw, 22rem);
    min-height: 18.8rem;
  }

  .visit-number {
    top: 0.72rem;
    left: 0.72rem;
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.88rem;
  }

  .visit-card-copy {
    padding: 0.95rem;
  }

  .visit-card:not(.visit-card-feature) .visit-card-copy {
    padding: 3.25rem 0.92rem 0.92rem;
  }

  .visit-card-copy h3,
  .visit-card-feature .visit-card-copy h3 {
    max-width: 13.5ch;
    font-size: clamp(1.35rem, 6.3vw, 1.9rem);
  }

  .visit-card-copy p {
    font-size: 0.82rem;
    line-height: 1.36;
  }

  .hero-actions,
  .section-actions,
  .map-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .reviews-section .reviews-actions > .button.primary {
    display: inline-flex;
  }

  .footer-logo-link {
    width: min(260px, 100%);
  }

  .site-footer .footer-logo-link {
    margin-inline: auto;
  }

  .site-footer .footer-brand-block {
    text-align: center;
    justify-items: center;
  }

  .site-footer .footer-intro {
    justify-items: center;
    max-width: 34ch;
  }

}

/* Schools page: an image-led visit story for teachers, children and families. */
.schools-page .schools-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background: var(--walnut-deep);
  padding-block: clamp(3rem, 5vw, 4.8rem);
}

.schools-page .eyebrow::before {
  background: var(--blue);
}

.schools-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(30rem, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.schools-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.schools-hero .eyebrow,
.schools-route-section .eyebrow,
.schools-final-cta .eyebrow {
  color: var(--saffron);
}

.schools-hero .page-title {
  max-width: 10ch;
  margin-top: 0.62rem;
  color: var(--paper);
  font-size: clamp(3.4rem, 5.5vw, 5.8rem);
  line-height: 0.94;
  text-wrap: balance;
}

.schools-hero .lead {
  max-width: 43ch;
  margin-top: 1.1rem;
  color: oklch(0.955 0.028 88 / 0.9);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.schools-mobile-break {
  display: none;
}

.schools-hero-actions {
  margin-top: 1.5rem;
}

.schools-hero-grid,
.schools-hero-copy,
.schools-hero-actions {
  min-width: 0;
}

.schools-hero-actions .button > svg,
.schools-final-cta .button > svg,
.text-link > svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
}

.schools-hero .button.ghost {
  border-color: oklch(0.955 0.028 88 / 0.34);
  color: var(--paper);
  background: transparent;
}

.schools-hero .button.ghost:hover,
.schools-hero .button.ghost:focus-visible {
  border-color: var(--saffron);
  color: var(--walnut-deep);
  background: var(--saffron);
}

.schools-hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 40rem;
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
  padding-top: 1rem;
  border-top: 1px solid oklch(0.955 0.028 88 / 0.28);
}

.schools-hero-notes span {
  display: grid;
  gap: 0.24rem;
  min-width: 0;
  color: oklch(0.955 0.028 88 / 0.88);
  font-size: 0.75rem;
  line-height: 1.35;
}

.schools-hero-notes strong {
  color: var(--saffron);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schools-hero-art {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(0, 0.72fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  height: clamp(24rem, 34vw, 31rem);
  min-height: 0;
}

.schools-hero-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid oklch(0.955 0.028 88 / 0.28);
  border-radius: var(--radius);
  background: var(--paper-warm);
  box-shadow: 7px 7px 0 oklch(0.79 0.165 88 / 0.16), var(--tight-shadow);
}

.schools-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.schools-hero-photo:hover img {
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.03);
}

.schools-hero-photo-main {
  grid-column: 1;
  grid-row: 1 / -1;
  z-index: 1;
}

.schools-hero-photo-main img {
  object-position: center 48%;
}

.schools-hero-photo-detail {
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  box-shadow: 6px 6px 0 oklch(0.42 0.088 122 / 0.24), var(--tight-shadow);
}

.schools-hero-photo-detail img {
  object-position: center 70%;
}

.schools-hero-photo-inside {
  grid-column: 2;
  grid-row: 2;
  z-index: 3;
  box-shadow: 6px 6px 0 oklch(0.34 0.145 280 / 0.17), var(--tight-shadow);
}

.schools-hero-photo-inside img {
  object-position: center 70%;
}

.schools-hero-photo figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  display: grid;
  gap: 0.24rem;
  max-width: calc(100% - 1.6rem);
  padding: 0.6rem 0.68rem;
  border: 1px solid oklch(0.955 0.028 88 / 0.26);
  border-radius: 5px;
  color: var(--paper);
  background: oklch(0.19 0.055 71 / 0.82);
  line-height: 1.2;
}

.schools-hero-photo figcaption span {
  color: var(--saffron);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schools-hero-photo figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.3vw, 1.18rem);
  line-height: 1.02;
}

.schools-hero-stamp {
  position: absolute;
  top: 0.9rem;
  inset-inline-start: 0.9rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  width: auto;
  min-height: 2.35rem;
  padding: 0.48rem 0.7rem;
  border: 1px solid oklch(0.955 0.028 88 / 0.48);
  border-radius: 3px;
  color: var(--walnut-deep);
  background: var(--saffron);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 oklch(0.19 0.055 71 / 0.28);
}

.schools-hero-stamp::before {
  content: "";
  width: 0.48rem;
  aspect-ratio: 1;
  flex: 0 0 auto;
  background: var(--olive);
  transform: rotate(45deg);
}

.schools-intro-section {
  padding-block: clamp(3.4rem, 5vw, 5.2rem);
  background: var(--paper);
}

.schools-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.42fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.schools-intro-grid .section-head {
  max-width: 48rem;
}

.schools-intro-grid h2,
.schools-section-heading h2,
.schools-focus-copy h2,
.schools-teacher-copy h2,
.schools-proof-heading h2,
.schools-final-cta h2 {
  max-width: 14ch;
  text-wrap: balance;
}

.schools-intro-grid h2 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 4.5vw, 4.1rem);
  line-height: 0.96;
}

.schools-intro-quote {
  position: relative;
  min-height: clamp(14rem, 22vw, 18rem);
  height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  text-align: center;
  color: var(--paper);
  background: var(--olive);
  box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.22);
}

.schools-quote-mark {
  position: absolute;
  top: 0.35rem;
  left: 50%;
  color: oklch(0.79 0.165 88 / 0.64);
  font-family: Georgia, serif;
  font-size: clamp(5.2rem, 8vw, 7rem);
  line-height: 1;
  transform: translateX(-50%);
}

.schools-quote-mark::before {
  content: "\201C";
}

.schools-intro-quote p {
  position: relative;
  max-width: 18ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.25rem);
  font-weight: 700;
  line-height: 0.98;
}

.schools-intro-quote small {
  position: relative;
  margin-top: 1rem;
  color: oklch(0.955 0.028 88 / 0.86);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 901px) {
  .schools-intro-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(24rem, 0.62fr);
    gap: clamp(2.4rem, 5vw, 5.4rem);
  }

  .schools-intro-quote {
    width: 100%;
    min-height: clamp(14rem, 20vw, 17rem);
    padding-inline: clamp(2rem, 3.8vw, 3.5rem);
  }

  .schools-intro-quote p {
    max-width: 23ch;
    font-size: clamp(1.55rem, 2.25vw, 2.15rem);
    line-height: 1.03;
  }
}

.schools-route-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background: var(--olive);
  padding-block: clamp(3.4rem, 5vw, 5.2rem);
}

.schools-section-heading,
.schools-proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
}

.schools-route-section h2,
.schools-route-section .lead {
  color: var(--paper);
}

.schools-route-section .lead {
  max-width: 46ch;
  color: oklch(0.955 0.028 88 / 0.9);
}

.schools-route-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: clamp(2.1rem, 3.6vw, 3.2rem) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid oklch(0.955 0.028 88 / 0.34);
}

.schools-route-list li {
  position: relative;
  min-height: 14.5rem;
  padding: 1.2rem clamp(1rem, 2vw, 1.55rem) 0 0;
  border-right: 1px solid oklch(0.955 0.028 88 / 0.2);
}

.schools-route-list li:not(:first-child) {
  padding-left: clamp(1rem, 2vw, 1.55rem);
}

.schools-route-list li:last-child {
  border-right: 0;
}

.schools-route-list li > div {
  margin-top: 0;
}

.schools-route-label {
  color: var(--saffron);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.schools-route-list h3 {
  max-width: 13ch;
  margin-top: 0.55rem;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 2vw, 1.65rem);
  line-height: 1;
}

.schools-route-list p {
  max-width: 25ch;
  margin-top: 0.8rem;
  color: oklch(0.955 0.028 88 / 0.88);
  font-size: 0.88rem;
  line-height: 1.5;
}

.schools-focus-section {
  padding-block: clamp(3.4rem, 5vw, 5.2rem);
}

.schools-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.8rem);
}

.schools-focus-image {
  position: relative;
  min-height: 0;
  max-height: 32rem;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid oklch(0.29 0.072 70 / 0.2);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 oklch(0.42 0.088 122 / 0.18), var(--shadow);
}

.schools-focus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
}

.schools-focus-image figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.24rem;
  padding: 0.72rem 0.8rem;
  border-radius: 5px;
  color: var(--paper);
  background: oklch(0.19 0.055 71 / 0.86);
}

.schools-focus-image figcaption span {
  color: var(--saffron);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schools-focus-image figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1;
}

.schools-focus-copy .lead {
  max-width: 43ch;
}

.schools-focus-list {
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--cream-line);
}

.schools-focus-list li {
  display: grid;
  grid-template-columns: minmax(8.5rem, 0.7fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--cream-line);
}

.schools-focus-list strong {
  color: var(--walnut-deep);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.schools-focus-list span {
  color: var(--ink);
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.55rem;
  color: var(--walnut-deep);
  font-weight: 900;
}

.text-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.24s var(--ease);
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translate(3px, -3px);
}

.schools-teacher-section {
  padding-block: clamp(3.1rem, 4.5vw, 4.4rem);
  background: var(--paper-olive);
  border-block: 1px solid var(--cream-line);
}

.schools-teacher-grid {
  display: grid;
  grid-template-columns: minmax(22rem, 0.44fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(2rem, 4.2vw, 4.2rem);
}

.schools-teacher-copy {
  max-width: 36rem;
}

.schools-teacher-copy h2 {
  max-width: none;
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 0.96;
  white-space: nowrap;
}

.schools-teacher-copy .lead {
  max-width: 43ch;
}

.schools-teacher-copy .button {
  margin-top: 1.35rem;
}

.schools-teacher-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: center;
  gap: 0.68rem;
  min-height: 0;
  padding: 0.68rem;
  border: 1px solid oklch(0.29 0.072 70 / 0.22);
  border-radius: var(--radius);
  background: oklch(0.985 0.009 92 / 0.46);
  box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.14);
}

.schools-teacher-list > div {
  position: relative;
  display: grid;
  grid-template-columns: 0.58rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  gap: 0.42rem 0.62rem;
  min-width: 0;
  min-height: clamp(7.5rem, 9.2vw, 8.6rem);
  padding: clamp(1rem, 1.45vw, 1.25rem);
  border: 1px solid oklch(0.29 0.072 70 / 0.16);
  border-radius: 5px;
  background: oklch(0.955 0.028 88 / 0.52);
}

.schools-teacher-list > div + div {
  border-left: 1px solid oklch(0.29 0.072 70 / 0.16);
}

.schools-teacher-list > div::before {
  content: "";
  position: static;
  display: block;
  grid-row: 1;
  align-self: center;
  margin-top: 0;
  width: 0.56rem;
  aspect-ratio: 1;
  background: var(--saffron);
  border: 2px solid var(--blue);
  box-shadow: 0 0 0 1px var(--saffron);
  transform: rotate(45deg);
}

.schools-teacher-list > div:nth-child(2)::before {
  background: var(--blue);
  border-color: var(--saffron);
  box-shadow: 0 0 0 1px var(--blue);
}

.schools-teacher-list > div:nth-child(3)::before {
  background: var(--olive);
  border-color: var(--saffron);
  box-shadow: 0 0 0 1px var(--olive);
}

.schools-teacher-list > div:first-child {
  border-color: oklch(0.29 0.072 70 / 0.18);
}

.schools-teacher-list strong,
.schools-teacher-list small {
  display: block;
  grid-column: 2;
}

.schools-teacher-list strong {
  color: var(--walnut-deep);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.05;
  white-space: nowrap;
}

.schools-teacher-list small {
  max-width: none;
  color: var(--walnut);
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  line-height: 1.32;
  white-space: normal;
}

.schools-partners-section {
  padding-block: clamp(3.4rem, 5vw, 5.2rem);
  background: var(--paper-olive);
  border-bottom: 1px solid var(--cream-line);
}

.schools-partners-grid-wrap {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(2rem, 4vw, 3.2rem);
}

.schools-partners-heading {
  max-width: 48rem;
}

.schools-partners-heading h2 {
  max-width: 16ch;
  text-wrap: balance;
}

.schools-partners-heading .lead {
  max-width: 42ch;
  margin-top: 1rem;
}

.schools-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 2.4vw, 1.5rem);
}

.schools-partner-card {
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid oklch(0.29 0.072 70 / 0.2);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 8px 8px 0 oklch(0.42 0.088 122 / 0.14);
}

.schools-partner-logo {
  display: grid;
  place-items: center;
  min-width: 0;
  width: 100%;
  height: clamp(8rem, 12vw, 10.5rem);
  min-height: 0;
  overflow: hidden;
  background: var(--cream-white);
}

.schools-partner-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.schools-partner-card:nth-child(3) {
  box-shadow: 8px 8px 0 oklch(0.34 0.145 280 / 0.16);
}

.schools-partner-details {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 0.25rem 0.2rem;
}

.schools-partner-details span {
  color: var(--saffron-deep);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.schools-partner-details strong {
  color: var(--walnut-deep);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.05;
}

@media (min-width: 901px) {
  .schools-teacher-section {
    padding-block: clamp(2.25rem, 3.3vw, 3.35rem);
  }

  .schools-teacher-grid {
    grid-template-columns: minmax(29rem, 0.54fr) minmax(0, 0.86fr);
    gap: clamp(2.8rem, 5vw, 5.2rem);
    min-height: 0;
    align-items: center;
  }

  .schools-teacher-grid > .schools-teacher-copy {
    min-block-size: 0;
  }

  .schools-teacher-copy h2 {
    font-size: clamp(2.65rem, 3.45vw, 3.65rem);
  }

  .schools-partners-heading {
    width: min(70%, 72rem);
    max-width: none;
  }

  .schools-partners-heading h2 {
    max-width: 19ch;
  }

  .schools-partners-heading .lead {
    max-width: 70%;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .schools-teacher-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .schools-teacher-copy {
    max-width: 44rem;
  }

  .schools-teacher-list {
    width: 100%;
  }
}

.schools-proof-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background: var(--walnut-deep);
  padding-block: clamp(3.4rem, 5vw, 5.2rem);
}

.schools-proof-section .eyebrow {
  color: var(--saffron);
}

.schools-proof-heading h2 {
  color: var(--paper);
}

.schools-proof-heading .school-social-follow {
  justify-self: end;
  border-color: oklch(0.955 0.028 88 / 0.22);
  color: var(--walnut-deep);
  background: var(--paper);
  box-shadow: 6px 6px 0 oklch(0.79 0.165 88 / 0.2);
}

.schools-proof-copy {
  display: grid;
  justify-items: end;
  gap: 1rem;
  max-width: 28rem;
  justify-self: end;
}

.schools-proof-copy p {
  margin: 0;
  color: oklch(0.955 0.028 88 / 0.78);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.schools-proof-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  gap: 0.85rem;
  height: clamp(15.5rem, 22vw, 19rem);
  margin-top: clamp(2.1rem, 3.6vw, 3.2rem);
}

.schools-proof-tile {
  position: relative;
  min-height: 10.5rem;
  overflow: hidden;
  border: 1px solid oklch(0.955 0.028 88 / 0.26);
  border-radius: var(--radius);
  background: var(--walnut);
  box-shadow: 8px 8px 0 oklch(0.42 0.088 122 / 0.28);
}

.schools-proof-tile-wide {
  grid-row: auto;
}

.schools-proof-tile:first-child img {
  object-position: center 58%;
}

.schools-proof-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04);
  transition: transform 0.65s var(--ease), filter 0.65s var(--ease);
}

.schools-proof-tile:hover img,
.schools-proof-tile:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.1);
}

.schools-proof-tile::after {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(to bottom, transparent, oklch(0.19 0.055 71 / 0.84));
}

.schools-proof-tile span {
  position: absolute;
  right: 0.9rem;
  bottom: 0.85rem;
  left: 0.9rem;
  z-index: 1;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1;
}

.schools-final-section {
  padding-block: clamp(3.2rem, 5vw, 4.4rem);
  border-block: 1px solid oklch(0.955 0.028 88 / 0.16);
  color: var(--paper);
  background: var(--walnut-deep);
}

.schools-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.schools-final-cta h2 {
  max-width: 15ch;
  margin-top: 0.45rem;
  color: var(--paper);
  font-size: clamp(2.6rem, 4vw, 3.9rem);
  line-height: 0.96;
}

.schools-final-cta p:not(.eyebrow) {
  max-width: 48ch;
  margin-top: 0.65rem;
  color: oklch(0.955 0.028 88 / 0.9);
}

@media (max-width: 1000px) {
  .schools-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
  }

  .schools-hero .page-title {
    font-size: clamp(3.25rem, 7vw, 5.6rem);
  }

  .schools-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(13rem, 0.42fr);
    gap: 2.2rem;
  }

  .schools-section-heading,
  .schools-proof-heading {
    gap: 2.4rem;
  }

  .schools-route-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schools-route-list li:nth-child(2) {
    border-right: 0;
  }

  .schools-route-list li:nth-child(n + 3) {
    border-top: 1px solid oklch(0.955 0.028 88 / 0.2);
  }

  .schools-route-list li:nth-child(3) {
    padding-left: 0;
  }

  .schools-focus-grid,
  .schools-partners-grid-wrap {
    gap: 2.8rem;
  }

  .schools-teacher-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .schools-page .schools-hero {
    padding-block: 2rem 2.5rem;
  }

  .schools-hero-grid,
  .schools-intro-grid,
  .schools-focus-grid,
  .schools-teacher-grid {
    grid-template-columns: 1fr;
  }

  .schools-hero .page-title {
    max-width: 9ch;
    font-size: clamp(3.2rem, 15vw, 4.75rem);
  }

  .schools-hero .lead {
    margin-top: 1rem;
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .schools-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1.35rem;
  }

  .schools-hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .schools-hero-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
  }

  .schools-hero-notes span:last-child {
    grid-column: 1 / -1;
  }

  .schools-hero-art {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(14rem, auto) minmax(8.5rem, auto);
    height: auto;
    min-height: 0;
    gap: 0.55rem;
    margin-top: 0.4rem;
  }

  .schools-hero-photo-main {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 4 / 3;
  }

  .schools-hero-photo-detail {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 1 / 1;
  }

  .schools-hero-photo-inside {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: 1 / 1;
  }

  .schools-hero-photo figcaption {
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    padding: 0.45rem 0.5rem;
  }

  .schools-hero-photo:not(.schools-hero-photo-main) figcaption {
    right: 0.45rem;
    bottom: 0.45rem;
    left: 0.45rem;
    gap: 0;
    padding: 0.36rem 0.42rem;
    background: oklch(0.19 0.055 71 / 0.78);
  }

  .schools-hero-photo:not(.schools-hero-photo-main) figcaption span {
    display: block;
    color: var(--saffron);
    font-size: 0.56rem;
    letter-spacing: 0.05em;
    line-height: 1.05;
  }

  .schools-hero-photo:not(.schools-hero-photo-main) figcaption strong {
    display: none;
  }

  .schools-hero-photo-main figcaption strong {
    font-size: 0.94rem;
  }

  .schools-hero-stamp {
    top: 0.65rem;
    right: auto;
    bottom: auto;
    left: auto;
    inset-inline-start: 0.65rem;
    width: auto;
    min-height: 2rem;
    padding: 0.4rem 0.56rem;
    font-size: 0.66rem;
  }

  .schools-intro-section,
  .schools-focus-section,
  .schools-teacher-section,
  .schools-partners-section,
  .schools-proof-section {
    padding-block: 3.5rem;
  }

  .schools-intro-grid h2,
  .schools-section-heading h2,
  .schools-focus-copy h2,
  .schools-teacher-copy h2,
  .schools-proof-heading h2,
  .schools-final-cta h2 {
    max-width: 12ch;
  }

  .schools-intro-quote {
    min-height: clamp(15rem, 58vw, 20rem);
    margin-top: 0.35rem;
    padding: 2rem 1.35rem;
  }

  .schools-intro-quote p {
    max-width: 17ch;
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .schools-intro-quote small {
    margin-top: 1.15rem;
  }

  .schools-section-heading,
  .schools-proof-heading,
  .schools-final-cta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.35rem;
  }

  .schools-route-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1.5rem;
    border-top: 0;
  }

  .schools-route-list li,
  .schools-route-list li:not(:first-child),
  .schools-route-list li:nth-child(3) {
    display: grid;
    align-content: start;
    min-height: 11.6rem;
    padding: 0.9rem;
    border: 1px solid oklch(0.955 0.028 88 / 0.22);
    border-radius: var(--radius);
    background: oklch(0.19 0.055 71 / 0.2);
  }

  .schools-route-list li:first-child {
    border-top: 1px solid oklch(0.955 0.028 88 / 0.22);
  }

  .schools-route-list li > div {
    margin-top: 0;
  }

  .schools-route-list h3 {
    max-width: none;
    margin-top: 0.45rem;
    font-size: 1.08rem;
    line-height: 1.05;
  }

  .schools-route-list p {
    max-width: 42ch;
    margin-top: 0.58rem;
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .schools-route-label {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .schools-focus-image {
    min-height: 0;
    max-height: 24rem;
    aspect-ratio: 4 / 3;
  }

  .schools-focus-list {
    margin-top: 1.25rem;
  }

  .schools-focus-copy h2 {
    max-width: 15.5ch;
    font-size: clamp(2.15rem, 10vw, 2.75rem);
  }

  .schools-focus-list li {
    grid-template-columns: minmax(7.3rem, 0.75fr) minmax(0, 1fr);
    gap: 0.7rem;
  }

  .schools-teacher-list {
    grid-template-columns: 1fr;
    margin-top: 0.5rem;
    min-height: 0;
    gap: 0.55rem;
    padding: 0.55rem;
  }

  .schools-teacher-list > div {
    grid-template-columns: 0.65rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    align-content: center;
    gap: 0.28rem 0.72rem;
    min-height: 0;
    padding: 0.9rem 0.95rem;
  }

  .schools-teacher-list > div + div {
    border-top: 1px solid oklch(0.29 0.072 70 / 0.28);
    border-left: 0;
  }

  .schools-teacher-list > div::before {
    grid-row: 1;
    align-self: center;
    width: 0.6rem;
    margin-top: 0;
  }

  .schools-teacher-list strong,
  .schools-teacher-list small {
    grid-column: 2;
  }

  .schools-teacher-list small {
    white-space: normal;
  }

  .schools-partners-grid-wrap {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .schools-partners-heading h2 {
    max-width: 14ch;
  }

  .schools-partner-card {
    grid-template-rows: minmax(7rem, 1fr) auto;
  }

  .schools-partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schools-partner-card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(8rem, 0.42fr) minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-items: center;
  }

  .schools-partner-card:last-child .schools-partner-details {
    padding: 1rem;
  }

  .schools-partner-logo {
    min-height: 7rem;
  }

  .schools-proof-heading .school-social-follow {
    justify-self: center;
  }

  .schools-proof-copy {
    justify-items: center;
    justify-self: stretch;
    max-width: none;
    text-align: center;
  }

  .schools-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 16rem 12rem;
    gap: 0.65rem;
    height: auto;
    margin-top: 2.25rem;
  }

  .schools-proof-tile-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .schools-proof-tile {
    min-height: 0;
  }

  .schools-proof-tile span {
    right: 0.6rem;
    bottom: 0.6rem;
    left: 0.6rem;
    font-size: 0.96rem;
  }

  .schools-final-section {
    padding-block: 3rem;
  }

  .schools-final-cta .button {
    width: min(100%, 22rem);
    justify-self: center;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .schools-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 13rem 10rem;
  }
}

@media (max-width: 700px) {
.site-footer .footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
}

  .footer-nav-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }

  .footer-nav-block > div:first-child,
  .footer-nav-block > div:last-child {
    grid-column: 1 / -1;
  }

  .site-footer .footer-nav-block > div:nth-child(2) .footer-links {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-nav-block > div:nth-child(3) .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-socials {
    gap: 0.65rem;
  }

  .footer-social-link {
    width: 52px;
    height: 52px;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .footer-bottom a {
    justify-self: start;
  }

  .footer-bottom .language-switcher {
    margin-left: 0;
    justify-self: start;
  }

  .site-footer .footer-bottom {
    justify-content: space-between;
  }

  .site-footer .footer-bottom > span {
    min-width: 0;
    overflow: hidden;
    font-size: 0.68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-footer .footer-bottom .language-switcher {
    min-height: 40px;
    flex: 0 0 auto;
    padding-inline: 0.42rem;
  }

  .site-footer .footer-bottom .language-switcher svg {
    width: 16px;
    height: 16px;
  }

  .site-footer .footer-bottom .language-switcher select {
    max-width: 5.4rem;
    min-height: 36px;
    font-size: 0.68rem;
  }

  .media-frame.main,
  .media-frame.floating.one,
  .media-frame.floating.two {
    min-height: auto;
  }

  .media-frame img,
  .wide-photo img {
    aspect-ratio: 4 / 3;
  }

  .image-strip {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .image-strip img,
  .image-strip img:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .school-visit-collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto;
    width: 100%;
    aspect-ratio: auto;
    gap: 0.55rem;
  }

  .school-visit-photo-main {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 16 / 10;
  }

  .school-visit-photo-demo,
  .school-visit-photo-workshop,
  .school-visit-photo-craft {
    grid-column: auto;
    grid-row: 2;
    aspect-ratio: 1;
  }

  .school-visit-photo:not(.school-visit-photo-main) figcaption {
    display: none;
  }

  .service-meta {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .timeline-item > div {
    padding: 0.9rem 0.9rem 0.9rem 0;
  }

  .memory-section::before {
    display: none;
  }

  .memory-layout {
    padding-block: 1.15rem 1.35rem;
  }

  .memory-wall {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .memory-photo,
  .memory-photo-feature,
  .memory-photo-food,
  .memory-photo-house {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    box-shadow: 6px 6px 0 oklch(0.79 0.165 88 / 0.16);
  }

  .memory-photo-feature {
    aspect-ratio: 3 / 4;
  }

  .memory-photo figcaption {
    right: 0.55rem;
    bottom: 0.55rem;
    left: 0.55rem;
    padding: 0.68rem 0.72rem;
  }

  .memory-note-row {
    grid-template-columns: 1fr;
    gap: 0.58rem;
  }

  .memory-note-row p {
    min-height: 0;
    padding: 0.82rem 0.9rem;
  }

  .quote-band p {
    font-size: 1.55rem;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp {
    right: 14px;
  }
}
.not-found-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.4rem, 7vw, 6.8rem) 0;
  border-bottom: 1px solid oklch(0.42 0.088 122 / 0.2);
  background:
    radial-gradient(circle at 91% 12%, oklch(0.79 0.165 88 / 0.24), transparent 0 17rem),
    linear-gradient(106deg, var(--paper) 0 64%, var(--paper-olive) 64% 100%);
}

.not-found-page .floating-whatsapp {
  display: none;
}

.not-found-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 64%;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 48%, oklch(0.42 0.088 122 / 0.1) 49% 51%, transparent 52% 100%),
    radial-gradient(circle, oklch(0.55 0.112 86 / 0.25) 0 2px, transparent 2.5px);
  background-size: 38px 38px, 56px 56px;
  opacity: 0.78;
}

.not-found-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(2.8rem, 6vw, 6.2rem);
  align-items: end;
  min-height: 38rem;
}

.not-found-copy {
  max-width: 42rem;
}

.not-found-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.35rem;
  color: var(--walnut);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.not-found-kicker span {
  display: inline-grid;
  min-width: 3.5rem;
  min-height: 2rem;
  place-items: center;
  border: 1px solid oklch(0.29 0.072 70 / 0.24);
  border-radius: var(--radius);
  color: var(--walnut-deep);
  background: var(--saffron);
  box-shadow: 5px 5px 0 oklch(0.55 0.112 86 / 0.18);
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.not-found-copy h1 {
  max-width: 14ch;
  font-size: clamp(3.5rem, 5.2vw, 4.7rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: initial;
}

.not-found-copy h1 span {
  display: block;
}

.not-found-copy .lead {
  max-width: 53ch;
  margin-top: 1.4rem;
}

.not-found-assist {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  max-width: 36rem;
  margin-top: 2rem;
  padding: 0.85rem 0.9rem 0.9rem;
  border: 1px solid oklch(0.29 0.072 70 / 0.18);
  border-radius: var(--radius);
  background: oklch(0.955 0.028 88 / 0.72);
  box-shadow: 5px 5px 0 oklch(0.79 0.165 88 / 0.2);
}

.not-found-assist-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--olive);
  box-shadow: 5px 5px 0 oklch(0.79 0.165 88 / 0.25);
}

.not-found-assist-icon svg {
  width: 21px;
  height: 21px;
}

.not-found-assist-copy {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.not-found-assist p {
  display: grid;
  gap: 0.15rem;
  max-width: 48ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.not-found-assist strong {
  color: var(--ink);
}

.not-found-assist-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 0.42rem;
  padding: 0.55rem 0.72rem;
  border: 1px solid oklch(0.42 0.088 122 / 0.2);
  border-radius: var(--radius);
  color: var(--walnut);
  background: var(--paper);
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 -3px 0 oklch(0.79 0.165 88 / 0.28);
}

.not-found-assist-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.24s var(--ease);
}

.not-found-visual {
  position: relative;
  height: clamp(32rem, 42vw, 39rem);
  margin: 0 0 0.55rem;
  border-radius: var(--radius);
  background: var(--walnut);
  box-shadow: 14px 14px 0 oklch(0.79 0.165 88 / 0.42), var(--shadow);
}

.not-found-visual > img {
  width: 100%;
  height: 100%;
  border: 1px solid oklch(0.29 0.072 70 / 0.24);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: 61% center;
}

.not-found-stamp {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 94px;
  height: 104px;
  place-content: center;
  border: 2px solid var(--saffron);
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--blue);
  box-shadow: 7px 7px 0 oklch(0.19 0.055 71 / 0.4);
  text-align: center;
  transform: rotate(2deg);
}

.not-found-stamp span {
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.not-found-stamp strong {
  font-family: var(--font-display);
  font-size: 2.7rem;
  line-height: 0.96;
}

.not-found-visual figcaption {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  left: 0.85rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  padding: 1.1rem 1.2rem;
  border: 1px solid oklch(0.985 0.009 92 / 0.18);
  border-radius: var(--radius);
  color: var(--paper);
  background: oklch(0.19 0.055 71 / 0.96);
  box-shadow: var(--tight-shadow);
}

.not-found-visual figcaption span {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--saffron);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.not-found-visual figcaption strong {
  display: block;
  max-width: 28ch;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.14;
}

.not-found-visual figcaption a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.not-found-visual figcaption a svg {
  width: 18px;
  height: 18px;
  transition: transform 0.24s var(--ease);
}

.not-found-routes {
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(118deg, var(--walnut-deep) 0 73%, var(--walnut) 73% 100%);
}

.not-found-routes::before {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: 1rem;
  width: 23rem;
  height: 23rem;
  border: 1px solid oklch(0.79 0.165 88 / 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 3.2rem oklch(0.79 0.165 88 / 0.055),
    0 0 0 6.4rem oklch(0.42 0.088 122 / 0.08);
}

.not-found-routes-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.not-found-routes-heading .eyebrow {
  color: var(--saffron);
}

.not-found-routes-heading h2 {
  max-width: 10ch;
  color: var(--paper);
  font-size: clamp(2.8rem, 4.6vw, 4.6rem);
}

.not-found-routes-heading > p:last-child {
  max-width: 38ch;
  margin-top: 1.25rem;
  color: oklch(0.955 0.028 88 / 0.76);
}

.not-found-route-list {
  border-top: 1px solid oklch(0.985 0.009 92 / 0.24);
}

.not-found-route {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr) 1.8rem;
  gap: 1rem;
  min-height: 6.9rem;
  align-items: center;
  padding: 1.05rem 0.9rem;
  border-bottom: 1px solid oklch(0.985 0.009 92 / 0.24);
  color: var(--paper);
  transition: background 0.26s var(--ease), color 0.26s var(--ease);
}

.not-found-route-number {
  color: var(--saffron);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
}

.not-found-route-copy {
  min-width: 0;
}

.not-found-route-copy strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.not-found-route-copy small {
  display: block;
  max-width: 56ch;
  margin-top: 0.32rem;
  color: oklch(0.955 0.028 88 / 0.7);
  font-size: 0.84rem;
  line-height: 1.45;
}

.not-found-route > svg {
  width: 25px;
  height: 25px;
  color: var(--saffron);
  transition: transform 0.26s var(--ease);
}

.not-found-route:focus-visible {
  outline-color: var(--saffron);
  outline-offset: -4px;
}

@media (hover: hover) {
  .not-found-visual figcaption a:hover svg {
    transform: translate(0.18rem, -0.18rem);
  }

  .not-found-assist-link:hover svg {
    transform: translateX(0.24rem);
  }

  .not-found-route:hover {
    background: oklch(0.42 0.088 122 / 0.38);
  }

  .not-found-route:hover > svg {
    transform: translateX(0.3rem);
  }
}

@media (max-width: 900px) {
  .not-found-hero {
    padding-block: 3.4rem;
    background:
      radial-gradient(circle at 90% 8%, oklch(0.79 0.165 88 / 0.22), transparent 0 13rem),
      linear-gradient(152deg, var(--paper) 0 67%, var(--paper-olive) 67% 100%);
  }

  .not-found-hero::before {
    inset: 58% 0 0 0;
  }

  .not-found-layout,
  .not-found-routes-shell {
    grid-template-columns: 1fr;
  }

  .not-found-layout {
    min-height: 0;
  }

  .not-found-copy {
    max-width: 46rem;
  }

  .not-found-copy h1 {
    max-width: 14ch;
  }

  .not-found-visual {
    margin-bottom: 0;
    height: min(32rem, 68vw);
  }

  .not-found-routes-heading h2 {
    max-width: 13ch;
  }
}

@media (max-width: 700px) {
  .not-found-hero {
    padding: 2rem 0 2.4rem;
  }

  .not-found-layout {
    gap: 1.65rem;
  }

  .not-found-kicker {
    margin-bottom: 0.85rem;
    font-size: 0.72rem;
  }

  .not-found-kicker span {
    min-width: 3.25rem;
    min-height: 1.85rem;
  }

  .not-found-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.42rem, 10vw, 3.15rem);
    line-height: 0.94;
  }

  .not-found-copy .lead {
    margin-top: 1rem;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .not-found-copy .section-actions {
    gap: 0.58rem;
    margin-top: 1.1rem;
  }

  .not-found-assist {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 0.75rem;
    margin-top: 1.2rem;
    padding: 0.75rem;
  }

  .not-found-assist-icon {
    width: 40px;
    height: 40px;
  }

  .not-found-assist p {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .not-found-assist-link {
    min-height: 44px;
    padding: 0.66rem 0.78rem;
    font-size: 0.82rem;
  }

  .not-found-visual {
    margin-bottom: 0;
    height: auto;
    aspect-ratio: 4 / 3;
    box-shadow: 8px 8px 0 oklch(0.79 0.165 88 / 0.38), var(--tight-shadow);
  }

  .not-found-stamp {
    top: 0.7rem;
    right: 0.7rem;
    width: 66px;
    height: 72px;
    box-shadow: 4px 4px 0 oklch(0.19 0.055 71 / 0.36);
  }

  .not-found-stamp span {
    font-size: 0.56rem;
  }

  .not-found-stamp strong {
    font-size: 2rem;
  }

  .not-found-visual figcaption {
    right: 0.55rem;
    bottom: 0.55rem;
    left: 0.55rem;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
    padding: 0.78rem 0.82rem;
  }

  .not-found-visual figcaption span {
    font-size: 0.57rem;
  }

  .not-found-visual figcaption strong {
    max-width: 21ch;
    font-size: 0.9rem;
  }

  .not-found-visual figcaption a {
    min-height: 44px;
    font-size: 0.7rem;
  }

  .not-found-visual figcaption a svg {
    width: 16px;
    height: 16px;
  }

  .not-found-routes {
    padding-block: 3.4rem;
    background: var(--walnut-deep);
  }

  .not-found-routes-shell {
    gap: 2.2rem;
  }

  .not-found-routes-heading h2 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 11vw, 3.15rem);
  }

  .not-found-routes-heading > p:last-child {
    margin-top: 0.9rem;
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .not-found-route {
    grid-template-columns: 2.1rem minmax(0, 1fr) 1.4rem;
    gap: 0.68rem;
    min-height: 6rem;
    padding: 0.82rem 0.2rem;
  }

  .not-found-route-copy strong {
    font-size: 1.16rem;
  }

  .not-found-route-copy small {
    font-size: 0.76rem;
    line-height: 1.36;
  }

  .not-found-route > svg {
    width: 21px;
    height: 21px;
  }
}

/*
 * Document scrollbar contract
 *
 * Pages use one document scrollbar. Top-level sections and the footer stay
 * in normal document flow so wheel, touch and keyboard scrolling do not get
 * trapped inside nested page regions. The 100vh token remains available for
 * page-specific compositions that use it as a sizing aid.
 */
@supports (height: 100svh) {
  :root {
    --viewport-section-max: 100svh;
  }
}

html {
  scrollbar-color: var(--scrollbar-yellow) transparent;
  scrollbar-width: thin;
}

html::-webkit-scrollbar {
  width: 0.58rem;
  height: 0.58rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

html::-webkit-scrollbar-thumb {
  background: var(--scrollbar-yellow);
  border: 2px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--saffron);
}

#main > section {
  overflow-x: clip;
  overflow-y: visible;
}

.not-found-page #main > .not-found-hero {
  max-block-size: none;
  overflow: visible;
}

.not-found-page #main > .not-found-routes {
  max-block-size: none;
  overflow: hidden;
}

/*
 * Restaurant page viewport rhythm
 *
 * The restaurant page uses denser, photo-led sections so every top-level
 * section stays within the viewport contract without relying on oversized
 * padding or tall inherited media collages.
 */
.restaurant-page {
  --restaurant-header-height: 82px;
  --restaurant-section-padding: clamp(1.35rem, 3.8vh, 2.8rem);
}

.restaurant-page .section {
  padding-block: var(--restaurant-section-padding);
}

.restaurant-page .section.tight {
  padding-block: clamp(1rem, 2.4vh, 1.8rem);
}

.restaurant-page .page-hero {
  display: grid;
  align-items: center;
  block-size: calc(var(--viewport-section-max) - var(--restaurant-header-height));
  max-block-size: calc(var(--viewport-section-max) - var(--restaurant-header-height));
  padding-block: clamp(1rem, 2.8vh, 2.2rem);
}

.restaurant-page .page-hero .hero-grid {
  height: 100%;
  min-height: 0;
  gap: clamp(1.4rem, 4vw, 4rem);
}

.restaurant-page .page-hero .hero-copy {
  display: grid;
  align-content: center;
  max-height: 100%;
  padding-left: clamp(0rem, 3.4vw, 2.5rem);
}

.restaurant-page .page-hero .page-title {
  font-size: clamp(3.05rem, 5.6vw, 5.35rem);
  line-height: 0.96;
}

.restaurant-page .page-hero .lead {
  max-width: 58ch;
  margin-top: clamp(0.85rem, 1.8vh, 1.15rem);
  font-size: clamp(0.96rem, 1.05vw, 1.04rem);
  line-height: 1.55;
}

.restaurant-page .page-hero .hero-actions {
  margin-top: clamp(1rem, 2.2vh, 1.4rem);
}

.restaurant-page .page-hero .media-collage {
  height: 100%;
  min-height: 0;
}

.restaurant-menu-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(3rem, 5vw, 4.8rem) !important;
  color: var(--paper);
  background: var(--walnut-deep);
  scroll-margin-top: calc(var(--restaurant-header-height) + 0.75rem);
}

.menu-direct .restaurant-menu-section .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.restaurant-menu-section::before,
.restaurant-menu-section::after {
  content: none;
}

.restaurant-menu-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
}

.restaurant-menu-book {
  min-width: 0;
}

.restaurant-menu-sheets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(0.25rem, 0.8vw, 0.7rem);
  width: min(100%, 46rem);
  margin-inline: auto;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.restaurant-menu-sheet {
  position: relative;
  margin: 0;
  padding: clamp(0.35rem, 0.8vw, 0.58rem);
  background: var(--paper);
  border-radius: 2px;
  box-shadow: 0 20px 45px oklch(0.19 0.055 71 / 0.42);
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.restaurant-menu-sheets.is-flipping .restaurant-menu-sheet {
  will-change: transform, opacity;
}

.restaurant-menu-sheet img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.416 / 1;
  object-fit: cover;
}

.restaurant-menu-cover {
  transform: rotateY(2deg) rotateZ(-1.15deg);
  transform-origin: right center;
  box-shadow: -6px 8px 0 oklch(0.42 0.088 122 / 0.66), 0 18px 38px oklch(0.19 0.055 71 / 0.36);
}

.restaurant-menu-list {
  transform: rotateY(-2deg) rotateZ(1.15deg);
  transform-origin: left center;
  box-shadow: 6px 8px 0 oklch(0.79 0.165 88 / 0.55), 0 18px 38px oklch(0.19 0.055 71 / 0.36);
}

.restaurant-menu-book-caption {
  margin: 1rem 0 0;
  color: oklch(0.985 0.009 92 / 0.58);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.restaurant-menu-overline {
  margin: 0 0 0.95rem;
  color: var(--saffron);
  font-size: 0.73rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.restaurant-menu-copy {
  max-width: 31rem;
}

.restaurant-menu-copy h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.8rem, 4.6vw, 4.65rem);
  line-height: 0.96;
}

.restaurant-menu-copy .lead {
  max-width: 36ch;
  margin-top: 1.15rem;
  color: oklch(0.985 0.009 92 / 0.82);
}

.restaurant-menu-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.72rem;
  margin-top: clamp(1.25rem, 2.6vw, 1.7rem);
}

.restaurant-menu-actions .button {
  white-space: nowrap;
}

.restaurant-menu-actions .button svg,
.restaurant-menu-share svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  transition: transform 0.18s var(--ease);
}

.restaurant-menu-actions .button:hover svg,
.restaurant-menu-actions .button:focus-visible svg {
  transform: translate(0.18rem, -0.18rem);
}

.restaurant-menu-share {
  cursor: pointer;
}

.restaurant-menu-share[aria-expanded="true"] {
  color: var(--walnut-deep);
  background: var(--paper);
  border-color: var(--paper);
}

.restaurant-menu-share[aria-expanded="true"] svg {
  opacity: 0.72;
  transform: scale(0.92);
}

.restaurant-menu-share:hover svg,
.restaurant-menu-share:focus-visible svg {
  transform: translateY(-0.16rem);
}

.restaurant-menu-share[aria-expanded="true"]:hover svg,
.restaurant-menu-share[aria-expanded="true"]:focus-visible svg {
  opacity: 1;
  transform: scale(0.92) translateY(-0.08rem);
}

.restaurant-menu-share-panel[hidden] {
  display: none;
}

.restaurant-menu-share-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(11.5rem, 13.5rem) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 1.8rem);
  align-items: center;
  margin-top: 1rem;
  padding: clamp(1rem, 2.8vw, 1.4rem);
  color: var(--walnut-deep);
  background: oklch(0.975 0.012 91);
  border: 1px solid oklch(0.55 0.08 83 / 0.55);
  border-radius: 7px;
  box-shadow: 7px 8px 0 oklch(0.42 0.09 120 / 0.48);
}

.restaurant-menu-share-close {
  position: absolute;
  z-index: 2;
  inset-block-start: 0.5rem;
  inset-inline-end: 0.5rem;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--walnut-deep);
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.restaurant-menu-share-close:hover {
  background: oklch(0.42 0.09 120 / 0.1);
}

.restaurant-menu-share-close:focus-visible,
.restaurant-menu-share-action:focus-visible,
.restaurant-menu-share-url:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
}

.restaurant-menu-share-close svg {
  width: 1.35rem;
  height: 1.35rem;
}

.restaurant-menu-qr-frame {
  position: relative;
  width: min(100%, 13.5rem);
  aspect-ratio: 1;
  background: oklch(0.99 0.009 92);
}

.restaurant-menu-qr {
  display: block;
  width: 100%;
  height: 100%;
}

.restaurant-menu-share-copy {
  min-width: 0;
  padding-inline-end: 1.7rem;
}

.restaurant-menu-share-kicker {
  margin: 0 0 0.38rem;
  color: oklch(0.39 0.09 120);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.restaurant-menu-share-copy h3 {
  max-width: 15ch;
  margin: 0;
  color: var(--walnut-deep);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.04;
}

.restaurant-menu-share-copy > p:not(.restaurant-menu-share-kicker, .restaurant-menu-share-status) {
  margin: 0.6rem 0 0;
  color: oklch(0.31 0.055 70 / 0.82);
  font-size: 0.88rem;
  line-height: 1.48;
}

.restaurant-menu-share-url {
  display: inline-block;
  max-width: 100%;
  margin-top: 0.55rem;
  overflow-wrap: anywhere;
  color: oklch(0.36 0.09 120);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.restaurant-menu-share-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 0.85rem;
  padding: 0.65rem 0.85rem;
  color: var(--walnut-deep);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 850;
  background: transparent;
  border: 1px solid oklch(0.42 0.09 120 / 0.45);
  border-radius: 4px;
  cursor: pointer;
}

.restaurant-menu-share-action:hover {
  background: oklch(0.42 0.09 120 / 0.1);
  border-color: oklch(0.42 0.09 120 / 0.75);
}

.restaurant-menu-share-status {
  min-height: 1.2rem;
  margin: 0.55rem 0 0;
  color: oklch(0.36 0.1 120);
  font-size: 0.78rem;
  font-weight: 750;
  opacity: 0;
  transition: opacity 0.18s ease-out;
}

.restaurant-menu-share-status.is-visible {
  opacity: 1;
}

.restaurant-menu-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  margin-top: 0.2rem;
  color: oklch(0.985 0.009 92 / 0.72);
  font-size: 0.89rem;
  font-weight: 800;
  text-decoration: none;
}

.restaurant-menu-profile-link svg {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
  transition: transform 0.18s var(--ease);
}

.restaurant-menu-profile-link:hover,
.restaurant-menu-profile-link:focus-visible {
  color: var(--saffron);
}

.restaurant-menu-profile-link:hover svg,
.restaurant-menu-profile-link:focus-visible svg {
  transform: translate(0.18rem, -0.18rem);
}

.restaurant-menu-browser {
  display: grid;
  justify-items: center;
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
}

.restaurant-menu-expander {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.8rem;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
  width: min(100%, 31rem);
  min-height: 5rem;
  padding: 0.8rem 0.9rem 0.8rem clamp(1rem, 2.2vw, 1.45rem);
  color: var(--paper);
  text-align: start;
  background: oklch(0.235 0.063 72);
  border: 1px solid oklch(0.985 0.009 92 / 0.22);
  border-radius: 7px;
  cursor: pointer;
  box-shadow: 7px 8px 0 oklch(0.79 0.165 88 / 0.42);
  transform-origin: center;
}

.restaurant-menu-expander:hover,
.restaurant-menu-expander:focus-visible {
  border-color: var(--saffron);
}

.restaurant-menu-expander:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 4px;
}

.restaurant-menu-expand-copy {
  display: grid;
  gap: 0.28rem;
}

.restaurant-menu-expand-copy small {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  color: var(--saffron);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.restaurant-menu-expand-copy strong {
  font-size: clamp(1.12rem, 1.8vw, 1.5rem);
  line-height: 1.15;
}

.restaurant-menu-expand-icon {
  display: grid;
  width: 2.8rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--walnut-deep);
  background: var(--saffron);
  border-radius: 5px;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.restaurant-menu-expand-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.restaurant-menu-browser.is-expanded .restaurant-menu-expand-icon {
  transform: rotate(180deg);
}

.restaurant-menu-browser.is-expanded .restaurant-menu-expander {
  color: var(--walnut-deep);
  background: var(--saffron);
  border-color: var(--saffron);
  box-shadow: 3px 4px 0 oklch(0.42 0.088 122 / 0.72);
  transform: translateY(4px);
}

.restaurant-menu-browser.is-expanded .restaurant-menu-expand-copy small {
  color: oklch(0.29 0.072 70 / 0.76);
}

.restaurant-menu-browser.is-expanded .restaurant-menu-expand-icon {
  color: var(--paper);
  background: var(--walnut-deep);
}

.restaurant-menu-drawer {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  transition: grid-template-rows 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

.restaurant-menu-drawer-inner {
  min-height: 0;
  overflow: hidden;
}

.restaurant-menu-browser.is-expanded .restaurant-menu-drawer {
  grid-template-rows: 1fr;
}

.restaurant-menu-directory-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 5rem);
  margin-top: clamp(2.4rem, 4vw, 3.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(2rem, 3vw, 2.8rem);
  border-top: 1px solid oklch(0.985 0.009 92 / 0.2);
}

.restaurant-menu-directory-head .eyebrow {
  color: var(--saffron);
}

.restaurant-menu-directory-head h3 {
  max-width: 18ch;
  margin: 0.45rem 0 0;
  color: var(--paper);
  font-size: clamp(2rem, 3.6vw, 3.75rem);
  line-height: 1;
}

.restaurant-menu-directory-head > p {
  max-width: 46ch;
  margin: 0;
  color: oklch(0.985 0.009 92 / 0.76);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.55;
}

.restaurant-menu-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 6vw, 6rem);
  border-top: 1px solid oklch(0.985 0.009 92 / 0.2);
}

.restaurant-menu-category {
  align-self: start;
  border-bottom: 1px solid oklch(0.985 0.009 92 / 0.2);
}

.restaurant-menu-category summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.5rem;
  padding-block: 1rem;
  color: var(--paper);
  cursor: pointer;
  list-style: none;
}

.restaurant-menu-category summary::-webkit-details-marker {
  display: none;
}

.restaurant-menu-category summary strong {
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.2;
}

.restaurant-menu-category summary::after {
  content: "+";
  grid-column: 3;
  color: var(--saffron);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}

.restaurant-menu-category[open] summary::after {
  content: "−";
}

.restaurant-menu-category summary:focus-visible {
  outline: 2px solid var(--saffron);
  outline-offset: 4px;
}

.restaurant-menu-count {
  color: oklch(0.985 0.009 92 / 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.restaurant-menu-items {
  padding-bottom: 1.15rem;
}

.restaurant-menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding-block: 0.9rem;
  border-top: 1px solid oklch(0.985 0.009 92 / 0.12);
}

.restaurant-menu-item h4 {
  margin: 0;
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.3;
}

.restaurant-menu-original {
  display: block;
  margin-top: 0.18rem;
  color: oklch(0.985 0.009 92 / 0.6);
  font-size: 0.78rem;
  line-height: 1.35;
}

.restaurant-menu-item p {
  max-width: 46ch;
  margin: 0.4rem 0 0;
  color: oklch(0.985 0.009 92 / 0.7);
  font-size: 0.85rem;
  line-height: 1.45;
}

.restaurant-menu-item data {
  color: var(--saffron);
  font-size: 0.94rem;
  font-weight: 900;
  white-space: nowrap;
}

.restaurant-menu-note {
  max-width: 70ch;
  margin: 1.5rem 0 0;
  color: oklch(0.985 0.009 92 / 0.62);
  font-size: 0.82rem;
  line-height: 1.5;
}

.dining-rhythm-section {
  overflow: hidden;
}

.dining-rhythm {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3.4rem);
}

.dining-rhythm-copy {
  max-width: 32rem;
}

.dining-rhythm-copy h2 {
  max-width: 9.5ch;
  font-size: clamp(2.35rem, 4.6vw, 4.35rem);
}

.dining-rhythm-copy .lead {
  max-width: 42ch;
  line-height: 1.58;
}

.dining-rhythm-copy .button {
  margin-top: clamp(1rem, 2.2vh, 1.45rem);
}

.meal-board {
  display: grid;
  grid-template-columns: minmax(13.5rem, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(0.72rem, 1.4vw, 1rem);
  min-height: clamp(24rem, 60vh, 33rem);
  max-height: calc(var(--viewport-section-max) - 6rem);
}

.meal-board-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid oklch(0.29 0.072 70 / 0.2);
  border-radius: var(--radius);
  background: var(--walnut-deep);
  box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.22), var(--tight-shadow);
}

.meal-board-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0 44%, oklch(0.19 0.055 71 / 0.86) 100%),
    linear-gradient(90deg, oklch(0.19 0.055 71 / 0.28), transparent 58%);
}

.meal-board-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meal-board-photo figcaption {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
}

.meal-board-photo span {
  color: var(--saffron);
  font-size: 0.72rem;
  font-weight: 920;
  line-height: 1;
  text-transform: uppercase;
}

.meal-board-photo strong {
  max-width: 15ch;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1;
}

.meal-options {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: clamp(0.62rem, 1.15vw, 0.82rem);
  min-height: 0;
}

.meal-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.68rem, 1.35vw, 0.95rem);
  min-height: 0;
  padding: clamp(0.78rem, 1.55vw, 1.06rem);
  border: 1px solid oklch(0.29 0.072 70 / 0.18);
  border-radius: var(--radius);
  background: var(--cream-white);
  box-shadow: 0 1px 0 oklch(0.995 0.006 92 / 0.7) inset;
}

.meal-option.olive {
  background: var(--paper-olive);
}

.meal-option.blue {
  color: var(--paper);
  background: var(--blue);
  box-shadow: 8px 8px 0 oklch(0.79 0.165 88 / 0.22);
}

.meal-option span {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  color: var(--walnut-deep);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 920;
  line-height: 1;
  filter: drop-shadow(0 7px 9px color-mix(in oklch, var(--walnut-deep) 24%, transparent));
}

.meal-option span::before,
.meal-option span::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  clip-path: var(--number-zellij-shape);
}

.meal-option span::before {
  background: linear-gradient(135deg, color-mix(in oklch, var(--saffron) 86%, var(--paper-warm)) 0 48%, var(--saffron) 49% 100%);
  transition: transform 240ms var(--ease), filter 240ms var(--ease);
}

.meal-option span::after {
  inset: 0.42rem;
  z-index: -1;
  background: color-mix(in oklch, var(--saffron) 76%, var(--paper-warm));
  opacity: 0.5;
}

.meal-option:hover span::before {
  transform: scale(1.04);
  filter: saturate(1.08) brightness(1.02);
}

.meal-option h3 {
  color: inherit;
  font-size: clamp(1.16rem, 1.7vw, 1.5rem);
  line-height: 1;
}

.meal-option p {
  margin-top: 0.34rem;
  color: color-mix(in oklch, currentColor 72%, var(--muted));
  font-size: 0.92rem;
  line-height: 1.42;
}

.meal-option.blue p {
  color: oklch(0.985 0.009 92 / 0.82);
}

.restaurant-page .split.reverse {
  align-items: center;
}

.restaurant-page .image-strip {
  height: clamp(21rem, 58vh, 32rem);
  max-height: calc(var(--viewport-section-max) - 7rem);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
}

.restaurant-page .detail-list {
  gap: 0.62rem;
}

.restaurant-page .restaurant-facts-section {
  overflow: hidden;
  padding-block: clamp(2.9rem, 5.8vw, 5rem);
  color: var(--paper);
  background: var(--walnut-deep);
  border-block: 1px solid oklch(0.79 0.165 88 / 0.22);
}

.restaurant-facts-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: center;
}

.restaurant-facts-intro {
  width: min(100%, 30rem);
  max-width: none;
}

.restaurant-facts-intro .eyebrow {
  color: var(--saffron);
}

.restaurant-facts-intro .eyebrow::before {
  border-color: var(--saffron);
  background: var(--olive);
}

.restaurant-facts-intro h2 {
  width: 100%;
  max-width: none;
  color: var(--paper);
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  line-height: 0.96;
  text-wrap: balance;
}

.restaurant-facts-intro .lead {
  width: 100%;
  max-width: none;
  margin-top: clamp(1rem, 2vw, 1.45rem);
  color: oklch(0.955 0.028 88 / 0.74);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.58;
  text-wrap: pretty;
}

.restaurant-facts-grid {
  counter-reset: restaurant-fact;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid oklch(0.955 0.028 88 / 0.22);
  border-bottom: 1px solid oklch(0.955 0.028 88 / 0.22);
}

.restaurant-facts-grid article {
  counter-increment: restaurant-fact;
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  align-content: start;
  min-height: 10rem;
  padding: clamp(1.2rem, 2.1vw, 1.75rem) clamp(0.4rem, 1.8vw, 1.5rem);
}

.restaurant-facts-grid article:nth-child(odd) {
  padding-left: 0;
}

.restaurant-facts-grid article:nth-child(even) {
  border-left: 1px solid oklch(0.955 0.028 88 / 0.22);
}

.restaurant-facts-grid article:nth-child(-n + 2) {
  border-bottom: 1px solid oklch(0.955 0.028 88 / 0.22);
}

.restaurant-facts-grid article::before {
  content: counter(restaurant-fact, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / span 2;
  padding-top: 0.12rem;
  color: var(--saffron);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.restaurant-facts-grid h3,
.restaurant-facts-grid p {
  grid-column: 2;
}

.restaurant-facts-grid h3 {
  margin-bottom: 0.58rem;
  color: var(--paper);
  font-size: clamp(1.12rem, 1.55vw, 1.35rem);
  line-height: 1.08;
}

.restaurant-facts-grid p {
  max-width: 37ch;
  color: oklch(0.955 0.028 88 / 0.7);
  font-size: 0.92rem;
  line-height: 1.52;
}

.restaurant-reservation-section {
  background: var(--paper-warm);
}

.restaurant-reservation-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(20rem, 0.96fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.restaurant-reservation-copy {
  max-width: 34rem;
}

.restaurant-reservation-copy h2 {
  max-width: 11ch;
}

.restaurant-reservation-copy .detail-list {
  margin-top: 1.4rem;
  border-block: 1px solid oklch(0.29 0.072 70 / 0.16);
}

.restaurant-reservation-copy .detail-list li {
  padding-block: 0.85rem;
}

.restaurant-reservation-copy .detail-list li + li {
  border-top: 1px solid oklch(0.29 0.072 70 / 0.12);
}

.restaurant-reservation-section .image-strip {
  filter: drop-shadow(12px 12px 0 oklch(0.42 0.088 122 / 0.24));
}

@media (max-width: 900px) {
  .restaurant-facts-layout,
  .restaurant-reservation-layout {
    grid-template-columns: 1fr;
  }

  .restaurant-facts-intro {
    width: min(100%, 38rem);
  }

  .restaurant-reservation-layout {
    gap: 2rem;
  }

  .restaurant-reservation-copy {
    max-width: 42rem;
  }
}

@media (max-width: 620px) {
  .restaurant-page .restaurant-facts-section {
    padding-block: 2.25rem;
  }

  .restaurant-facts-layout {
    gap: 1.75rem;
  }

  .restaurant-facts-intro h2 {
    font-size: clamp(2.5rem, 12vw, 3.25rem);
  }

  .restaurant-facts-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-facts-grid article,
  .restaurant-facts-grid article:nth-child(odd) {
    min-height: 0;
    padding: 1.15rem 0;
  }

  .restaurant-facts-grid article:nth-child(even) {
    border-left: 0;
  }

  .restaurant-facts-grid article:not(:last-child) {
    border-bottom: 1px solid oklch(0.955 0.028 88 / 0.22);
  }

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

  .restaurant-reservation-section .image-strip {
    filter: drop-shadow(7px 7px 0 oklch(0.42 0.088 122 / 0.22));
  }
}

.restaurant-page .quote-band {
  padding: clamp(1.25rem, 3.2vw, 2.7rem);
}

@media (min-width: 1121px) {
  .restaurant-page {
    --restaurant-section-padding: clamp(2.35rem, 5.2vh, 3.6rem);
  }

  .restaurant-page .page-hero {
    padding-block: clamp(1.45rem, 3.4vh, 2.8rem);
  }

  .restaurant-page .page-hero .hero-grid {
    gap: clamp(3.25rem, 6.8vw, 6.75rem);
  }

  .restaurant-page .page-hero .hero-copy {
    padding-left: clamp(1rem, 4.2vw, 4.25rem);
  }

  .restaurant-menu-shell {
    gap: clamp(2.5rem, 5vw, 5.5rem);
  }

  .dining-rhythm {
    gap: clamp(2.5rem, 5.4vw, 4.9rem);
  }

  .meal-board {
    gap: clamp(1rem, 1.8vw, 1.45rem);
  }

  .meal-options {
    gap: clamp(0.82rem, 1.35vw, 1.08rem);
  }

  .restaurant-page .split.reverse {
    gap: clamp(3rem, 6.2vw, 6rem);
  }

  .restaurant-page .detail-list {
    gap: 0.86rem;
    margin-top: 1.35rem;
  }

  .restaurant-page .quote-band {
    padding: clamp(2rem, 4vw, 3.4rem);
  }
}

@media (hover: hover) {
  .meal-option {
    transition: transform 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
  }

  .meal-option:hover {
    transform: translateY(-3px);
    border-color: oklch(0.79 0.165 88 / 0.62);
    box-shadow: var(--tight-shadow);
  }
}

@media (max-width: 1120px) {
  .restaurant-page {
    --restaurant-header-height: 74px;
  }

  .restaurant-page .page-hero {
    block-size: auto;
    max-block-size: var(--viewport-section-max);
  }

  .restaurant-page .page-hero .hero-grid {
    height: auto;
  }

  .restaurant-page .page-hero .media-collage {
    height: auto;
    min-height: 0;
  }

  .restaurant-menu-shell {
    grid-template-columns: minmax(15rem, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .restaurant-page .page-hero .media-frame.main {
    min-height: clamp(20rem, 48vh, 32rem);
  }

  .dining-rhythm {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .dining-rhythm-copy {
    max-width: 46rem;
  }

  .dining-rhythm-copy h2 {
    max-width: 13ch;
  }

  .meal-board {
    min-height: clamp(22rem, 48vh, 29rem);
  }
}

@media (max-width: 700px) {
  .restaurant-page {
    --restaurant-section-padding: 1.2rem;
  }

  .restaurant-page .page-hero .hero-grid {
    gap: 0.95rem;
  }

  .restaurant-page .page-hero .page-title {
    max-width: 11ch;
    font-size: clamp(2.55rem, 12vw, 3.05rem);
  }

  .restaurant-page .page-hero .lead {
    max-width: 37ch;
    margin-top: 0.75rem;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .restaurant-page .page-hero .hero-actions {
    gap: 0.55rem;
    margin-top: 0.9rem;
  }

  .restaurant-page .page-hero .media-collage {
    display: block;
  }

  .restaurant-page .page-hero .media-frame.main {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .restaurant-page .page-hero .media-frame.floating.one,
  .restaurant-page .page-hero .media-frame.floating.two {
    display: none;
  }

  .restaurant-menu-section {
    padding-block: 2.5rem !important;
  }

  .restaurant-menu-section::before,
  .restaurant-menu-section::after {
    content: none;
  }

  .restaurant-menu-shell {
    grid-template-columns: 1fr;
    gap: 1.55rem;
  }

  .restaurant-menu-sheets {
    width: 100%;
    max-width: 34rem;
    gap: 0.32rem;
  }

  .restaurant-menu-cover {
    transform: rotateY(2deg) rotateZ(-0.7deg);
  }

  .restaurant-menu-list {
    transform: rotateY(-2deg) rotateZ(0.7deg);
  }

  .restaurant-menu-book-caption {
    margin-top: 0.72rem;
    font-size: 0.7rem;
  }

  .restaurant-menu-copy {
    max-width: 31rem;
  }

  .restaurant-menu-copy h2 {
    max-width: 13ch;
    font-size: clamp(2.2rem, 9vw, 2.85rem);
  }

  .restaurant-menu-copy .lead {
    margin-top: 0.75rem;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .restaurant-menu-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    margin-top: 1rem;
  }

  .restaurant-menu-actions .button {
    width: auto;
    min-height: 50px;
    justify-content: space-between;
    white-space: normal;
    text-align: start;
  }

  .restaurant-menu-share-panel {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 1rem;
    margin-top: 0.85rem;
    padding: 1.15rem;
    box-shadow: 5px 6px 0 oklch(0.42 0.09 120 / 0.46);
  }

  .restaurant-menu-qr-frame {
    width: min(100%, 16.5rem);
    margin-top: 0.35rem;
  }

  .restaurant-menu-share-copy {
    width: 100%;
    padding-inline-end: 0;
    text-align: center;
  }

  .restaurant-menu-share-copy h3 {
    max-width: none;
    font-size: 1.55rem;
  }

  .restaurant-menu-share-copy > p:not(.restaurant-menu-share-kicker, .restaurant-menu-share-status) {
    max-width: 33ch;
    margin-inline: auto;
  }

  .restaurant-menu-share-action {
    width: min(100%, 15rem);
  }

  .restaurant-menu-profile-link {
    width: 100%;
    justify-content: space-between;
    font-size: 0.82rem;
  }

  .restaurant-menu-browser {
    margin-top: 1.75rem;
    padding-bottom: 3rem;
  }

  .restaurant-menu-expander {
    grid-template-columns: minmax(0, 1fr) 2.65rem;
    width: min(100%, 21.5rem);
    min-height: 4.65rem;
    padding: 0.72rem 0.75rem 0.72rem 0.95rem;
  }

  .restaurant-menu-expand-icon {
    width: 2.65rem;
  }

  .restaurant-menu-directory-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.8rem;
    margin-top: 2rem;
    margin-bottom: 1.55rem;
    padding-top: 1.7rem;
  }

  .restaurant-menu-directory-head h3 {
    max-width: 15ch;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .restaurant-menu-directory-head > p {
    max-width: 38ch;
    font-size: 0.92rem;
  }

  .restaurant-menu-categories {
    grid-template-columns: 1fr;
  }

  .restaurant-menu-category summary {
    min-height: 4.15rem;
    gap: 0.65rem;
  }

  .restaurant-menu-count {
    font-size: 0.7rem;
  }

  .restaurant-menu-item {
    gap: 0.75rem;
  }

  .restaurant-menu-item h4 {
    font-size: 0.96rem;
  }

  .dining-rhythm {
    gap: 0.95rem;
  }

  .dining-rhythm-copy h2 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 10vw, 2.75rem);
  }

  .dining-rhythm-copy .lead {
    margin-top: 0.75rem;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .dining-rhythm-copy .button {
    margin-top: 0.9rem;
  }

  .meal-board {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
  }

  .meal-board-photo {
    min-height: 0;
    aspect-ratio: 16 / 8.8;
  }

  .meal-board-photo figcaption {
    inset-inline: 0.82rem;
    bottom: 0.82rem;
  }

  .meal-board-photo strong {
    max-width: 17ch;
    font-size: 1.24rem;
  }

  .meal-options {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(13.75rem, 72vw);
    grid-template-rows: 1fr;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 0.1rem 0.1rem 0.45rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .meal-options.is-hinting {
    scrollbar-color: var(--scrollbar-yellow) transparent;
  }

  .meal-option {
    align-items: start;
    min-height: 8.2rem;
    scroll-snap-align: start;
  }

  .meal-option h3 {
    font-size: 1.12rem;
  }

  .meal-option p {
    font-size: 0.86rem;
    line-height: 1.36;
  }

  .restaurant-page .image-strip {
    height: auto;
    max-height: none;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .restaurant-page .image-strip img {
    aspect-ratio: 16 / 9;
  }

  .restaurant-page .image-strip img:not(:first-child) {
    display: none;
  }
}

@media (max-width: 700px) and (max-height: 740px) {
  .restaurant-page {
    --restaurant-section-padding: 0.85rem;
  }

  .restaurant-page .eyebrow {
    margin-bottom: 0.62rem;
  }

  .restaurant-page .page-hero .hero-grid {
    gap: 0.68rem;
  }

  .restaurant-page .page-hero .page-title {
    font-size: clamp(2.08rem, 10.5vw, 2.42rem);
    line-height: 0.94;
  }

  .restaurant-page .page-hero .lead {
    margin-top: 0.58rem;
    font-size: 0.86rem;
    line-height: 1.32;
  }

  .restaurant-page .page-hero .hero-actions {
    gap: 0.42rem;
    margin-top: 0.68rem;
  }

  .restaurant-page .page-hero .hero-actions .button {
    min-height: 40px;
    padding-block: 0.58rem;
  }

  .restaurant-page .page-hero .media-frame.main {
    aspect-ratio: 16 / 5.3;
  }

  .restaurant-page .page-hero .media-frame.main img {
    object-position: center 42%;
  }

  .dining-rhythm {
    gap: 0.68rem;
  }

  .dining-rhythm-copy h2 {
    font-size: clamp(1.92rem, 9.2vw, 2.28rem);
    line-height: 0.96;
  }

  .dining-rhythm-copy .lead {
    margin-top: 0.58rem;
    font-size: 0.86rem;
    line-height: 1.34;
  }

  .dining-rhythm-copy .button {
    min-height: 40px;
    margin-top: 0.68rem;
    padding-block: 0.58rem;
  }

  .meal-board {
    gap: 0.54rem;
  }

  .meal-board-photo {
    aspect-ratio: 16 / 5.8;
  }

  .meal-board-photo figcaption {
    inset-inline: 0.7rem;
    bottom: 0.66rem;
  }

  .meal-board-photo span {
    font-size: 0.62rem;
  }

  .meal-board-photo strong {
    font-size: 1.05rem;
  }

  .meal-options {
    gap: 0.54rem;
    padding-bottom: 0.25rem;
  }

  .meal-option {
    min-height: 7.45rem;
    padding: 0.68rem;
  }
}

/*
 * Riad page
 *
 * Image-led brand page for the restored house, its heritage details and the
 * traditional products shown or taught inside the riad.
 */
.riad-page {
  --riad-header-height: 82px;
}

.riad-page .site-header {
  background: oklch(0.985 0.009 92 / 0.97);
}

.riad-hero {
  position: relative;
  display: grid;
  min-height: min(880px, calc(var(--viewport-section-max) - var(--riad-header-height) - 28px));
  overflow: hidden;
  color: var(--paper);
  background: var(--walnut-deep);
  isolation: isolate;
}

.riad-hero::before,
.riad-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.riad-hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, oklch(0.19 0.055 71 / 0.96) 0 34%, oklch(0.19 0.055 71 / 0.68) 34% 58%, oklch(0.19 0.055 71 / 0.22) 58% 100%),
    linear-gradient(0deg, oklch(0.19 0.055 71 / 0.82) 0, transparent 42%);
}

.riad-hero::after {
  z-index: -1;
  background:
    linear-gradient(135deg, transparent 0 48%, oklch(0.79 0.165 88 / 0.18) 49% 51%, transparent 52% 100%);
  background-size: 38px 38px;
  opacity: 0.34;
}

.riad-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.riad-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.riad-hero-content {
  width: min(1240px, calc(100% - 32px));
  min-height: inherit;
  display: grid;
  align-content: end;
  margin: 0 auto;
  padding-block: clamp(3rem, 8vh, 5.8rem);
}

.riad-kicker {
  width: fit-content;
  margin: 0 0 0.9rem;
  color: var(--walnut-deep);
  background: var(--saffron);
  border: 1px solid oklch(0.985 0.009 92 / 0.35);
  border-radius: var(--radius);
  padding: 0.55rem 0.72rem;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.riad-hero h1 {
  max-width: 10.5ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 5.35rem;
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.riad-hero .lead {
  max-width: 54ch;
  margin-top: 1.15rem;
  color: oklch(0.955 0.028 88 / 0.9);
  font-size: 1.12rem;
  line-height: 1.62;
}

.riad-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.riad-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  width: min(760px, 100%);
  margin: clamp(1.6rem, 4vh, 2.5rem) 0 0;
}

.riad-hero-facts div {
  min-height: 8.25rem;
  display: grid;
  align-content: end;
  border: 1px solid oklch(0.985 0.009 92 / 0.22);
  border-radius: var(--radius);
  background: oklch(0.19 0.055 71 / 0.78);
  padding: 1rem;
  box-shadow: 8px 8px 0 oklch(0.79 0.165 88 / 0.16);
}

.riad-hero-facts dt {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 760;
  line-height: 1;
}

.riad-hero-facts dd {
  margin: 0.45rem 0 0;
  color: oklch(0.955 0.028 88 / 0.82);
  font-size: 0.9rem;
  line-height: 1.42;
}

.riad-story-section {
  background:
    linear-gradient(180deg, var(--paper) 0, oklch(0.955 0.028 88) 100%);
}

.riad-story-section,
.riad-products-section,
#riad-story-title,
#riad-products-title {
  scroll-margin-top: calc(var(--riad-header-height) + 1rem);
}

.riad-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.7fr);
  gap: clamp(1.2rem, 4vw, 3.6rem);
  align-items: end;
}

.riad-story-copy h2,
.riad-products-head h2 {
  max-width: 11ch;
  letter-spacing: 0;
}

.riad-story-copy p:not(.eyebrow):not(.lead) {
  max-width: 66ch;
  margin-top: 1rem;
  color: oklch(0.38 0.044 74);
}

.riad-memory-panel {
  align-self: center;
  display: grid;
  align-content: start;
  border: 1px solid oklch(0.29 0.072 70 / 0.14);
  border-radius: var(--radius);
  color: var(--walnut-deep);
  background:
    linear-gradient(135deg, oklch(0.995 0.006 92 / 0.96), oklch(0.925 0.038 108 / 0.84));
  box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.22), var(--tight-shadow);
  padding: clamp(1.25rem, 3vw, 2.2rem);
}

.riad-memory-panel span {
  color: var(--olive);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.riad-memory-panel ul {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.riad-memory-panel li {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  gap: 0.78rem;
  align-items: start;
  color: oklch(0.29 0.072 70 / 0.88);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.5;
}

.riad-memory-panel li::before {
  content: "";
  width: 0.62rem;
  height: 0.62rem;
  margin-top: 0.45rem;
  background: var(--saffron);
  transform: rotate(45deg);
}

.riad-room-rail {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 15rem;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.riad-room {
  position: relative;
  grid-column: span 5;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid oklch(0.29 0.072 70 / 0.2);
  border-radius: var(--radius);
  background: var(--walnut-deep);
  box-shadow: var(--tight-shadow);
}

.riad-room-wide {
  grid-column: span 7;
  grid-row: span 2;
}

.riad-room img,
.riad-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.riad-room::after,
.riad-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 44%, oklch(0.19 0.055 71 / 0.88) 100%);
  pointer-events: none;
}

.riad-room figcaption,
.riad-product-card figcaption {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 1;
}

.riad-room figcaption span,
.riad-product-card figcaption span {
  display: block;
  color: var(--saffron);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.riad-room figcaption strong,
.riad-product-card figcaption strong {
  display: block;
  max-width: 24ch;
  margin-top: 0.28rem;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.04;
}

.riad-press-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.8rem, 6.4vw, 5.8rem);
  background-color: var(--paper-warm);
  background-image:
    linear-gradient(90deg, oklch(0.995 0.006 92 / 0.9) 0 40%, oklch(0.955 0.028 88 / 0.84) 40% 100%),
    repeating-linear-gradient(0deg, transparent 0 11px, oklch(0.44 0.03 78 / 0.025) 11px 12px);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, auto;
}

.riad-press-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(22rem, 0.62fr) minmax(420px, 1fr);
  gap: clamp(1.6rem, 3.6vw, 3.7rem);
  align-items: center;
}

.riad-press-copy {
  max-width: 37rem;
  padding-block: clamp(0.25rem, 1.2vw, 0.75rem);
}

.riad-press-copy h2 {
  max-width: 17ch;
  margin-top: 0.8rem;
  letter-spacing: 0;
  font-size: clamp(2.25rem, 3.55vw, 3.55rem);
  line-height: 1;
}

.riad-press-copy .lead {
  max-width: 45ch;
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.58;
}

.riad-press-copy p:not(.eyebrow):not(.lead) {
  max-width: 46ch;
  margin-top: 0.82rem;
  color: oklch(0.38 0.044 74);
}

.riad-press-copy .button {
  margin-top: 1.5rem;
}

.riad-press-copy .button svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.riad-press-spread {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(100%, 56rem);
  margin: 0;
  border: 1px solid oklch(0.29 0.072 70 / 0.18);
  border-radius: calc(var(--radius) + 2px);
  background: oklch(0.985 0.009 92 / 0.92);
  box-shadow: 0 1.15rem 2.7rem oklch(0.19 0.055 71 / 0.14);
  padding: clamp(0.74rem, 1.3vw, 1rem);
}

.riad-press-spread::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0.9rem -1.15rem -1.15rem 1.15rem;
  border-radius: inherit;
  background: oklch(0.42 0.088 122 / 0.16);
  pointer-events: none;
}

.riad-press-spread a {
  display: block;
  overflow: hidden;
  border: 1px solid oklch(0.29 0.072 70 / 0.18);
  border-radius: calc(var(--radius) - 2px);
}

.riad-press-spread img {
  display: block;
  width: 100%;
  height: auto;
}

.riad-press-pages {
  position: absolute;
  z-index: 1;
  top: clamp(0.95rem, 1.7vw, 1.2rem);
  left: clamp(0.95rem, 1.7vw, 1.2rem);
  color: var(--paper);
  background: var(--walnut-deep);
  border: 1px solid oklch(0.985 0.009 92 / 0.35);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.46rem 0.62rem;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.riad-press-spread figcaption {
  margin: 0.74rem 0.14rem 0.1rem;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.riad-products-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 83% 18%, oklch(0.79 0.165 88 / 0.12), transparent 26rem),
    linear-gradient(135deg, oklch(0.19 0.055 71) 0 58%, oklch(0.255 0.064 73) 58% 100%);
}

.riad-products-section .eyebrow,
.riad-products-section .lead {
  color: oklch(0.955 0.028 88 / 0.88);
}

.riad-products-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.86fr);
  gap: clamp(1.1rem, 3.8vw, 3.2rem);
  align-items: center;
}

.riad-products-head h2 {
  color: var(--paper);
}

.riad-products-head .lead {
  max-width: 56ch;
}

.riad-product-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-rows: clamp(11rem, 15vw, 13.5rem);
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3.6rem);
}

.riad-product-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid oklch(0.985 0.009 92 / 0.22);
  border-radius: var(--radius);
  background: oklch(0.245 0.047 74);
  box-shadow: 7px 7px 0 oklch(0.79 0.165 88 / 0.13);
}

.riad-product-feature {
  grid-column: 1 / span 5;
  grid-row: 1 / span 2;
}

.riad-product-zellige {
  grid-column: 6 / span 3;
  grid-row: 1;
}

.riad-product-tall {
  grid-column: 9 / span 4;
  grid-row: 1 / span 2;
}

.riad-product-pottery {
  grid-column: 6 / span 3;
  grid-row: 2;
}

.riad-product-wide {
  display: none;
  grid-column: 1 / span 12;
  grid-row: 3;
}

.riad-product-wide figcaption strong {
  max-width: 38ch;
}

.riad-product-card img {
  transition: transform 0.7s var(--ease);
}

.riad-product-card:hover img {
  transform: scale(1.035);
}

@media (min-width: 1360px) {
  .riad-hero h1 {
    font-size: 6.15rem;
  }
}

@media (max-width: 1120px) {
  .riad-page {
    --riad-header-height: 74px;
  }

  .riad-hero {
    min-height: min(840px, calc(var(--viewport-section-max) - var(--riad-header-height) - 24px));
  }

  .riad-hero::before {
    background:
      linear-gradient(90deg, oklch(0.19 0.055 71 / 0.94) 0 48%, oklch(0.19 0.055 71 / 0.54) 72%, oklch(0.19 0.055 71 / 0.18) 100%),
      linear-gradient(0deg, oklch(0.19 0.055 71 / 0.86) 0, transparent 46%);
  }

  .riad-hero h1 {
    font-size: 4.3rem;
  }

  .riad-story-grid,
  .riad-press-grid,
  .riad-products-head {
    grid-template-columns: 1fr;
  }

  .riad-memory-panel {
    min-height: 18rem;
  }

  .riad-press-copy {
    max-width: 49rem;
  }

  .riad-press-spread {
    width: min(100%, 48rem);
  }

  .riad-room-rail,
  .riad-product-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 14rem;
  }

  .riad-room,
  .riad-room-wide,
  .riad-product-card,
  .riad-product-feature,
  .riad-product-zellige,
  .riad-product-wide {
    grid-column: span 3;
    grid-row: span 1;
  }

  .riad-product-tall {
    grid-row: span 1;
  }

  .riad-product-pottery {
    grid-column: span 3;
    grid-row: span 1;
  }

  .riad-product-wide {
    display: block;
  }

}

@media (max-width: 760px) {
  .riad-hero {
    min-height: auto;
  }

  .riad-hero::before {
    background:
      linear-gradient(180deg, oklch(0.19 0.055 71 / 0.42) 0 22%, oklch(0.19 0.055 71 / 0.94) 66% 100%);
  }

  .riad-hero-media {
    height: 52%;
  }

  .riad-hero-media img {
    object-position: center 22%;
  }

  .riad-hero-content {
    min-height: min(840px, calc(var(--viewport-section-max) - var(--riad-header-height) - 24px));
    align-content: end;
    padding-block: 15rem 2rem;
  }

  .riad-hero h1 {
    font-size: 3.05rem;
    line-height: 0.96;
  }

  .riad-hero .lead {
    max-width: 34ch;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .riad-hero-actions {
    display: grid;
    gap: 0.65rem;
  }

  .riad-hero-actions .button {
    width: 100%;
  }

  .riad-hero-facts {
    grid-template-columns: 1fr;
  }

  .riad-hero-facts div {
    min-height: 0;
  }

  .riad-room-rail,
  .riad-product-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  .riad-room,
  .riad-room-wide,
  .riad-product-card,
  .riad-product-feature,
  .riad-product-zellige,
  .riad-product-tall,
  .riad-product-pottery,
  .riad-product-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 18rem;
  }

  .riad-room-wide {
    min-height: 24rem;
  }

  .riad-product-card figcaption {
    padding-right: 3.6rem;
  }

  .riad-products-section {
    background:
      linear-gradient(180deg, var(--walnut-deep) 0, oklch(0.29 0.072 70) 54%, oklch(0.42 0.088 122) 100%);
  }

  .riad-products-head h2 {
    max-width: min(100%, 18ch);
    font-size: clamp(2rem, 8.6vw, 2.45rem);
    line-height: 1.03;
  }

  .riad-press-section {
    background-size: 100% 100%, 680px auto;
  }

  .riad-press-spread {
    width: 100%;
    box-shadow: 0 1rem 2.4rem oklch(0.19 0.055 71 / 0.14);
  }

  .riad-press-spread::before {
    inset: 0.65rem -0.65rem -0.65rem 0.65rem;
  }

}

@media (max-width: 430px) {
  .riad-hero-content {
    width: min(100% - 24px, 1240px);
    padding-block: 13rem 1.55rem;
  }

  .riad-kicker {
    font-size: 0.66rem;
  }

  .riad-hero h1 {
    font-size: 2.64rem;
  }

  .riad-room,
  .riad-product-card {
    min-height: 16rem;
  }

  .riad-room figcaption strong,
  .riad-product-card figcaption strong {
    font-size: 1.24rem;
  }
}

@media (max-width: 820px) {
  .contact-page .contact-desk-section {
    padding-block: 0 2.6rem;
  }

  .contact-page .contact-intro.reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .contact-page .contact-booking-panel {
    position: relative;
    z-index: 2;
    margin-top: 0.42rem;
  }

  .contact-page .contact-booking-panel.reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Workshops page */
.workshops-page {
  --workshop-blue-soft: oklch(0.925 0.045 278);
  --workshop-rose-soft: oklch(0.955 0.035 18);
  --workshop-saffron-soft: oklch(0.94 0.078 86);
}

.workshop-hero {
  position: relative;
  min-height: min(860px, calc(100svh - 118px));
  overflow: hidden;
  color: var(--paper);
  background: var(--walnut-deep);
  isolation: isolate;
}

.workshop-hero::before,
.workshop-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.workshop-hero::before {
  background:
    linear-gradient(90deg, oklch(0.19 0.055 71 / 0.94) 0 34%, oklch(0.19 0.055 71 / 0.72) 54%, oklch(0.19 0.055 71 / 0.28) 100%),
    linear-gradient(0deg, oklch(0.19 0.055 71 / 0.9) 0, transparent 46%);
}

.workshop-hero::after {
  background:
    linear-gradient(135deg, transparent 0 48%, oklch(0.79 0.165 88 / 0.28) 49% 51%, transparent 52% 100%),
    linear-gradient(45deg, transparent 0 48%, oklch(0.34 0.145 280 / 0.22) 49% 51%, transparent 52% 100%);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, black, transparent 76%);
  opacity: 0.54;
}

.workshop-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.workshop-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(1.08) contrast(1.02);
}

.workshop-hero-layout {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(18rem, 0.38fr);
  gap: 3rem;
  align-items: end;
  padding-block: 5.8rem 4.6rem;
}

.workshop-hero-copy {
  max-width: 52rem;
}

.workshop-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.64rem;
  margin: 0 0 1.05rem;
  color: var(--saffron);
  font-weight: 920;
  line-height: 1;
}

.workshop-kicker::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  background: var(--saffron);
  box-shadow: 0.42rem 0.42rem 0 oklch(0.34 0.145 280 / 0.62);
  transform: rotate(45deg);
}

.workshop-hero h1 {
  max-width: 10.5ch;
  color: var(--paper);
  font-size: 5.85rem;
  line-height: 0.91;
}

.workshop-hero .lead {
  max-width: 48rem;
  color: var(--paper);
  font-size: 1.13rem;
}

.workshop-hero .button.secondary {
  color: var(--walnut-deep);
  background: oklch(0.985 0.009 92 / 0.94);
  border-color: oklch(0.985 0.009 92 / 0.52);
}

.workshop-hero-note {
  align-self: end;
  padding: 1.32rem;
  border: 1px solid oklch(0.985 0.009 92 / 0.18);
  border-radius: var(--radius);
  background: oklch(0.19 0.055 71 / 0.92);
  box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.34), 0 18px 44px oklch(0.19 0.055 71 / 0.22);
}

.workshop-hero-note strong {
  display: block;
  max-width: 12ch;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 0.98;
}

.workshop-hero-note p {
  margin-top: 0.82rem;
  color: var(--paper);
}

.workshop-hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 42px;
  border-top: 1px solid oklch(0.19 0.055 71 / 0.24);
  color: var(--walnut-deep);
  background: var(--saffron);
}

.workshop-hero-strip::before,
.workshop-hero-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(2.2rem, 5vw, 5rem);
  pointer-events: none;
}

.workshop-hero-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--saffron), oklch(0.79 0.165 88 / 0));
}

.workshop-hero-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--saffron), oklch(0.79 0.165 88 / 0));
}

.workshop-hero-strip-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: max-content;
  animation: workshop-strip-marquee 28s linear infinite paused;
}

.workshop-hero-strip-track.is-motion-visible {
  animation-play-state: running;
  will-change: transform;
}

.workshop-hero-strip:hover .workshop-hero-strip-track {
  animation-play-state: paused;
}

.workshop-hero-strip span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 1rem;
  padding-inline: 1.1rem;
  font-family: var(--font-display);
  font-weight: 860;
  white-space: nowrap;
}

.workshop-hero-strip span::after {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  background: var(--walnut-deep);
  transform: rotate(45deg);
}

@keyframes workshop-strip-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-25%, 0, 0);
  }
}

.workshop-proof-section {
  color: var(--ink);
  background: var(--paper-warm);
}

.workshop-proof-section .section-head .lead {
  color: var(--ink);
}

.workshop-proof-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 1.38fr);
  gap: 4rem;
  align-items: center;
}

.workshop-proof-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 7rem;
  gap: 0.86rem;
}

.workshop-proof-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid oklch(0.29 0.072 70 / 0.2);
  border-radius: var(--radius);
  background: var(--paper-warm);
  box-shadow: var(--tight-shadow);
}

.workshop-proof-large {
  grid-column: span 3;
  grid-row: span 4;
  box-shadow: 12px 12px 0 oklch(0.79 0.165 88 / 0.22), var(--tight-shadow);
}

.workshop-proof-tall {
  grid-column: span 2;
  grid-row: span 4;
  box-shadow: 12px 12px 0 oklch(0.42 0.088 122 / 0.18), var(--tight-shadow);
}

.workshop-proof-wide {
  grid-column: span 4;
  grid-row: span 2;
}

.workshop-proof-detail {
  grid-column: span 2;
  grid-row: span 2;
  box-shadow: 10px 10px 0 oklch(0.34 0.145 280 / 0.12), var(--tight-shadow);
}

.workshop-proof-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-proof-large img {
  object-position: center 48%;
}

.workshop-proof-tall img {
  object-position: center 54%;
}

.workshop-proof-wide img {
  object-position: center 52%;
}

.workshop-proof-detail img {
  object-position: center 48%;
}

.workshop-proof-item figcaption {
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.72rem;
  border-radius: var(--radius);
  color: var(--paper);
  background: oklch(0.19 0.055 71 / 0.96);
  padding: 0.6rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 820;
  line-height: 1.3;
}

.workshop-catalog-section {
  overflow: hidden;
  padding-block: 5.4rem 7rem;
  border-block: 1px solid oklch(0.42 0.088 122 / 0.18);
  background: var(--paper-olive);
}

.workshop-catalog-section .section-head .lead {
  color: var(--ink);
}

.workshop-catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.42fr);
  gap: 2rem;
  align-items: end;
}

.workshop-reserve-panel {
  padding: 1.4rem;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--walnut-deep);
  box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.28);
}

.workshop-reserve-panel strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.workshop-reserve-panel ul {
  display: grid;
  gap: 0.62rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.workshop-reserve-panel li {
  position: relative;
  padding-left: 1.08rem;
  color: var(--paper);
  font-size: 0.92rem;
}

.workshop-reserve-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.38rem;
  height: 0.38rem;
  background: var(--saffron);
  transform: rotate(45deg);
}

.workshop-filters {
  margin: 1.8rem 0 1.2rem;
}

.workshops-page .workshop-grid.workshop-catalog-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.86rem, 1.2vw, 1.1rem);
  align-items: stretch;
}

.workshops-page .service-card.workshop-card {
  position: relative;
  min-height: 0;
  display: grid;
  grid-column: span 4;
  grid-template-rows: none;
  border: 1px solid oklch(0.29 0.072 70 / 0.22);
  border-radius: var(--radius);
  background: var(--cream-white);
  box-shadow: 0 1px 0 oklch(0.995 0.006 92 / 0.62) inset;
}

.workshops-page .service-card.workshop-card:hover {
  border-color: oklch(0.29 0.072 70 / 0.32);
  box-shadow: 12px 12px 0 oklch(0.55 0.112 86 / 0.16), var(--tight-shadow);
}

.workshop-card-feature,
.workshop-card-wide {
  min-height: clamp(30rem, 42vw, 36rem);
  grid-template-columns: 1fr;
  overflow: hidden;
  color: var(--paper);
  background: var(--walnut-deep);
}

.workshops-page .service-card.workshop-card-feature,
.workshops-page .service-card.workshop-card-wide {
  grid-column: span 8;
}

.workshops-page .service-card.workshop-card-compact {
  grid-column: span 4;
}

.workshop-card-media {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4 / 3;
  background: var(--paper-warm);
}

.workshop-card-feature .workshop-card-media,
.workshop-card-wide .workshop-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  aspect-ratio: auto;
}

.workshop-card-compact .workshop-card-media {
  aspect-ratio: 4 / 3;
}

.workshop-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-position, center);
  transition: transform 0.7s var(--ease);
}

.workshop-card:hover .workshop-card-media img {
  transform: scale(1.035);
}

.workshop-card-feature .workshop-card-media::after,
.workshop-card-wide .workshop-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 0 34%, oklch(0.19 0.055 71 / 0.7) 100%),
    linear-gradient(90deg, oklch(0.19 0.055 71 / 0.58) 0, transparent 64%);
}

.workshop-card-body {
  display: flex;
  flex-direction: column;
  align-content: start;
  gap: 0.76rem;
  padding: 1.12rem;
  background: var(--cream-white);
}

.workshop-card-feature .workshop-card-body,
.workshop-card-wide .workshop-card-body {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: start;
  width: min(28rem, calc(100% - 2rem));
  margin: 1rem;
  border: 1px solid oklch(0.955 0.028 88 / 0.18);
  border-radius: var(--radius);
  padding: clamp(1.06rem, 2vw, 1.36rem);
  background:
    linear-gradient(135deg, oklch(0.19 0.055 71 / 0.96), oklch(0.245 0.047 74 / 0.92));
  box-shadow: 10px 10px 0 oklch(0.79 0.165 88 / 0.18);
}

.workshop-card-blue .workshop-card-body {
  background: var(--workshop-blue-soft);
}

.workshop-card-olive .workshop-card-body {
  background: var(--paper-olive);
}

.workshop-card-saffron .workshop-card-body {
  background: var(--workshop-saffron-soft);
}

.workshop-card-rose .workshop-card-body {
  background: var(--workshop-rose-soft);
}

.workshops-page .service-card.workshop-card-feature .workshop-card-body,
.workshops-page .service-card.workshop-card-wide .workshop-card-body {
  background:
    linear-gradient(135deg, oklch(0.19 0.055 71 / 0.96), oklch(0.245 0.047 74 / 0.92));
}

.workshop-card-feature .workshop-card-label,
.workshop-card-wide .workshop-card-label {
  color: var(--saffron);
}

.workshop-card-feature h3,
.workshop-card-wide h3,
.workshop-card-feature p,
.workshop-card-wide p,
.workshop-card-feature .workshop-card-list li,
.workshop-card-wide .workshop-card-list li {
  color: var(--paper);
}

.workshop-card-feature p,
.workshop-card-wide p,
.workshop-card-feature .workshop-card-list li,
.workshop-card-wide .workshop-card-list li {
  color: var(--paper);
}

.workshop-card-feature .workshop-card-list li::before,
.workshop-card-wide .workshop-card-list li::before {
  background: var(--saffron);
}

.workshop-card-feature .workshop-card-link,
.workshop-card-wide .workshop-card-link {
  color: var(--walnut-deep);
  background: var(--saffron);
}

.workshop-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.82rem;
  color: var(--walnut-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.workshop-card-number {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3.28rem;
  height: 3.28rem;
  color: var(--walnut-deep);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 920;
  line-height: 1;
  isolation: isolate;
  filter: drop-shadow(0 8px 10px color-mix(in oklch, var(--walnut-deep) 28%, transparent));
}

.workshop-card-number::before,
.workshop-card-number::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  clip-path: var(--number-zellij-shape);
}

.workshop-card-number::before {
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--saffron) 86%, var(--paper-warm)) 0 48%, var(--saffron) 49% 100%);
  transition: transform 240ms var(--ease), filter 240ms var(--ease);
}

.workshop-card-number::after {
  inset: 0.52rem;
  z-index: -1;
  background: color-mix(in oklch, var(--saffron) 74%, var(--paper-warm));
  opacity: 0.5;
}

.workshop-card:hover .workshop-card-number::before {
  transform: scale(1.04);
  filter: saturate(1.08) brightness(1.02);
}

.workshop-card-label {
  max-width: min(100%, 18ch);
  color: var(--walnut);
  font-size: 0.72rem;
  font-weight: 920;
  line-height: 1.1;
  text-transform: uppercase;
}

.workshop-card h3 {
  max-width: 13ch;
  color: var(--walnut-deep);
  font-size: 1.82rem;
  line-height: 0.96;
}

.workshop-card-feature h3,
.workshop-card-wide h3 {
  font-size: clamp(2.02rem, 2.8vw, 2.34rem);
}

.workshop-card p {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.48;
}

.workshop-card-feature h3,
.workshop-card-wide h3 {
  color: var(--paper);
}

.workshop-card-feature p,
.workshop-card-wide p {
  color: oklch(0.955 0.028 88 / 0.84);
}

.workshop-card-list {
  display: grid;
  gap: 0.38rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workshop-card-list li {
  position: relative;
  padding-left: 1.08rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.46;
}

.workshop-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.38rem;
  height: 0.38rem;
  background: var(--ochre);
  transform: rotate(45deg);
}

.workshop-card-link {
  display: inline-flex;
  align-items: center;
  align-self: start;
  gap: 0.5rem;
  min-height: 44px;
  margin-top: 0.18rem;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--walnut-deep);
  padding: 0.72rem 0.86rem;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.24s var(--ease), background 0.24s var(--ease);
}

.workshop-card-link::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.workshop-card-link:hover {
  color: var(--walnut-deep);
  background: var(--saffron);
}

.workshop-card-link:active {
  transform: translateY(1px) scale(0.99);
}

.workshop-audience-section {
  padding-block: clamp(2.7rem, 4.6vw, 4.2rem);
  background:
    linear-gradient(90deg, var(--paper) 0 58%, oklch(0.79 0.165 88 / 0.16) 58% 100%);
}

.workshop-audience-section .section-head .lead {
  color: var(--ink);
}

.workshop-audience-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: center;
}

.workshop-audience-list {
  display: grid;
  gap: 0.86rem;
}

.workshop-audience-list article {
  display: grid;
  grid-template-columns: minmax(9rem, 0.34fr) minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding: 1rem 1.08rem;
  border: 1px solid oklch(0.29 0.072 70 / 0.18);
  border-radius: var(--radius);
  background: var(--cream-white);
  box-shadow: 8px 8px 0 oklch(0.79 0.165 88 / 0.14);
}

.workshop-audience-list article:nth-child(2) {
  background: var(--paper-olive);
  box-shadow: 8px 8px 0 oklch(0.42 0.088 122 / 0.16);
}

.workshop-audience-list article:nth-child(3) {
  background: var(--walnut-deep);
  box-shadow: 8px 8px 0 oklch(0.34 0.145 280 / 0.14);
}

.workshop-audience-list span {
  color: var(--walnut-deep);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 780;
  line-height: 1;
}

.workshop-audience-list article:nth-child(3) span,
.workshop-audience-list article:nth-child(3) p {
  color: var(--paper);
}

.workshop-audience-list p {
  color: var(--ink);
}

.workshop-events-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid oklch(0.29 0.072 70 / 0.16);
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 18%, oklch(0.79 0.165 88 / 0.16), transparent 28rem),
    linear-gradient(135deg, var(--walnut-deep) 0 58%, oklch(0.245 0.047 74) 58% 100%);
}

.workshop-events-section .eyebrow,
.workshop-events-section h2,
.workshop-events-section .lead {
  color: var(--paper);
}

.workshop-events-section .lead {
  color: var(--paper);
}

.workshop-events-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(2rem, 5vw, 4.6rem);
  align-items: center;
}

.workshop-events-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  max-width: 42rem;
  margin: 1.35rem 0 0;
}

.workshop-events-points span {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  border: 1px solid oklch(0.955 0.028 88 / 0.42);
  border-radius: var(--radius);
  padding: 0.62rem 0.78rem;
  color: var(--paper);
  background: oklch(0.995 0.006 92 / 0.14);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.12;
}

.workshop-events-points strong {
  margin-right: 0.32rem;
  color: var(--saffron);
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 0.9;
}

.workshop-event-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-rows: minmax(12rem, 1fr) auto;
  gap: 1rem;
}

.workshop-event-photo,
.workshop-event-note {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid oklch(0.955 0.028 88 / 0.18);
  border-radius: var(--radius);
  background: oklch(0.995 0.006 92 / 0.08);
  box-shadow: 14px 14px 0 oklch(0.79 0.165 88 / 0.16), var(--tight-shadow);
}

.workshop-event-photo {
  min-height: 20rem;
}

.workshop-event-photo-large {
  grid-row: span 2;
  min-height: 31rem;
}

.workshop-event-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-event-photo-large img {
  object-position: 48% center;
}

.workshop-event-photo figcaption {
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.72rem;
  border-radius: var(--radius);
  color: var(--walnut-deep);
  background: var(--saffron);
  padding: 0.58rem 0.68rem;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.24;
}

.workshop-event-note {
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 0.7rem;
  min-height: 12rem;
  padding: 1.2rem;
  color: var(--walnut-deep);
  background: var(--cream-white);
  box-shadow: 12px 12px 0 oklch(0.79 0.165 88 / 0.72), var(--tight-shadow);
}

.workshop-event-note strong {
  color: var(--walnut-deep);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 0.96;
}

.workshop-event-note p {
  max-width: 28ch;
  margin: 0;
  color: var(--walnut);
  line-height: 1.5;
}

@media (max-width: 1120px) {
  .workshop-hero {
    min-height: min(820px, calc(100svh - 110px));
  }

  .workshop-hero-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-block: 4.8rem 4.4rem;
  }

  .workshop-hero h1 {
    font-size: 4.35rem;
  }

  .workshop-hero-note {
    max-width: 34rem;
  }

  .workshop-proof-layout,
  .workshop-catalog-head,
  .workshop-audience-layout,
  .workshop-events-layout {
    grid-template-columns: 1fr;
  }

  .workshop-proof-layout {
    gap: 2.5rem;
  }

  .workshops-page .workshop-grid.workshop-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workshop-card-feature,
  .workshop-card-wide,
  .workshops-page .service-card.workshop-card,
  .workshops-page .service-card.workshop-card-feature,
  .workshops-page .service-card.workshop-card-wide,
  .workshops-page .service-card.workshop-card-compact {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .workshop-card-feature .workshop-card-media,
  .workshop-card-wide .workshop-card-media,
  .workshop-card-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .workshop-event-gallery {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .workshop-event-photo-large {
    min-height: 26rem;
  }
}

@media (max-width: 700px) {
  .workshop-hero {
    min-height: calc(100svh - 106px);
  }

  .workshop-hero::before {
    background:
      linear-gradient(180deg, oklch(0.19 0.055 71 / 0.4) 0 24%, oklch(0.19 0.055 71 / 0.95) 70% 100%);
  }

  .workshop-hero::after {
    mask-image: linear-gradient(to bottom, transparent 0, black 42%, transparent 100%);
    opacity: 0.36;
  }

  .workshop-hero-media img {
    object-position: center 22%;
  }

  .workshop-hero-layout {
    align-content: end;
    padding-block: 10.5rem 4.25rem;
  }

  .workshop-hero h1 {
    max-width: 9.4ch;
    font-size: 2.88rem;
    line-height: 0.94;
  }

  .workshop-hero .lead {
    max-width: 34ch;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .workshop-hero-note {
    display: none;
  }

  .workshop-hero-strip {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .workshop-hero-strip::-webkit-scrollbar {
    display: none;
  }

  .workshop-proof-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .workshop-proof-large,
  .workshop-proof-tall,
  .workshop-proof-wide,
  .workshop-proof-detail {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .workshop-proof-wide {
    aspect-ratio: 4 / 3;
  }

  .workshops-page .workshop-grid.workshop-catalog-grid {
    grid-template-columns: 1fr;
  }

  .workshop-catalog-section {
    padding-block: 3.6rem 4.8rem;
  }

  .workshop-card-body,
  .workshop-card-feature .workshop-card-body,
  .workshop-card-wide .workshop-card-body {
    padding: 1.08rem;
  }

  .workshop-event-gallery {
    grid-template-columns: 1fr;
  }

  .workshop-event-photo-large {
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .workshop-event-photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .workshop-event-note {
    min-height: 0;
  }

  .workshop-card h3,
  .workshop-card-feature h3,
  .workshop-card-wide h3 {
    max-width: 13ch;
    font-size: 1.72rem;
  }

  .workshop-reserve-panel {
    box-shadow: 7px 7px 0 oklch(0.79 0.165 88 / 0.24);
  }

  .workshop-audience-section {
    background: var(--paper);
  }

  .workshop-audience-list article {
    grid-template-columns: 1fr;
    gap: 0.62rem;
    padding: 1rem;
  }

  .workshop-audience-list span {
    font-size: 1.24rem;
  }

}

@media (max-width: 430px) {
  .workshop-hero-layout {
    padding-block: 8.8rem 4rem;
  }

  .workshop-hero h1 {
    font-size: 2.48rem;
  }

  .workshop-kicker {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .workshop-hero-strip-track {
    animation: none !important;
    transform: none !important;
  }
}

/* Keep mobile display titles readable without narrow desktop-style wrapping. */
@media (max-width: 700px) {
  main h1 {
    max-width: 100% !important;
    font-size: 2.25rem !important;
    line-height: 1.02;
  }

  main h2 {
    max-width: 100% !important;
    font-size: 1.78rem !important;
    line-height: 1.05;
  }
}

@media (max-width: 360px) {
  main h1 {
    font-size: 1.8rem !important;
  }

  main h2 {
    font-size: 1.62rem !important;
  }
}

@media (max-width: 700px) {
  .schools-page .schools-hero-grid {
    grid-template-columns: 1fr !important;
  }

  .schools-page .schools-hero .page-title {
    width: 100%;
    max-width: 100% !important;
    font-size: clamp(2.25rem, 10.5vw, 3.4rem) !important;
    line-height: 0.94;
    white-space: normal;
  }

  .schools-page .schools-hero .lead,
  .schools-page .schools-hero-notes span {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .schools-page .schools-hero-copy,
  .schools-page .schools-hero .lead,
  .schools-page .schools-hero-notes,
  .schools-page .schools-hero-art {
    width: 100% !important;
    max-width: 100% !important;
  }

  .schools-page .schools-hero .lead {
    white-space: normal !important;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .schools-mobile-break {
    display: none;
  }
}

html[dir="rtl"] .schools-teacher-list > div::before {
  right: 1.2rem;
  left: auto;
}

@media (max-width: 700px) {
  html[dir="rtl"] .schools-teacher-list > div::before {
    right: 0.2rem;
  }
}

@media (max-width: 920px) {
  .home-events-layout {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .home-events-media {
    aspect-ratio: 16 / 9;
  }

  .home-events-copy h2 {
    max-width: 16ch;
  }
}

@media (max-width: 700px) {
  .home-events-section {
    padding: 0;
  }

  .home-events-layout {
    gap: 1.8rem;
    padding-block: 2.8rem 3.1rem;
  }

  .home-events-media {
    aspect-ratio: 16 / 10;
    box-shadow: 7px 7px 0 oklch(0.79 0.165 88 / 0.18), var(--tight-shadow);
  }

  .home-events-media figcaption strong {
    max-width: 18ch;
    font-size: 1.3rem;
  }

  .home-events-copy h2 {
    max-width: 13ch;
    font-size: clamp(2.45rem, 11vw, 3.25rem);
  }

  .home-events-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
    margin-top: 1.15rem;
    padding-block: 0.95rem;
  }

  .home-events-actions {
    align-items: center;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.15rem;
    text-align: center;
  }

  .home-events-actions .button {
    width: 100%;
    max-width: 22rem;
    justify-content: center;
  }

  .home-events-note {
    max-width: none;
  }
}

/* Keep section copy visually engaged with the height of its paired media/content. */
@media (min-width: 901px) {
  .hero-grid > .hero-copy,
  .split > .section-head,
  .memory-layout > .memory-copy,
  .home-events-layout > .home-events-copy,
  .dining-rhythm > .dining-rhythm-copy,
  .riad-story-grid > .riad-story-copy,
  .riad-press-grid > .riad-press-copy,
  .schools-hero-grid > .schools-hero-copy,
  .schools-focus-grid > .schools-focus-copy,
  .social-band > .social-band-head,
  .gallery-hero-grid > .gallery-hero-copy {
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-block-size: 90%;
  }

  .social-band > .social-band-head {
    min-block-size: clamp(12rem, 24vh, 15rem);
  }

  .home-events-layout > .home-events-copy,
  .dining-rhythm > .dining-rhythm-copy,
  .schools-focus-grid > .schools-focus-copy {
    min-block-size: max(90%, clamp(20rem, 44vh, 34rem));
  }

  .schools-section-heading,
  .schools-proof-heading {
    align-items: stretch;
  }

  .schools-section-heading > *,
  .schools-proof-heading > * {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-block-size: 90%;
  }
}

@media (max-width: 700px) {
  .social-section {
    padding-block: clamp(1.45rem, 5vw, 2rem);
  }

  .social-band {
    gap: 0.95rem;
  }

  .social-band-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-block-size: clamp(11rem, 46vw, 13.5rem);
  }

  .social-band .lead {
    max-width: 34ch;
  }
}

/* Arabic locale: preserve the house's visual rhythm while using natural RTL flow. */
html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
  font-family: "Noto Sans Arabic", Arial, sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] strong,
html[dir="rtl"] .button,
html[dir="rtl"] .nav-links > a {
  font-family: "Noto Sans Arabic", Arial, sans-serif;
  letter-spacing: 0;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2 {
  line-height: 1.16;
}

html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] .button {
  line-height: 1.28;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] [class*="-label"] {
  letter-spacing: 0;
}

html[dir="rtl"] .nav-mobile-photo figcaption {
  right: 0.55rem;
  left: auto;
}

html[dir="rtl"] .footer-bottom .language-switcher {
  margin-right: auto;
  margin-left: 0;
}

html[dir="rtl"] input:not([type="email"]):not([type="tel"]),
html[dir="rtl"] textarea {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"] {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] .workshop-reserve-panel li,
html[dir="rtl"] .workshop-card-list li {
  padding-right: 1.08rem;
  padding-left: 0;
}

html[dir="rtl"] .workshop-reserve-panel li::before,
html[dir="rtl"] .workshop-card-list li::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .text-link svg,
html[dir="rtl"] .nav-mobile-arrow svg {
  transform: scaleX(-1);
}

@media (min-width: 1121px) {
  body[data-language="fr"] .home-hero h1 {
    font-size: 3.8rem;
  }

  body[data-language="es"] .home-hero h1,
  body[data-language="ar"] .home-hero h1 {
    font-size: clamp(3.9rem, 5.2vw, 4.7rem);
  }
}

@media (max-width: 700px) {
  html[dir="rtl"] main h1,
  html[dir="rtl"] main h2 {
    line-height: 1.22;
  }
}

/* Sitewide type scale: one rhythm for every page, with page-specific layouts kept intact. */
:root {
  --type-hero-title: clamp(3rem, 4.4vw, 4.35rem);
  --type-page-title: clamp(3rem, 4.4vw, 4.35rem);
  --type-section-title: clamp(2.18rem, 3.05vw, 3.25rem);
  --type-panel-title: clamp(1.35rem, 1.72vw, 1.8rem);
  --type-card-title: clamp(1.12rem, 1.45vw, 1.42rem);
  --type-lead: clamp(1.05rem, 1.14vw, 1.14rem);
  --type-body: clamp(0.94rem, 0.98vw, 1rem);
  --leading-title: 0.98;
  --leading-lead: 1.62;
  --leading-body: 1.58;
}

main h1,
main .page-title {
  max-width: min(100%, 14ch);
  font-size: var(--type-page-title) !important;
  line-height: var(--leading-title);
}

.home-hero h1,
.restaurant-page .page-hero .page-title,
.schools-page .schools-hero .page-title,
.schools-hero .page-title,
.riad-hero h1,
.workshop-hero h1,
.gallery-hero-copy h1,
.not-found-copy h1 {
  max-width: min(100%, 14.5ch);
  font-size: var(--type-hero-title) !important;
  line-height: 0.95;
}

main h2,
.home-events-copy h2,
.restaurant-menu-copy h2,
.dining-rhythm-copy h2,
.schools-focus-copy h2,
.schools-teacher-copy h2,
.schools-partners-heading h2,
.schools-proof-heading h2,
.schools-final-cta h2,
.riad-story-copy h2,
.riad-products-head h2,
.riad-press-copy h2,
.gallery-section-head h2,
.reviews-heading h2,
.not-found-routes-heading h2,
.social-band h2 {
  max-width: min(100%, 15ch);
  font-size: var(--type-section-title) !important;
  line-height: var(--leading-title);
}

.feature-band h2,
.policy-panel h2,
.booking-panel-head h2,
.workshop-event-note h3,
.workshop-hero-note strong {
  max-width: min(100%, 18ch);
  font-size: var(--type-panel-title) !important;
  line-height: 1.04;
}

main h3,
.visit-card-copy h3,
.path-card h3,
.experience-card h3,
.service-card h3,
.meal-option h3,
.schools-route-list h3,
.schools-teacher-list strong,
.schools-partner-details strong,
.school-social-caption strong,
.not-found-route-copy strong {
  font-size: var(--type-card-title) !important;
  line-height: 1.08;
}

main .lead,
.hero-copy .lead,
.section-head .lead,
.home-events-copy .lead,
.restaurant-page .page-hero .lead,
.restaurant-menu-copy .lead,
.dining-rhythm-copy .lead,
.schools-hero .lead,
.schools-route-section .lead,
.schools-focus-copy .lead,
.schools-teacher-copy .lead,
.schools-partners-heading .lead,
.riad-hero .lead,
.riad-press-copy .lead,
.gallery-hero-copy .lead,
.gallery-section-head .lead,
.contact-intro .lead,
.not-found-copy .lead,
.workshop-hero .lead {
  font-size: var(--type-lead) !important;
  line-height: var(--leading-lead);
}

/* Keep translated schools headings and planning tiles composed at desktop widths. */
@media (min-width: 901px) {
  .schools-intro-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(21rem, 0.52fr);
    gap: clamp(2.4rem, 4.2vw, 4.6rem);
  }

  .schools-intro-grid .section-head {
    max-width: none;
  }

  .schools-intro-grid h2 {
    max-width: min(100%, 22ch) !important;
    text-wrap: pretty;
  }

  .schools-intro-grid .lead {
    max-width: 64ch;
  }

  .schools-partners-heading {
    width: min(88%, 76rem);
  }

  .schools-partners-heading h2 {
    max-width: min(100%, 24ch) !important;
    text-wrap: pretty;
  }

  .schools-partners-heading .lead {
    max-width: 64ch;
  }

  .schools-teacher-list > div {
    grid-template-columns: 0.68rem minmax(0, 1fr);
    gap: 0.38rem 0.58rem;
    min-height: 8rem;
    padding: clamp(0.92rem, 1.15vw, 1.15rem);
  }

  .schools-teacher-list > div::before {
    width: 0.62rem;
    align-self: start;
    margin-top: 0.22em;
  }
}

@media (min-width: 1121px) and (max-width: 1279px) {
  .schools-teacher-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .schools-teacher-copy {
    max-width: 48rem;
  }
}

@media (min-width: 1280px) {
  .schools-teacher-grid {
    grid-template-columns: minmax(25rem, 0.42fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 3.4vw, 3.8rem);
  }

  .schools-teacher-list strong {
    font-size: clamp(1.04rem, 1.16vw, 1.22rem) !important;
  }

  .schools-teacher-list small {
    max-width: 24ch;
  }
}

main p:not(.lead),
main li,
main small {
  line-height: var(--leading-body);
}

@media (max-width: 700px) {
  :root {
    --type-hero-title: clamp(2.35rem, 9.6vw, 2.95rem);
    --type-page-title: clamp(2.2rem, 9vw, 2.78rem);
    --type-section-title: clamp(1.92rem, 7.8vw, 2.42rem);
    --type-panel-title: clamp(1.36rem, 5.8vw, 1.72rem);
    --type-card-title: clamp(1.06rem, 4.6vw, 1.28rem);
    --type-lead: clamp(0.94rem, 3.9vw, 1rem);
    --leading-title: 1.02;
    --leading-lead: 1.52;
    --leading-body: 1.5;
  }

  main h1,
  main .page-title,
  .home-hero h1,
  .restaurant-page .page-hero .page-title,
  .schools-page .schools-hero .page-title,
  .schools-hero .page-title,
  .riad-hero h1,
  .workshop-hero h1,
  .gallery-hero-copy h1,
  .not-found-copy h1 {
    max-width: 100% !important;
    font-size: var(--type-hero-title) !important;
    line-height: var(--leading-title);
  }

  main h2,
  .home-events-copy h2,
  .restaurant-menu-copy h2,
  .dining-rhythm-copy h2,
  .schools-focus-copy h2,
  .schools-teacher-copy h2,
  .schools-partners-heading h2,
  .schools-proof-heading h2,
  .schools-final-cta h2,
  .riad-story-copy h2,
  .riad-products-head h2,
  .riad-press-copy h2,
  .gallery-section-head h2,
  .reviews-heading h2,
  .not-found-routes-heading h2,
  .social-band h2 {
    max-width: 100% !important;
    font-size: var(--type-section-title) !important;
    line-height: var(--leading-title);
  }
}

@media (max-width: 360px) {
  :root {
    --type-hero-title: clamp(2.08rem, 9.6vw, 2.42rem);
    --type-page-title: clamp(1.95rem, 9vw, 2.2rem);
    --type-section-title: clamp(1.72rem, 8vw, 2rem);
    --type-lead: 0.9rem;
  }
}

html[dir="rtl"] main h1,
html[dir="rtl"] main h2 {
  line-height: 1.14;
}

@media (max-width: 700px) {
  html[dir="rtl"] main h1,
  html[dir="rtl"] main h2 {
    line-height: 1.2;
  }
}

.reviews-heading h2 {
  max-width: min(100%, 18ch);
}

.reviews-heading h2 span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .reviews-heading h2 span {
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .social-section {
    min-height: auto;
    display: block;
    padding-block: clamp(2.15rem, 8vw, 3rem);
    background:
      linear-gradient(158deg, var(--walnut-deep) 0 69%, var(--olive) 69% 100%);
  }

  .social-section .social-band {
    min-height: auto;
    grid-template-rows: auto auto;
    align-content: start;
    align-items: start;
    gap: 1.15rem;
  }

  .social-section .social-band-head {
    min-block-size: auto;
    max-width: none;
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 0.72rem;
    height: auto;
    padding-block: 0;
  }

  .social-section .eyebrow {
    margin-bottom: 0;
  }

  .social-section .social-band h2 {
    max-width: 100% !important;
    font-size: clamp(1.95rem, 8.2vw, 2.42rem) !important;
    line-height: 0.98;
  }

  .social-section .social-title-line {
    white-space: nowrap;
  }

  .social-section .social-band .lead {
    max-width: 34ch;
    margin-top: 0;
    font-size: clamp(0.95rem, 4vw, 1.02rem) !important;
    line-height: 1.5;
  }

  .social-section .social-grid {
    align-self: start;
    gap: 0.72rem;
  }

  .social-section .social-card {
    min-height: 0;
    gap: 0.56rem;
    padding: 0.86rem 0.92rem;
    border-radius: 7px;
    box-shadow: 6px 6px 0 oklch(0.19 0.055 71 / 0.22);
  }

  .social-section .social-card-top {
    gap: 0.62rem;
    font-size: 0.68rem;
  }

  .social-section .social-card-top > svg:first-child {
    width: 1.8rem;
    height: 1.8rem;
    flex-basis: 1.8rem;
  }

  .social-section .social-card strong {
    margin-top: 0.05rem;
    font-size: 0.95rem !important;
  }

  .social-section .social-card small {
    max-width: 34ch;
    font-size: 0.8rem;
    line-height: 1.38;
  }
}
