@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/font-0.ttf) format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(assets/font-1.ttf) format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(assets/font-2.ttf) format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(assets/font-3.ttf) format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(assets/font-4.ttf) format("truetype");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(assets/font-5.ttf) format("truetype");
}

:root {
  color-scheme: dark;
  --background: #080808;
  --surface: #131313;
  --foreground: #fff;
  --muted: #bcbcbc;
  --line: #383838;
  --font-body: "Manrope", Arial, sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;
  --content: 1180px;
  --gutter: clamp(22px, 4.5vw, 72px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.16;
}
h2 {
  font-size: clamp(32px, 3.5vw, 48px);
}
h3 {
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
p {
  color: var(--muted);
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 6px;
}
a:hover {
  color: #ddd;
}
.container {
  width: min(var(--content), calc(100% - var(--gutter)*2));
  margin-inline: auto;
}
.section {
  padding-block: clamp(64px, 8vw, 110px);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  color: #d2d2d2;
  margin-bottom: 18px;
}
.skip-link {
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 10;
  padding: 12px;
  background: #fff;
  color: #000;
  transform: translateY(-110%);
}
.skip-link:focus {
  transform: translateY(0);
}
.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
}
.nav {
  display: grid;
  grid-template-columns: 1fr 156px 1fr;
  align-items: center;
  gap: 38px;
  min-height: 152px;
}
.nav-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.nav-group a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding-block: 12px;
}
.nav-group a:hover {
  text-decoration: underline;
  text-underline-offset: 7px;
}
.nav-primary {
  border-bottom: 1px solid #aaa;
}
.brand img {
  object-fit: contain;
  width: 156px;
  height: 100px;
}
.hero {
  position: relative;
  min-height: 680px;
  height: min(780px, 88svh);
  display: grid;
  place-items: center;
  text-align: center;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.22),
    rgba(0, 0, 0, 0.12) 40%,
    rgba(0, 0, 0, 0.38)
  );
  z-index: -1;
}
.hero-content {
  padding-top: 120px;
  padding-bottom: 100px;
}
.hero h1 {
  font-size: clamp(42px, 5.3vw, 72px);
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero-description {
  color: #f0f0f0;
  margin: 24px 0 32px;
  font-size: 16px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid #ababab;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.035em;
  color: #fff;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.button:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.button-light {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.button-light:hover {
  background: #ddd;
  border-color: #ddd;
  color: #111;
}
.button span,
.text-link span {
  font-size: 18px;
  font-family: Arial, sans-serif;
}
.hero-scroll {
  position: absolute;
  bottom: 27px;
  font-size: 12px;
  letter-spacing: 0.09em;
  color: #eee;
}
.hero-scroll span {
  margin-left: 16px;
}
.mobile-break {
  display: none;
}
.info-bar {
  background: #141414;
  border-bottom: 1px solid #303030;
}
.info-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 21px;
  font-size: 13px;
  color: #c9c9c9;
}
.info-inner strong {
  color: #fff;
  margin-left: 10px;
  font-weight: 600;
}
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.offer {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.offer > img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -2;
}
.offer:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.53);
  z-index: -1;
}
.offer-content {
  padding: 42px 20px;
}
.offer .eyebrow {
  margin-bottom: 12px;
  color: #eee;
}
.offer h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 30px;
}
.offer .button {
  background: #0005;
  border-color: #ddd;
}
.offer .button:hover {
  background: #fff;
}
.about {
  text-align: center;
  max-width: 820px;
}
.brand-mark {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 30px;
}
.rule {
  height: 1px;
  width: 48px;
  background: #747474;
  margin: 30px auto;
}
.about .lead {
  font-size: 20px;
  line-height: 1.7;
  color: #e3e3e3;
  margin-bottom: 20px;
}
.about > p:not(.eyebrow) {
  max-width: 690px;
  margin-inline: auto;
}
.text-links {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 32px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #6a6a6a;
  padding: 8px 0;
  font-size: 14px;
}
.text-link:hover {
  border-color: #fff;
  color: #fff;
}
.services {
  background:
    linear-gradient(#080808cc, #080808dc),
    url("assets/catering.jpg") center/cover;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-block: 76px;
  gap: 8%;
}
.services article + article {
  border-left: 1px solid #5b5b5b;
  padding-left: 14%;
}
.services h2 {
  font-size: 38px;
}
.services p:not(.eyebrow) {
  margin: 24px 0 28px;
  max-width: 460px;
  color: #d0d0d0;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 38px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.17;
  filter: saturate(0.8);
}
.contact {
  background: #151515;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
}
.contact h2 {
  font-size: 44px;
}
.contact h3 {
  margin: 0 0 14px;
}
.contact address {
  font-style: normal;
  color: #c8c8c8;
  margin-bottom: 16px;
}
.opening {
  font-size: 26px;
  color: white;
  line-height: 1.3;
  margin-bottom: 25px;
  font-variant-numeric: tabular-nums;
}
.phone {
  display: block;
  font-size: 19px;
  margin-bottom: 14px;
  white-space: nowrap;
}
.footer {
  background: #0a0a0a;
  padding: 40px 0 20px;
}
.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.footer-top img {
  object-fit: contain;
  width: 290px;
  height: auto;
}
.social-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
}
.footer-bottom {
  border-top: 1px solid #292929;
  margin-top: 34px;
  padding-top: 18px;
  color: #aaa;
  font-size: 12px;
  letter-spacing: 0.04em;
}
@media (min-width: 1500px) {
  .hero {
    height: 780px;
  }
  .offer {
    min-height: 370px;
  }
}
@media (max-width: 1100px) {
  .nav {
    gap: 22px;
    grid-template-columns: 1fr 120px 1fr;
  }
  .nav-group {
    gap: 12px;
  }
  .nav-group a {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .brand img {
    width: 120px;
  }
  .contact-grid {
    gap: 30px;
  }
  .contact h2 {
    font-size: 36px;
  }
}
@media (max-width: 760px) {
  .header {
    position: relative;
    background: #111;
  }
  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 18px 0 14px;
    min-height: 0;
    width: calc(100% - 30px);
  }
  .brand {
    order: -1;
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }
  .brand img {
    height: 76px;
    width: 126px;
  }
  .nav-group {
    display: contents;
  }
  .nav-group a {
    font-size: 11px;
    letter-spacing: 0.06em;
    white-space: normal;
    text-align: center;
    padding: 9px 10px;
    min-height: 40px;
  }
  .nav-primary {
    border-bottom: 0;
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  .hero {
    min-height: 480px;
    height: auto;
  }
  .hero-content {
    padding-top: 65px;
    padding-bottom: 95px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  .hero-description {
    font-size: 15px;
  }
  .mobile-break {
    display: block;
  }
  .info-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 5px 20px;
    font-size: 12px;
    padding-block: 17px;
  }
  .info-inner > a:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .offers {
    grid-template-columns: 1fr;
  }
  .offer {
    min-height: 260px;
  }
  .offer h2 {
    font-size: 36px;
    margin-bottom: 22px;
  }
  .offer-content {
    padding: 35px 20px;
  }
  .offer > img {
    object-position: center;
  }
  .about .lead {
    font-size: 18px;
  }
  .text-links {
    gap: 24px;
    flex-wrap: wrap;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 56px;
  }
  .services article + article {
    padding: 40px 0 0;
    border-left: 0;
    border-top: 1px solid #555;
  }
  .services h2 {
    font-size: 34px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 26px;
  }
  .gallery {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }
  .gallery img:first-child {
    grid-column: 1/-1;
    aspect-ratio: 1.6;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }
  .contact-grid > div:first-child {
    grid-column: 1/-1;
  }
  .contact h2 {
    font-size: 40px;
  }
  .contact h3 {
    font-size: 13px;
  }
  .contact address {
    font-size: 14px;
  }
  .phone {
    font-size: 16px;
  }
  .footer-top {
    flex-direction: column;
    align-items: start;
  }
  .footer-top img {
    width: 255px;
  }
  .footer-bottom {
    font-size: 11px;
  }
  .button {
    font-size: 13px;
  }
}
@media (max-width: 380px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 38px;
  }
  .text-links {
    gap: 12px;
  }
  .nav-group a {
    font-size: 10px;
    padding-inline: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
@media print {
  .header,
  .hero-scroll,
  .button,
  .social-links {
    display: none;
  }
  body {
    background: #fff;
    color: #000;
  }
  p,
  .eyebrow {
    color: #333;
  }
  .hero {
    min-height: 300px;
  }
  .section {
    padding-block: 30px;
  }
  .info-bar,
  .contact {
    background: #eee;
  }
  .contact a,
  .opening {
    color: #111;
  }
}

/* Shared navigation and controls: readable on all pages. */
.nav-group a {
  font-size: 14px;
  letter-spacing: 0.035em;
}
.nav-group a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 7px;
}
.nav-group {
  gap: 16px;
}
.button {
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  line-height: 1.6;
  border-radius: 0;
}
.button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.footer-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid #292929;
  font-size: 14px;
  color: #c6c6c6;
}

