:root {
  --terracotta: #efa179;
  --olive: #536148;
  --deep-green: #1a3b2a;
  --button-green: #1a3b2a;
  --cream: #f9f8f6;
  --paper: #fafafa;
  --ink: #000;
  --gutter: clamp(23px, 4vw, 58px);
  --content: 1034px;
  --reading: 686px;
  --display: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .025em;
  line-height: 1.4;
  overflow-x: clip;
}

body.nav-open,
html.sqsp-modal-lock { overflow: hidden; }

::selection { background: var(--olive); color: #fff; }
a { color: inherit; text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--deep-green); outline-offset: 4px; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 100;
  letter-spacing: -.025em;
  line-height: 1.025;
}

p { margin: 0 0 1.05em; }
strong { font-weight: 600; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.wrap {
  width: min(100%, calc(var(--content) + (2 * var(--gutter))));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.reading-width { max-width: var(--reading); }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  padding: 15px 2vw;
  color: var(--paper);
}
.site-header .logo { flex: 0 0 auto; }
.site-header .logo img { width: 101px; height: 76px; object-fit: contain; }
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
}
.site-nav a { text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current='page'] { text-decoration: underline; }
.nav-toggle {
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 0 8px 16px;
  border: 0;
  background: transparent;
  color: var(--paper);
  font: inherit;
  cursor: pointer;
}
.nav-toggle > span { width: 20px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

/* Shared page hero */
.page-hero-banner {
  position: relative;
  height: var(--hero-desktop, 395px);
  overflow: hidden;
  background: var(--terracotta);
}
.page-hero-banner > img, .page-hero-banner > picture, .page-hero-banner > picture > img { width: 100%; height: 100%; }
.page-hero-banner > picture { display: block; }
.page-hero-banner > img, .page-hero-banner > picture > img { object-fit: cover; object-position: var(--hero-position, 50% 50%); }
.page-hero-banner h1 {
  position: absolute;
  left: max(var(--gutter), calc((100vw - 1034px) / 2));
  bottom: var(--title-bottom, 78px);
  width: min(72%, 1034px);
  color: var(--paper);
  font-size: 90.6px;
}
.page-reservations { --hero-desktop: 363px; --hero-mobile: 226px; --hero-position: 47.3% 24%; }
.page-food { --hero-desktop: 470px; --hero-mobile: 285px; --hero-position: 50% 33%; }
.page-dietaries, .page-kids { --hero-desktop: 395px; --hero-mobile: 281px; }
.page-press { --hero-desktop: 370px; --hero-mobile: 293px; }
.page-press .page-hero-banner h1 { font-size: 115.8px; bottom: 46px; }

.page-content { padding-block: 66px 76px; }
.page-content h2, .page-content h3, .page-content h4 {
  margin: 1.4em 0 .55em;
  color: var(--olive);
  font-size: 31.8px;
  line-height: 1.2;
}
.page-content > :first-child { margin-top: 0; }
.page-content p, .page-content ul { max-width: var(--reading); }
.page-content li + li { margin-top: .65em; }

.section-olive { background: var(--olive); color: var(--paper); }
.section-olive .page-content, .section-olive .content { padding-block: 42px 48px; text-align: center; }
.section-olive p, .section-olive ul { margin-inline: auto; }
.section-olive a { color: inherit; }

/* Buttons */
.button, .cta-button, .reservations-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 32px;
  border: 1px solid var(--deep-green);
  border-radius: 999px;
  background: transparent;
  color: var(--deep-green);
  font: 400 15px/1 var(--display);
  letter-spacing: .08em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.button:hover, .cta-button:hover, .reservations-button:hover { background: var(--deep-green); color: #fff; }
.section-olive .button, .section-olive .reservations-button { border-color: var(--paper); color: var(--paper); }
.section-olive .button:hover, .section-olive .reservations-button:hover { background: var(--paper); color: var(--olive); }
.cta-button-wrapper { margin-top: 30px; text-align: center; }

/* Home */
.page-home { background: var(--terracotta); }
.page-home main { display: flex; flex-direction: column; }
.home-reserve-cta { order: 2; padding: 24px var(--gutter) 10px; text-align: center; }
.home-hero { order: 1; }
.home-intro { order: 3; }
.home-hero { position: relative; height: min(75.7vh, 681px); min-height: 560px; margin-inline: 2vw; }
.home-hero > img, .home-hero > picture, .home-hero > picture > img { width: 100%; height: 100%; }
.home-hero > picture { display: block; }
.home-hero > img, .home-hero > picture > img { object-fit: cover; }
.home-hero h1 {
  position: absolute;
  left: 8.4%;
  top: 31%;
  width: 84%;
  font-size: clamp(76px, 8.05vw, 116px);
  line-height: .95;
  color: var(--paper);
}
.michelin-link { position: absolute; left: 8.4%; bottom: 0; display: block; width: 221px; }
.michelin-link img { width: 100%; height: auto; filter: invert(1); }
.home-intro { padding-block: 86px; text-align: center; }
.home-intro h2 {
  max-width: 1034px;
  margin: 0 auto 30px;
  font-size: 31.8px;
  font-weight: 100;
  line-height: 1.2;
  letter-spacing: -.02em;
}

/* Food and drink */
.page-food { background: var(--terracotta); }
.food-intro { display: grid; grid-template-columns: minmax(0, 1fr) 319px; gap: 116px; align-items: center; }
.food-intro-copy { max-width: 686px; }
.food-intro-image { width: 319px; height: 478px; object-fit: cover; }
.drinks-feature {
  position: relative;
  min-height: 993px;
  background: var(--paper);
}
.drinks-copy { position: relative; z-index: 1; display: grid; grid-template-columns: 338px 1fr; gap: 126px; padding-top: 142px; }
.drinks-photo { width: 338px; height: 506px; object-fit: cover; }
.drinks-text { max-width: 520px; }
.drinks-text h2 { margin: 0 0 .55em; font-size: 90.6px; font-weight: 100; }
.wine-badge { display: block; width: 75px; margin: 24px auto 0; }

/* About */
.page-about, .page-groups, .page-contact, .page-dietaries, .page-policy, .page-thanks, .page-press-room { background: var(--terracotta); }
.page-dietaries .site-header, .page-dietaries .nav-toggle { color: var(--ink); }
.about-layout { padding-top: 188px; }
.about-layout .wrap { width: 100%; max-width: none; padding-inline: 2vw; }
.about-row { display: grid; grid-template-columns: repeat(24, minmax(0, 1fr)); gap: 0; align-items: start; margin-bottom: 112px; }
.about-row .about-copy { grid-column: 4 / 12; }
.about-row .about-image { grid-column: 14 / 25; }
.about-row.reverse .about-copy { order: 2; }
.about-row.reverse .about-image { order: 1; }
.about-row.reverse .about-image { grid-column: 4 / 12; }
.about-row.reverse .about-copy { grid-column: 14 / 22; }
.about-copy h1, .about-copy h2 { margin-bottom: .65em; color: var(--olive); font-size: clamp(35.256px, 3.572vw, 48.6px); }
.about-image { width: 100%; object-fit: cover; }
.about-joke .about-image { height: 676px; }
.about-matt { margin-bottom: 72px; }
.about-matt .about-image { height: 297px; }
.about-design .about-copy { grid-column: 2 / 12; padding-top: 37px; }
.about-design .about-copy h2 { font-size: clamp(25.128px, 2.372vw, 31.8px); }
.about-design .about-image { grid-column: 16 / 22; width: calc(100% - 8px); height: 438px; margin-left: 7px; }

/* Press */
.press-content { background: var(--olive); color: #fff; }
.press-content .page-content { padding-block: 62px 86px; }
.press-quotes { max-width: 918px; margin-inline: auto; }
.press-quotes blockquote { margin: 0 0 28px; }
.press-quotes blockquote p { max-width: none; margin-bottom: .25em; font-size: 18px; }
.press-quotes blockquote footer { font-size: 14px; }
.press-quotes h2 { margin: 1.35em 0 .55em; color: #fff; font-size: 31.8px; }
.press-quotes ul { max-width: none; padding-left: 0; list-style: none; }

/* Group bookings */
.group-main { padding-top: 120px; }
.group-main > .wrap { display: grid; grid-template-columns: 338px minmax(0, 1fr); gap: 126px; align-items: start; }
.group-main h1 { max-width: 420px; margin-bottom: 34px; color: var(--paper); font-size: 90.6px; line-height: 1.025; }
.group-copy { max-width: 860px; }
.group-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-items: start; padding: 34px var(--gutter) 80px; }
.group-gallery img { width: 100%; height: auto; }

/* Contact */
.contact-main { padding-top: 117px; }
.contact-main h1 { margin-bottom: 26px; font-size: 90.6px; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 628px) minmax(0, 453px); gap: 126px; align-items: start; }
.contact-grid h2 { margin: 0 0 .55em; color: var(--ink); font-size: 31.8px; }
.contact-grid h2:not(:first-child) { margin-top: 1.35em; }
.contact-grid img { width: 453px; height: 518px; margin-top: 98px; object-fit: cover; }
.contact-trigger { color: var(--button-green); font-weight: 700; }

/* Policy and thanks */
.policy-main { padding-top: 148px; }
.policy-grid { display: grid; grid-template-columns: 453px 1fr; gap: 126px; align-items: start; }
.policy-grid h1 { color: var(--ink); font-size: 48.6px; line-height: 1.15; }
.policy-copy { max-width: 686px; }
.policy-image { width: 100%; height: 600px; object-fit: cover; }
.thanks-main { min-height: 594px; padding: 149px 2vw 70px; }
.thanks-main h1 { margin-bottom: 32px; color: var(--olive); font-size: 90.6px; }
.thanks-main .reading-width { max-width: 628px; }

/* Footer */
.site-footer { min-height: 176px; padding: 27px var(--gutter) 22px; background: var(--paper); color: var(--ink); text-align: center; }
.site-footer p { margin: 0 0 7px; font-size: 14px; }
.site-footer .footer-name { font-weight: 500; }
.footer-social { margin-top: 10px !important; }
.footer-social a { display: inline-flex; }

/* Contact dialogs */
.sqsp-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgb(0 0 0 / 60%);
}
.sqsp-modal.is-open { display: flex; }
.sqsp-modal__dialog {
  position: relative;
  width: min(100%, 620px);
  max-height: 90vh;
  overflow: auto;
  padding: 32px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--deep-green);
  text-align: center;
  box-shadow: 0 18px 50px rgb(0 0 0 / 20%);
}
.sqsp-modal__dialog h3 { margin-bottom: 12px; font-size: 16px; font-weight: 700; line-height: 1.25; }
.sqsp-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--deep-green);
  font-size: 28px;
  cursor: pointer;
}
.sqsp-modal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.sqsp-modal__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 24px; }
.sqsp-modal__footer { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgb(26 59 42 / 25%); }
.sqsp-modal__footer .sqsp-modal__btn { width: fit-content; margin-inline: auto; }
.sqsp-modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--deep-green);
  border-radius: 999px;
  background: transparent;
  color: var(--deep-green);
  font: 500 15px/1.2 var(--display);
  text-decoration: none;
  cursor: pointer;
}

