:root {
  --copper: #053e2e;
  --copper-dark: #032a20;
  --white: #ffffff;
  --ink: #171713;
  --muted: #6f6a62;
  --paper: #f5f1ea;
  --paper-deep: #ebe4d9;
  --line: rgba(23, 23, 19, 0.16);
  --serif: "Cormorant Garamond", serif;
  --sans: "Manrope", sans-serif;
  --header-height: 92px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

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

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(88px, 10vw, 160px);
}

.utility-section {
  position: relative;
  z-index: 1000;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1001;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  margin: 0 0 22px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(4.1rem, 9.2vw, 8.6rem);
}

h2 {
  margin-bottom: 34px;
  font-size: clamp(3.3rem, 6.5vw, 6.2rem);
}

h1 em,
h2 em {
  font-weight: 500;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  line-height: 1.2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 28px;
  border: 1px solid var(--copper);
  border-radius: 0;
  color: var(--white);
  background: var(--copper);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button:hover {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.button--small {
  min-height: 46px;
  padding: 12px 21px;
  font-size: 0.68rem;
}

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

.button--dark:hover {
  border-color: var(--copper);
  color: var(--white);
  background: var(--copper);
}

.text-link,
.text-link--button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 7px 0;
  border: 0;
  color: var(--ink);
  background: none;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.text-link::after,
.text-link--button::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 220ms ease;
}

.text-link:hover::after,
.text-link--button:hover::after {
  transform: scaleX(0.35);
}

.text-link--light {
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: color 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled,
.site-header--solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 34px rgba(23, 23, 19, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1380px);
  height: 100%;
  margin-inline: auto;
}

.brand {
  position: relative;
  z-index: 102;
  display: block;
  width: 178px;
  height: 64px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 250ms ease;
}

.site-header.is-scrolled .brand img,
.site-header--solid .brand img {
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.6vw, 44px);
}

.mobile-menu-footer {
  display: none;
}

.main-nav > a:not(.instagram-link) {
  position: relative;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav > a:not(.instagram-link)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.main-nav > a:not(.instagram-link):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.instagram-icon {
  display: block;
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: filter 250ms ease;
}

.site-header.is-scrolled .instagram-icon,
.site-header--solid .instagram-icon,
.menu-open .instagram-icon {
  filter: none;
}

.instagram-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 200ms ease, top 200ms ease, opacity 200ms ease;
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle__lines::before {
  top: -7px;
}

.menu-toggle__lines::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.back-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  scale: 1.035;
  animation: heroReveal 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(10, 10, 8, 0.62) 0%, rgba(10, 10, 8, 0.24) 15%, transparent 32%),
    linear-gradient(90deg, rgba(10, 10, 8, 0.76) 0%, rgba(10, 10, 8, 0.35) 52%, rgba(10, 10, 8, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 10, 8, 0.58) 0%, transparent 48%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: clamp(80px, 9vw, 132px);
}

.hero__content .eyebrow {
  color: var(--white);
}

.hero h1 {
  max-width: 1000px;
}

.hero__intro {
  max-width: 520px;
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.25;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero__hours {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(25px, 4vw, 54px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 24px;
  border-right: 2px solid var(--copper);
}

.hero__hours span {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__hours strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    scale: 1.12;
  }
  to {
    opacity: 1;
    scale: 1.035;
  }
}

.story {
  overflow: hidden;
  background: var(--paper);
}

.story__grid {
  display: grid;
  grid-template-columns: 0.9fr 0.5fr 0.7fr;
  grid-template-rows: auto auto;
  gap: 30px;
  align-items: start;
}

.story__copy {
  grid-row: 1 / span 2;
  max-width: 500px;
  padding-top: clamp(20px, 5vw, 76px);
}

.story__copy h2 {
  max-width: 460px;
}

.story__copy p:not(.eyebrow) {
  color: #4f4b45;
}

.story__copy .text-link {
  margin-top: 22px;
}

.story__image {
  margin: 0;
  overflow: hidden;
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story__image:hover img {
  scale: 1.035;
}

.story__image--main {
  grid-column: 2 / span 2;
  height: min(56vw, 670px);
}

.story__image--detail {
  grid-column: 2;
  height: 370px;
  margin-top: -80px;
  border: 12px solid var(--paper);
}

.story__note {
  align-self: center;
  margin: 0;
  color: var(--copper);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-style: italic;
  line-height: 0.98;
  text-align: center;
  rotate: -5deg;
}

.experience {
  position: relative;
  min-height: min(860px, 90vh);
  background: var(--ink);
}

.experience__media {
  position: absolute;
  inset: 0 31% 0 0;
  margin: 0;
  overflow: hidden;
}

.experience__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(23, 23, 19, 0.58));
  content: "";
}