/* Interior pages use the same logo, photographs and restrained palette. */
.page-hero {
  position: relative;
  min-height: 435px;
  display: grid;
  align-items: end;
  text-align: center;
  isolation: isolate;
}
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#0007, #0008);
  z-index: -1;
}
.page-hero-content {
  padding-top: 185px;
  padding-bottom: 70px;
}
.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.025em;
}
.page-hero .eyebrow {
  margin-bottom: 15px;
  color: #eee;
}
.breadcrumbs {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 14px;
  color: #aaa;
}
.breadcrumbs a {
  color: #ddd;
}
.breadcrumbs + .section {
  padding-top: 65px;
}
.local-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 36px;
  padding-bottom: 20px;
  font-size: 14px;
}
.local-nav a {
  padding: 9px 0;
  border-bottom: 1px solid #555;
}
.local-nav a:hover,
.local-nav a[aria-current] {
  border-color: #fff;
}
.intro-copy {
  max-width: 780px;
  text-align: center;
  margin-inline: auto;
}
.intro-copy h2 {
  margin-bottom: 26px;
}
.intro-copy .lead {
  font-size: 20px;
  line-height: 1.75;
  color: #d1d1d1;
}
.intro-copy .button {
  margin-top: 30px;
}
.intro-copy.compact {
  padding-bottom: 60px;
}
.center-cta {
  text-align: center;
}
.center-cta .button {
  margin-top: 30px;
}

