@font-face {
  font-family: "Guestivio Display";
  src: url("guestivio-display.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Guestivio Display";
  src: url("guestivio-display-italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Guestivio Sans";
  src: url("guestivio-sans.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Guestivio Sans";
  src: url("guestivio-sans-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #f5f0e8;
  --surface: #fbf7f0;
  --elevated: #fffaf3;
  --text: #1f2a31;
  --muted: #5f625f;
  --border: #263238;
  --border-soft: #b8afa4;
  --accent: #b5422d;
  --accent-hover: #923321;
  --accent-soft: #d9b2a5;
  --cta: #b5422d;
  --cta-text: #fffaf3;
  --focus: #1267a6;
  --success: #2c6c4f;
  --error: #9e2f25;
  --header: #f7f2ea;
  --footer: #1f2a31;
  --form: #fffaf3;
  --ink-blue: #233a4a;
  --sage: #66725e;
  --content: 1440px;
  --gutter: clamp(22px, 4vw, 64px);
  --shadow-focus: 0 0 0 3px rgba(18, 103, 166, 0.28);
  --font-display: "Guestivio Display", "Times New Roman", Georgia, serif;
  --font-sans: "Guestivio Sans", "Arial Narrow", Arial, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--background);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.63;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.dialog-open {
  overflow: hidden;
}

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

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

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

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

button,
[type="submit"],
[type="button"] {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 16px;
  color: #fff;
  background: var(--focus);
  text-decoration: none;
}

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

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

.shell {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.section-shell {
  width: min(calc(100% - (var(--gutter) * 2)), 1320px);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--text);
  line-height: 1.06;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
}

h3,
h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(48px, 6vw, 82px);
}

h2 {
  font-size: clamp(38px, 4.4vw, 62px);
}

h3 {
  font-size: clamp(23px, 2.2vw, 31px);
}

p {
  margin: 0 0 1em;
}

.lead {
  max-width: 64ch;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.52;
}

.text-width {
  max-width: 68ch;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button {
  padding: 16px 25px;
  border: 1px solid var(--cta);
  color: var(--cta-text);
  background: var(--cta);
  text-decoration: none;
}

.button:hover {
  border-color: var(--accent-hover);
  color: var(--cta-text);
  background: var(--accent-hover);
}

.button--outline {
  color: var(--text);
  border-color: var(--text);
  background: transparent;
}

.button--outline:hover {
  color: var(--cta-text);
  border-color: var(--text);
  background: var(--text);
}

.button--light {
  color: var(--surface);
  border-color: var(--surface);
  background: transparent;
}

.button--light:hover {
  color: var(--accent);
  background: var(--surface);
}

.text-link {
  position: relative;
  min-height: 38px;
  padding: 0 0 4px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform-origin: left;
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.55);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  align-items: center;
}

.site-header {
  position: relative;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: var(--header);
}

.header-inner {
  display: grid;
  grid-template-columns: 386px minmax(0, 1fr) 387px;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  min-height: 112px;
  align-items: stretch;
}

.brand-link {
  display: flex;
  align-items: center;
  padding: 14px 48px;
}

.brand-link img {
  width: min(245px, 100%);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3.4vw, 54px);
  padding: 0 34px;
  font-family: var(--font-sans);
  font-size: 19px;
}

.primary-nav a {
  position: relative;
  padding: 42px 0 35px;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 29px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  color: var(--surface);
  background: var(--accent);
}

.header-booking .button {
  min-width: 230px;
  color: var(--surface);
  border-color: var(--surface);
  background: transparent;
}

.header-booking .button:hover {
  color: var(--accent);
  background: var(--surface);
}

.mobile-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 10px 14px 10px 0;
  color: var(--text);
  border: 1px solid var(--border);
  background: transparent;
  font-size: 27px;
}

.mobile-panel {
  display: none;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 42.5%) minmax(0, 57.5%);
  min-height: 585px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(34px, 4vw, 60px) 42px;
}

.hero-copy .actions {
  margin-bottom: 24px;
}

.hero-copy .text-link {
  align-self: flex-start;
}

