:root {
  --paper: #f5efe5;
  --paper-deep: #eadbc8;
  --white: #fffaf2;
  --ink: #182333;
  --ink-soft: #4d5764;
  --wine: #ef4d37;
  --wine-dark: #c83525;
  --blue: #145cff;
  --blue-dark: #0b3db8;
  --garden: #183f43;
  --garden-light: #d8e6dc;
  --line: rgba(29, 41, 37, 0.18);
  --focus: #005fcc;
  --shadow: none;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Trebuchet MS", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav: "Avenir Next", Avenir, "Trebuchet MS", ui-sans-serif, sans-serif;
  --shell: min(1240px, calc(100vw - 48px));
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

figure {
  margin: 0;
}

.site-photo {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.site-photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  content: "";
  pointer-events: none;
}

.site-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.94) sepia(0.06) contrast(1.03);
  transition: transform 220ms ease, filter 220ms ease;
}

.site-photo:hover img {
  filter: brightness(0.94) saturate(0.98) sepia(0.04) contrast(1.03);
  transform: scale(1.01);
}

.site-photo--portrait {
  aspect-ratio: 4 / 5;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 7vw, 7.35rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4vw, 4.7rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 15px;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  letter-spacing: -0.025em;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.concept-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  background: var(--blue-dark);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 0;
  background: var(--blue);
  color: #fff;
}

.concept-bar {
  background: var(--blue-dark);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: 250px;
  height: 72px;
  padding: 7px 10px;
  overflow: hidden;
  background: #fff;
}

.brand-logo img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.primary-nav,
.primary-nav ul,
.nav-actions {
  display: flex;
  align-items: center;
}

.primary-nav {
  gap: 30px;
}

.primary-nav ul {
  gap: clamp(16px, 2vw, 30px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav a {
  font-family: var(--nav);
  font-size: 0.89rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.nav-actions {
  gap: 16px;
}

.language-link {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 0.89rem;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, border 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

[aria-busy="true"] {
  cursor: progress;
  opacity: 0.72;
}

.button--small {
  min-height: 44px;
  padding: 10px 19px;
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--garden);
}

.button--light:hover {
  border-color: var(--paper-deep);
  background: var(--paper-deep);
  color: var(--garden);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.text-link,
.moment-card a,
.site-footer a,
.contact-cards a {
  font-weight: 750;
  text-decoration-thickness: 1px;
}

.text-link span,
.moment-card a span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 160ms ease;
}

.text-link:hover span,
.moment-card a:hover span {
  transform: translate(3px, -3px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.4;
}

.welcome-line {
  max-width: 670px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-family: var(--nav);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 550;
  line-height: 1.45;
}

.home-hero h1,
.page-hero h1,
h2 {
  overflow-wrap: normal;
  hyphens: none;
}

.home-hero h1 {
  font-size: clamp(2.85rem, 4.65vw, 5rem);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 18px 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.home-hero::after,
.page-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -24vw;
  width: 46vw;
  height: 46vw;
  border: 1px solid rgba(118, 44, 62, 0.13);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.home-hero__grid,
.page-hero__grid {
  display: grid;
  min-height: min(700px, calc(100vh - 126px));
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  padding-block: clamp(56px, 7vw, 96px);
}

.home-hero__copy,
.page-hero__copy {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 820px;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 6.2vw, 6.65rem);
}

.page-hero--small .page-hero__grid {
  min-height: auto;
  grid-template-columns: 1fr;
  padding-block: clamp(70px, 9vw, 120px);
}

.home-hero__visual,
.page-hero__media {
  position: relative;
  z-index: 1;
}

.home-hero__visual .media-placeholder {
  min-height: 590px;
  transform: rotate(1.5deg);
}

.home-hero__visual .site-photo {
  min-height: 590px;
  transform: none;
}

.home-hero__visual .site-photo::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.48);
  content: "";
  pointer-events: none;
}

.page-hero__media .site-photo {
  min-height: 530px;
}

.hero-note {
  position: absolute;
  right: -16px;
  bottom: -20px;
  display: grid;
  min-width: 188px;
  padding: 19px 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: none;
  transform: none;
}

.hero-note span {
  font-size: 0.76rem;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.media-placeholder {
  position: relative;
  display: grid;
  min-height: 510px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(247, 243, 235, 0.45);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.34), transparent 26%),
    linear-gradient(138deg, #293f36 0%, #526756 48%, #172f29 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.media-placeholder::before,
.media-placeholder::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  content: "";
}

.media-placeholder::before {
  width: 62%;
  aspect-ratio: 1;
  left: -20%;
  bottom: -18%;
}

.media-placeholder::after {
  width: 46%;
  aspect-ratio: 1;
  top: -11%;
  right: -14%;
}

.media-placeholder__line {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.media-placeholder__label {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 360px;
  gap: 8px;
  padding: 30px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.05;
  text-align: center;
  text-wrap: balance;
}

.media-placeholder__label small {
  font-family: var(--sans);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-placeholder__corner {
  position: absolute;
  right: 18px;
  bottom: 10px;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  opacity: 0.2;
}

.opening-status {
  display: inline-flex;
  max-width: 510px;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.64);
  font-size: 0.84rem;
}

.opening-status span:last-child {
  display: grid;
}

.opening-status small {
  margin-top: 2px;
  color: var(--ink-soft);
}

.opening-status--compact {
  padding: 0;
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
}

.status-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: #c48727;
  box-shadow: 0 0 0 4px rgba(196, 135, 39, 0.15);
}

.opening-status.is-open .status-dot {
  background: #2f7d4a;
  box-shadow: 0 0 0 4px rgba(47, 125, 74, 0.16);
}

.opening-status.is-closed .status-dot {
  background: #9b4a43;
  box-shadow: 0 0 0 4px rgba(155, 74, 67, 0.15);
}

.fact-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.fact-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-strip__grid > div {
  display: grid;
  min-height: 142px;
  align-content: center;
  padding: 25px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.fact-strip__grid > div:last-child {
  border-right: 0;
}

.fact-strip span,
.moment-card > span,
.trio-grid article > span,
.process-grid article > span,
.benefit-grid article > span,
.contact-cards article > span {
  margin-bottom: 15px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
}

.fact-strip strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
}

.fact-strip small {
  color: var(--ink-soft);
}

.section {
  padding-block: clamp(80px, 10vw, 150px);
}

.section--compact {
  padding-block: clamp(58px, 7vw, 96px);
}

.section--warm {
  background: var(--paper-deep);
}

.section--paper {
  background: var(--white);
}

.section--garden {
  background: var(--garden);
  color: #fff;
}

.section--garden .eyebrow {
  color: #cfd9b7;
}

.section-heading h2 {
  max-width: 780px;
}

.section-heading--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-heading--row h2 {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 10vw, 150px);
}

.split--wide {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
}

.prose {
  max-width: 720px;
}

.prose p {
  margin-bottom: 25px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section--garden .prose p {
  color: rgba(255, 255, 255, 0.82);
}

.moment-grid,
.trio-grid,
.process-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.moment-card,
.trio-grid article,
.process-grid article,
.benefit-grid article {
  padding: clamp(30px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.moment-card--photo {
  padding: 0;
  background: var(--white);
}

.moment-card--photo .site-photo {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  box-shadow: none;
}

.moment-card--photo .site-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.moment-card__body {
  padding: clamp(28px, 3vw, 44px);
}

.moment-card:last-child,
.trio-grid article:last-child,
.process-grid article:last-child,
.benefit-grid article:last-child {
  border-right: 0;
}

.moment-card p,
.trio-grid p,
.process-grid p,
.benefit-grid p {
  color: var(--ink-soft);
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.image-story--reverse {
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
}

.image-story__media .media-placeholder {
  min-height: 580px;
}

.image-story__media .site-photo {
  min-height: 580px;
}

.image-story__copy p {
  max-width: 600px;
}

.image-story__copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
}

.image-story--reverse .image-story__copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.content-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.content-notice .text-link {
  grid-column: 2;
}

.content-notice p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.content-notice__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--wine);
  border-radius: 50%;
  color: var(--wine);
  font-family: var(--serif);
}

.featured-menu,
.wine-grid,
.capacity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-menu .menu-item {
  display: grid;
  min-height: 220px;
  align-content: space-between;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.featured-menu .menu-item:last-child {
  border-right: 0;
}

.featured-menu .menu-item__price {
  margin-top: 25px;
  text-align: left;
}

.menu-updated {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.wine-grid article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 50px);
  border-right: 1px solid var(--line);
}

.wine-grid article:last-child {
  border-right: 0;
}

.wine-grid article > span {
  display: block;
  margin-bottom: 20px;
  color: var(--wine);
  font-family: var(--serif);
  font-style: italic;
}

.wine-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.club-callout,
.next-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr) auto;
  align-items: end;
  gap: clamp(30px, 6vw, 80px);
  padding: clamp(35px, 6vw, 78px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: none;
}

.club-callout h2,
.next-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 3.7vw, 4.2rem);
}

.club-callout > p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(45px, 9vw, 130px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 78px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > div {
  max-width: 760px;
  padding: 0 50px 24px 0;
  color: var(--ink-soft);
}

.menu-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
  margin-bottom: 60px;
}