/* Menu component: name + optional description + allergens + right-aligned price. */
.menu-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}
.menu-side {
  position: sticky;
  top: 35px;
}
.menu-side h2 {
  font-size: 36px;
  margin-bottom: 22px;
}
.menu-side > p:not(.eyebrow) {
  font-size: 16px;
}
.section-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  margin: 26px 0;
  gap: 0;
}
.section-nav a {
  font-size: 14px;
  padding: 11px 0;
  border-bottom: 1px solid #292929;
}
.section-nav a:hover {
  padding-left: 5px;
  color: #fff;
}
.snapshot-note {
  background: #161616;
  border-left: 2px solid #707070;
  padding: 15px 20px;
  margin-bottom: 42px;
  font-size: 14px;
  line-height: 1.7;
  color: #c5c5c5;
}
.menu-section {
  scroll-margin-top: 32px;
  margin-bottom: 58px;
}
.menu-section-heading {
  display: flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #707070;
  padding-bottom: 20px;
  margin-bottom: 6px;
}
.menu-section-heading h2 {
  font-size: 30px;
}
.menu-section-heading h3 {
  font-family: var(--font-heading);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
}
.section-number {
  font-size: 13px;
  letter-spacing: 0.07em;
  color: #a1a1a1;
}
.menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid #2b2b2b;
}
.menu-description {
  min-width: 0;
}
.menu-description h3,
.menu-description h4 {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 500;
  margin: 0;
  color: #eee;
}
.menu-description p {
  font-size: 14px;
  line-height: 1.65;
  margin-top: 6px;
}
.menu-description .allergens-line {
  font-size: 13px;
  color: #aaa;
  overflow-wrap: anywhere;
}
.menu-price {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: #fff;
  text-align: right;
}
.menu-intro {
  margin-bottom: 40px;
  scroll-margin-top: 30px;
}
.menu-intro h2 {
  font-size: 42px;
}
.menu-banner {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 36px;
}
.breakfast-section {
  padding-top: 20px;
}
.breakfast-note {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.allergen-guide {
  border-top: 1px solid #555;
  border-bottom: 1px solid #555;
  font-size: 14px;
}
.allergen-guide summary {
  cursor: pointer;
  padding: 21px 0;
  color: #eee;
}
.details-content {
  padding-bottom: 24px;
  color: #bcbcbc;
}
.allergen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 26px 0;
}
.allergen-grid dt {
  font-weight: 600;
  color: #ddd;
  margin-bottom: 8px;
}
.allergen-grid dd {
  margin: 0;
  line-height: 1.8;
}

/* Story and team pages. */
.story-chapters {
  padding-bottom: 0;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  margin-bottom: 40px;
  background: #111;
}
.split-section > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.split-copy {
  padding: clamp(30px, 4vw, 60px);
  align-self: center;
}
.split-copy h2 {
  margin-bottom: 25px;
  font-size: 40px;
}
.split-copy h3 {
  font-size: 15px;
  letter-spacing: 0.035em;
  margin: 26px 0 10px;
}
.split-copy p + p {
  margin-top: 18px;
}
.split-copy .text-link {
  margin-top: 20px;
}
.split-section.reverse > img {
  grid-column: 2;
  grid-row: 1;
}
.split-section.reverse > .split-copy {
  grid-column: 1;
  grid-row: 1;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 980px;
  margin-inline: auto;
}
.portrait {
  height: 380px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #333;
  background: #101010;
}
.portrait img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.team-copy {
  padding-top: 32px;
}
.team-copy h3 {
  font-size: 34px;
  margin-bottom: 20px;
}
.team-copy .eyebrow {
  margin-bottom: 10px;
}
.personal-note {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #ddd;
}
.panorama {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* Complete gallery: native file links work without JavaScript. */
.photo-grid {
  columns: 3;
  column-gap: 20px;
}
.photo-link {
  display: block;
  position: relative;
  break-inside: avoid;
  margin-bottom: 20px;
  overflow: hidden;
  background: #171717;
}
.photo-link img {
  width: 100%;
  height: auto;
}
.photo-link span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: #000a;
  color: #fff;
  font-size: 20px;
}
.photo-link:hover img {
  opacity: 0.85;
}