.hero-title {
  margin: 0 0 28px;
  font-size: clamp(55px, 5.3vw, 78px);
  letter-spacing: -0.035em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-title em {
  color: var(--accent);
  font-weight: 400;
}

.hero-copy .lead {
  max-width: 31ch;
  margin-bottom: 28px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.45;
}

.hero-image {
  min-height: 585px;
  overflow: hidden;
  background: var(--accent);
}

.hero-image picture,
.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-image img {
  object-fit: cover;
  object-position: center;
}

.menu-preview {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(155px, 1fr)) 1.9fr;
  min-height: 276px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.menu-preview__intro,
.menu-preview__item {
  padding: 38px 30px;
}

.menu-preview__intro {
  padding-left: clamp(34px, 4vw, 62px);
}

.menu-preview__intro h2 {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.05;
  text-transform: uppercase;
}

.menu-preview__intro h2::after,
.section-title-rule::after {
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 11px;
  background: var(--accent);
  content: "";
}

.menu-preview__item {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border-soft);
}

.menu-preview__item h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.15;
  text-transform: uppercase;
}

.menu-preview__item p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.menu-preview__price {
  margin-top: auto;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.menu-preview__image {
  min-height: 276px;
  overflow: hidden;
}

.menu-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-ribbon {
  display: grid;
  grid-template-columns: minmax(310px, 1.4fr) repeat(3, minmax(170px, 1fr)) 130px;
  min-height: 84px;
  color: var(--surface);
  background: var(--accent);
}

.program-ribbon > * {
  display: flex;
  align-items: center;
  padding: 20px 26px;
  border-right: 1px solid rgba(255, 250, 243, 0.55);
}

.program-ribbon__title {
  padding-left: clamp(34px, 4vw, 62px);
  font-family: var(--font-sans);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-ribbon a {
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 17px;
  text-align: center;
  text-decoration: none;
}

.program-ribbon a:hover {
  color: var(--surface);
  background: var(--accent-hover);
}

.program-ribbon__mark {
  justify-content: center;
  border-right: 0;
}

.program-ribbon__mark img {
  width: 58px;
}

.content-section {
  padding: clamp(72px, 8vw, 124px) 0;
  border-bottom: 1px solid var(--border);
}

.content-section--compact {
  padding: clamp(54px, 6vw, 88px) 0;
}

.content-section--ink {
  color: var(--surface);
  background: var(--text);
}

.content-section--ink h2,
.content-section--ink h3,
.content-section--ink .eyebrow {
  color: var(--surface);
}

.content-section--accent {
  color: var(--surface);
  background: var(--accent);
}

.content-section--accent h2,
.content-section--accent h3,
.content-section--accent .eyebrow {
  color: var(--surface);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
  align-items: stretch;
  border-bottom: 1px solid var(--border);
}

.split-section--reverse {
  grid-template-columns: minmax(350px, 0.9fr) minmax(0, 1.1fr);
}

.split-section__image {
  min-height: 560px;
  overflow: hidden;
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 112px);
  background: var(--surface);
}

.split-section__copy h2 {
  margin-bottom: 26px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fact {
  padding: 28px 26px;
  border-right: 1px solid var(--border);
}

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

.fact .ph-light {
  display: block;
  margin-bottom: 15px;
  color: var(--accent);
  font-size: 30px;
}

.fact strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-sans);
  font-size: 20px;
}

.fact span {
  color: var(--muted);
  font-size: 15px;
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: 640px;
  border-bottom: 1px solid var(--border);
  background: var(--ink-blue);
}

.event-feature__image {
  overflow: hidden;
}

.event-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 110px);
  color: var(--surface);
}

.event-feature__copy h2,
.event-feature__copy h3,
.event-feature__copy .eyebrow {
  color: var(--surface);
}

.event-feature__copy .notice {
  margin: 22px 0 30px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 250, 243, 0.5);
  border-bottom: 1px solid rgba(255, 250, 243, 0.5);
  font-size: 15px;
}

.event-disclaimer {
  margin: 18px 0 30px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 250, 243, 0.5);
  border-bottom: 1px solid rgba(255, 250, 243, 0.5);
  color: var(--surface);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
}

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

.event-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.event-card:nth-child(1),
.event-card:nth-child(5) {
  grid-row: span 2;
  min-height: 600px;
}

.event-card .ph-light {
  margin-bottom: 32px;
  color: var(--accent);
  font-size: 38px;
}

.event-card h3 {
  max-width: 18ch;
  margin-bottom: 14px;
}

.event-card p {
  color: var(--muted);
}

.event-card a {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-family: var(--font-sans);
  font-weight: 700;
  text-decoration: none;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  min-height: 560px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.page-hero--text {
  display: block;
  min-height: 0;
  padding: clamp(70px, 10vw, 150px) var(--gutter);
  background: var(--surface);
}

.page-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 105px) var(--gutter);
}