.experience__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.experience__card {
  position: absolute;
  top: 50%;
  right: clamp(24px, 7vw, 110px);
  z-index: 2;
  width: min(570px, calc(100% - 48px));
  padding: clamp(44px, 6vw, 84px);
  background: var(--white);
  transform: translateY(-50%);
}

.experience__card h2 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.experience__card p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
}

.cuisine {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

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

.chef-name {
  margin: 18px 0 0;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--muted);
}

.dish-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 24px;
}

.dish-card {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.dish-card--wide {
  grid-row: span 2;
  min-height: 704px;
}

.dish-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(12, 12, 10, 0.72), transparent);
  content: "";
}

.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dish-card:hover img {
  scale: 1.04;
}

.dish-card figcaption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
}

.dish-card figcaption span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dish-card figcaption strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.menu-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 32px;
  padding: 34px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-callout p {
  max-width: 690px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.menu-callout--cuisine {
  margin: -28px 0 34px;
}

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

.groups__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.75fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
}

.groups__heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 5.7vw, 5.7rem);
}

.groups__heading h2 em {
  font-size: 0.7em;
  line-height: 1.08;
}

.groups__copy {
  padding-top: 54px;
}

.groups__copy > p {
  margin: 0;
  color: #4f4b45;
}

.groups__copy > p + p {
  margin-top: 28px;
}

.groups__copy > p:first-child {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.35;
}

.groups__highlights {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  color: #4f4b45;
  list-style: none;
}

.groups__highlights li {
  position: relative;
  padding-left: 22px;
}

.groups__highlights li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--copper-dark);
  content: "—";
}

.groups__contact {
  margin-top: 28px !important;
  padding: 24px 0 2px 28px;
  border-left: 2px solid var(--copper);
  color: var(--ink) !important;
  font-weight: 600;
}

.groups__contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 18px;
}

.groups__contact-links a {
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.form-block {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
  padding-top: clamp(58px, 7vw, 95px);
  border-top: 1px solid var(--line);
}

.form-block--group {
  margin-top: clamp(70px, 9vw, 130px);
}

.form-block__intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.form-block__intro h3 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.form-block__intro > p:last-child {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}

.form-field {
  display: grid;
  gap: 9px;
  min-width: 0;
}

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

.form-field > span {
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-field > span small {
  color: var(--muted);
  font-size: inherit;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.form-field input:not([type="file"]),
.form-field textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  transition: border-color 180ms ease;
}

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

.form-field input:not([type="file"]):focus,
.form-field textarea:focus {
  border-color: var(--copper);
}

.form-field--file input {
  width: 100%;
  padding: 18px;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.42);
  font: inherit;
  font-size: 0.78rem;
}

.form-field--file input::file-selector-button {
  margin-right: 16px;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-field > small {
  color: var(--muted);
  font-size: 0.7rem;
}

.form-field .form-field__error {
  color: #9c2f20;
  font-weight: 700;
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 30px 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.form-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--copper);
}

.form-consent a {
  color: var(--copper-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-required {
  display: inline-block;
  margin: 0 0 0 18px;
  color: var(--muted);
  font-size: 0.68rem;
}

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

.recruitment {
  background: var(--white);
}

.gallery {
  color: var(--white);
  background: var(--copper);
}

.gallery .eyebrow {
  color: var(--white);
}

.gallery__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 65px;
}

.gallery__heading h2 {
  margin-bottom: 0;
}

.gallery__heading .text-link {
  margin-bottom: 10px;
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  align-self: start;
  aspect-ratio: 4 / 5;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 250ms ease;
}

.gallery-item::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: var(--white);
  background:
    linear-gradient(var(--white), var(--white)) center / 14px 1.5px no-repeat,
    linear-gradient(var(--white), var(--white)) center / 1.5px 14px no-repeat;
  content: "";
  opacity: 0;
  place-items: center;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.gallery-item:hover img {
  filter: brightness(0.82);
  scale: 1.05;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.reservation {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.reservation__media {
  position: absolute;
  inset: 0;
}

.reservation__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 10, 0.9) 0%, rgba(12, 12, 10, 0.58) 50%, rgba(12, 12, 10, 0.2) 100%);
  content: "";
}

.reservation__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.reservation__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 720px;
}