.menu-jump {
  display: flex;
  max-width: 320px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.menu-jump a {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

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

.menu-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 50px;
  padding-block: 54px;
  border-bottom: 1px solid var(--line);
}

.menu-section header {
  display: flex;
  gap: 28px;
}

.menu-section header > span {
  padding-top: 8px;
  color: var(--wine);
  font-family: var(--serif);
  font-style: italic;
}

.menu-section h2 {
  margin-bottom: 6px;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.menu-section header p {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.menu-groups {
  display: grid;
  gap: 50px;
}

.menu-group h3 {
  padding-bottom: 15px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.menu-group__note,
.translation-note {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item h4 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.2;
}

.menu-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.menu-item__options {
  margin-top: 7px !important;
  font-style: italic;
}

.menu-item__price {
  min-width: 90px;
  font-family: var(--serif);
  font-size: 1rem;
  text-align: right;
  white-space: nowrap;
}

.menu-item__price--multiple {
  line-height: 1.7;
}

.menu-item__price--variable {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-style: italic;
}

.diet-badge,
.season-badge {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 3px 7px;
  margin-left: 8px;
  border: 1px solid var(--garden);
  border-radius: 99px;
  color: var(--garden);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  vertical-align: 0.2em;
}

.season-badge {
  border-color: var(--wine);
  color: var(--wine);
}

.menu-empty {
  display: flex;
  min-height: 140px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}

.menu-empty p {
  max-width: 600px;
  margin: 0;
}

.menu-empty span {
  flex: 0 0 auto;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diet-legend {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) 1.4fr;
  gap: 40px;
  padding: 35px;
  margin-top: 60px;
  background: var(--garden-light);
}

.diet-legend p {
  margin: 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.9fr 1.2fr;
  align-items: start;
  gap: clamp(35px, 7vw, 100px);
}

.official-logo-panel {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid var(--line);
  background: #fff;
}

.official-logo-panel h2 {
  font-size: clamp(2rem, 3.5vw, 4rem);
}

.official-logo-panel img {
  width: 100%;
  height: auto;
}

.editorial-number {
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(4.5rem, 9vw, 9rem);
  line-height: 0.8;
}

.gallery-pair {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.gallery-pair > div:last-child {
  padding-top: 110px;
}

.gallery-pair .media-placeholder {
  min-height: 560px;
}


.gallery-pair .site-photo {
  min-height: 560px;
}

.gallery-pair > div:last-child .media-placeholder {
  min-height: 440px;
}

.gallery-pair > div:last-child .site-photo {
  min-height: 440px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

.check-grid > div {
  display: grid;
  min-height: 70px;
  grid-template-columns: 30px 1fr;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.check-grid span {
  color: var(--wine);
}

.capacity-grid {
  grid-template-columns: repeat(4, 1fr);
}

.capacity-grid article {
  display: grid;
  min-height: 190px;
  align-content: center;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.capacity-grid article:last-child {
  border-right: 0;
}

.capacity-grid span,
.capacity-grid small {
  color: var(--ink-soft);
}

.capacity-grid strong {
  margin-block: 5px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
}

.arrangement-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
  padding: clamp(28px, 5vw, 52px);
  margin-top: 45px;
  background: var(--garden-light);
}

.arrangement-card h3,
.arrangement-card p {
  margin-bottom: 8px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.inquiry-form {
  padding: clamp(28px, 5vw, 55px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.form-grid label:not(.radio, .checkbox) {
  display: grid;
  gap: 8px;
}

.form-grid label > span,
.form-grid legend {
  font-size: 0.79rem;
  font-weight: 750;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 11px 13px;
  border: 1px solid rgba(29, 41, 37, 0.34);
  border-radius: 3px;
  background: var(--paper);
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--focus);
}

.form-grid fieldset {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(29, 41, 37, 0.34);
}

.radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 7px 12px 4px 0;
  font-size: 0.84rem;
}

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.checkbox input {
  width: 22px;
  height: 22px;
  margin-top: 3px;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-note,
.form-status {
  font-size: 0.78rem;
}

.form-note {
  margin-top: 16px;
  color: var(--ink-soft);
}

.form-status:not(:empty) {
  padding: 14px 16px;
  margin-bottom: 22px;
  border-left: 4px solid var(--wine);
  background: var(--paper-deep);
}

.empty-state {
  display: grid;
  min-height: 380px;
  grid-template-columns: auto minmax(0, 720px);
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 6vw, 80px);
  border: 1px dashed var(--line);
}

.empty-state > span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 1;
}

.practical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.practical-grid article {
  min-height: 300px;
  padding: clamp(30px, 5vw, 60px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.practical-grid h2 {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.practical-grid .opening-status {
  margin-top: 0;
}

.hours-list {
  margin: 0 0 20px;
}

.hours-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dd {
  font-weight: 700;
}

.small-copy {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: clamp(40px, 8vw, 100px);
}

.contact-cards {
  border-top: 1px solid var(--line);
}

.contact-cards article {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.contact-cards article > *:not(span) {
  grid-column: 2;
}

.contact-cards article > span {
  grid-row: 1 / span 4;
}

.contact-cards h2 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
}

.email-heading {
  overflow-wrap: anywhere;
}

.secondary-link {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.booking-panel {
  padding: clamp(35px, 6vw, 70px);
  background: var(--garden);
  color: #fff;
  box-shadow: none;
}

.booking-panel .eyebrow {
  color: #cfd9b7;
}

.booking-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.booking-panel .button {
  border-color: #fff;
  background: #fff;
  color: var(--garden);
}

.booking-fallback {
  margin-top: 20px !important;
  font-size: 0.82rem;
}

.map-section {
  height: min(530px, 62vw);
  min-height: 350px;
  border-block: 1px solid var(--line);
  filter: saturate(0.25) contrast(0.95);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.legal-copy {
  max-width: 850px;
}

.legal-copy .content-notice {
  margin-bottom: 60px;
}

.legal-copy h2 {
  margin-top: 50px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.site-footer {
  padding: 76px 0 28px;
  background: #18251f;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1.15fr 0.8fr;
  gap: clamp(32px, 5vw, 70px);
}

.site-footer h2 {
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer address {
  margin-bottom: 10px;
  font-style: normal;
}

.site-footer a:hover {
  color: #fff;
}

.footer-brand > img {
  margin-bottom: 20px;
}

.footer-kicker {
  margin-bottom: 4px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.footer-brand > p:last-child {
  max-width: 330px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
}

.mobile-action-bar {
  display: none;
}

.cookie-panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: grid;
  width: min(620px, calc(100vw - 40px));
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-panel p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px;
  text-align: center;
}

.error-page > div {
  max-width: 760px;
}

.error-page img {
  margin: 0 auto 28px;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(22px);
}

.js .reveal {
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal--delay {
  transition-delay: 120ms;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 980px);
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 22px max(20px, calc((100vw - 980px) / 2));
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 36px rgba(37, 30, 23, 0.1);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav ul {
    display: grid;
    align-items: stretch;
  }

  .primary-nav li a {
    display: block;
    padding: 10px 0;
    font-family: var(--serif);
    font-size: 1.35rem;
  }

  .nav-actions {
    justify-content: space-between;
    padding-top: 20px;
    margin-top: 14px;
    border-top: 1px solid var(--line);
  }

  .home-hero__grid,
  .page-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr 0.78fr;
  }

  .home-hero__visual .media-placeholder,
  .page-hero__media .media-placeholder {
    min-height: 480px;
  }

  .fact-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .fact-strip__grid > div:nth-child(2) {
    border-right: 0;
  }

  .fact-strip__grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .club-callout,
  .next-card {
    grid-template-columns: 1fr auto;
  }

  .club-callout > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

  .editorial-grid .prose {
    grid-column: 2;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    padding-bottom: 66px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.7rem);
  }

  .concept-bar {
    min-height: 30px;
    font-size: 0.66rem;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 175px;
    height: auto;
  }

  .brand-logo {
    width: 175px;
    height: 52px;
  }

  .brand-logo img {
    transform: translateY(-19px);
  }

  .home-hero__grid,
  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-block: 65px 80px;
  }

  .home-hero__visual .media-placeholder,
  .page-hero__media .media-placeholder {
    min-height: min(110vw, 520px);
  }

  .hero-note {
    right: 8px;
  }

  .fact-strip__grid,
  .moment-grid,
  .trio-grid,
  .process-grid,
  .benefit-grid,
  .split,
  .split--wide,
  .image-story,
  .image-story--reverse,
  .faq-layout,
  .menu-intro,
  .menu-section,
  .editorial-grid,
  .gallery-pair,
  .form-layout,
  .practical-grid,
  .contact-grid,
  .footer-grid,
  .featured-menu,
  .wine-grid,
  .capacity-grid,
  .official-logo-panel {
    grid-template-columns: 1fr;
  }

  .featured-menu .menu-item,
  .wine-grid article,
  .capacity-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .featured-menu .menu-item:last-child,
  .wine-grid article:last-child,
  .capacity-grid article:last-child {
    border-bottom: 0;
  }

  .arrangement-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .fact-strip__grid > div {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-strip__grid > div:last-child {
    border-bottom: 0;
  }

  .section-heading--row {
    align-items: flex-start;
    flex-direction: column;
  }

  .moment-grid,
  .trio-grid,
  .process-grid,
  .benefit-grid {
    border-bottom: 0;
  }

  .moment-card,
  .trio-grid article,
  .process-grid article,
  .benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .image-story__media .media-placeholder {
    min-height: min(115vw, 560px);
  }

  .image-story--reverse .image-story__media {
    grid-row: 2;
  }

  .club-callout,
  .next-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .club-callout > p {
    grid-column: auto;
    grid-row: auto;
  }

  .menu-jump {
    max-width: none;
    justify-content: flex-start;
  }

  .menu-section {
    gap: 15px;
  }

  .diet-legend {
    grid-template-columns: 1fr;
  }

  .editorial-grid .prose {
    grid-column: auto;
  }

  .gallery-pair > div:last-child {
    padding-top: 0;
  }

  .gallery-pair .media-placeholder,
  .gallery-pair > div:last-child .media-placeholder {
    min-height: min(110vw, 520px);
  }

  .form-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .empty-state {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 45px 25px;
    text-align: center;
  }

  .practical-grid {
    border-left: 0;
  }

  .practical-grid article {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    height: 66px;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: #18251f;
    color: #fff;
    box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.16);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.71rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-action-bar a:first-child {
    background: var(--wine);
  }

  .mobile-action-bar span {
    font-size: 1rem;
  }

  .cookie-panel {
    right: 12px;
    bottom: 78px;
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 148px;
    height: 46px;
  }

  .brand-logo img {
    width: 148px;
    transform: translateY(-16px);
  }

  .section {
    padding-block: 72px;
  }

  .home-hero__grid,
  .page-hero__grid {
    padding-top: 52px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .button-row .text-link {
    text-align: center;
  }

  .menu-empty {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-item__price {
    text-align: left;
  }

  .contact-cards article {
    grid-template-columns: 34px 1fr;
  }
}

/* Larger, easier-to-use header actions. */
.site-header .button--small {
  min-height: 52px;
  padding: 13px 23px;
  font-size: 0.92rem;
}

.site-header .language-link {
  width: 50px;
  height: 50px;
  font-size: 0.88rem;
  font-weight: 800;
}

.site-header .nav-toggle {
  width: 54px;
  height: 54px;
}

@media (max-width: 480px) {
  .site-header .nav-toggle {
    width: 50px;
    height: 50px;
  }
}

/* Flat presentation: no drop shadows on actions or photography. */
.button,
.button:hover,
.section--garden .button--light,
.site-photo,
.home-hero__visual .site-photo,
.page-hero__media .site-photo,
.image-story__media .site-photo,
.gallery-pair .site-photo,
.hero-note {
  box-shadow: none;
}

.media-placeholder__label small {
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

/* Pulchri x neighbourhood-hospitality: warmer, bolder and more human. */
:root {
  --paper: #f5f0e7;
  --paper-deep: #e6ddd0;
  --white: #fffaf1;
  --ink: #14253a;
  --ink-soft: #405064;
  --wine: #1f5688;
  --wine-dark: #12395d;
  --garden: #173f63;
  --garden-light: #d9e6ee;
  --display: Georgia, "Times New Roman", serif;
}

body::before {
  display: none;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

.site-header {
  border-bottom: 1px solid rgba(20, 37, 58, 0.28);
  background: rgba(255, 250, 241, 0.96);
}

.primary-nav a {
  letter-spacing: 0.015em;
  text-transform: none;
}

.button {
  border-radius: 999px;
  box-shadow: none;
  letter-spacing: 0;
  text-transform: none;
}

.button:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.language-link,
.nav-toggle {
  border-radius: 50%;
}

.home-hero,
.page-hero {
  border-bottom: 0;
  background: var(--garden-light);
}

.home-hero__grid,
.page-hero__grid {
  min-height: min(800px, calc(100vh - 138px));
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  padding-block: clamp(48px, 7vw, 92px);
}

.home-hero h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 6.5vw, 7rem);
}

.home-hero__visual .site-photo {
  min-height: 650px;
  border: 0;
  border-radius: 48% 48% 24px 24px / 28% 28% 24px 24px;
  box-shadow: none;
}

.page-hero__media .site-photo {
  border: 0;
  border-radius: 32px;
  box-shadow: none;
}

.hero-note {
  right: 22px;
  bottom: 22px;
  border: 0;
  border-radius: 18px;
  background: var(--wine);
  color: #fff;
  box-shadow: none;
}

.opening-status {
  border: 1px solid rgba(20, 37, 58, 0.32);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.8);
}

.fact-strip {
  border: 0;
  background: var(--garden);
  color: #fff;
}

.fact-strip__grid > div {
  border-right-color: rgba(255, 255, 255, 0.25);
}

.fact-strip span,
.fact-strip small {
  color: rgba(255, 255, 255, 0.74);
}

.moment-grid,
.trio-grid,
.process-grid,
.benefit-grid,
.featured-menu,
.wine-grid,
.capacity-grid {
  gap: 18px;
  border: 0;
}

.moment-card,
.trio-grid article,
.process-grid article,
.benefit-grid article,
.featured-menu .menu-item,
.wine-grid article,
.capacity-grid article {
  overflow: hidden;
  border: 1px solid rgba(20, 37, 58, 0.22);
  border-radius: 22px;
  background: var(--white);
}

.moment-card--photo .site-photo {
  border: 0;
  border-radius: 0;
  filter: none;
}

.image-story__media .site-photo,
.gallery-pair .site-photo {
  border: 0;
  border-radius: 30px;
  box-shadow: none;
}

.section--garden {
  background: var(--garden);
}

.club-callout,
.next-card,
.official-logo-panel,
.inquiry-form {
  border: 0;
  border-radius: 28px;
  box-shadow: none;
}

.club-callout,
.next-card {
  background: var(--garden-light);
}

.menu-jump a,
.diet-badge,
.season-badge,
.menu-empty span {
  border-radius: 999px;
}

.section-heading--row {
  border-bottom: 1px solid rgba(20, 37, 58, 0.25);
  padding-bottom: 28px;
}

@media (max-width: 1100px) {
  .home-hero__grid,
  .page-hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  }
}

@media (max-width: 820px) {
  .home-hero__grid,
  .page-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .home-hero__visual .site-photo {
    min-height: 500px;
    border-radius: 42% 42% 18px 18px / 22% 22% 18px 18px;
  }

  .fact-strip__grid > div {
    border-color: rgba(255, 255, 255, 0.24);
  }
}

@media (max-width: 480px) {
  .home-hero__visual .site-photo {
    min-height: 410px;
  }

  .opening-status {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .concept-bar,
  .site-header,
  .mobile-action-bar,
  .cookie-panel,
  .button-row,
  .site-footer {
    display: none !important;
  }

  body {
    padding: 0;
    background: #fff;
    color: #000;
  }

  .section {
    padding-block: 30px;
  }
}

/* Modern editorial direction: direct, tactile and unmistakably Pulchri. */
:root {
  --paper: #f1ede4;
  --paper-deep: #ded6c9;
  --white: #faf8f2;
  --ink: #101923;
  --ink-soft: #3d4853;
  --wine: #245686;
  --wine-dark: #173b60;
  --garden: #123652;
  --garden-light: #d7e1e8;
  --line: rgba(16, 25, 35, 0.34);
  --shadow: 10px 12px 0 rgba(16, 25, 35, 0.13);
  --display: "Arial Narrow", "Aptos Narrow", "Roboto Condensed", Arial, sans-serif;
}

body::before {
  background-image: radial-gradient(rgba(36, 86, 134, 0.11) 0.65px, transparent 0.65px);
  background-size: 7px 7px;
  opacity: 0.38;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 780;
  line-height: 0.96;
}

h1 {
  letter-spacing: -0.065em;
}

h2 {
  letter-spacing: -0.055em;
}

.eyebrow {
  color: var(--wine);
  font-family: var(--sans);
  font-weight: 850;
  letter-spacing: 0.19em;
}

.concept-bar {
  background: var(--wine);
  text-transform: uppercase;
}

.site-header {
  border-bottom: 2px solid var(--ink);
  background: rgba(241, 237, 228, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 104px;
}

.brand-logo {
  width: 258px;
  height: 82px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform: none;
}

.primary-nav a {
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.language-link,
.nav-toggle,
.button,
.menu-jump a,
.diet-badge,
.season-badge,
.menu-empty span {
  border-radius: 0;
}

.button {
  border-width: 2px;
  box-shadow: 4px 4px 0 var(--ink);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.button:hover {
  box-shadow: 1px 1px 0 var(--ink);
  transform: translate(3px, 3px);
}

.button--light {
  border-color: var(--ink);
  color: var(--ink);
}

.home-hero,
.page-hero {
  border-bottom: 2px solid var(--ink);
}

.home-hero::after,
.page-hero::after {
  display: none;
}

.home-hero__grid,
.page-hero__grid {
  gap: clamp(34px, 5vw, 76px);
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 6.4vw, 6.8rem);
}

.home-hero__visual .site-photo {
  min-height: 650px;
  border: 2px solid var(--ink);
  box-shadow: 12px 14px 0 #2d679c;
  transform: none;
}

.home-hero__visual .site-photo::before {
  display: none;
}

.page-hero__media .site-photo,
.image-story__media .site-photo,
.gallery-pair .site-photo {
  border: 2px solid currentColor;
  box-shadow: 9px 10px 0 rgba(36, 86, 134, 0.25);
}

.site-photo::after {
  border: 0;
}

.hero-note {
  right: -12px;
  bottom: -22px;
  border: 2px solid var(--ink);
  box-shadow: 6px 7px 0 var(--ink);
  transform: none;
}

.opening-status {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
}

.fact-strip {
  border-bottom: 2px solid var(--ink);
}

.fact-strip__grid > div,
.moment-card,
.trio-grid article,
.process-grid article,
.benefit-grid article,
.featured-menu .menu-item,
.wine-grid article,
.capacity-grid article {
  border-right-color: var(--ink);
}

.moment-grid,
.trio-grid,
.process-grid,
.benefit-grid,
.featured-menu,
.wine-grid,
.capacity-grid {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.moment-card--photo .site-photo {
  border-bottom: 2px solid var(--ink);
  filter: saturate(0.9) contrast(1.04);
}

.club-callout,
.next-card,
.official-logo-panel,
.inquiry-form {
  border: 2px solid var(--ink);
  box-shadow: 10px 12px 0 rgba(36, 86, 134, 0.2);
}

.section--garden .button--light {
  box-shadow: 4px 4px 0 #fff;
}

@media (max-width: 1100px) {
  .brand-logo {
    width: 225px;
    height: 74px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 88px;
  }

  .brand-logo {
    width: 190px;
    height: 68px;
  }

  .brand-logo img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .home-hero__visual .site-photo {
    min-height: 520px;
    box-shadow: 7px 8px 0 var(--wine);
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 154px;
    height: 60px;
  }

  .brand-logo img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .home-hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }
}

/* Final visual layer: Pulchri warmth, Hoxton-inspired rhythm, entirely flat. */
:root {
  --paper: #f5f0e7;
  --paper-deep: #e6ddd0;
  --white: #fffaf1;
  --ink: #14253a;
  --ink-soft: #405064;
  --wine: #1f5688;
  --wine-dark: #12395d;
  --garden: #173f63;
  --garden-light: #d9e6ee;
  --shadow: none;
  --display: Georgia, "Times New Roman", serif;
}

body::before {
  display: none;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

.site-header {
  border-bottom: 1px solid rgba(20, 37, 58, 0.28);
  background: rgba(255, 250, 241, 0.96);
}

.primary-nav a {
  letter-spacing: 0.015em;
  text-transform: none;
}

.button,
.button:hover,
.section--garden .button--light,
.site-photo,
.home-hero__visual .site-photo,
.page-hero__media .site-photo,
.image-story__media .site-photo,
.gallery-pair .site-photo,
.hero-note {
  box-shadow: none !important;
}

.button {
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: none;
}

.button:hover {
  transform: translateY(-2px);
}

.language-link,
.nav-toggle {
  border-radius: 50%;
}

.home-hero,
.page-hero {
  border-bottom: 0;
  background: var(--garden-light);
}

.home-hero__visual .site-photo {
  border: 0;
  border-radius: 48% 48% 24px 24px / 28% 28% 24px 24px;
}

.page-hero__media .site-photo,
.image-story__media .site-photo,
.gallery-pair .site-photo {
  border: 0;
  border-radius: 30px;
}

.hero-note {
  right: 22px;
  bottom: 22px;
  border: 0;
  border-radius: 18px;
  background: var(--wine);
  color: #fff;
}

.opening-status {
  border: 1px solid rgba(20, 37, 58, 0.32);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.8);
}

@media (max-width: 820px) {
  .home-hero__visual .site-photo {
    border-radius: 42% 42% 18px 18px / 22% 22% 18px 18px;
  }
}

/* One site-wide Pulchri palette. */
:root {
  --paper: #f5f0e7;
  --paper-deep: #e7ded1;
  --white: #fffaf1;
  --ink: #14253a;
  --ink-soft: #526173;
  --wine: #2f6f9f;
  --wine-dark: #173f63;
  --garden: #173f63;
  --garden-light: #dce8ef;
  --line: rgba(20, 37, 58, 0.24);
  --focus: #0b63ce;
}

::selection {
  background: #b9d4e6;
  color: var(--ink);
}

body,
.content-notice {
  background-color: var(--paper);
}

.section--warm {
  background: var(--paper-deep);
}

.section--paper,
.moment-card,
.trio-grid article,
.process-grid article,
.benefit-grid article,
.featured-menu .menu-item,
.wine-grid article,
.capacity-grid article,
.official-logo-panel,
.inquiry-form {
  background: var(--white);
}

.home-hero,
.page-hero,
.club-callout,
.next-card,
.diet-legend,
.arrangement-card {
  background: var(--garden-light);
}

.concept-bar,
.button {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
}

.button:hover {
  background: var(--wine);
  border-color: var(--wine);
}

.button--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--wine-dark);
}

.button--light:hover {
  background: var(--garden-light);
  border-color: var(--garden-light);
  color: var(--wine-dark);
}

.eyebrow,
.fact-strip span,
.moment-card > span,
.trio-grid article > span,
.process-grid article > span,
.benefit-grid article > span,
.capacity-grid strong,
.content-notice__icon,
.check-grid span {
  color: var(--wine);
}

.section--garden,
.fact-strip,
.mobile-action-bar,
.site-footer {
  background: var(--garden);
  color: #fff;
}

.section--garden .eyebrow,
.site-footer a:hover {
  color: #b9d4e6;
}

.media-placeholder {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.28), transparent 26%),
    linear-gradient(138deg, #24577f 0%, #173f63 55%, #102b45 100%);
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.form-grid fieldset {
  border-color: rgba(20, 37, 58, 0.38);
  background: var(--white);
}

.diet-badge {
  border-color: var(--wine-dark);
  color: var(--wine-dark);
}

.season-badge {
  border-color: var(--wine);
  color: var(--wine);
}

.hero-note {
  background: var(--wine-dark);
}

.site-photo__credit {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(20, 37, 58, 0.86);
  color: #fff;
  font-size: 0.62rem;
  line-height: 1.35;
}

.site-photo__credit a {
  color: inherit;
}

/* Headings stay inside their own column at every breakpoint. */
h1,
h2,
h3 {
  max-width: 100%;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.04;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 5.6vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 4rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2.05rem);
}

.home-hero h1,
.page-hero h1 {
  max-width: 100%;
  font-size: clamp(3rem, 5.4vw, 5.75rem);
}

.home-hero__copy,
.page-hero__copy,
.home-hero__visual,
.page-hero__media,
.section-heading,
.image-story__copy,
.split > *,
.editorial-grid > *,
.club-callout > *,
.next-card > * {
  min-width: 0;
}

.moment-card h3,
.trio-grid h2,
.process-grid h2,
.benefit-grid h2 {
  font-size: clamp(1.45rem, 2.15vw, 2.3rem);
  line-height: 1.08;
}

.club-callout h2,
.next-card h2 {
  font-size: clamp(2rem, 3.25vw, 3.7rem);
}

@media (max-width: 1040px) {
  .home-hero__grid,
  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(2.85rem, 5.4vw, 4.65rem);
  }
}

@media (max-width: 900px) {
  .home-hero__grid,
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__copy,
  .page-hero__copy {
    max-width: 760px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(3rem, 9vw, 5.4rem);
  }
}

/* Feedback round: brighter Pulchri blue, warmer hospitality and quicker motion. */
:root {
  --blue: #145cff;
  --blue-dark: #0b3db8;
  --wine: #ef4d37;
  --wine-dark: #c83525;
  --paper: #f5efe5;
  --paper-deep: #eadbc8;
  --white: #fffaf2;
  --ink: #182333;
  --ink-soft: #4d5764;
  --garden: #183f43;
  --garden-light: #d8e6dc;
  --focus: #ffca3a;
  --nav: "Avenir Next", Avenir, "Trebuchet MS", ui-sans-serif, sans-serif;
}

.site-header {
  border: 0;
  background: var(--blue);
  color: #fff;
  backdrop-filter: none;
}

.brand-logo {
  width: 250px;
  height: 72px;
  padding: 7px 10px;
  background: #fff;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  transform: none;
}

.primary-nav a {
  color: #fff;
  font-family: var(--nav);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
}

.primary-nav a:hover,
.brand:hover {
  color: #fff;
}

.primary-nav a[aria-current="page"] {
  text-decoration-color: #fff;
}

.site-header .language-link,
.site-header .nav-toggle {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.site-header .button {
  border-color: #fff;
  background: #fff;
  color: var(--blue-dark);
}

.site-header .button:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--blue-dark);
}

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

.button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.site-photo,
.club-callout,
.next-card,
.official-logo-panel,
.inquiry-form,
.booking-panel,
.cookie-panel,
.hero-note,
.mobile-action-bar {
  box-shadow: none !important;
}

.site-photo img {
  filter: brightness(0.9) saturate(0.94) sepia(0.06) contrast(1.03);
  transition: filter 220ms ease, transform 220ms ease;
}

.site-photo:hover img {
  filter: brightness(0.94) saturate(0.98) sepia(0.04) contrast(1.03);
  transform: scale(1.01);
}

.js .reveal {
  transition: opacity 220ms ease, transform 220ms ease;
}

.js .reveal--delay {
  transition-delay: 40ms;
}

.section--compact {
  padding-block: clamp(58px, 7vw, 96px);
}

.welcome-line {
  max-width: 670px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-family: var(--nav);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 550;
  line-height: 1.45;
}

.home-practical {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
}

.home-practical h2 {
  max-width: 720px;
}

.home-practical__actions {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.home-practical__actions .opening-status {
  margin-top: 0;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .primary-nav {
    border-bottom: 0;
    background: var(--blue);
    color: #fff;
    box-shadow: none;
  }

  .primary-nav li a {
    font-family: var(--nav);
  }

  .nav-actions {
    border-top-color: rgba(255, 255, 255, 0.35);
  }
}

@media (max-width: 820px) {
  .brand-logo {
    width: 190px;
    height: 62px;
  }

  .brand-logo img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .home-practical {
    grid-template-columns: 1fr;
  }

  .image-story__media .site-photo--portrait {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 154px;
    height: 56px;
    padding: 5px 7px;
  }
}

/* Calm Pulchri system: clear, warm and deliberately simple. */
:root {
  --blue: #2154b6;
  --blue-dark: #163b82;
  --wine: #c9573f;
  --wine-dark: #a8402e;
  --paper: #f4f0e8;
  --paper-deep: #e8e0d5;
  --white: #fffdf9;
  --ink: #172235;
  --ink-soft: #526071;
  --garden: #294945;
  --garden-light: #dfe9e2;
  --line: rgba(23, 34, 53, 0.18);
}

body {
  background: var(--white);
  color: var(--ink);
}

body::before,
.home-hero::after,
.page-hero::after,
.home-hero__visual .site-photo::before {
  display: none;
}

.site-header {
  background: var(--blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.site-header__inner {
  min-height: 92px;
}

.brand-logo {
  width: 238px;
  height: 68px;
  border-radius: 4px;
}

.primary-nav {
  gap: 6px;
}

.primary-nav a {
  padding: 13px 10px;
  font-size: 0.96rem;
  font-weight: 650;
}

.primary-nav a[aria-current="page"] {
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.button,
.site-header .button,
.language-link,
.nav-toggle {
  min-height: 50px;
  border-radius: 6px;
  box-shadow: none;
}

.button {
  padding-inline: 24px;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.button:hover {
  transform: none;
}

.home-hero,
.page-hero {
  background: var(--paper);
}

.home-hero__grid,
.page-hero__grid {
  gap: clamp(38px, 6vw, 88px);
}

.home-hero h1,
.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.25rem, 5.2vw, 5.6rem);
  line-height: 0.98;
}

.page-hero--small h1 {
  max-width: 14ch;
}

.home-hero__copy > p:not(.eyebrow),
.page-hero__copy > p:not(.eyebrow) {
  max-width: 620px;
}

.home-hero__visual .site-photo,
.page-hero__media .site-photo,
.site-photo,
.moment-card--photo .site-photo,
.image-story__media .site-photo {
  border-radius: 10px;
}

.hero-note {
  display: none;
}

.site-photo img {
  filter: brightness(0.88) saturate(0.9) sepia(0.05) contrast(1.05);
}

.site-photo:hover img {
  filter: brightness(0.91) saturate(0.94) sepia(0.03) contrast(1.05);
  transform: none;
}

.eyebrow {
  color: var(--blue-dark);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.section,
.section--compact {
  padding-block: clamp(64px, 8vw, 112px);
}

.section--warm {
  background: var(--paper-deep);
}

.section--paper {
  background: var(--paper);
}

.section--garden {
  background: var(--garden);
}

.moment-grid,
.trio-grid,
.process-grid,
.benefit-grid {
  gap: 20px;
}

.moment-card,
.trio-grid article,
.process-grid article,
.benefit-grid article,
.opening-status,
.booking-panel,
.inquiry-form,
.club-callout,
.next-card,
.arrangement-card,
.content-notice {
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: none;
}

.moment-card,
.trio-grid article {
  background: var(--white);
}

.moment-card__body {
  padding: 24px;
}

.opening-status {
  background: rgba(255, 253, 249, 0.74);
}

.site-footer {
  background: #142d3d;
}

@media (max-width: 1100px) {
  .primary-nav {
    background: var(--blue);
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 76px;
  }

  .brand-logo {
    width: 184px;
    height: 58px;
  }

  .home-hero h1,
  .page-hero h1 {
    max-width: 14ch;
    font-size: clamp(3rem, 11vw, 5rem);
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 142px;
    height: 52px;
  }

  .home-hero h1,
  .page-hero h1,
  h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 10.8vw, 3rem);
    overflow-wrap: anywhere;
  }

  .home-hero__copy,
  .page-hero__copy,
  .site-header__inner {
    min-width: 0;
    max-width: 100%;
  }

  .button-row .button {
    width: 100%;
  }
}

/* Header aligned with the white logo background. */
.site-header {
  background: #fff;
  color: var(--ink);
  border-bottom-color: var(--line);
}

.primary-nav a,
.primary-nav a:hover,
.brand:hover {
  color: var(--ink);
}

.primary-nav a[aria-current="page"] {
  text-decoration-color: var(--blue);
}

.site-header .language-link,
.site-header .nav-toggle {
  border-color: var(--line);
  color: var(--ink);
}

.site-header .button {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.site-header .button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #fff;
}

@media (max-width: 1100px) {
  .primary-nav {
    background: #fff;
    color: var(--ink);
    border-top: 1px solid var(--line);
  }

  .nav-actions {
    border-top-color: var(--line);
  }
}

/* Warm restaurant atmosphere — content and behaviour remain unchanged. */
:root {
  --paper: #f3e4d3;
  --paper-deep: #e7cdb3;
  --white: #fffaf3;
  --ink: #24231f;
  --ink-soft: #635d54;
  --blue: #2456b8;
  --blue-dark: #193c80;
  --wine: #c95a3e;
  --wine-dark: #9f402c;
  --garden: #394e3e;
  --garden-light: #dce6d8;
  --line: rgba(55, 47, 38, 0.16);
}

body {
  background: var(--white);
}

h1,
h2,
h3 {
  color: var(--ink);
}

h1 {
  letter-spacing: -0.045em;
}

h2 {
  letter-spacing: -0.032em;
}

.home-hero,
.page-hero {
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 250, 243, 0.82), transparent 31%),
    linear-gradient(128deg, #f5e8d8 0%, #eddbc7 100%);
}

.home-hero__grid,
.page-hero__grid {
  min-height: min(640px, calc(100vh - 126px));
  padding-block: clamp(48px, 6vw, 82px);
}

.home-hero h1,
.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.1rem, 4.8vw, 5.15rem);
  line-height: 1;
}

.home-hero__visual .site-photo,
.page-hero__media .site-photo {
  min-height: 540px;
  border: 8px solid rgba(255, 250, 243, 0.9);
  border-radius: 22px;
}

.site-photo,
.moment-card--photo .site-photo,
.image-story__media .site-photo {
  border-radius: 16px;
}

.site-photo img {
  filter: brightness(0.94) saturate(1.04) sepia(0.07) contrast(1.02);
}

.site-photo:hover img {
  filter: brightness(0.96) saturate(1.06) sepia(0.05) contrast(1.02);
}

.welcome-line {
  color: #544d44;
}

.fact-strip {
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--blue-dark);
  color: #fff;
}

.fact-strip__grid > div {
  min-height: 124px;
  border-color: rgba(255, 255, 255, 0.18);
}

.fact-strip span,
.fact-strip small {
  color: rgba(255, 255, 255, 0.74);
}

.fact-strip strong {
  color: #fff;
}

.section,
.section--compact {
  padding-block: clamp(58px, 7vw, 96px);
}

.section--paper {
  background: var(--white);
}

.section--warm {
  background: var(--paper-deep);
}

.moment-grid,
.trio-grid,
.process-grid,
.benefit-grid {
  border: 0;
}

.moment-card,
.trio-grid article,
.process-grid article,
.benefit-grid article,
.opening-status,
.booking-panel,
.inquiry-form,
.club-callout,
.next-card,
.arrangement-card,
.content-notice {
  border-color: rgba(72, 57, 43, 0.13);
  border-radius: 16px;
}

.moment-card,
.trio-grid article,
.process-grid article,
.benefit-grid article {
  border-right: 1px solid rgba(72, 57, 43, 0.13);
  background: rgba(255, 250, 243, 0.92);
}

.button,
.site-header .button {
  border-radius: 8px;
  font-weight: 550;
}

.eyebrow {
  color: var(--wine-dark);
  letter-spacing: 0.08em;
}

.section--garden .eyebrow {
  color: #f0c3a6;
}

.site-footer {
  background: #27382f;
}

@media (max-width: 900px) {
  .home-hero__visual .site-photo,
  .page-hero__media .site-photo {
    min-height: 0;
    border-width: 6px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .home-hero h1,
  .page-hero h1,
  h1 {
    font-size: clamp(2.35rem, 10.2vw, 2.85rem);
    line-height: 1.02;
  }

  .section,
  .section--compact {
    padding-block: 54px;
  }
}

/* One consistent CTA type style, based on the primary reservation button. */
.button,
.button--small,
.button--light,
.site-header .button,
.booking-panel .button,
.text-link,
.moment-card__body > a,
.contact-cards a,
.mobile-action-bar a {
  font-family: var(--nav);
  font-size: 0.98rem;
  font-weight: 550;
  letter-spacing: 0;
  text-transform: none;
}

/* Clearer primary navigation with a restrained Pulchri-blue interaction. */
.primary-nav a:not(.button):not(.language-link) {
  color: var(--ink);
  font-family: var(--nav);
  font-size: 1.06rem;
  font-weight: 550;
  letter-spacing: 0;
  text-transform: none;
  transition: color 150ms ease;
}

.primary-nav a:not(.button):not(.language-link):hover,
.primary-nav a:not(.button):not(.language-link):focus-visible,
.primary-nav a:not(.button):not(.language-link)[aria-current="page"] {
  color: var(--blue);
}

/* Concept B — modern Haags restaurant: direct, warm and deliberately graphic. */
:root {
  --paper: #f0e2d2;
  --paper-deep: #e4c8ad;
  --white: #fffaf2;
  --ink: #291f1a;
  --ink-soft: #65594f;
  --blue: #1f57c3;
  --blue-dark: #183b7d;
  --wine: #d75736;
  --wine-dark: #a83c26;
  --garden: #404a37;
  --garden-light: #e0e5d5;
  --line: rgba(41, 31, 26, 0.22);
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.58;
}

h1,
h2,
h3,
.fact-strip strong,
.hero-note strong {
  font-family: var(--sans);
  font-weight: 620;
  letter-spacing: -0.045em;
}

h3 {
  letter-spacing: -0.025em;
}

.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--ink);
}

.brand-logo {
  border-radius: 0;
}

.primary-nav a:not(.button):not(.language-link) {
  font-size: 1.04rem;
  font-weight: 520;
}

.home-hero,
.page-hero {
  background: var(--paper);
  border-bottom: 0;
}

.home-hero__grid,
.page-hero__grid {
  min-height: min(650px, calc(100vh - 126px));
  gap: clamp(36px, 6vw, 92px);
}

.home-hero h1,
.page-hero h1 {
  max-width: 14ch;
  font-size: clamp(3.2rem, 5.1vw, 5.7rem);
  line-height: 0.98;
}

.home-hero__visual .site-photo,
.page-hero__media .site-photo,
.site-photo,
.moment-card--photo .site-photo,
.image-story__media .site-photo {
  border: 0;
  border-radius: 0;
}

.site-photo img,
.site-photo:hover img {
  filter: brightness(0.95) saturate(1.08) contrast(1.03);
  transform: none;
}

.button,
.button--small,
.button--light,
.site-header .button,
.booking-panel .button {
  border-radius: 2px;
  font-size: 0.98rem;
  font-weight: 520;
}

.eyebrow {
  color: var(--wine-dark);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.12em;
}

.fact-strip {
  background: var(--wine);
}

.fact-strip__grid > div {
  border-color: rgba(255, 255, 255, 0.28);
}

.section,
.section--compact {
  padding-block: clamp(64px, 8vw, 108px);
}

.section--warm {
  background: var(--paper-deep);
}

.section--paper {
  background: var(--white);
}

.section--garden {
  background: var(--garden);
}

.moment-grid,
.trio-grid,
.process-grid,
.benefit-grid {
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.moment-card,
.trio-grid article,
.process-grid article,
.benefit-grid article {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.moment-card:last-child,
.trio-grid article:last-child,
.process-grid article:last-child,
.benefit-grid article:last-child {
  border-right: 0;
}

.opening-status,
.booking-panel,
.inquiry-form,
.club-callout,
.next-card,
.arrangement-card,
.content-notice {
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--white);
}

.site-footer {
  background: #241e1a;
}

@media (max-width: 900px) {
  .home-hero__visual .site-photo,
  .page-hero__media .site-photo {
    border-radius: 0;
  }

  .moment-card,
  .trio-grid article,
  .process-grid article,
  .benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 480px) {
  .home-hero h1,
  .page-hero h1,
  h1 {
    font-size: clamp(2.55rem, 11vw, 3.15rem);
  }
}

/* Concept B, stronger direction: lively modern bistro rather than gallery. */
:root {
  --paper: #f3d8bf;
  --paper-deep: #edc49e;
  --white: #fff8ee;
  --ink: #241b17;
  --ink-soft: #68574d;
  --blue: #2558bd;
  --blue-dark: #173878;
  --wine: #d95b3d;
  --wine-dark: #a83c27;
  --garden: #3d4938;
  --line: rgba(36, 27, 23, 0.25);
}

.site-header {
  background: #241b17;
  color: var(--white);
  border-bottom: 0;
}

.site-header .brand-logo {
  padding: 6px 10px;
  background: #fff;
}

.site-header .primary-nav a:not(.button):not(.language-link),
.site-header .primary-nav a:not(.button):not(.language-link)[aria-current="page"] {
  color: var(--white);
}

.site-header .primary-nav a:not(.button):not(.language-link):hover,
.site-header .primary-nav a:not(.button):not(.language-link):focus-visible,
.site-header .primary-nav a:not(.button):not(.language-link)[aria-current="page"] {
  color: #ff8a68;
}

.site-header .language-link,
.site-header .nav-toggle {
  border-color: rgba(255, 248, 238, 0.5);
  color: var(--white);
}

.site-header .button {
  border-color: #ff7957;
  background: #ff7957;
  color: #241b17;
}

.home-hero,
.page-hero {
  background: var(--wine);
  color: var(--white);
}

.home-hero h1,
.page-hero h1,
.home-hero .welcome-line,
.page-hero .intro,
.home-hero .text-link,
.page-hero .text-link {
  color: var(--white);
}

.home-hero .eyebrow,
.page-hero .eyebrow {
  color: #ffd8c8;
}

.home-hero__grid,
.page-hero__grid {
  min-height: min(690px, calc(100vh - 116px));
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
}

.home-hero h1,
.page-hero h1 {
  font-size: clamp(3rem, 4.65vw, 5.2rem);
}

.home-hero__visual .site-photo,
.page-hero__media .site-photo {
  min-height: 600px;
}

.home-hero .button,
.page-hero .button {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #fff;
}

.home-hero .opening-status {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 248, 238, 0.96);
  color: var(--ink);
}

.section-heading h2 {
  max-width: 690px;
}

.section--warm {
  background: var(--paper);
}

.fact-strip {
  background: var(--blue);
}

.moment-card__body {
  padding: 28px 12px 34px 0;
}

.moment-card--photo .site-photo {
  aspect-ratio: 1 / 1;
}

.moment-card,
.trio-grid article,
.process-grid article,
.benefit-grid article {
  padding-inline: 28px;
}

.moment-card:first-child,
.trio-grid article:first-child,
.process-grid article:first-child,
.benefit-grid article:first-child {
  padding-left: 0;
}

.moment-card:last-child,
.trio-grid article:last-child,
.process-grid article:last-child,
.benefit-grid article:last-child {
  padding-right: 0;
}

.button,
.button--small,
.button--light,
.booking-panel .button {
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 0;
}

.site-footer {
  background: #241b17;
}

@media (max-width: 1100px) {
  .site-header .primary-nav {
    background: #241b17;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 900px) {
  .home-hero__grid,
  .page-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .home-hero__visual .site-photo,
  .page-hero__media .site-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .moment-card,
  .trio-grid article,
  .process-grid article,
  .benefit-grid article,
  .moment-card:first-child,
  .trio-grid article:first-child,
  .process-grid article:first-child,
  .benefit-grid article:first-child,
  .moment-card:last-child,
  .trio-grid article:last-child,
  .process-grid article:last-child,
  .benefit-grid article:last-child {
    padding-inline: 0;
  }
}

/* Concept C — Karsten & Kuiper family: graphic, food-first and unmistakably Pulchri. */
:root {
  --paper: #f7f4ed;
  --paper-deep: #f0e5cf;
  --white: #ffffff;
  --ink: #161616;
  --ink-soft: #55524c;
  --blue: #1746d1;
  --blue-dark: #102d89;
  --wine: #f0b92f;
  --wine-dark: #cf9410;
  --garden: #1746d1;
  --line: rgba(22, 22, 22, 0.22);
  --serif: "Avenir Next", Avenir, "Trebuchet MS", ui-sans-serif, sans-serif;
  --sans: "Avenir Next", Avenir, "Trebuchet MS", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --shell: min(1380px, calc(100vw - 64px));
}

body {
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
}

.concept-bar {
  min-height: 28px;
  background: var(--ink);
  font-family: var(--nav);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.site-header {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.header-inner {
  min-height: 112px;
}

.site-header .brand-logo {
  width: clamp(230px, 23vw, 345px);
  padding: 0;
  background: transparent;
}

.site-header .primary-nav a:not(.button):not(.language-link),
.site-header .primary-nav a:not(.button):not(.language-link)[aria-current="page"] {
  color: var(--ink);
  font-family: var(--nav);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.site-header .primary-nav a:not(.button):not(.language-link):hover,
.site-header .primary-nav a:not(.button):not(.language-link):focus-visible,
.site-header .primary-nav a:not(.button):not(.language-link)[aria-current="page"] {
  color: var(--blue);
}

.site-header .language-link,
.site-header .nav-toggle {
  border-color: var(--ink);
  color: var(--ink);
  font-family: var(--nav);
}

.site-header .button,
.button,
.button--small,
.button--light,
.booking-panel .button {
  min-height: 52px;
  padding: 14px 23px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: #fff;
  font-family: var(--nav);
  font-size: 0.93rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.site-header .button:hover,
.button:hover,
.button--small:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: none;
}

h1,
h2,
h3 {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(3.25rem, 6.1vw, 6.8rem);
}

h2 {
  font-size: clamp(2.45rem, 4.7vw, 5.25rem);
}

.eyebrow,
.hero-note,
.menu-updated,
.footer-kicker,
.fact-strip small {
  font-family: var(--nav);
  font-weight: 400;
  letter-spacing: 0.035em;
}

.home-hero,
.page-hero {
  position: relative;
  background: var(--blue);
  color: #fff;
}

.home-hero::after,
.page-hero::after {
  display: none;
}

.home-hero__grid,
.page-hero__grid {
  width: 100%;
  min-height: min(760px, calc(100vh - 140px));
  grid-template-columns: minmax(390px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
}

.home-hero__copy,
.page-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 7vw, 110px) clamp(36px, 6vw, 96px);
}

.home-hero h1,
.page-hero h1,
.home-hero .welcome-line,
.page-hero .intro,
.home-hero .text-link,
.page-hero .text-link {
  color: #fff;
}

.home-hero .eyebrow,
.page-hero .eyebrow {
  color: #fff;
}

.home-hero .welcome-line {
  margin-top: auto;
  padding-top: 36px;
  font-family: var(--nav);
  font-size: 1rem;
}

.home-hero__visual,
.page-hero__media {
  min-width: 0;
}

.home-hero__visual .site-photo,
.page-hero__media .site-photo {
  height: 100%;
  min-height: 760px;
  border: 0;
  border-radius: 0;
}

.home-hero__visual .site-photo img,
.page-hero__media .site-photo img {
  filter: brightness(0.82) saturate(1.04) contrast(1.04);
}

.home-hero .button {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--ink);
}

.home-hero .button:hover {
  border-color: #fff;
  background: #fff;
  color: var(--blue);
}

.home-hero .opening-status {
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,.65);
  background: transparent;
  color: #fff;
}

.home-hero .opening-status .status-dot {
  background: var(--wine);
}

.hero-note {
  right: 0;
  bottom: 0;
  padding: 16px 22px;
  background: var(--wine);
  color: var(--ink);
}

.section,
.section--compact {
  padding-block: clamp(72px, 9vw, 132px);
}

.section--warm {
  background: var(--wine);
}

.section--paper {
  background: #fff;
}

.section--garden {
  background: var(--blue);
}

.split--wide {
  align-items: end;
}

.section-heading h2 {
  max-width: 850px;
}

.text-link,
.moment-card a {
  font-family: var(--nav);
  font-size: 0.94rem;
  font-weight: 400;
}

.moment-grid {
  gap: 16px;
  border: 0;
}

.moment-card,
.moment-card:first-child,
.moment-card:last-child {
  padding: 0;
  border: 0;
  background: #fff;
}

.moment-card--photo .site-photo {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.moment-card__body {
  padding: 27px 26px 31px;
}

.moment-card__body > span {
  color: var(--blue);
  font-family: var(--nav);
}

.fact-strip {
  background: var(--ink);
}

.featured-menu,
.wine-grid {
  border-color: var(--ink);
}

.menu-item,
.wine-grid article,
.trio-grid article,
.process-grid article,
.benefit-grid article {
  border-color: var(--line);
  border-radius: 0;
}

.opening-status,
.booking-panel,
.inquiry-form,
.club-callout,
.next-card,
.arrangement-card,
.content-notice {
  border: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: none;
}

.club-callout {
  background: var(--wine);
}

.site-photo,
.site-photo img {
  border-radius: 0;
}

.site-photo img {
  filter: brightness(.88) saturate(.98) contrast(1.04);
}

.site-photo:hover img {
  filter: brightness(.92) saturate(1.02) contrast(1.04);
  transform: none;
}

.site-footer {
  background: var(--ink);
  color: #fff;
}

.site-footer h2,
.site-footer .footer-kicker {
  font-family: var(--nav);
  font-weight: 400;
  letter-spacing: 0;
}

@media (max-width: 1100px) {
  :root { --shell: min(100% - 40px, 1380px); }

  .site-header .primary-nav {
    background: #fff;
    color: var(--ink);
    border-color: var(--ink);
  }

  .site-header .primary-nav a:not(.button):not(.language-link),
  .site-header .primary-nav a:not(.button):not(.language-link)[aria-current="page"] {
    color: var(--ink);
  }
}

@media (max-width: 900px) {
  .header-inner { min-height: 92px; }

  .site-header .brand-logo { width: min(255px, 68vw); }

  .home-hero__grid,
  .page-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-hero__copy,
  .page-hero__copy {
    min-height: 560px;
    padding: 58px 24px 42px;
  }

  .home-hero__visual .site-photo,
  .page-hero__media .site-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .moment-card,
  .moment-card:first-child,
  .moment-card:last-child {
    padding: 0;
  }
}

@media (max-width: 600px) {
  :root { --shell: min(100% - 28px, 1380px); }

  h1,
  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  h2 { font-size: clamp(2.2rem, 11vw, 3.4rem); }

  .home-hero__copy,
  .page-hero__copy {
    min-height: 510px;
  }
}

@media (max-width: 480px) {
  h1,
  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }
}

/* Concept D — shaped by Pad Andrea's mural: expressive lines, warm plaster and sharp colour. */
:root {
  --paper: #ead8bc;
  --paper-deep: #dcc4a1;
  --white: #fffaf0;
  --ink: #211f1d;
  --ink-soft: #5b5148;
  --blue: #3154ad;
  --blue-dark: #1f326c;
  --wine: #b82e39;
  --wine-dark: #85212b;
  --garden: #46533e;
  --garden-light: #d7d8bd;
  --line: rgba(33, 31, 29, 0.42);
  --focus: #244daa;
  --serif: "Avenir Next", Avenir, "Trebuchet MS", ui-sans-serif, sans-serif;
  --sans: "Avenir Next", Avenir, "Trebuchet MS", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

body {
  background: var(--paper);
  color: var(--ink);
}

.concept-bar {
  background: var(--wine);
}

.site-header {
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}

.header-inner {
  min-height: 104px;
}

.site-header .brand-logo {
  width: clamp(225px, 22vw, 330px);
}

.site-header .primary-nav a:not(.button):not(.language-link),
.site-header .primary-nav a:not(.button):not(.language-link)[aria-current="page"] {
  position: relative;
  color: var(--ink);
  font-family: var(--nav);
  font-size: 0.98rem;
}

.site-header .primary-nav a:not(.button):not(.language-link)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  background: var(--wine);
  content: "";
  transform: scaleX(0) rotate(-1deg);
  transform-origin: left;
  transition: transform 140ms ease;
}

.site-header .primary-nav a:not(.button):not(.language-link):hover::after,
.site-header .primary-nav a:not(.button):not(.language-link)[aria-current="page"]::after {
  transform: scaleX(1) rotate(-1deg);
}

.site-header .primary-nav a:not(.button):not(.language-link):hover,
.site-header .primary-nav a:not(.button):not(.language-link):focus-visible,
.site-header .primary-nav a:not(.button):not(.language-link)[aria-current="page"] {
  color: var(--ink);
}

.site-header .button,
.button,
.button--small,
.button--light,
.booking-panel .button {
  border: 2px solid var(--ink);
  background: var(--wine);
  color: #fff;
}

.site-header .button:hover,
.button:hover,
.button--small:hover,
.button--light:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.055em;
}

.home-hero,
.page-hero {
  background: var(--paper);
  color: var(--ink);
}

.home-hero__grid,
.page-hero__grid {
  width: 100%;
  min-height: min(780px, calc(100vh - 132px));
  grid-template-columns: minmax(360px, 0.68fr) minmax(0, 1.32fr);
}

.home-hero__copy,
.page-hero__copy {
  position: relative;
  z-index: 2;
  padding: clamp(55px, 7vw, 108px) clamp(34px, 5.4vw, 86px);
  background: var(--paper);
}

.home-hero__copy::after,
.page-hero__copy::after {
  position: absolute;
  top: 11%;
  right: -28px;
  width: 58px;
  height: 58px;
  border: 3px solid var(--ink);
  border-radius: 52% 48% 57% 43%;
  background: var(--paper);
  content: "";
  transform: rotate(18deg);
}

.home-hero h1,
.page-hero h1,
.home-hero .welcome-line,
.page-hero .intro,
.home-hero .text-link,
.page-hero .text-link,
.home-hero .eyebrow,
.page-hero .eyebrow {
  color: var(--ink);
}

.home-hero h1,
.page-hero h1 {
  font-size: clamp(3.15rem, 5.3vw, 6.1rem);
}

.home-hero .eyebrow,
.page-hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--wine);
}

.home-hero .welcome-line {
  color: var(--wine);
  font-size: 1.1rem;
}

.home-hero .text-link {
  border-bottom-color: var(--ink);
}

.home-hero .button {
  background: var(--wine);
  color: #fff;
}

.home-hero .opening-status {
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.home-hero .opening-status .status-dot {
  background: var(--garden);
}

.home-hero__visual .site-photo,
.page-hero__media .site-photo {
  min-height: 780px;
  border-left: 2px solid var(--ink);
}

.home-hero__visual .site-photo img,
.page-hero__media .site-photo img {
  filter: brightness(.92) saturate(.86) contrast(1.05);
}

.hero-note {
  right: auto;
  bottom: 24px;
  left: 24px;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  transform: rotate(-1.5deg);
}

.section--warm {
  background: var(--paper-deep);
}

.section--paper {
  background: var(--white);
}

.section--garden {
  background: var(--garden);
}

.section-heading .eyebrow {
  color: var(--wine-dark);
}

.section-heading h2 {
  position: relative;
}

.section-heading h2::after {
  display: block;
  width: clamp(80px, 12vw, 180px);
  height: 4px;
  margin-top: 20px;
  background: var(--wine);
  content: "";
  transform: rotate(-1deg);
}

.moment-grid {
  gap: 22px;
}

.moment-card,
.moment-card:first-child,
.moment-card:last-child {
  border: 2px solid var(--ink);
  background: var(--white);
}

.moment-card:nth-child(1) { transform: rotate(-.45deg); }
.moment-card:nth-child(2) { transform: translateY(13px) rotate(.35deg); }
.moment-card:nth-child(3) { transform: rotate(-.2deg); }

.moment-card--photo .site-photo {
  aspect-ratio: 4 / 3;
  border-bottom: 2px solid var(--ink);
}

.moment-card__body > span {
  color: var(--wine);
}

.fact-strip {
  background: var(--blue);
}

.featured-menu {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.menu-item {
  border-color: var(--ink);
}

.menu-item__price {
  color: var(--wine-dark);
}

.wine-grid article:nth-child(1) { background: var(--wine); color: #fff; }
.wine-grid article:nth-child(2) { background: var(--paper-deep); }
.wine-grid article:nth-child(3) { background: var(--blue); color: #fff; }

.club-callout {
  border: 3px solid var(--ink);
  background: var(--paper-deep);
  transform: rotate(-.25deg);
}

.opening-status,
.booking-panel,
.inquiry-form,
.club-callout,
.next-card,
.arrangement-card,
.content-notice {
  border-radius: 0;
  box-shadow: none;
}

.site-footer {
  border-top: 4px solid var(--wine);
  background: var(--ink);
}

@media (max-width: 1100px) {
  .site-header .primary-nav {
    background: var(--paper);
  }
}

@media (max-width: 900px) {
  .home-hero__grid,
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__copy,
  .page-hero__copy {
    min-height: 520px;
  }

  .home-hero__copy::after,
  .page-hero__copy::after {
    top: auto;
    right: 8%;
    bottom: -27px;
  }

  .home-hero__visual .site-photo,
  .page-hero__media .site-photo {
    min-height: 0;
    aspect-ratio: 3 / 2;
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .moment-card:nth-child(1),
  .moment-card:nth-child(2),
  .moment-card:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 600px) {
  .home-hero h1,
  .page-hero h1,
  h1 {
    font-size: clamp(2.65rem, 12vw, 3.75rem);
  }

  .home-hero__copy,
  .page-hero__copy {
    min-height: 500px;
  }

  .home-hero__visual .site-photo,
  .page-hero__media .site-photo {
    aspect-ratio: 4 / 3;
  }
}

/* Mural details — real fragments of Pad Andrea's work used as playful accents. */
.site-header,
.site-header .primary-nav {
  background: #fff;
}

.site-header .brand-logo {
  background: #fff;
}

.mural-theme main > .section {
  position: relative;
  overflow: hidden;
}

.mural-theme main > .section:nth-of-type(2)::after,
.mural-theme main > .section:nth-of-type(4)::before,
.mural-theme main > .section:nth-of-type(7)::after {
  position: absolute;
  z-index: 0;
  display: block;
  border: 2px solid var(--ink);
  background-image: url("/assets/photos/pad-andrea-mural-pulchri.jpg");
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}

.mural-theme main > .section > .shell {
  position: relative;
  z-index: 1;
}

.mural-theme main > .section:nth-of-type(2)::after {
  top: 22px;
  right: clamp(18px, 4vw, 70px);
  width: clamp(108px, 12vw, 174px);
  aspect-ratio: 1;
  border-radius: 47% 53% 43% 57% / 56% 45% 55% 44%;
  background-position: 7% 5%;
  background-size: 475% auto;
  transform: rotate(7deg);
}

.mural-theme main > .section:nth-of-type(4)::before {
  right: clamp(14px, 3vw, 46px);
  bottom: 30px;
  width: clamp(112px, 11vw, 160px);
  aspect-ratio: .82;
  border-radius: 50% 43% 49% 46%;
  background-position: 67% 28%;
  background-size: 570% auto;
  transform: rotate(-5deg);
}

.mural-theme main > .section:nth-of-type(7)::after {
  top: 34px;
  left: clamp(18px, 3vw, 52px);
  width: clamp(104px, 10vw, 150px);
  aspect-ratio: .9;
  border-radius: 44% 56% 49% 51%;
  background-position: 43% 7%;
  background-size: 515% auto;
  transform: rotate(6deg);
}

@media (max-width: 900px) {
  .site-header .primary-nav {
    background: #fff;
  }

  .mural-theme main > .section:nth-of-type(2)::after,
  .mural-theme main > .section:nth-of-type(4)::before,
  .mural-theme main > .section:nth-of-type(7)::after {
    width: 96px;
    opacity: .92;
  }
}

@media (max-width: 600px) {
  .mural-theme main > .section:nth-of-type(2)::after {
    top: 12px;
    right: 12px;
    width: 76px;
  }

  .mural-theme main > .section:nth-of-type(4)::before,
  .mural-theme main > .section:nth-of-type(7)::after {
    display: none;
  }
}

/* Mural carnival — cheerful, slightly odd and deliberately unlike a template. */
main > .section {
  position: relative;
  overflow: clip;
}

main > .section > .shell {
  position: relative;
  z-index: 2;
}

main > .section:nth-of-type(2)::after,
main > .section:nth-of-type(3)::before,
main > .section:nth-of-type(4)::after,
main > .section:nth-of-type(5)::before,
main > .section:nth-of-type(6)::after,
main > .section:nth-of-type(7)::before {
  position: absolute;
  z-index: 1;
  display: block;
  background-repeat: no-repeat;
  content: "";
  filter: drop-shadow(5px 7px 0 rgba(33, 31, 29, .18));
  pointer-events: none;
}

/* Woman with flower */
main > .section:nth-of-type(2)::after {
  top: 14px;
  right: -25px;
  width: clamp(150px, 17vw, 255px);
  aspect-ratio: .82;
  background-image: url("/assets/photos/mural-bar.jpg?v=2");
  background-position: 92% 30%;
  background-size: 285% auto;
  clip-path: polygon(13% 3%, 85% 0, 100% 18%, 91% 91%, 65% 100%, 4% 88%, 0 24%);
  transform: rotate(5deg);
}

.mural-theme main > .section:nth-of-type(2)::after {
  top: 14px;
  right: -25px;
  width: clamp(150px, 17vw, 255px);
  aspect-ratio: .82;
  border: 0;
  border-radius: 0;
  background-image: url("/assets/photos/mural-bar.jpg?v=2");
  background-position: 92% 30%;
  background-size: 285% auto;
  clip-path: polygon(13% 3%, 85% 0, 100% 18%, 91% 91%, 65% 100%, 4% 88%, 0 24%);
  opacity: 1;
  transform: rotate(5deg);
}

/* Pointing figure */
main > .section:nth-of-type(3)::before {
  bottom: 24px;
  left: -32px;
  width: clamp(135px, 15vw, 220px);
  aspect-ratio: .9;
  background-image: url("/assets/photos/mural-wide-left.jpg?v=2");
  background-position: 23% 34%;
  background-size: 430% auto;
  clip-path: polygon(19% 0, 88% 5%, 100% 34%, 83% 96%, 18% 100%, 0 69%, 5% 20%);
  transform: rotate(-7deg);
}

/* Colourful small head */
main > .section:nth-of-type(4)::after {
  right: clamp(10px, 3vw, 44px);
  bottom: 18px;
  width: clamp(112px, 12vw, 180px);
  aspect-ratio: .78;
  background-image: url("/assets/photos/mural-artist.jpg?v=2");
  background-position: 58% 69%;
  background-size: 530% auto;
  clip-path: polygon(24% 0, 77% 5%, 100% 30%, 87% 89%, 52% 100%, 12% 85%, 0 31%);
  transform: rotate(8deg);
}

/* Back-facing figure */
main > .section:nth-of-type(5)::before {
  top: 35px;
  left: clamp(12px, 3vw, 52px);
  width: clamp(128px, 14vw, 210px);
  aspect-ratio: .72;
  background-image: url("/assets/photos/mural-dining.jpg?v=2");
  background-position: 42% 19%;
  background-size: 475% auto;
  clip-path: polygon(26% 0, 78% 2%, 100% 22%, 92% 91%, 57% 100%, 11% 86%, 0 24%);
  transform: rotate(-4deg);
}

/* Floating figures */
main > .section:nth-of-type(6)::after {
  right: -38px;
  top: 15%;
  width: clamp(170px, 20vw, 300px);
  aspect-ratio: 1.18;
  background-image: url("/assets/photos/mural-artist.jpg?v=2");
  background-position: 66% 28%;
  background-size: 365% auto;
  clip-path: polygon(8% 7%, 73% 0, 100% 23%, 94% 80%, 70% 100%, 5% 88%, 0 33%);
  transform: rotate(5deg);
}

/* Red flower */
main > .section:nth-of-type(7)::before {
  bottom: 12px;
  left: -20px;
  width: clamp(140px, 16vw, 238px);
  aspect-ratio: 1.1;
  background-image: url("/assets/photos/mural-bar.jpg?v=2");
  background-position: 68% 39%;
  background-size: 365% auto;
  clip-path: polygon(9% 20%, 37% 2%, 82% 0, 100% 39%, 87% 83%, 46% 100%, 3% 79%);
  transform: rotate(-8deg);
}

.section:nth-of-type(3n + 2) {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.moment-card:nth-child(1) { transform: rotate(-1.2deg); }
.moment-card:nth-child(2) { transform: translateY(17px) rotate(1.05deg); }
.moment-card:nth-child(3) { transform: rotate(-.75deg); }

.wine-grid article:nth-child(1) { transform: rotate(-.7deg); }
.wine-grid article:nth-child(2) { transform: translateY(11px) rotate(.65deg); }
.wine-grid article:nth-child(3) { transform: rotate(-.45deg); }

.button:hover,
.button--small:hover,
.button--light:hover {
  transform: translateY(-2px) rotate(-1deg);
}

.image-story__media {
  transform: rotate(-1deg);
}

.image-story__copy {
  transform: rotate(.35deg);
}

@media (max-width: 1100px) {
  main > .section:nth-of-type(2)::after,
  main > .section:nth-of-type(3)::before,
  main > .section:nth-of-type(4)::after,
  main > .section:nth-of-type(5)::before,
  main > .section:nth-of-type(6)::after,
  main > .section:nth-of-type(7)::before {
    width: 116px;
    opacity: .9;
  }
}

@media (max-width: 760px) {
  main > .section:nth-of-type(3)::before,
  main > .section:nth-of-type(5)::before,
  main > .section:nth-of-type(6)::after,
  main > .section:nth-of-type(7)::before {
    display: none;
  }

  main > .section:nth-of-type(2)::after,
  main > .section:nth-of-type(4)::after {
    width: 82px;
    opacity: .82;
  }

  .moment-card:nth-child(1),
  .moment-card:nth-child(2),
  .moment-card:nth-child(3),
  .wine-grid article:nth-child(1),
  .wine-grid article:nth-child(2),
  .wine-grid article:nth-child(3),
  .image-story__media,
  .image-story__copy {
    transform: none;
  }
}

/* Pad Andrea figures — transparent artwork details, never photographic tiles. */
.mural-theme main > .section:nth-of-type(2)::after,
main > .section:nth-of-type(2)::after,
main > .section:nth-of-type(3)::before,
.mural-theme main > .section:nth-of-type(4)::before,
main > .section:nth-of-type(4)::after,
main > .section:nth-of-type(5)::before,
main > .section:nth-of-type(6)::after,
.mural-theme main > .section:nth-of-type(7)::after,
main > .section:nth-of-type(7)::before {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  clip-path: none;
  filter: none;
  opacity: .9;
}

.mural-theme main > .section:nth-of-type(2)::after,
main > .section:nth-of-type(2)::after {
  background-image: url("/assets/figures/pad-pointing-woman.png");
}

main > .section:nth-of-type(3)::before {
  background-image: url("/assets/figures/pad-profile.png");
}

.mural-theme main > .section:nth-of-type(4)::before {
  background-image: url("/assets/figures/pad-flower-woman.png");
}

main > .section:nth-of-type(4)::after {
  background-image: url("/assets/figures/pad-colour-head.png");
}

main > .section:nth-of-type(5)::before {
  background-image: url("/assets/figures/pad-back-figure.png");
}

main > .section:nth-of-type(6)::after {
  background-image: url("/assets/figures/pad-floating-pair.png");
}

.mural-theme main > .section:nth-of-type(7)::after,
main > .section:nth-of-type(7)::before {
  background-image: url("/assets/figures/pad-reclining.png");
}

@media (max-width: 760px) {
  .mural-theme main > .section:nth-of-type(4)::before,
  .mural-theme main > .section:nth-of-type(7)::after {
    display: none;
  }
}