.page-hero__copy h1 {
  margin-bottom: 25px;
}

.page-hero__image {
  min-height: 560px;
  overflow: hidden;
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 15px;
}

.page-hero--reverse {
  grid-template-columns: minmax(0, 54%) minmax(0, 46%);
}

.page-hero--reverse .page-hero__copy {
  order: 2;
}

.page-hero--reverse .page-hero__image {
  order: 1;
}

.service-quickline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  padding-block: 18px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-quickline span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.service-quickline .ph-light {
  color: var(--accent);
  font-size: 19px;
}

.service-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.service-overview__grid > div > p:not(.eyebrow) {
  max-width: 72ch;
}

.service-note {
  padding: clamp(30px, 4vw, 50px);
  color: var(--surface);
  background: var(--accent);
}

.service-note h3,
.service-note .ph-light {
  color: var(--surface);
}

.service-note .ph-light {
  display: block;
  margin-bottom: 24px;
  font-size: 38px;
}

.service-note--ink {
  background: var(--ink-blue);
}

.service-process .process {
  max-width: 1040px;
}

.content-section--ink .process,
.content-section--ink .process li,
.content-section--accent .process,
.content-section--accent .process li {
  border-color: rgba(255, 250, 243, 0.38);
}

.content-section--ink .process li::before,
.content-section--accent .process li::before {
  color: var(--accent-soft);
}

.service-details__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-detail {
  min-height: 430px;
  padding: clamp(38px, 6vw, 78px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.service-detail h2 {
  max-width: 13ch;
}

.service-detail--accent {
  color: var(--surface);
  background: var(--accent);
}

.service-detail--accent h2,
.service-detail--accent h3,
.service-detail--accent .eyebrow,
.service-detail--accent .text-link {
  color: var(--surface);
}

.service-faq {
  background: var(--surface);
}

.service-faq__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.service-page--cards .service-overview,
.service-page--planner .service-faq {
  background: var(--elevated);
}

.service-page--planner .service-detail--accent {
  background: var(--ink-blue);
}

.booking-layout--home {
  scroll-margin-top: 24px;
}

.booking-contact a,
.booking-intro a {
  color: var(--surface);
}

.breadcrumbs {
  padding: 15px var(--gutter);
  border-bottom: 1px solid var(--border-soft);
  background: var(--background);
  font-family: var(--font-sans);
  font-size: 14px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--accent);
  content: "/";
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(40px, 8vw, 120px);
}

.editorial-grid__rail {
  position: sticky;
  top: 24px;
  align-self: start;
  padding-top: 10px;
  border-top: 3px solid var(--accent);
}

.editorial-grid__rail nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-sans);
  text-decoration: none;
}

.editorial-grid__content > section {
  margin-bottom: 64px;
}

.editorial-grid__content > section:last-child {
  margin-bottom: 0;
}

.process {
  counter-reset: process;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.process li {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  column-gap: 24px;
  row-gap: 6px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: process;
}

.process li::before {
  grid-row: 1 / span 2;
  grid-column: 1;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  content: "0" counter(process);
}

.process strong {
  grid-row: 1;
  grid-column: 2;
  display: block;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 20px;
}

.process li > span {
  grid-row: 2;
  grid-column: 2;
  max-width: 72ch;
}

.notice {
  padding: 22px 25px;
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--border);
  background: rgba(181, 66, 45, 0.06);
}

.notice--ink {
  color: var(--surface);
  border-color: var(--surface);
  background: var(--text);
}

.menu-nav {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  scrollbar-width: thin;
}

.menu-nav a,
.menu-nav button {
  flex: 0 0 auto;
  padding: 18px 24px;
  color: var(--text);
  border: 0;
  border-right: 1px solid var(--border-soft);
  background: transparent;
  font-family: var(--font-sans);
  font-weight: 700;
  text-decoration: none;
}

.menu-nav a:hover,
.menu-nav button:hover,
.menu-nav button[aria-selected="true"] {
  color: var(--surface);
  background: var(--accent);
}

.menu-category {
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}

.menu-category:last-child {
  border-bottom: 0;
}

.menu-category__head {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  margin-bottom: 34px;
}

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

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

.menu-item h3 {
  margin-bottom: 5px;
  font-size: 20px;
  text-transform: none;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.menu-item__price {
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--border);
}