/* Press room */
.press-room-main { padding-top: 136px; }
.press-room-main h1 { margin-bottom: 28px; color: var(--paper); font-size: 60px; }
.press-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 30px; }
.press-item { overflow: hidden; background: var(--paper); text-decoration: none; }
.press-item img { width: 100%; height: 220px; background: var(--olive); object-fit: cover; }
.press-credit { display: block; padding: 8px 10px; color: var(--deep-green); font-size: 12px; }
.press-room-gate { min-height: calc(100svh - 176px); padding-top: 136px; }
.press-room-gate .page-content { min-height: 520px; }
.press-room-gate__card { width: min(100%, 430px); color: var(--deep-green); }
.press-room-gate__card h1 { margin-bottom: 14px; color: var(--paper); font-size: 60px; }
.press-room-gate__card label { display: block; margin-bottom: 8px; font-weight: 600; }
.press-room-gate__card input { width: 100%; min-height: 48px; padding: 10px 12px; border: 1px solid var(--olive); background: var(--paper); font: inherit; }
.press-room-gate__card .error { color: #711a14; font-weight: 600; }
.press-room-gate__card .button { margin-top: 20px; border-color: var(--deep-green); color: var(--deep-green); }
.press-room-gate__card .button:hover { background: var(--deep-green); color: var(--paper); }
.js-fade-in { opacity: 1; }

/* Cookie consent */
.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  width: min(680px, calc(100vw - 48px));
  padding: 24px;
  border: 1px solid var(--deep-green);
  background: var(--paper);
  color: var(--deep-green);
  box-shadow: 0 12px 36px rgba(19, 45, 32, .2);
}
.cookie-consent__title { margin: 0 0 8px; font-size: 28px; line-height: 1; }
.cookie-consent__copy p { max-width: 48ch; margin: 0; font-size: 14px; line-height: 1.45; }
.cookie-consent__copy a { color: inherit; text-underline-offset: 3px; }
.cookie-consent__copy .cookie-consent__note { margin-top: 6px; font-size: 12px; }
.cookie-consent__actions { display: grid; align-content: center; gap: 10px; min-width: 164px; }
.cookie-consent__button {
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid var(--deep-green);
  background: var(--deep-green);
  color: var(--paper);
  font: 600 14px/1.2 var(--body);
  cursor: pointer;
}
.cookie-consent__button:last-child { background: transparent; color: var(--deep-green); }
.cookie-consent__button:hover,
.cookie-consent__button:focus-visible { background: var(--terracotta); color: var(--deep-green); }
.cookie-consent__title:focus { outline: 0; }
.cookie-settings { margin-top: 8px; }
.cookie-settings-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cookie-settings-button:hover,
.cookie-settings-button:focus-visible { text-decoration-thickness: 2px; }
.cookie-policy-table { width: 100%; margin: 28px 0; border-collapse: collapse; font-size: 14px; }
.cookie-policy-table th,
.cookie-policy-table td { padding: 12px 10px; border-bottom: 1px solid rgba(19, 45, 32, .35); text-align: left; vertical-align: top; }
.cookie-policy-table th { font-weight: 700; }
.cookie-policy-action { margin-top: 28px; }