/* Rental, catering and contact. */
.rental-options,
.catering-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.rental-options {
  padding-top: 25px;
  margin-bottom: 65px;
}
.rental-options article,
.catering-steps article {
  border-top: 1px solid #666;
  padding-top: 25px;
}
.rental-options h3 {
  font-family: var(--font-heading);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  margin: 15px 0;
}
.catering-steps h2 {
  font-size: 30px;
  margin: 15px 0;
}
.rental-detail {
  margin-bottom: 0;
}
.feature-list {
  padding-left: 20px;
  margin: 0 0 24px;
  color: #d1d1d1;
}
.feature-list li {
  padding-left: 6px;
  margin-bottom: 12px;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.contact-page-grid h2 {
  margin-bottom: 25px;
}
.contact-page-grid .lead {
  font-size: 20px;
  max-width: 470px;
}
.contact-details section {
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #333;
}
.contact-details section:last-child {
  margin-bottom: 0;
}
.contact-details h3 {
  margin-bottom: 15px;
  font-size: 14px;
}
.contact-details address {
  font-style: normal;
  color: #ccc;
  margin-bottom: 10px;
}
.contact-details .opening {
  margin-bottom: 12px;
}
.email-link {
  display: inline-block;
  font-size: 16px;
  overflow-wrap: anywhere;
}
.form-section {
  background: #141414;
}
.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
}
.form-layout h2 {
  margin-bottom: 25px;
}
.form-layout > div > p:not(.eyebrow) {
  margin-bottom: 25px;
}
.form-layout .phone {
  margin-top: 30px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-field {
  min-width: 0;
}
.form-field.full {
  grid-column: 1/-1;
}
.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #e2e2e2;
}
.form-field label span {
  color: #aaa;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-width: 0;
  border: 1px solid #686868;
  background: #111;
  color: #fff;
  border-radius: 0;
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  min-height: 50px;
  box-shadow: none;
}
.form-field input,
.form-field select {
  box-sizing: border-box;
  height: 54px;
  min-height: 54px;
  line-height: 24px;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  background-image: url("assets/select-chevron.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}
.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover {
  border-color: #aaa;
}
.form-field textarea {
  resize: vertical;
  line-height: 1.65;
  min-height: 160px;
}
.form-note {
  font-size: 14px;
  line-height: 1.7;
  color: #bcbcbc;
  margin: 24px 0;
}

@media (max-width: 1050px) {
  .nav {
    gap: 20px;
    grid-template-columns: 1fr 120px 1fr;
  }
  .nav-group {
    gap: 12px;
  }
  .nav-group a {
    font-size: 14px;
    letter-spacing: 0;
  }
  .menu-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 45px;
  }
  .form-layout,
  .contact-page-grid {
    gap: 45px;
  }
  .split-copy h2 {
    font-size: 34px;
  }
}
@media (max-width: 900px) {
  .header {
    position: relative;
    background: #111;
  }
  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    padding: 18px 0 14px;
    min-height: 0;
    width: calc(100% - 30px);
  }
  .brand {
    order: -1;
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }
  .brand img {
    height: 76px;
    width: 126px;
  }
  .nav-group {
    display: contents;
  }
  .nav-group a {
    font-size: 14px;
    letter-spacing: 0;
    white-space: normal;
    text-align: center;
    padding: 10px 12px;
    min-height: 44px;
  }
  .nav-primary {
    border-bottom: 0;
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  .info-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    gap: 5px 20px;
  }
  .info-inner > a:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .page-hero {
    min-height: 285px;
  }
  .page-hero-content {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .page-hero h1 {
    font-size: 44px;
  }
  .menu-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .menu-side {
    position: static;
  }
  .menu-side h2 {
    font-size: 32px;
  }
  .menu-side h2 br {
    display: none;
  }
  .section-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 22px;
    margin-bottom: 10px;
  }
  .section-nav a {
    padding: 12px 0;
  }
  .menu-side > .text-link {
    margin-top: 10px;
  }
  .photo-grid {
    columns: 2;
  }
  .split-copy {
    padding: 30px;
  }
  .split-copy h2 {
    font-size: 32px;
  }
  .team-grid {
    gap: 30px;
  }
  .team-copy h3 {
    font-size: 30px;
  }
  .rental-options,
  .catering-steps {
    gap: 25px;
  }
  .form-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-page-grid {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .page-hero h1 {
    font-size: 38px;
  }
  .page-hero {
    min-height: 250px;
  }
  .page-hero .eyebrow {
    font-size: 12px;
  }
  .local-nav {
    gap: 12px 24px;
    justify-content: flex-start;
    padding-top: 24px;
  }
  .breadcrumbs {
    font-size: 13px;
    padding-top: 20px;
  }
  .breadcrumbs + .section {
    padding-top: 45px;
  }
  .menu-item {
    gap: 15px;
    padding-block: 18px;
  }
  .menu-section-heading h2 {
    font-size: 28px;
  }
  .menu-price {
    font-size: 15px;
  }
  .menu-description h3,
  .menu-description h4 {
    font-size: 16px;
  }
  .menu-section {
    margin-bottom: 40px;
  }
  .allergen-grid {
    grid-template-columns: 1fr;
  }
  .menu-banner {
    height: 190px;
  }
  .intro-copy .lead,
  .contact-page-grid .lead {
    font-size: 18px;
  }
  .intro-copy.compact {
    padding-bottom: 40px;
  }
  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }
  .split-section > img,
  .split-section.reverse > img {
    grid-column: 1;
    grid-row: auto;
    min-height: 0;
    height: 270px;
  }
  .split-section.reverse > .split-copy {
    grid-column: 1;
    grid-row: auto;
  }
  .split-copy {
    padding: 30px 24px;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .portrait {
    height: 340px;
  }
  .team-copy {
    padding-top: 25px;
  }
  .panorama {
    height: 240px;
  }
  .photo-grid {
    column-gap: 12px;
  }
  .photo-link {
    margin-bottom: 12px;
  }
  .photo-link span {
    width: 28px;
    height: 28px;
    right: 7px;
    bottom: 7px;
    font-size: 16px;
  }
  .rental-options,
  .catering-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .rental-options {
    margin-bottom: 45px;
    padding-top: 0;
  }
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-field.full {
    grid-column: 1;
  }
  .form-layout h2 {
    font-size: 36px;
  }
  .contact-form .button {
    width: 100%;
  }
}
@media print {
  .page-hero {
    min-height: 150px;
  }
  .page-hero-content {
    padding-block: 30px;
  }
  .page-hero img,
  .page-hero:after,
  .breadcrumbs,
  .local-nav,
  .menu-side,
  .footer,
  .form-section {
    display: none;
  }
  .page-hero h1,
  .page-hero .eyebrow,
  .menu-description h3,
  .menu-description h4,
  .menu-price,
  .menu-section-heading,
  .menu-section h2 {
    color: #111;
  }
  .menu-layout {
    display: block;
    padding-top: 20px;
  }
  .snapshot-note {
    background: #eee;
    color: #333;
  }
  .menu-section {
    break-inside: avoid;
  }
  .menu-description p,
  .menu-description .allergens-line {
    color: #444;
  }
  .team-grid,
  .split-section,
  .contact-page-grid {
    display: block;
  }
}

/* Template overview and ancillary pages. */
.reading-width {
  max-width: 820px;
}
.reading-width h2 {
  margin-bottom: 24px;
}
.reading-width .lead {
  font-size: 19px;
  margin-bottom: 32px;
}
.reading-width .button {
  margin-top: 32px;
}
.archive-rules {
  padding-left: 24px;
}
.archive-rules li {
  padding-left: 6px;
  margin-bottom: 16px;
}
.template-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.template-tile {
  display: block;
  border: 1px solid #444;
  padding: 28px;
  background: #121212;
}
.template-tile:hover {
  border-color: #999;
  background: #1c1c1c;
}
.template-tile h3 {
  font-size: 19px;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: 15px;
}
.template-tile h3 span {
  float: right;
}
.template-tile p {
  font-size: 14px;
  min-height: 55px;
  margin-bottom: 22px;
}
.template-tile code {
  font-size: 13px;
  color: #bbb;
  overflow-wrap: anywhere;
}
.utility-index h2 {
  margin-bottom: 25px;
}
.utility-index > p {
  max-width: 800px;
  margin-bottom: 30px;
}
.route-table-wrap {
  overflow: auto;
}
.route-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.route-table caption {
  text-align: left;
  margin-bottom: 20px;
  color: #aaa;
}
.route-table th,
.route-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #3c3c3c;
  text-align: left;
}
.route-table th {
  font-weight: 600;
  background: #1b1b1b;
}
.route-table a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 900px) {
  .template-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .template-index {
    grid-template-columns: 1fr;
  }
  .template-tile p {
    min-height: 0;
  }
  .route-table th,
  .route-table td {
    padding: 12px 10px;
    overflow-wrap: anywhere;
  }
  .route-table {
    table-layout: fixed;
  }
}