.reservation__content .eyebrow {
  color: var(--white);
}

.reservation__content h2 {
  max-width: 850px;
}

.reservation__content > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.35;
}

.reservation__actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

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

.practical__heading {
  margin-bottom: 60px;
}

.practical__heading h2 {
  margin-bottom: 0;
}

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

.info-card {
  min-height: 370px;
  padding: 38px;
  border-right: 1px solid var(--line);
}

.info-card:last-child {
  border-right: 0;
}

.info-card h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
}

.info-card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.info-card p + p {
  margin-top: -7px;
}

.info-card strong {
  color: var(--ink);
}

.site-footer {
  padding: 76px 0 28px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 60px;
}

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

.footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav h2 {
  margin-bottom: 12px;
  color: var(--copper);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-nav button {
  padding: 2px 0;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: none;
  font-size: 0.84rem;
  cursor: pointer;
}

.footer-nav a:hover,
.footer-nav button:hover {
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.69rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0 auto 0 0;
}

.footer-bottom a:hover {
  color: var(--white);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  gap: 24px;
  align-items: center;
  padding: 76px 40px 34px;
  background: rgba(12, 12, 10, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__figure {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.lightbox__figure img {
  width: auto;
  max-width: min(920px, 100%);
  height: auto;
  max-height: calc(100vh - 160px);
  object-fit: contain;
}

.lightbox__figure figcaption {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  width: min(920px, 100%);
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
}

.lightbox__counter {
  flex: 0 0 auto;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 30px;
  padding: 8px;
  border: 0;
  color: var(--white);
  background: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.lightbox__arrow {
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.35rem;
  cursor: pointer;
  place-items: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lightbox__arrow:hover {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mentions légales */
.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: calc(var(--header-height) + 100px) 0 100px;
  color: var(--white);
  background: var(--copper);
}

.legal-hero__inner h1 {
  margin-bottom: 20px;
  font-size: clamp(4.5rem, 9vw, 8rem);
}

.legal-hero__inner .eyebrow {
  color: var(--white);
}

.legal-hero__inner > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.legal-section {
  padding: 90px 0;
  background: var(--white);
}

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

.legal-layout {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 80px;
}

.legal-layout h2 {
  margin: 0;
  color: var(--copper);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}

.legal-data {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  margin: 0;
  border-top: 1px solid var(--line);
}

.legal-data dt,
.legal-data dd {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.legal-data dt {
  padding-right: 30px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-data dd {
  margin: 0;
  font-weight: 600;
}

.legal-copy {
  max-width: 760px;
  color: #4f4b45;
}

.legal-copy p:first-child {
  margin-top: 0;
}

.legal-copy a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.thanks-page {
  min-height: 100vh;
  background: var(--paper);
}

.thanks-page .site-header {
  color: var(--white);
  background: var(--copper-dark);
}

.thanks-main {
  display: grid;
  min-height: 100vh;
  padding: calc(var(--header-height) + 70px) 0 70px;
  place-items: center;
}

.thanks-card {
  width: min(calc(100% - 36px), 760px);
  padding: clamp(45px, 8vw, 90px);
  text-align: center;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(23, 23, 19, 0.1);
}

.thanks-card h1 {
  margin-bottom: 24px;
  font-size: clamp(4rem, 9vw, 7rem);
}

.thanks-card > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto 34px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  :root {
    --header-height: 80px;
  }

  .main-nav {
    gap: 22px;
  }

  .main-nav > a:not(.instagram-link) {
    font-size: 0.65rem;
  }

  .story__grid {
    grid-template-columns: 1fr 0.55fr;
  }

  .story__copy {
    grid-row: auto;
  }

  .story__image--main {
    grid-column: 2;
    height: 620px;
  }

  .story__image--detail {
    grid-column: 1;
    width: 60%;
    height: 310px;
    margin: -90px 0 0 auto;
  }

  .story__note {
    font-size: 3rem;
  }

}

@media (max-width: 900px) {
  .container,
  .header-inner {
    width: min(calc(100% - 36px), var(--container));
  }

  .brand {
    width: 170px;
    height: 58px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 108px max(8vw, 36px) 112px;
    overflow: hidden;
    color: var(--white);
    background: var(--copper-dark);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    clip-path: circle(0 at calc(100% - 52px) 40px);
    transition:
      clip-path 760ms cubic-bezier(0.76, 0, 0.24, 1),
      opacity 200ms ease,
      visibility 760ms;
  }

  .main-nav::before {
    position: absolute;
    inset: 0 0 0 auto;
    z-index: -2;
    width: 40%;
    background:
      linear-gradient(90deg, var(--copper-dark), rgba(3, 42, 32, 0.12) 45%),
      linear-gradient(0deg, rgba(23, 23, 19, 0.5), rgba(23, 23, 19, 0.08)),
      url("../images/apostrophe20.jpg") center / cover no-repeat;
    content: "";
  }

  .main-nav::after {
    position: absolute;
    right: 4vw;
    bottom: 1vh;
    z-index: -1;
    width: min(430px, 42vw);
    height: min(260px, 28vw);
    background: url("../images/logo-apostrophe-v2.svg") center / contain no-repeat;
    content: "";
    filter: brightness(0) invert(1);
    opacity: 0.12;
    transform: translateY(30px);
    transition: opacity 450ms ease 300ms, transform 650ms cubic-bezier(0.22, 1, 0.36, 1) 250ms;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    clip-path: circle(150vmax at calc(100% - 52px) 40px);
    transition:
      clip-path 860ms cubic-bezier(0.76, 0, 0.24, 1),
      opacity 200ms ease,
      visibility 0ms;
  }

  .main-nav.is-open::after {
    opacity: 0.12;
    transform: translateY(0);
  }

  .main-nav > a:not(.instagram-link),
  .instagram-text {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 0.98;
    text-transform: none;
  }

  .main-nav > a,
  .main-nav > .button,
  .mobile-menu-footer {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 320ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .main-nav.is-open > a:nth-child(1) {
    transition-delay: 300ms;
  }

  .main-nav.is-open > a:nth-child(2) {
    transition-delay: 365ms;
  }

  .main-nav.is-open > a:nth-child(3) {
    transition-delay: 430ms;
  }

  .main-nav.is-open > a:nth-child(4) {
    transition-delay: 495ms;
  }

  .main-nav.is-open > a:nth-child(5) {
    transition-delay: 560ms;
  }

  .main-nav.is-open > .button {
    transition-delay: 625ms;
  }

  .main-nav.is-open > .mobile-menu-footer {
    transition-delay: 690ms;
  }

  .main-nav.is-open > a,
  .main-nav.is-open > .button,
  .main-nav.is-open > .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    min-width: min(520px, 56vw);
    padding: 8px 0;
  }

  .main-nav > a:not(.instagram-link)::after {
    right: auto;
    bottom: 3px;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
  }

  .instagram-link {
    justify-content: flex-start;
    gap: 0;
  }

  .instagram-link .instagram-icon {
    display: none;
  }

  .main-nav .button {
    min-width: 210px;
    margin-top: 24px;
    border-color: var(--white);
    color: var(--copper-dark);
    background: var(--white);
  }

  .mobile-menu-footer {
    position: absolute;
    right: max(6vw, 30px);
    bottom: 34px;
    left: max(8vw, 36px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.66rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .menu-open .site-header {
    color: var(--white);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.menu-open .site-header .brand img {
    filter: brightness(0) invert(1);
  }

  .menu-open .menu-toggle {
    color: var(--white);
  }

  .menu-open .instagram-icon {
    filter: brightness(0) invert(1);
  }

  .hero__hours {
    display: none;
  }

  .hero__content {
    padding-bottom: 90px;
  }

  .story__grid {
    gap: 24px;
  }

  .experience__media {
    inset: 0;
  }

  .experience__card {
    right: 24px;
    width: min(510px, calc(100% - 48px));
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .dish-card--wide {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 520px;
  }

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

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

  .info-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-card:last-child {
    border-bottom: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .form-block {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-block__intro {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 15px;
  }

  .container,
  .header-inner {
    width: calc(100% - 30px);
  }

  .section-space {
    padding-block: 84px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }

  h2 {
    font-size: clamp(3.1rem, 15vw, 4.4rem);
  }

  .hero {
    min-height: 820px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 4px;
    padding: 116px 24px 118px;
    background:
      linear-gradient(135deg, rgba(3, 42, 32, 0.93), rgba(5, 62, 46, 0.92)),
      url("../images/apostrophe20.jpg") 58% center / cover no-repeat;
  }

  .main-nav::before {
    inset: 0;
    width: 100%;
    background:
      linear-gradient(0deg, rgba(23, 23, 19, 0.56), transparent 62%),
      linear-gradient(90deg, rgba(3, 42, 32, 0.72), rgba(3, 42, 32, 0.2));
  }

  .main-nav::after {
    right: -34px;
    bottom: 72px;
    width: 280px;
    height: 160px;
    opacity: 0.1;
  }

  .main-nav.is-open::after {
    opacity: 0.1;
  }

  .main-nav > a {
    min-width: 0;
    width: 100%;
    padding: 7px 0;
  }

  .main-nav > a:not(.instagram-link),
  .instagram-text {
    font-size: clamp(2.6rem, 13.2vw, 3.9rem);
  }

  .main-nav .button {
    min-height: 50px;
    margin-top: 18px;
  }

  .mobile-menu-footer {
    right: 24px;
    bottom: 24px;
    left: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-top: 13px;
    font-size: 0.58rem;
  }

  .hero__media img {
    object-position: 43% center;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(10, 10, 8, 0.68) 0%, rgba(10, 10, 8, 0.28) 17%, transparent 34%),
      linear-gradient(0deg, rgba(10, 10, 8, 0.78) 0%, rgba(10, 10, 8, 0.26) 72%, rgba(10, 10, 8, 0.18) 100%);
  }

  .hero__content {
    width: calc(100% - 48px);
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 12.8vw, 4.5rem);
  }

  .hero__actions,
  .reservation__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero__intro {
    font-size: 1.3rem;
  }

  .story__grid {
    display: flex;
    flex-direction: column;
  }

  .story__copy {
    order: 1;
    padding-top: 0;
  }

  .story__image--main {
    order: 2;
    width: 100%;
    height: 520px;
  }

  .story__image--detail {
    order: 3;
    width: 64%;
    height: 270px;
    margin: -110px 0 0 -4px;
    border-width: 8px;
  }

  .story__note {
    align-self: flex-end;
    order: 4;
    width: 100%;
    margin: 24px 0 0;
    padding-right: 4px;
    font-size: 2.7rem;
    text-align: right;
  }

  .experience {
    min-height: 780px;
  }

  .experience__media::after {
    background: linear-gradient(0deg, rgba(23, 23, 19, 0.86) 0%, rgba(23, 23, 19, 0.05) 72%);
  }

  .experience__card {
    top: auto;
    right: 15px;
    bottom: 15px;
    left: 15px;
    width: auto;
    padding: 38px 28px;
    transform: none;
  }

  .experience__card h2 {
    font-size: 3.25rem;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .dish-grid {
    display: flex;
    flex-direction: column;
  }

  .dish-card,
  .dish-card--wide {
    min-height: 460px;
  }

  .dish-card--wide {
    min-height: 400px;
  }

  .dish-card figcaption {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .menu-callout {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 0;
  }

  .menu-callout--cuisine {
    margin-top: -14px;
    margin-bottom: 28px;
  }

  .groups__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .groups__heading h2 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .groups__copy {
    padding-top: 0;
  }

  .groups__contact {
    padding-left: 20px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

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

  .contact-form .button {
    width: 100%;
  }

  .form-required {
    display: block;
    margin: 12px 0 0;
    text-align: center;
  }

  .gallery__heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  .gallery-grid {
    gap: 8px;
  }

  .reservation,
  .reservation__content {
    min-height: 680px;
  }

  .reservation__media::after {
    background: linear-gradient(0deg, rgba(12, 12, 10, 0.88), rgba(12, 12, 10, 0.18));
  }

  .reservation__content {
    justify-content: flex-end;
    padding-bottom: 65px;
  }

  .info-card {
    padding: 32px 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 46px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .footer-bottom p {
    margin: 0 0 10px;
  }

  .lightbox {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 8px;
    padding: 64px 8px 20px;
  }

  .lightbox__figure img {
    max-height: calc(100vh - 140px);
  }

  .lightbox__figure figcaption {
    align-items: flex-end;
    margin-top: 10px;
    padding-inline: 6px;
    line-height: 1.35;
  }

  .lightbox__arrow {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .legal-hero {
    padding: calc(var(--header-height) + 70px) 0 70px;
  }

  .legal-hero__inner h1 {
    font-size: 4rem;
  }

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

  .legal-data {
    grid-template-columns: 1fr;
  }

  .legal-data dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .legal-data dd {
    padding-top: 0;
  }
}

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

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