.price-table th,
.price-table td {
  padding: 17px 14px;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-table td:last-child,
.price-table th:last-child {
  color: var(--accent);
  font-family: var(--font-sans);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 58px 24px 0;
  font-family: var(--font-sans);
  font-size: 21px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  color: var(--accent);
  font-family: "Phosphor-Light";
  font-size: 24px;
  content: "\e3d4";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "\e32a";
}

.faq-answer {
  max-width: 72ch;
  padding: 0 58px 22px 0;
  color: var(--muted);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.booking-intro,
.booking-form-wrap {
  padding: clamp(38px, 5vw, 70px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.booking-intro {
  color: var(--surface);
  background: var(--text);
}

.booking-intro h2,
.booking-intro h3,
.booking-intro .eyebrow {
  color: var(--surface);
}

.booking-form-wrap {
  background: var(--form);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.form-field label,
.form-field legend {
  font-family: var(--font-sans);
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--text);
  border: 1px solid var(--border-soft);
  border-radius: 0;
  background: #fff;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--focus);
  outline-offset: 0;
  border-color: var(--focus);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.checkbox-row label {
  font-family: var(--font-body);
  font-weight: 400;
}

.form-help,
.field-error {
  color: var(--muted);
  font-size: 14px;
}

.field-error {
  color: var(--error);
}

.form-status {
  min-height: 27px;
  margin: 18px 0;
  padding: 12px 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

.form-status[data-state="error"] {
  color: var(--error);
  border-color: var(--error);
}

.form-status[data-state="success"] {
  color: var(--success);
  border-color: var(--success);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.contact-card {
  min-height: 230px;
  padding: 34px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.contact-card .ph-light {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 36px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
}

.hours-table td:last-child {
  text-align: right;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(38px, 8vw, 110px);
}

.legal-toc {
  position: sticky;
  top: 24px;
  align-self: start;
  padding-top: 18px;
  border-top: 3px solid var(--accent);
}

.legal-toc a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-sans);
  font-size: 15px;
  text-decoration: none;
}

.legal-content {
  max-width: 74ch;
  font-size: 17px;
  line-height: 1.72;
}

.legal-content section {
  margin-bottom: 54px;
}

.legal-content h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.legal-content h3 {
  margin-top: 34px;
  font-size: 23px;
}

.legal-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.legal-content th,
.legal-content td {
  min-width: 160px;
  padding: 13px;
  border: 1px solid var(--border-soft);
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: rgba(181, 66, 45, 0.08);
  font-family: var(--font-sans);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: clamp(48px, 6vw, 84px) var(--gutter);
  color: var(--surface);
  background: var(--accent);
}

.cta-band h2 {
  max-width: 16ch;
  margin: 0;
  color: var(--surface);
}

.site-footer {
  color: var(--surface);
  background: var(--footer);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 250, 243, 0.28);
}

.footer-column {
  padding: 48px clamp(24px, 3vw, 48px);
  border-right: 1px solid rgba(255, 250, 243, 0.28);
}

.footer-column:last-child {
  border-right: 0;
}

.footer-brand img {
  width: 230px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.footer-column h2,
.footer-column h3 {
  color: var(--surface);
}

.footer-column h3 {
  margin-bottom: 19px;
  font-size: 19px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.cookie-settings-link {
  display: inline-block;
  padding: 5px 0;
  color: var(--surface);
  border: 0;
  background: transparent;
  text-align: left;
}

.footer-links a:hover,
.cookie-settings-link:hover {
  color: var(--accent-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--gutter);
  color: rgba(255, 250, 243, 0.72);
  font-size: 14px;
}

.footer-age-note {
  max-width: 52ch;
}

.cookie-banner {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: none;
  max-width: 1180px;
  margin-inline: auto;
  padding: 25px;
  color: var(--surface);
  border: 1px solid var(--surface);
  background: var(--text);
}

.cookie-banner.is-visible {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cookie-banner h2 {
  margin-bottom: 8px;
  color: var(--surface);
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 700;
}

.cookie-banner p {
  margin: 0;
  font-size: 15px;
}

.cookie-banner a {
  color: var(--surface);
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(165px, 1fr));
  gap: 10px;
}

.cookie-actions button {
  min-height: 48px;
  padding: 11px 16px;
  color: var(--surface);
  border: 1px solid var(--surface);
  background: transparent;
  font-family: var(--font-sans);
  font-weight: 700;
}

.cookie-actions button:hover {
  color: var(--text);
  background: var(--surface);
}

.dialog-backdrop {
  position: fixed;
  z-index: 950;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(31, 42, 49, 0.82);
}

.dialog-backdrop.is-visible {
  display: flex;
}

.cookie-dialog {
  width: min(100%, 720px);
  max-height: min(88vh, 820px);
  overflow-y: auto;
  border: 1px solid var(--border);
  background: var(--surface);
}

.dialog-head,
.dialog-body,
.dialog-actions {
  padding: 24px 28px;
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}

.dialog-head h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
}

.dialog-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  font-size: 24px;
}

.consent-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid var(--border-soft);
}

.consent-row:last-child {
  border-bottom: 0;
}

.consent-row strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 20px;
}

.consent-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.switch {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 30px;
}

.switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.switch span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  background: #d9d3ca;
  transition: background-color 160ms ease;
}

.switch span::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  content: "";
  transition: transform 160ms ease;
}

.switch input:checked + span {
  background: var(--success);
}

.switch input:checked + span::after {
  transform: translateX(24px);
}

.switch input:focus-visible + span {
  box-shadow: var(--shadow-focus);
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid var(--border);
}

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

.error-page {
  display: grid;
  min-height: 65vh;
  place-items: center;
  padding: 70px var(--gutter);
  text-align: center;
}

.error-code {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(110px, 20vw, 260px);
  line-height: 0.8;
}

@media (max-width: 1320px) {
  .header-inner {
    grid-template-columns: minmax(220px, 0.9fr) auto 270px;
  }

  .brand-link {
    padding-inline: 24px;
  }

  .primary-nav {
    gap: 27px;
    padding-inline: 22px;
  }

  .header-booking {
    padding-inline: 18px;
  }

  .header-booking .button {
    min-width: 210px;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(190px, 0.9fr) auto 245px;
  }

  .primary-nav {
    gap: 24px;
    padding-inline: 20px;
    font-size: 17px;
  }

  .header-booking {
    padding-inline: 18px;
  }

  .header-booking .button {
    min-width: 190px;
  }

  .menu-preview {
    grid-template-columns: 1.2fr repeat(2, 1fr) 1.2fr;
  }

  .menu-preview__item:nth-of-type(4),
  .menu-preview__item:nth-of-type(5) {
    display: none;
  }

  .program-ribbon {
    grid-template-columns: 1.3fr repeat(3, 1fr) 100px;
  }
}

@media (max-width: 960px) {
  body {
    padding-bottom: 72px;
  }

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

  .brand-link {
    padding: 10px 18px;
  }

  .brand-link img {
    width: 184px;
  }

  .primary-nav,
  .header-booking {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .mobile-panel {
    position: fixed;
    z-index: 80;
    inset: 72px 0 0;
    display: none;
    overflow-y: auto;
    padding: 24px;
    color: var(--surface);
    background: var(--text);
  }

  .mobile-panel.is-open {
    display: block;
  }

  .mobile-panel nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    color: var(--surface);
    border-bottom: 1px solid rgba(255, 250, 243, 0.28);
    font-family: var(--font-sans);
    font-size: 24px;
    text-decoration: none;
  }

  .mobile-panel .button {
    width: 100%;
    margin-top: 28px;
  }

  .hero-home,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero--reverse .page-hero__copy,
  .page-hero--reverse .page-hero__image {
    order: initial;
  }

  .hero-copy {
    min-height: 540px;
    padding: 48px 28px;
  }

  .hero-title {
    font-size: clamp(48px, 9vw, 72px);
  }

  .hero-image,
  .page-hero__image {
    min-height: 480px;
  }

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

  .menu-preview__intro,
  .menu-preview__image {
    grid-column: 1 / -1;
  }

  .menu-preview__item:nth-of-type(4) {
    display: flex;
  }

  .menu-preview__image {
    min-height: 360px;
  }

  .program-ribbon {
    display: flex;
    overflow-x: auto;
  }

  .program-ribbon > * {
    flex: 0 0 auto;
    min-width: 220px;
  }

  .program-ribbon__mark {
    min-width: 100px;
  }

  .split-section,
  .split-section--reverse,
  .event-feature,
  .booking-layout,
  .legal-layout,
  .service-overview__grid,
  .service-details__grid,
  .service-faq__grid {
    grid-template-columns: 1fr;
  }

  .service-details__grid {
    border-left: 0;
  }

  .service-detail {
    min-height: 0;
    border-left: 1px solid var(--border);
  }

  .split-section__image,
  .event-feature__image {
    min-height: 470px;
  }

  .event-feature__copy {
    min-height: 480px;
  }

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

  .event-card:nth-child(1),
  .event-card:nth-child(5) {
    grid-row: auto;
    min-height: 360px;
  }

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

  .editorial-grid__rail,
  .legal-toc {
    position: static;
  }

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

  .footer-column:nth-child(2) {
    border-right: 0;
  }

  .footer-column:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 250, 243, 0.28);
  }

  .cookie-banner.is-visible {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 700;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 64px;
    min-height: 72px;
    border-top: 1px solid var(--surface);
    background: var(--accent);
  }

  .mobile-booking-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--surface);
    border-right: 1px solid rgba(255, 250, 243, 0.55);
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-booking-bar a:last-child {
    border-right: 0;
    font-size: 26px;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 22px;
  }

  body {
    font-size: 16px;
    line-height: 1.58;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  h2 {
    font-size: clamp(35px, 11vw, 47px);
  }

  .hero-copy {
    min-height: 0;
    padding: 45px 22px 52px;
  }

  .hero-title {
    margin-bottom: 24px;
    font-size: clamp(45px, 14vw, 61px);
    line-height: 0.93;
  }

  .hero-copy .lead {
    font-size: 18px;
  }

  .actions {
    align-items: stretch;
  }

  .actions .button {
    width: 100%;
  }

  .hero-image,
  .page-hero__image {
    min-height: 380px;
  }

  .hero-image img {
    object-position: 60% center;
  }

  .menu-preview {
    display: block;
  }

  .menu-preview__intro,
  .menu-preview__item {
    padding: 28px 22px;
  }

  .menu-preview__item {
    border-top: 1px solid var(--border-soft);
    border-left: 0;
  }

  .menu-preview__item:nth-of-type(5) {
    display: flex;
  }

  .menu-preview__price {
    margin-top: 16px;
  }

  .menu-preview__image {
    min-height: 290px;
  }

  .program-ribbon__title {
    min-width: 290px;
    padding-left: 22px;
    font-size: 21px;
  }

  .content-section {
    padding: 68px 0;
  }

  .split-section__image,
  .event-feature__image {
    min-height: 360px;
  }

  .split-section__copy,
  .event-feature__copy {
    padding: 48px 22px;
  }

  .facts-grid,
  .contact-grid,
  .event-catalogue,
  .form-grid,
  .menu-category__head {
    grid-template-columns: 1fr;
  }

  .fact {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .event-card,
  .event-card:nth-child(1),
  .event-card:nth-child(5) {
    min-height: 330px;
  }

  .page-hero__copy {
    padding: 48px 22px;
  }

  .page-hero__copy h1 {
    font-size: clamp(45px, 14vw, 60px);
  }

  .service-quickline {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .service-quickline span {
    flex: 0 0 auto;
  }

  .service-note,
  .service-detail {
    padding: 34px 22px;
  }

  .page-hero--text {
    padding: 58px 22px;
  }

  .editorial-grid {
    gap: 42px;
  }

  .editorial-grid__rail nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
  }

  .editorial-grid__rail nav a {
    flex: 0 0 auto;
    padding: 12px 16px;
    border-right: 1px solid var(--border-soft);
    white-space: nowrap;
  }

  .process li {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 15px;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table th,
  .price-table td {
    display: block;
  }

  .price-table thead {
    display: none;
  }

  .price-table tr {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }

  .price-table td {
    padding: 4px 0;
    border: 0;
  }

  .price-table td:last-child {
    margin-top: 7px;
    text-align: left;
  }

  .booking-intro,
  .booking-form-wrap {
    padding: 38px 22px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 52px 22px;
  }

  .cta-band .button {
    width: 100%;
  }

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

  .footer-column {
    padding: 34px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 243, 0.28);
  }

  .footer-bottom {
    flex-direction: column;
    padding: 20px 22px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 82px;
    left: 10px;
    padding: 20px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .dialog-head,
  .dialog-body,
  .dialog-actions {
    padding: 20px;
  }

  .dialog-actions {
    flex-direction: column;
  }

  .dialog-actions .button {
    width: 100%;
  }
}

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

@media print {
  .site-header,
  .site-footer,
  .cookie-banner,
  .dialog-backdrop,
  .mobile-booking-bar,
  .breadcrumbs,
  .button {
    display: none !important;
  }

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

  a {
    color: #000;
  }
}