/* Three original hero photographs: 8 seconds per image, 2-second crossfade. */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #080808;
}
.hero-slides .hero-photo {
  z-index: auto;
  opacity: 0;
  animation: hero-crossfade 24s linear infinite;
  transform-origin: center;
  will-change: transform, opacity;
}
.hero-slides .hero-photo-2 {
  animation-delay: -16s;
}
.hero-slides .hero-photo-3 {
  animation-delay: -8s;
}
@keyframes hero-crossfade {
  0% {
    opacity: 1;
    transform: scale(1.015);
  }
  25% {
    opacity: 1;
    transform: scale(1.055);
  }
  33.333333% {
    opacity: 0;
    transform: scale(1.07);
  }
  91.666667% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.015);
  }
}
.hero-pause-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.hero-animation-control {
  position: absolute;
  right: var(--gutter);
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid #ffffff60;
  background: #0006;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}
.hero-animation-control:hover {
  background: #0009;
}
.hero-pause-toggle:focus-visible ~ .hero-animation-control {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.hero-pause-toggle:checked ~ .hero-slides .hero-photo {
  animation-play-state: paused;
}
.resume-label {
  display: none;
}
.hero-pause-toggle:checked ~ .hero-animation-control .pause-label {
  display: none;
}
.hero-pause-toggle:checked ~ .hero-animation-control .resume-label {
  display: inline;
}
@media (max-width: 760px) {
  .hero-content {
    padding-bottom: 145px;
  }
  .hero-scroll {
    bottom: 78px;
  }
  .hero-animation-control {
    bottom: 18px;
    right: 50%;
    transform: translateX(50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slides .hero-photo {
    animation: none;
    transform: none;
    opacity: 0;
    will-change: auto;
  }
  .hero-slides .hero-photo:first-child {
    opacity: 1;
  }
  .hero-animation-control,
  .hero-pause-toggle {
    display: none;
  }
}
@media print {
  .hero-slides .hero-photo {
    animation: none;
    transform: none;
    opacity: 0;
  }
  .hero-slides .hero-photo:first-child {
    opacity: 1;
  }
  .hero-animation-control,
  .hero-pause-toggle {
    display: none;
  }
}

/* Annotation fixes: preserve image proportions and equal navigation gaps. */
.offer > img {
  object-fit: cover;
  object-position: center;
}
@media (min-width: 901px) {
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .nav-group {
    display: contents;
  }
  .nav-group > a,
  .nav > .brand {
    flex-shrink: 0;
  }
}

.team-copy h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.contact-photo {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 32px;
}

/* Compact weekly lunch menu. */
.weekly-menu {
  max-width: 980px;
  padding-top: 38px;
}
.weekly-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 32px;
}
.weekly-menu-header > p {
  margin: 0;
  font-size: 18px;
  color: #eee;
}
.weekly-menu .menu-section {
  margin-bottom: 32px;
}
.weekly-menu .menu-section-heading {
  padding-bottom: 10px;
  margin-bottom: 0;
}
.weekly-menu .menu-section-heading h2 {
  font-size: 28px;
}
.weekly-menu .menu-item {
  padding: 12px 0;
  gap: 18px;
}
.weekly-menu .menu-description h3 {
  display: inline;
}
.weekly-menu .allergens-line {
  display: inline;
  margin: 0 0 0 8px;
  font-size: 12px;
}
.weekly-menu-note {
  color: #aaa;
  font-size: 13px;
  margin: 0 0 20px;
}
@media (max-width: 600px) {
  .weekly-menu .allergens-line {
    display: block;
    margin-left: 0;
  }
}

.cafe-menu .menu-intro {
  margin-bottom: 24px;
}
.cafe-menu .menu-intro h2,
.cafe-menu .breakfast-section > h2 {
  font-size: 34px;
}
.cafe-menu .menu-section-heading h3 {
  font-size: 26px;
}
.cafe-menu .menu-description p {
  margin-top: 3px;
  margin-bottom: 0;
}
.cafe-menu .breakfast-note {
  margin: 12px 0 20px;
}

.gallery-open {
  overflow: hidden;
}
.gallery-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 64px 80px;
  border: 0;
  background: rgb(8 8 8 / 96%);
  color: #fff;
}
.gallery-modal[open] {
  display: grid;
  place-items: center;
}
.gallery-modal::backdrop {
  background: #080808;
}
.gallery-modal img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}
.gallery-modal button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #777;
  background: #161616;
  color: white;
  font:
    36px/1 Arial,
    sans-serif;
  cursor: pointer;
}
.gallery-modal button:hover {
  background: #333;
}
.gallery-close {
  top: 16px;
  right: 16px;
}
.gallery-prev {
  left: 16px;
  top: calc(50% - 24px);
}
.gallery-next {
  right: 16px;
  top: calc(50% - 24px);
}
.gallery-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 600px) {
  .gallery-modal {
    padding: 76px 16px 92px;
  }
  .gallery-prev,
  .gallery-next {
    top: auto;
    bottom: 14px;
  }
  .gallery-counter {
    bottom: 27px;
  }
}