@media (max-width: 820px) {
  :root { --gutter: 23.4px; }
  body { letter-spacing: .02em; }
  .site-header { min-height: 97px; padding: 23px var(--gutter); }
  .site-header .logo img { width: 66px; height: 50px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: grid;
    align-content: start;
    padding: 112px var(--gutter) 40px;
    background: var(--terracotta);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
  }
  .site-header.nav-open .site-nav { opacity: 1; visibility: visible; }
  .site-nav ul { display: grid; gap: 11px; justify-content: stretch; font-size: 31px; font-weight: 100; line-height: 1.08; }
  .site-nav a { display: block; padding-block: 4px; }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .page-hero-banner { height: var(--hero-mobile, 281px); }
  .page-hero-banner h1 { left: var(--gutter); bottom: 32px; width: calc(100% - (2 * var(--gutter))); font-size: 60.576px; }
  .page-press .page-hero-banner h1 { bottom: 36px; font-size: 75.768px; }
  .page-content { padding-block: 50px 62px; }
  .page-content h2, .page-content h3, .page-content h4 { font-size: 25.128px; }

  .home-reserve-cta { padding-top: 125px; padding-bottom: 12px; }
  .home-reserve-cta { order: 0; }
  .home-reserve-cta .button { width: 100%; min-height: 59px; border-width: 2px; font-size: 18px; font-weight: 600; }
  .home-hero { height: 114vw; min-height: 0; max-height: none; margin-inline: var(--gutter); }
  .home-hero { margin-bottom: 79px; }
  .home-hero h1 { left: 0; top: 16%; width: 100%; color: var(--paper); font-size: 75.768px; line-height: .95; }
  .michelin-link { position: absolute; left: 0; bottom: -68px; width: 89px; margin: 0; transform: none; }
  .home-intro { padding-block: 0 72px; }
  .home-intro h2 { margin-bottom: 30px; font-size: 25.128px; line-height: 1.2; }

  .food-intro { grid-template-columns: 1fr; gap: 38px; }
  .food-intro-image { width: 203px; height: 304px; margin-inline: auto; }
  .drinks-feature { min-height: 1185px; }
  .drinks-copy { grid-template-columns: 1fr; gap: 38px; padding-top: 56px; }
  .drinks-photo { width: 249px; height: 374px; margin-inline: auto; }
  .drinks-text h2 { font-size: 60.576px; }

  .about-layout { padding-top: 120px; }
  .about-layout .wrap { padding-inline: var(--gutter); }
  .about-row, .about-design { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .about-row .about-copy, .about-row .about-image, .about-row.reverse .about-copy, .about-row.reverse .about-image { grid-column: auto; order: initial; }
  .about-joke .about-image { order: -1; height: 511px; }
  .about-matt .about-image { order: -1; height: 269px; }
  .about-design .about-copy { padding-top: 0; }
  .about-design .about-image { height: 199px; width: 299px; margin-left: 0; }
  .about-copy h1, .about-copy h2 { font-size: 35.256px; }
  .about-design .about-copy h2 { font-size: 25.128px; }

  .press-content .page-content { padding-block: 54px 70px; }
  .press-quotes blockquote { margin-bottom: 24px; }
  .press-quotes blockquote p { font-size: 15px; }
  .press-quotes h2 { font-size: 25.128px; }

  .group-main { padding-top: 97px; }
  .group-main > .wrap { display: block; }
  .group-main h1 { max-width: 343px; font-size: 60.576px; }
  .group-gallery { grid-template-columns: 1fr; gap: 11px; padding: 26px 46px 56px; }
  .group-gallery img { height: auto; }

  .contact-main { padding-top: 113px; }
  .contact-main h1 { font-size: 60.576px; }
  .contact-grid { grid-template-columns: 1fr; gap: 22px; }
  .contact-grid h2 { font-size: 25.128px; }
  .contact-grid img { width: 100%; height: 269px; margin-top: 18px; }

  .policy-main { padding-top: 97px; }
  .policy-grid { grid-template-columns: 1fr; gap: 24px; }
  .policy-grid h1 { font-size: 35.256px; }
  .policy-image { height: 234px; }
  .thanks-main { min-height: 594px; padding: 56px var(--gutter) 70px; }
  .thanks-main h1 { font-size: 60.576px; }

  .site-footer { min-height: 176px; padding-top: 25px; }
  .sqsp-modal { padding: 0; }
  .sqsp-modal__dialog { width: 100%; max-height: 100svh; border-radius: 0; }
  .sqsp-modal__grid { grid-template-columns: 1fr; }
  .press-room-main { padding-top: 116px; }
  .press-room-main h1 { font-size: 48px; }
  .press-room-gate { min-height: calc(100svh - 176px); padding-top: 116px; }
  .press-room-gate .page-content { min-height: 480px; }
  .press-room-gate__card h1 { font-size: 48px; }
  .cookie-consent {
    right: var(--gutter);
    bottom: var(--gutter);
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100vw - (2 * var(--gutter)));
    max-height: calc(100svh - (2 * var(--gutter)));
    overflow-y: auto;
    padding: 20px;
  }
  .cookie-consent__actions { grid-template-columns: 1fr; min-width: 0; }
  .cookie-policy-table { table-layout: fixed; font-size: 12px; }
  .cookie-policy-table th,
  .cookie-policy-table td { padding: 9px 5px; overflow-wrap: anywhere; }
}

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