:root {
  --aegean-950: #071f2b;
  --aegean-900: #0d3344;
  --aegean-800: #17485c;
  --aegean-700: #24647a;
  --terracotta: #c86947;
  --terracotta-dark: #a94c32;
  --olive: #6f7752;
  --gold: #ddb95f;
  --limewash: #f4eee2;
  --paper: #fffaf0;
  --white: #fffef9;
  --ink: #172b31;
  --ink-soft: #58666a;
  --line: rgba(13, 51, 68, .18);
  --shadow-sm: 0 14px 34px rgba(7, 31, 43, .1);
  --shadow-lg: 0 30px 70px rgba(7, 31, 43, .16);
  --radius-sm: 8px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shell: min(1180px, calc(100vw - 48px));
  --serif: "Marcellus", Georgia, serif;
  --sans: "DM Sans", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.03; letter-spacing: -.035em; }
h2 { max-width: 820px; color: var(--aegean-950); font-size: clamp(2.75rem, 5.3vw, 5rem); }
h3 { font-size: 1.5rem; }
address { font-style: normal; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 124px 0; }

.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; z-index: 1000; top: 8px; left: 8px; padding: 10px 15px; color: var(--white); background: var(--aegean-950); border-radius: 6px; text-decoration: none; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.demo-disclaimer { position: relative; z-index: 80; padding: 8px 16px; color: #fff8e7; background: #061923; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .69rem; font-weight: 700; letter-spacing: .055em; line-height: 1.35; text-align: center; }

.notice { position: relative; z-index: 70; color: #e9e0cc; background: var(--aegean-950); font-size: .72rem; font-weight: 650; letter-spacing: .04em; }
.notice__inner { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.notice__inner span { display: inline-flex; align-items: center; gap: 8px; }
.notice__inner span:last-child { color: rgba(255,255,255,.62); }
.notice i { width: 7px; height: 7px; background: #7fc18e; border-radius: 50%; box-shadow: 0 0 0 4px rgba(127,193,142,.12); }

.site-header { position: sticky; z-index: 60; top: 0; background: rgba(255,250,240,.94); border-bottom: 1px solid transparent; backdrop-filter: blur(15px); transition: border-color .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 28px rgba(7,31,43,.06); }
.header__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--aegean-900); text-decoration: none; }
.brand__mark { width: 42px; height: 42px; fill: none; stroke: var(--olive); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.brand span { display: grid; line-height: 1; }
.brand strong { font-family: var(--serif); font-size: 1.38rem; font-weight: 400; letter-spacing: .08em; }
.brand small { margin-top: 6px; color: var(--ink-soft); font-size: .57rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; gap: clamp(15px,1.7vw,25px); }
.primary-nav > a:not(.button) { position: relative; color: var(--aegean-950); font-size: .83rem; font-weight: 650; text-decoration: none; }
.primary-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -6px; left: 0; height: 2px; background: var(--terracotta); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .18s ease; }
.primary-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; color: var(--aegean-950); background: transparent; border: 1px solid var(--line); border-radius: 50%; }
.menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; margin: 5px auto; background: currentColor; border-radius: 4px; transition: transform .18s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 14px 22px; color: var(--white); background: var(--aegean-900); border: 1px solid transparent; border-radius: 3px; font-weight: 700; line-height: 1; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.button--small { min-height: 43px; padding: 11px 18px; font-size: .83rem; }
.button--terracotta { background: var(--terracotta); }
.button--terracotta:hover { background: var(--terracotta-dark); }
.button--cream { color: var(--aegean-950); background: var(--white); }
.button--cream:hover { background: var(--gold); }
.button--aegean { background: var(--aegean-900); }
.button--gold { color: var(--aegean-950); background: var(--gold); }
.button--gold:hover { background: #f2d27e; }

.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--aegean-900); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 6px; }
.text-link--light { color: var(--white); }
.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translateX(3px); }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--terracotta-dark); font-size: .7rem; font-weight: 800; letter-spacing: .18em; line-height: 1.3; text-transform: uppercase; }
.eyebrow::before { width: 24px; height: 1px; background: currentColor; content: ""; }
.eyebrow--light { color: #ded0ad; }

.hero { position: relative; min-height: 650px; height: 690px; display: flex; align-items: flex-end; padding: clamp(2rem,6vw,6rem); overflow: hidden; color: var(--white); background: var(--aegean-950); }
.hero__image, .hero__shade { position: absolute; inset: 0; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; transform: scale(1.01); }
.hero__shade { z-index: 1; background: linear-gradient(90deg,rgba(5,24,33,.88) 0%,rgba(5,24,33,.53) 48%,rgba(5,24,33,.06) 79%),linear-gradient(0deg,rgba(5,24,33,.57),transparent 56%); }
.hero__copy { position: relative; z-index: 2; max-width: 850px; }
.hero h1 { max-width: 850px; color: var(--white); font-size: clamp(3.5rem,6vw,6.25rem); }
.hero h1 span { color: var(--gold); }
.hero__copy > p:not(.eyebrow) { max-width: 650px; margin: 24px 0 30px; color: rgba(255,255,255,.86); font-size: clamp(1rem,1.5vw,1.2rem); line-height: 1.65; }
.hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero__celebrate-link { font-size: .79rem; opacity: .83; }
.hero__note { position: absolute; z-index: 2; right: clamp(2rem,6vw,6rem); bottom: clamp(2rem,5vw,4rem); display: flex; flex-direction: column; max-width: 250px; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.55); }
.hero__note span { color: rgba(255,255,255,.7); font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero__note strong { margin: 2px 0; color: var(--white); font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.hero__note small { color: rgba(255,255,255,.65); font-size: .69rem; line-height: 1.45; }

.trust-strip { display: grid; grid-template-columns: repeat(5,1fr); padding: 0 clamp(1rem,3.5vw,4rem); background: var(--limewash); border-bottom: 1px solid var(--line); }
.trust-strip span { min-height: 74px; display: grid; place-items: center; padding: 10px 18px; color: var(--aegean-900); border-right: 1px solid var(--line); font-size: .73rem; font-weight: 750; letter-spacing: .04em; text-align: center; text-transform: uppercase; }
.trust-strip span:first-child { border-left: 1px solid var(--line); }

.feast { position: relative; overflow: hidden; background: var(--paper); }
.feast::before { position: absolute; top: 40px; left: -70px; width: 270px; height: 270px; opacity: .12; border: 1px solid var(--aegean-700); border-radius: 50%; box-shadow: inset 0 0 0 30px var(--paper),inset 0 0 0 31px var(--aegean-700),inset 0 0 0 60px var(--paper),inset 0 0 0 61px var(--aegean-700); content: ""; }
.feast__grid { position: relative; display: grid; grid-template-columns: minmax(0,.92fr) minmax(440px,1.08fr); align-items: center; gap: clamp(60px,8vw,110px); }
.feast__intro { max-width: 640px; margin-top: 27px; color: var(--ink-soft); font-size: 1.08rem; }
.feast__courses { display: grid; margin-top: 36px; border-top: 1px solid var(--line); }
.feast__courses article { display: grid; grid-template-columns: 46px 1fr; gap: 17px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.feast__courses article > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: var(--terracotta); border-radius: 50%; font-size: .65rem; font-weight: 800; }
.feast__courses h3 { color: var(--aegean-950); font-size: 1.16rem; }
.feast__courses p { margin-top: 4px; color: var(--ink-soft); font-size: .83rem; line-height: 1.55; }
.feast__actions { display: flex; align-items: center; gap: 25px; margin-top: 30px; }
.feast__visual { position: relative; min-height: 610px; padding: 100px 0 85px 54px; }
.feast__number { position: absolute; top: 0; left: 0; color: var(--gold); font-family: var(--serif); font-size: clamp(10rem,18vw,15rem); line-height: .8; opacity: .95; }
.feast__visual figure { position: relative; z-index: 1; height: 430px; overflow: hidden; border: 8px solid var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.feast__visual figure img { width: 100%; height: 100%; object-fit: cover; }
.feast__prices { position: absolute; z-index: 2; right: -12px; bottom: 18px; display: grid; min-width: 260px; color: var(--white); background: var(--aegean-900); border-left: 5px solid var(--terracotta); box-shadow: var(--shadow-sm); }
.feast__prices div { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 16px 20px; border-top: 1px solid rgba(255,255,255,.13); }
.feast__prices div:first-child { border-top: 0; }
.feast__prices dt { color: rgba(255,255,255,.66); font-size: .67rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.feast__prices dd { font-family: var(--serif); font-size: 1.12rem; }

.menus { background: var(--limewash); }
.section-heading { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(300px,.52fr); align-items: end; gap: clamp(45px,8vw,110px); margin-bottom: 56px; }
.section-heading > p { padding-bottom: 6px; color: var(--ink-soft); font-size: 1.02rem; }
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.menu-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.menu-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.menu-card:hover { border-color: rgba(13,51,68,.28); }
.menu-card__media { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #e7ded0; }
.menu-card__media::after { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 64%,rgba(7,31,43,.2)); content: ""; pointer-events: none; }
.menu-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.menu-card:hover .menu-card__media img { transform: scale(1.035); }
.menu-card__number { position: absolute; z-index: 1; top: 16px; right: 16px; min-width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: rgba(7,31,43,.82); border: 1px solid rgba(255,255,255,.36); border-radius: 50%; font-family: var(--serif); font-size: .88rem; line-height: 1; backdrop-filter: blur(8px); }
.menu-card__body { flex: 1; display: flex; flex-direction: column; align-items: flex-start; padding: 24px 24px 26px; }
.menu-card small { color: var(--terracotta-dark); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.menu-card h3 { margin-top: 10px; color: var(--aegean-950); font-size: 1.85rem; }
.menu-card p { margin: 12px 0 22px; color: var(--ink-soft); font-size: .86rem; }
.menu-card b { margin-top: auto; color: var(--aegean-800); font-size: .75rem; text-decoration: underline; text-underline-offset: 5px; }
.menu-note { margin-top: 20px; color: var(--ink-soft); font-size: .7rem; text-align: center; }

.family { position: relative; overflow: hidden; color: var(--white); background: var(--aegean-950); }
.family::after { position: absolute; right: -170px; bottom: -250px; width: 560px; height: 560px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: inset 0 0 0 40px var(--aegean-950),inset 0 0 0 41px rgba(255,255,255,.06),inset 0 0 0 90px var(--aegean-950),inset 0 0 0 91px rgba(255,255,255,.05); content: ""; }
.family__grid { position: relative; z-index: 1; min-height: 760px; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: clamp(60px,8vw,110px); padding: 110px 0; }
.family__image { width: 100%; aspect-ratio: 1; overflow: hidden; border: 8px solid #e9dfc8; box-shadow: 18px 20px 0 var(--terracotta); }
.family__image img { width: 100%; height: 100%; object-fit: cover; }
.family__copy h2 { color: var(--white); }
.family__lead { margin-top: 30px; color: #f1e6ce; font-family: var(--serif); font-size: clamp(1.3rem,2.2vw,1.7rem); line-height: 1.48; }
.family__copy > p:not(.eyebrow):not(.family__lead) { margin-top: 20px; color: rgba(255,255,255,.68); }
.family__values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 33px; }
.family__values span { padding: 9px 13px; color: var(--aegean-950); background: var(--gold); border-radius: 999px; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.celebrations { background: var(--paper); }
.celebrations__layout { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); align-items: center; gap: clamp(54px,7vw,94px); }
.celebrations__image { width: 100%; aspect-ratio: 1; overflow: hidden; background: #e7ded0; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.celebrations__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.celebrations__content h2 { max-width: 650px; font-size: clamp(2.8rem,4.7vw,4.7rem); }
.celebrations__intro { max-width: 650px; margin-top: 23px; color: var(--ink-soft); font-size: 1rem; }
.occasion-list { display: grid; margin-top: 32px; border-top: 1px solid var(--line); }
.occasion-list article { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.occasion-list article > span { padding-top: 2px; color: var(--terracotta-dark); font-family: var(--serif); font-size: .88rem; }
.occasion-list small { color: var(--terracotta-dark); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.occasion-list h3 { margin-top: 3px; color: var(--aegean-950); font-size: 1.28rem; letter-spacing: -.02em; }
.occasion-list p { max-width: 600px; margin-top: 5px; color: var(--ink-soft); font-size: .8rem; line-height: 1.55; }
.celebrations__link { margin-top: 27px; }

.theatre-band { position: relative; display: grid; grid-template-columns: 110px 1fr auto; align-items: center; gap: 30px; margin-top: 70px; padding: 34px 36px; overflow: hidden; color: var(--white); background: var(--aegean-900); border-radius: var(--radius-sm); }
.theatre-band::after { position: absolute; right: 22%; bottom: -190px; width: 310px; height: 310px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; content: ""; }
.theatre-band__mark { width: 86px; height: 86px; display: grid; place-items: center; color: var(--aegean-950); background: var(--gold); border-radius: 50%; font-family: var(--serif); font-size: 3.2rem; box-shadow: 7px 7px 0 var(--terracotta); }
.theatre-band .eyebrow { margin-bottom: 7px; }
.theatre-band h3 { font-size: 2.15rem; }
.theatre-band p:not(.eyebrow) { max-width: 630px; margin-top: 8px; color: rgba(255,255,255,.68); font-size: .85rem; }
.theatre-band .button { position: relative; z-index: 1; }

.reviews { background: var(--limewash); }
.reviews__heading { display: grid; grid-template-columns: 1fr 280px; align-items: end; gap: 70px; margin-bottom: 55px; }
.rating { padding: 24px 27px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.rating > div { color: var(--terracotta); letter-spacing: .12em; }
.rating strong { display: inline-block; margin: 2px 8px 0 0; color: var(--aegean-950); font-family: var(--serif); font-size: 3.1rem; font-weight: 400; line-height: 1; }
.rating span { color: var(--aegean-800); font-size: .8rem; font-weight: 700; }
.rating small { display: block; margin-top: 5px; color: var(--ink-soft); font-size: .7rem; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card { min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; padding: 32px; color: var(--aegean-950); background: var(--terracotta); border: 1px solid var(--aegean-950); box-shadow: 7px 7px 0 var(--aegean-950); }
.review-card--blue { color: var(--white); background: var(--aegean-700); }
.review-card--olive { color: var(--white); background: var(--olive); }
.review-card blockquote { padding-top: 28px; font-family: var(--serif); font-size: clamp(1.45rem,2.2vw,2rem); line-height: 1.35; }
.review-card figcaption { display: grid; padding-top: 19px; border-top: 1px solid currentColor; }
.review-card figcaption strong { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.review-card figcaption span { opacity: .68; font-size: .69rem; }
.reviews__link { display: table; margin: 38px auto 0; color: var(--aegean-800); font-size: .8rem; font-weight: 800; text-underline-offset: 5px; }

.booking { padding: 115px 0; color: var(--white); background: var(--aegean-950); }
.booking__heading { margin-bottom: 48px; text-align: center; }
.booking__heading .eyebrow { justify-content: center; }
.booking__heading h2 { margin-inline: auto; color: var(--white); }
.booking-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.booking-card { min-height: 330px; display: flex; flex-direction: column; align-items: flex-start; padding: 30px; color: var(--white); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.18); text-decoration: none; transition: transform .2s ease, background .2s ease; }
.booking-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.09); }
.booking-card--gold { color: var(--aegean-950); background: var(--gold); border-color: var(--gold); }
.booking-card--gold:hover { background: #efd17f; }
.booking-card > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--aegean-950); background: var(--white); border-radius: 50%; font-size: .69rem; font-weight: 800; }
.booking-card--gold > span { color: var(--white); background: var(--terracotta); }
.booking-card small { margin-top: 28px; opacity: .66; font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.booking-card h3 { margin-top: 7px; font-size: 1.9rem; }
.booking-card p { margin: 14px 0 25px; opacity: .72; font-size: .85rem; }
.booking-card b { margin-top: auto; font-size: .78rem; text-decoration: underline; text-underline-offset: 5px; }
.booking__note { max-width: 900px; margin: 24px auto 0; color: rgba(255,255,255,.53); font-size: .71rem; text-align: center; }

.visit { padding: 115px 0; background: var(--paper); }
.visit__grid { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: clamp(60px,8vw,105px); }
.visit__map { position: relative; min-height: 530px; overflow: hidden; background: #ded7c6; border: 1px solid var(--line); }
.visit__map::before { position: absolute; inset: 0; opacity: .7; background-image: linear-gradient(30deg,transparent 47%,rgba(13,51,68,.2) 48%,rgba(13,51,68,.2) 50%,transparent 51%),linear-gradient(-30deg,transparent 47%,rgba(13,51,68,.12) 48%,rgba(13,51,68,.12) 50%,transparent 51%); background-size: 110px 80px; content: ""; }
.visit__map::after { position: absolute; inset: 22px; border: 1px solid rgba(13,51,68,.16); content: ""; }
.visit__pin { position: absolute; z-index: 3; top: 44%; left: 51%; display: grid; min-width: 150px; padding: 13px 18px 14px; color: var(--white); background: var(--aegean-900); box-shadow: 6px 7px 0 var(--terracotta); transform: translate(-50%,-50%); }
.visit__pin span { position: absolute; top: -21px; left: 50%; color: var(--terracotta); font-size: 2rem; transform: translateX(-50%); }
.visit__pin strong { font-family: var(--serif); font-weight: 400; letter-spacing: .08em; text-align: center; }
.visit__pin small { color: rgba(255,255,255,.68); font-size: .65rem; text-align: center; }
.visit__landmark { position: absolute; z-index: 2; padding: 7px 10px; color: var(--aegean-900); background: rgba(255,250,240,.84); border: 1px solid rgba(13,51,68,.15); font-size: .64rem; font-weight: 750; }
.visit__landmark--one { top: 22%; right: 8%; }
.visit__landmark--two { bottom: 18%; left: 8%; }
.visit__route { position: absolute; z-index: 1; top: 28%; right: 21%; width: 44%; height: 42%; border-right: 3px dashed var(--terracotta); border-bottom: 3px dashed var(--terracotta); transform: rotate(12deg); }
.visit__copy h2 { max-width: 620px; }
.visit__copy address { margin-top: 28px; color: var(--aegean-800); font-family: var(--serif); font-size: 1.28rem; line-height: 1.45; }
.visit__copy dl { display: grid; margin-top: 30px; border-top: 1px solid var(--line); }
.visit__copy dl div { display: grid; grid-template-columns: 1fr 1.15fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.visit__copy dt { color: var(--ink-soft); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.visit__copy dd { color: var(--aegean-950); font-weight: 650; }
.visit__actions { display: flex; align-items: center; gap: 24px; margin-top: 30px; }

.site-footer { color: var(--white); background: #041720; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 43px 0 36px; }
.brand--footer { color: var(--white); }
.brand--footer small { color: rgba(255,255,255,.55); }
.footer__links { display: flex; gap: 27px; }
.footer__links a { color: rgba(255,255,255,.72); font-size: .79rem; font-weight: 650; text-underline-offset: 4px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 25px; padding: 20px 0 23px; color: rgba(255,255,255,.42); border-top: 1px solid rgba(255,255,255,.1); font-size: .68rem; }
.mobile-dock { display: none; }

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .72s ease,transform .72s cubic-bezier(.2,.7,.2,1); }
.js .reveal--delay { transition-delay: .11s; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .primary-nav { gap: 14px; }
  .primary-nav > a:not(.button) { font-size: .76rem; }
  .feast__grid { grid-template-columns: .9fr 1.1fr; gap: 52px; }
  .feast__visual { padding-left: 30px; }
  .theatre-band { grid-template-columns: 90px 1fr; }
  .theatre-band .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 940px) {
  :root { --shell: min(100% - 36px, 740px); }
  .section { padding: 90px 0; }
  .header__inner { min-height: 72px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: calc(100% + 8px); right: 18px; left: 18px; display: grid; gap: 0; padding: 22px; visibility: hidden; opacity: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); transform: translateY(-10px); transition: opacity .18s ease,transform .18s ease,visibility .18s; }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .primary-nav > a:not(.button) { padding: 14px 5px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.2rem; }
  .primary-nav .button { margin-top: 15px; }

  .hero { min-height: 720px; height: auto; flex-direction: column; align-items: stretch; justify-content: flex-end; padding: clamp(5rem,12vh,7rem) 1.3rem 2rem; }
  .hero__image img { object-position: 58% center; }
  .hero__shade { background: linear-gradient(0deg,rgba(5,24,33,.92) 0%,rgba(5,24,33,.57) 49%,rgba(5,24,33,.12) 87%),linear-gradient(90deg,rgba(5,24,33,.3),transparent 70%); }
  .hero h1 { font-size: clamp(3.4rem,12vw,5.3rem); }
  .hero__copy { width: min(100%,760px); }
  .hero__note { position: relative; inset: auto; width: min(100%,760px); max-width: none; margin-top: 32px; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.42); border-left: 0; }
  .hero__note small { max-width: 360px; }
  .trust-strip { grid-template-columns: repeat(2,1fr); padding: 0; }
  .trust-strip span { min-height: 62px; border-bottom: 1px solid var(--line); }
  .trust-strip span:nth-child(odd) { border-left: 0; }
  .trust-strip span:last-child { grid-column: 1/-1; }

  .feast__grid { grid-template-columns: 1fr; }
  .feast__copy { max-width: 680px; }
  .feast__visual { width: min(100%,680px); min-height: 560px; margin-inline: auto; }
  .section-heading,.reviews__heading { grid-template-columns: 1fr; gap: 26px; }
  .section-heading > p { max-width: 620px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .family__grid { min-height: 0; grid-template-columns: 1fr; padding: 90px 0 105px; }
  .family__image { width: min(100%,650px); }
  .family__copy { max-width: 680px; }
  .celebrations__layout { grid-template-columns: minmax(280px,.8fr) minmax(0,1.2fr); gap: 38px; }
  .celebrations__content h2 { font-size: clamp(2.7rem,6vw,4rem); }
  .celebrations__intro { margin-top: 18px; }
  .occasion-list { margin-top: 24px; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .review-card:last-child { grid-column: 1/-1; min-height: 250px; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .booking-card:last-child { grid-column: 1/-1; min-height: 250px; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 460px; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  html { scroll-padding-top: 85px; }
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .demo-disclaimer { padding: 7px 10px; font-size: .6rem; }
  .notice__inner { min-height: 31px; }
  .notice__inner span:last-child { display: none; }
  .header__inner { min-height: 66px; }
  .brand strong { font-size: 1.18rem; }
  .brand small { display: none; }
  .brand__mark { width: 36px; height: 36px; }

  .section { padding: 76px 0; }
  .hero { min-height: 0; padding: clamp(5rem,16vh,7.5rem) 1rem 1.5rem; }
  .hero__image img { object-position: 60% center; }
  .hero__shade { background: linear-gradient(0deg,rgba(5,24,33,.95) 0%,rgba(5,24,33,.7) 57%,rgba(5,24,33,.3) 100%); }
  .hero .eyebrow { margin-bottom: 13px; font-size: .59rem; letter-spacing: .14em; }
  .hero h1 { max-width: 570px; font-size: clamp(2.8rem,12.5vw,3.65rem); line-height: .98; }
  .hero__copy > p:not(.eyebrow) { max-width: 540px; margin: 17px 0 22px; font-size: .9rem; line-height: 1.55; }
  .hero__actions { align-items: center; flex-direction: row; gap: 15px 18px; }
  .hero__actions .button { min-height: 48px; padding: 13px 18px; }
  .hero__actions .text-link { font-size: .9rem; }
  .hero__celebrate-link { display: none; }
  .hero__note { width: 100%; margin-top: 27px; padding-top: 15px; }
  .hero__note span { font-size: .58rem; }
  .hero__note strong { margin: 3px 0; font-size: 1.38rem; }
  .hero__note small { max-width: 310px; font-size: .66rem; }
  .trust-strip span { padding: 10px 7px; font-size: .61rem; }

  h2 { font-size: clamp(2.7rem,13vw,4rem); }
  .feast__courses article { grid-template-columns: 40px 1fr; }
  .feast__visual { min-height: 450px; padding: 75px 0 78px 14px; }
  .feast__number { font-size: 9rem; }
  .feast__visual figure { height: 310px; border-width: 5px; }
  .feast__prices { right: 0; min-width: 235px; }
  .feast__actions { align-items: stretch; flex-direction: column; }
  .feast__actions .text-link { justify-content: center; }

  .menu-grid,.review-grid,.booking-grid { grid-template-columns: 1fr; }
  .menu-grid { gap: 18px; }
  .menu-card__body { padding: 22px 22px 24px; }
  .celebrations__layout { grid-template-columns: 1fr; gap: 40px; }
  .celebrations__image { width: min(100%,560px); }
  .occasion-list article { grid-template-columns: 34px 1fr; }
  .review-card:last-child,.booking-card:last-child { grid-column: auto; display: block; min-height: unset; }
  .family__image { border-width: 5px; box-shadow: 10px 12px 0 var(--terracotta); }
  .family__lead { font-size: 1.22rem; }

  .theatre-band { grid-template-columns: 1fr; padding: 28px; }
  .theatre-band__mark { width: 70px; height: 70px; font-size: 2.6rem; }
  .theatre-band .button { grid-column: auto; width: 100%; }
  .review-card { min-height: 280px; }
  .booking-card { min-height: 290px; }
  .booking { padding: 80px 0; }
  .visit { padding: 80px 0; }
  .visit__map { min-height: 370px; }
  .visit__copy dl div { grid-template-columns: 1fr; gap: 3px; }
  .visit__actions { align-items: stretch; flex-direction: column; }
  .visit__actions .text-link { justify-content: center; }

  .footer__top { align-items: flex-start; flex-direction: column; }
  .footer__links { display: grid; grid-template-columns: 1fr 1fr; width: 100%; gap: 12px; }
  .footer__bottom { flex-direction: column; gap: 7px; padding-bottom: 27px; }
  .mobile-dock { position: fixed; z-index: 55; right: 0; bottom: 0; left: 0; min-height: calc(62px + env(safe-area-inset-bottom)); display: grid; grid-template-columns: .9fr 1.1fr; padding-bottom: env(safe-area-inset-bottom); color: var(--white); background: var(--aegean-950); box-shadow: 0 -8px 25px rgba(7,31,43,.18); }
  .mobile-dock a { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .77rem; font-weight: 800; text-decoration: none; }
  .mobile-dock a + a { color: var(--aegean-950); background: var(--gold); }
}

@media (max-width: 390px) {
  .hero { padding-right: .9rem; padding-left: .9rem; }
  .hero h1 { font-size: clamp(2.6rem,12.8vw,3.15rem); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 13px; }
  .hero__actions .button { width: 100%; }
  .hero__note { margin-top: 23px; }
  .trust-strip span { min-height: 58px; font-size: .56rem; }
  .feast__visual { min-height: 420px; padding-left: 0; }
  .feast__prices { min-width: 220px; }
  .theatre-band { padding: 24px 22px; }
}

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