.page-hero > img {
  object-fit: cover;
  object-position: center;
}
.catering-hero > img {
  object-position: center 36%;
}
.catering-hero::after {
  background: linear-gradient(rgb(0 0 0 / 40%), rgb(0 0 0 / 18%) 45%, rgb(0 0 0 / 48%));
}

.offer:hover .button,
.offer:focus-visible .button {
  background: #fff;
  color: #111;
}
.offer:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -5px;
}

.gallery-modal button svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.offer h2,
.offer:hover h2,
.offer:focus-visible h2 {
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 550ms ease var(--reveal-delay, 0ms),
      transform 550ms cubic-bezier(0.2, 0.65, 0.3, 1) var(--reveal-delay, 0ms);
  }
  [data-reveal].is-visible,
  [data-reveal]:focus-within {
    opacity: 1;
    transform: none;
  }
}
@media print {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .page-hero-content,
  .hero-content {
    animation: intro-arrive 650ms ease both;
  }
  @keyframes intro-arrive {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}

.interior-carousel {
  position: relative;
  min-width: 0;
  min-height: 430px;
}
.interior-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  height: 100%;
  min-height: 430px;
  scrollbar-width: none;
}
.interior-track::-webkit-scrollbar {
  display: none;
}
.interior-track > img {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  height: 100%;
  position: absolute;
  object-fit: cover;
  scroll-snap-align: start;
}
.interior-track > img {
  position: static;
  height: 430px;
}
.interior-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  background: #111e;
  color: #fff;
  padding: 6px;
}
.interior-controls[hidden] {
  display: none;
}
.interior-controls button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #777;
  color: #fff;
  cursor: pointer;
}
.interior-controls button:hover {
  background: #444;
}
.interior-controls svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.interior-counter {
  white-space: nowrap;
  font-size: 13px;
}
@media (min-width: 901px) {
  .interior-track {
    position: absolute;
    inset: 0;
  }
  .interior-track > img {
    height: 100%;
  }
}

.mobile-menu {
  display: none;
}
@media (max-width: 900px) {
  .header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: calc(100% - 40px);
    padding: 14px 0;
    gap: 0;
  }
  .header .nav > .nav-group {
    display: none;
  }
  .header .nav > .brand {
    order: 0;
    flex: 0 0 auto;
    margin: 0;
  }
  .header .brand img {
    width: 124px;
    height: 62px;
    object-fit: contain;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    min-height: 48px;
    padding: 0 4px 0 16px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
  }
  .mobile-menu .close-icon {
    display: none;
  }
  .mobile-menu[open] .menu-icon {
    display: none;
  }
  .mobile-menu[open] .close-icon {
    display: block;
  }
  .mobile-menu[open] {
    width: 100%;
    margin-top: -55px;
  }
  .mobile-menu[open] summary {
    margin-left: auto;
    width: fit-content;
  }
  .mobile-menu-links {
    padding-top: 24px;
    padding-bottom: 8px;
  }
  .mobile-menu-links a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
  }
  .mobile-menu-links a:last-child {
    border-bottom: 0;
  }
  .mobile-menu-links a[aria-current="page"] {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 6px;
  }
  .mobile-menu summary:focus-visible {
    outline: 2px solid white;
    outline-offset: 4px;
  }
}
/* Persistent navigation with a geometrically centered logo. */
html {
  scroll-padding-top: 112px;
}
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  transition: background-color 200ms ease;
}
.header.is-scrolled {
  background: rgb(17 17 17 / 97%);
  box-shadow: 0 1px 0 #ffffff1a;
}
@media (min-width: 901px) {
  .header .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 156px minmax(0, 1fr);
    gap: 38px;
    min-height: 112px;
  }
  .header .nav-group {
    display: flex;
    justify-content: space-between;
    gap: 14px;
  }
  .header .brand {
    justify-self: center;
  }
  .header .brand img {
    height: 82px;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .header .nav {
    grid-template-columns: minmax(0, 1fr) 124px minmax(0, 1fr);
    gap: 20px;
  }
  .header .nav-group a {
    font-size: 11px;
    letter-spacing: 0;
  }
  .header .brand img {
    width: 124px;
  }
}
@media (max-width: 900px) {
  html {
    scroll-padding-top: 100px;
  }
  .header {
    position: sticky;
    background: #111;
  }
  .header .nav {
    position: relative;
    justify-content: flex-end;
    min-height: 90px;
  }
  .header .nav > .brand {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
  }
  .mobile-menu[open] {
    margin-top: 0;
  }
  .mobile-menu-links {
    max-height: calc(100svh - 110px);
    overflow-y: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header {
    transition: none;
  }
}
@media print {
  .header {
    position: static;
  }
}
@media (min-width: 901px) {
  .header .nav {
    gap: 64px;
  }
  .header .nav-group {
    gap: 40px;
    justify-content: flex-start;
  }
  .header .nav-group:first-child {
    justify-content: flex-end;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .header .nav {
    gap: 32px;
  }
  .header .nav-group {
    gap: 22px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .gallery-modal[open] {
    animation: gallery-fade-in 280ms ease-out both;
  }
  .gallery-modal[open]::backdrop {
    animation: gallery-fade-in 280ms ease-out both;
  }
  .gallery-modal[open] > img {
    animation: gallery-photo-in 340ms cubic-bezier(0.2, 0.65, 0.3, 1) both;
  }
  @keyframes gallery-fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes gallery-photo-in {
    from {
      opacity: 0;
      transform: scale(0.98);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px 28px;
}
.footer-legal {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 12px;
}
.footer-legal a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-page {
  padding: 170px 0 90px;
}
.legal-content {
  max-width: 850px;
}
.legal-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 32px;
}
.legal-content h2 {
  font-size: 28px;
  margin: 36px 0 14px;
}
.legal-content p {
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content a {
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.legal-draft {
  border-left: 2px solid #777;
  padding-left: 18px;
  font-size: 14px;
}
@media (max-width: 900px) {
  .legal-page {
    padding-top: 48px;
  }
}
@media (max-width: 600px) {
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  .footer-legal > span {
    display: none;
  }
}
@media (max-width: 900px) {
  .header .nav {
    width: calc(100% - 32px);
    min-height: 80px;
    padding: 12px 0;
  }
  .header .nav > .brand {
    top: 12px;
  }
  .header .brand img {
    width: 112px;
    height: 56px;
  }
  .mobile-menu summary {
    width: 44px;
    height: 56px;
    min-height: 44px;
    padding: 0;
    justify-content: center;
  }
  .mobile-menu summary > span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .mobile-menu[open] summary {
    width: 44px;
  }
  .mobile-menu-links {
    padding-top: 20px;
  }
  .mobile-menu-links a {
    padding: 16px 8px;
  }
  html {
    scroll-padding-top: 90px;
  }
}

.catering-hero > img {
  object-position: center 62%;
}
.allergen-guide > summary {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
}
.allergen-guide > summary::-webkit-details-marker {
  display: none;
}
.allergen-guide > summary::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  margin-left: 3px;
}
.allergen-guide[open] > summary::before {
  transform: rotate(45deg);
}

.catering-hero > img {
  object-position: center 80%;
}
@media (prefers-reduced-motion: no-preference) {
  .allergen-guide > summary::before {
    transition: transform 280ms ease;
  }
}

.language-switch {
  position: absolute;
  right: 20px;
  top: 34px;
  color: #fff;
  font-size: 12px;
  z-index: 2;
}
.language-switch summary {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 8px;
  cursor: pointer;
  list-style: none;
}
.language-switch summary::-webkit-details-marker {
  display: none;
}
.language-switch summary svg {
  width: 10px;
  height: 7px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.language-switch[open] summary svg {
  transform: rotate(180deg);
}
.language-switch ul {
  position: absolute;
  top: 48px;
  right: 0;
  width: 225px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #151515;
  border: 1px solid #444;
  box-shadow: 0 8px 24px #0006;
}
.language-switch li > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 8px;
}
.language-switch small {
  font-size: 10px;
  color: #999;
}
.language-switch [aria-disabled="true"] {
  color: #aaa;
}
.language-switch summary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
@media (min-width: 901px) and (max-width: 1400px) {
  .header .nav {
    width: calc(100% - 180px);
  }
  .header .nav-group {
    gap: 20px;
  }
  .header .nav {
    gap: 32px;
  }
  .header .nav-group a {
    font-size: 11px;
    letter-spacing: 0;
  }
}
@media (max-width: 900px) {
  .language-switch {
    top: 18px;
    left: 16px;
    right: auto;
  }
  .language-switch ul {
    left: 0;
    right: auto;
  }
}
@media print {
  .language-switch {
    display: none;
  }
}
.gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.gallery img:nth-child(5) {
  object-position: center 72%;
}
.gallery img:nth-child(6) {
  object-position: center 66%;
}

.gallery img:nth-child(5) {
  object-position: center 65%;
}
.gallery img:nth-child(6) {
  object-position: center;
}

.home-photo-link {
  display: block;
  min-width: 0;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery .home-photo-link img {
  display: block;
  aspect-ratio: 4 / 3;
  object-position: center;
}
.gallery .home-photo-link:nth-child(5) img {
  object-position: center 65%;
}
.home-photo-link:focus-visible {
  outline-offset: 4px;
}
.form-honeypot{position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden}.cms-preview-note{position:relative;z-index:40;background:#eee;color:#111;padding:12px;text-align:center;font:14px sans-serif}.language-switch li>a{display:block;padding:12px}.language-switch li>a[aria-current]{text-decoration:underline}
