:root {
  --ink: #101010;
  --night: #161616;
  --paper: #f7f1e9;
  --cream: #ebd0b5;
  --muted: #a49b91;
  --line: rgba(235, 208, 181, 0.28);
  --olive: #69705b;
  --clay: #9a6b54;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--night);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.eyebrow,
.button,
.meta {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.serif,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1;
}

.site-header {
  --nav-height: 160px;
  --logo-width: min(480px, 32vw);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(22, 22, 22, 0.3);
  border-bottom: 0;
  transition: background-color 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled {
  --nav-height: 109px;
  --logo-width: min(284px, 19vw);
  background: rgba(22, 22, 22, 0.46);
}

.nav {
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: var(--nav-height);
  padding: 0 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: min-height 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: var(--logo-width);
  transform: translate(-50%, -50%);
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-logo {
  width: 100%;
  height: auto;
}

.nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 52px;
}

.nav-link {
  position: relative;
  color: #ffffff;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1;
  padding: 8px 0 12px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #ffffff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.94)),
    url("../images/home-hero-poster.JPG") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.94));
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.hero.page-hero {
  min-height: 54vh;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 120px 24px 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cream);
  font-size: 0.76rem;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 8.5rem);
  letter-spacing: 0;
}

.home-hero-title {
  font-size: clamp(2.66rem, 6.3vw, 5.95rem);
}

.home-hero-inner {
  display: grid;
  justify-items: center;
  opacity: 0;
  text-align: center;
  transform: translateY(-15%);
  animation: home-hero-reveal 2400ms ease 1s forwards;
}

.home-hero-separator {
  width: min(360px, 60vw);
  height: 1px;
  margin-top: 26px;
  background: rgba(247, 241, 233, 0.68);
}

.home-hero-subtitle {
  max-width: 720px;
  margin-top: 24px;
}

.home-hero-actions {
  justify-content: center;
}

.hero-copy {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(247, 241, 233, 0.82);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--cream);
  color: var(--night);
  background: var(--cream);
  border-radius: 999px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
}

.button.secondary {
  color: var(--paper);
  background: rgba(5, 5, 5, 0.34);
}

.section {
  padding: 86px 24px;
}

.section.alt {
  background: #161616;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.section-head p,
.lead {
  color: rgba(247, 241, 233, 0.74);
  margin: 0;
}

.home-intro {
  align-items: center;
  margin-bottom: 0;
}

.home-intro h2 {
  max-width: 560px;
}

.home-intro-copy {
  display: grid;
  align-self: center;
  padding-top: 0;
}

.home-intro-copy p {
  color: rgba(247, 241, 233, 0.74);
  margin: 0;
}

.home-intro-section {
  min-height: 105vh;
  display: flex;
  align-items: center;
}

.strati-definition {
  max-width: 760px;
  margin: 220px auto 90px;
  padding: 0 24px;
  color: #f5f2ed;
}

.definition-panel {
  max-width: 760px;
  margin: 0 auto;
}

.has-js .strati-definition {
  max-width: none;
  min-height: 122vh;
  margin: 0;
  padding: 0 24px;
}

.has-js .definition-panel {
  position: fixed;
  top: 24vh;
  left: 50%;
  z-index: 8;
  width: min(calc(100vw - 48px), 760px);
  transform: translateX(-50%);
  pointer-events: none;
}

.definition-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}

.definition-word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.definition-origin,
.definition-pronunciation {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  color: rgba(245, 242, 237, 0.58);
}

.definition-rule {
  height: 1px;
  background: rgba(245, 242, 237, 0.16);
  margin: 32px 0 18px;
}

.definition-type {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(245, 242, 237, 0.78);
  margin: 0 0 10px;
}

.definition-list {
  margin: 0;
  padding-left: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(245, 242, 237, 0.88);
}

.definition-list li {
  padding-left: 6px;
  margin-bottom: 6px;
}

.definition-indent-line {
  display: inline-block;
  margin-left: 50%;
  white-space: nowrap;
}

.definition-list li::marker {
  font-weight: 700;
  color: #f5f2ed;
}

.has-js .strati-definition[data-definition-reveal] .definition-reveal-line {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 1215ms ease,
    clip-path 1755ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--definition-delay, 0ms);
  will-change: opacity, clip-path;
}

.has-js .strati-definition.is-definition-active .definition-reveal-line {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.has-js .strati-definition.is-definition-exiting .definition-reveal-line {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition-duration: 300ms, 420ms;
  transition-delay: 0ms;
}

.definition-heading .definition-reveal-line {
  display: inline-block;
}

.definition-word {
  --definition-delay: 0ms;
}

.definition-origin {
  --definition-delay: 1000ms;
}

.definition-pronunciation {
  --definition-delay: 1200ms;
}

.definition-rule {
  --definition-delay: 1450ms;
}

.definition-type {
  --definition-delay: 1750ms;
}

.definition-list li:first-child {
  --definition-delay: 2050ms;
}

.definition-list li:nth-child(2) {
  --definition-delay: 2350ms;
}

.philosophy-sections {
  display: grid;
  gap: 200px;
  padding: 30px 24px 120px;
}

.philosophy-panel {
  width: min(100%, 1320px);
  min-height: 122vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 0.9fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: start;
  padding: 14vh 0 18vh;
}

.philosophy-text-right .philosophy-media {
  grid-column: 1;
}

.philosophy-text-left .philosophy-media {
  grid-column: 2;
}

.philosophy-media {
  aspect-ratio: 4 / 5;
  width: min(100%, 465px);
  justify-self: center;
  margin: 0;
  overflow: hidden;
  background: rgba(247, 241, 233, 0.06);
}

.has-js .philosophy-media {
  transform: translate3d(0, var(--philosophy-image-y, 0px), 0);
  will-change: transform;
}

.philosophy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-copy {
  max-width: 590px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-js .philosophy-copy {
  position: fixed;
  top: 24vh;
  z-index: 8;
  width: min(38vw, 590px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(var(--philosophy-enter-x, 18px));
  transition:
    opacity 650ms ease,
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
  will-change: opacity, transform;
  pointer-events: none;
  transition-delay: 0s, 0s, 650ms;
}

.philosophy-text-right .philosophy-copy {
  --philosophy-enter-x: 24px;
  left: calc(50vw + 70px);
}

.philosophy-text-left .philosophy-copy {
  --philosophy-enter-x: -24px;
  right: calc(50vw + 70px);
  text-align: right;
}

.has-js .philosophy-panel.is-philosophy-active .philosophy-copy {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.has-js .philosophy-panel.is-philosophy-exiting .philosophy-copy {
  opacity: 0;
  visibility: hidden;
  transform: translateX(var(--philosophy-enter-x, 18px));
  transition-delay: 0s, 0s, 650ms;
}

.philosophy-copy h2 {
  margin: 0 0 26px;
  color: #f5f2ed;
  font-size: clamp(2.7rem, 5vw, 5.8rem);
}

.philosophy-copy p {
  margin: 0;
  color: rgba(247, 241, 233, 0.74);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.85;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1900ms ease,
    transform 1900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

@keyframes home-hero-reveal {
  from {
    opacity: 0;
    transform: translateY(calc(-15% + 22px));
  }

  to {
    opacity: 1;
    transform: translateY(-15%);
  }
}

.content-stack {
  display: grid;
  gap: 42px;
}

.copy-block {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.copy-block h2,
.copy-block h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.copy-block p,
.copy-block li {
  color: rgba(247, 241, 233, 0.72);
  margin: 0 0 12px;
}

.copy-block ul {
  margin: 0;
  padding-left: 20px;
}

.story-opening {
  min-height: 100vh;
  padding: 210px 64px 38px;
  display: grid;
  gap: 34px;
  place-items: center;
}

.story-opening-title {
  max-width: none;
  margin: 0;
  color: #f5f2ed;
  font-size: clamp(1.25rem, 3vw, 3rem);
  text-align: center;
}

.story-opening-image {
  width: min(100%, 1320px);
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.story-opening-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center calc(20% - 20px);
}

.story-copy-section {
  padding: 18px 24px 120px;
}

.story-copy-block {
  width: min(100%, 920px);
  margin: 0 auto;
  text-align: center;
}

.story-copy-block h1 {
  max-width: none;
  margin: 0 0 32px;
  color: #f5f2ed;
  font-size: clamp(1.5rem, 3.5vw, 3.5rem);
}

.story-copy-block p {
  margin: 0 auto;
  max-width: 820px;
  color: rgba(247, 241, 233, 0.76);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.9;
}

.story-chef-pair {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 0 24px 120px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.story-chef-profile {
  display: grid;
  gap: 28px;
}

.story-chef-image {
  aspect-ratio: 6 / 5;
  margin: 0;
  overflow: hidden;
  background: rgba(247, 241, 233, 0.06);
}

.story-chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-chef-image-em img {
  object-position: center calc(50% + 50px);
}

.story-chef-image-joe img {
  object-position: top center;
}

.story-chef-bio {
  color: rgba(247, 241, 233, 0.76);
}

.story-chef-bio h2 {
  margin: 0 0 20px;
  color: #f5f2ed;
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
}

.story-chef-bio p {
  margin: 0 0 18px;
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.82;
}

.story-chef-bio p:last-child {
  margin-bottom: 0;
}

.expectation-section {
  display: grid;
  gap: 150px;
  padding: 210px 24px 130px;
}

.expectation-title {
  max-width: none;
  margin: 0 auto -20px;
  color: #f5f2ed;
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  text-align: center;
}

.expectation-block {
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 0.9fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
}

.expectation-media {
  aspect-ratio: 16 / 9;
  width: min(100%, 620px);
  justify-self: center;
  margin: 0;
  overflow: hidden;
  background: rgba(247, 241, 233, 0.06);
}

.expectation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expectation-media-arrive img {
  object-position: center 80%;
}

.expectation-copy {
  max-width: 590px;
}

.expectation-copy h2 {
  margin: 0 0 26px;
  color: #f5f2ed;
  font-size: clamp(2.16rem, 4vw, 4.64rem);
}

.expectation-copy p {
  margin: 0;
  color: rgba(247, 241, 233, 0.74);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.85;
}

.expectation-copy .button {
  margin-top: 30px;
}

.faq-section {
  padding: 0 24px 130px;
}

.faq-inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.faq-inner h2 {
  margin: 0;
  color: #f5f2ed;
  font-size: clamp(2.08rem, 4.64vw, 4.8rem);
  text-align: center;
}

.faq-subtitle {
  max-width: 620px;
  margin: 24px auto 58px;
  color: rgba(247, 241, 233, 0.72);
  text-align: center;
  font-size: clamp(0.96rem, 1vw, 1.08rem);
}

.faq-subtitle a,
.faq-item a {
  color: var(--cream);
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(247, 241, 233, 0.18);
}

.faq-item {
  border-bottom: 1px solid rgba(247, 241, 233, 0.18);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 25px 42px 25px 0;
  color: #f5f2ed;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.7vw, 2.7rem);
  line-height: 1.08;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  color: rgba(247, 241, 233, 0.68);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 740px;
  margin: -4px 0 28px;
  color: rgba(247, 241, 233, 0.74);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.85;
}

.menu-showcase {
  width: min(100%, 837px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 210px 64px 120px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.menu-card {
  position: relative;
  aspect-ratio: 3 / 5;
  margin: 0;
  overflow: hidden;
  background: rgba(247, 241, 233, 0.05);
}

.menu-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms ease;
}

.menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.42);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-card:hover::after,
.menu-card:focus-visible::after {
  opacity: 0.18;
}

.menu-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.04);
}

.menu-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: #f5f2ed;
}

.menu-card-overlay h1 {
  position: absolute;
  left: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  top: 50%;
  max-width: none;
  margin: 0;
  color: #f5f2ed;
  font-size: clamp(1.725rem, 2.53vw, 2.82rem);
  line-height: 0.95;
  text-align: center;
  transform: translateY(-50%);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), text-shadow 900ms ease;
}

.menu-card-overlay p {
  position: absolute;
  left: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  top: calc(50% + clamp(30px, 2.9vw, 44px));
  margin: 0;
  color: rgba(247, 241, 233, 0.78);
  font-size: clamp(0.9rem, 0.92vw, 1.06rem);
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 650ms ease, transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-card:hover .menu-card-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.menu-card:hover .menu-card-overlay h1 {
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.98), 0 2px 10px rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(0.96);
}

.menu-card:focus-visible {
  outline: 1px solid rgba(247, 241, 233, 0.78);
  outline-offset: 6px;
}

.menu-card:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.04);
}

.menu-card:focus-visible .menu-card-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.menu-card:focus-visible .menu-card-overlay h1 {
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.98), 0 2px 10px rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(0.96);
}

.menu-detail-page {
  padding: 210px 24px 120px;
}

.menu-detail-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.menu-detail-header {
  display: grid;
  justify-items: center;
  margin: 0 auto 44px;
  text-align: center;
}

.menu-detail-header h1 {
  max-width: none;
  margin: 0;
  color: #f5f2ed;
  font-size: clamp(2.8rem, 6vw, 6.5rem);
}

.menu-detail-rule {
  width: min(420px, 60vw);
  height: 1px;
  margin: 30px 0 26px;
  background: rgba(247, 241, 233, 0.28);
}

.menu-detail-price {
  margin: 0 0 18px;
  color: rgba(247, 241, 233, 0.84);
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  line-height: 1.4;
}

.menu-download-link {
  color: var(--cream);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-download-link:hover {
  color: #f5f2ed;
}

.menu-pdf-viewer {
  display: block;
  width: min(100%, 820px);
  aspect-ratio: 1 / 1.414;
  height: auto;
  margin: 0 auto;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.check-availability-page {
  padding: 210px 24px 120px;
}

.check-availability-inner {
  width: min(100%, 760px);
  margin: 0 auto;
}

.check-availability-inner h1 {
  max-width: none;
  margin: 0 0 46px;
  color: #f5f2ed;
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  text-align: center;
}

.booking-widget-frame {
  display: block;
  width: 100%;
  height: 1320px;
  min-height: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.booking-policy-block {
  width: min(100%, 760px);
  margin: 42px auto 0;
  padding-top: 34px;
  border-top: 1px solid rgba(247, 241, 233, 0.16);
  scroll-margin-top: 150px;
  text-align: center;
}

.booking-policy-block h2 {
  margin: 0 0 20px;
  color: #f5f2ed;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.booking-policy-block p {
  margin: 0 auto 18px;
  color: rgba(247, 241, 233, 0.72);
  font-size: clamp(0.96rem, 1vw, 1.06rem);
  line-height: 1.82;
}

.booking-policy-block p:last-child {
  margin-bottom: 0;
}

.booking-policy-block a {
  color: var(--cream);
}

.thanks-page {
  min-height: 100vh;
  padding: 230px 24px 130px;
  display: grid;
  place-items: center;
  gap: 52px;
  background: #161616;
}

.thanks-page-title {
  width: min(100%, 1180px);
  margin: 0;
  color: #f5f2ed;
  font-size: clamp(3.4rem, 8vw, 8rem);
  text-align: left;
}

.thanks-layout {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.78fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.thanks-card {
  width: 100%;
  padding: clamp(38px, 6vw, 76px) 0;
  border-top: 1px solid rgba(247, 241, 233, 0.16);
  border-bottom: 1px solid rgba(247, 241, 233, 0.16);
  text-align: left;
}

.thanks-card h1 {
  max-width: none;
  margin: 0 0 28px;
  color: #f5f2ed;
  font-size: clamp(3.4rem, 8vw, 8rem);
}

.thanks-card h2 {
  margin: 0 0 24px;
  color: #f5f2ed;
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  line-height: 1.08;
}

.thanks-card p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 0 20px;
  color: rgba(247, 241, 233, 0.76);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.85;
}

.thanks-reference {
  color: var(--cream) !important;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 0.88rem !important;
  letter-spacing: 0.04em;
}

.thanks-next {
  width: min(100%, 640px);
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(247, 241, 233, 0.16);
  text-align: center;
}

.thanks-next h2 {
  margin: 0 0 18px;
  color: #f5f2ed;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.thanks-next p {
  margin: 0;
  color: rgba(247, 241, 233, 0.76);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.85;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 34px;
}

.thanks-image {
  aspect-ratio: 5 / 4;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: rgba(247, 241, 233, 0.06);
}

.thanks-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.panel,
.menu-panel,
.step,
.legal-block {
  border-top: 1px solid var(--line);
  padding: 26px 0 0;
}

.panel h3,
.menu-panel h3,
.step h3,
.legal-block h3 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.panel p,
.menu-panel p,
.step p,
.legal-block p,
.legal-block li {
  color: rgba(247, 241, 233, 0.72);
  margin: 0;
}

.legal-page {
  padding: 210px 24px 120px;
}

.legal-page-inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.legal-page h1 {
  max-width: none;
  margin: 0 0 28px;
  color: #f5f2ed;
  font-size: clamp(2.2rem, 3.52vw, 3.52rem);
  text-align: center;
}

.legal-page-inner > p {
  max-width: 760px;
  margin: 0 auto 72px;
  color: rgba(247, 241, 233, 0.76);
  text-align: center;
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.85;
}

.legal-section {
  border-top: 1px solid rgba(247, 241, 233, 0.16);
  padding: 42px 0 0;
  margin-top: 42px;
}

.legal-section h2 {
  margin: 0 0 24px;
  color: #f5f2ed;
  font-size: clamp(1.28rem, 1.54vw, 1.52rem);
}

.legal-section h3 {
  margin: 32px 0 12px;
  color: rgba(247, 241, 233, 0.92);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.17rem, 1.28vw, 1.3rem);
  font-weight: 500;
}

.legal-section p {
  margin: 0 0 15px;
  color: rgba(247, 241, 233, 0.72);
  font-size: clamp(0.96rem, 1vw, 1.06rem);
  line-height: 1.82;
}

.legal-section ul,
.legal-section ol {
  margin: 0 0 20px;
  padding-left: 22px;
  color: rgba(247, 241, 233, 0.72);
  font-size: clamp(0.96rem, 1vw, 1.06rem);
  line-height: 1.82;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-section a {
  color: var(--cream);
}

.photo-carousel {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: #161616;
}

.carousel-track {
  display: flex;
  height: 100%;
  transform: translateX(0);
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(247, 241, 233, 0.34);
  border-radius: 50%;
  color: rgba(247, 241, 233, 0.82);
  background: rgba(5, 5, 5, 0.18);
  font-size: 36px;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease;
}

.carousel-arrow span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  transform: translate(-1px, -3px);
}

.carousel-arrow-next span {
  transform: translate(1px, -3px);
}

.carousel-arrow:hover {
  border-color: rgba(247, 241, 233, 0.72);
  color: #ffffff;
  background: rgba(5, 5, 5, 0.34);
}

.carousel-arrow-prev {
  left: 34px;
}

.carousel-arrow-next {
  right: 34px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.large-copy {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.08;
  margin: 0;
}

.testimonials-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 105vh;
  padding-top: 150px;
  padding-bottom: 110px;
  overflow: hidden;
  background: #161616;
}

.testimonials-section::before,
.testimonials-section::after {
  content: "";
  position: absolute;
  inset: 0;
}

.testimonials-section::before {
  background: url("../images/dessert_3.png") center / cover no-repeat;
  filter: grayscale(1);
  opacity: 0.44;
  transform: scale(1.03);
}

.testimonials-section::after {
  background: rgba(0, 0, 0, 0.54);
}

.testimonials-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 54px;
  width: 100%;
  text-align: center;
}

.testimonials-content .large-copy {
  max-width: 760px;
}

.review-marquee {
  position: relative;
  width: 80vw;
  max-width: 80vw;
  overflow: hidden;
  touch-action: pan-y;
}

.review-marquee::before,
.review-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: min(18vw, 280px);
  pointer-events: none;
}

.review-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.review-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.review-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: review-roll 58s linear infinite;
  cursor: grab;
  user-select: none;
  will-change: transform;
}

.review-marquee.is-review-interacted:hover .review-track,
.review-marquee.is-review-dragging .review-track,
.review-marquee.is-review-paused .review-track {
  animation-play-state: paused;
}

.review-marquee.is-review-dragging .review-track {
  cursor: grabbing;
}

.review-marquee:hover .review-nav,
.review-marquee:focus-within .review-nav {
  opacity: 1;
  pointer-events: auto;
}

.review-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(247, 241, 233, 0.38);
  border-radius: 50%;
  color: rgba(247, 241, 233, 0.86);
  background: rgba(5, 5, 5, 0.32);
  font-size: 34px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition:
    opacity 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.review-nav:hover {
  border-color: rgba(247, 241, 233, 0.78);
  color: #ffffff;
  background: rgba(5, 5, 5, 0.48);
}

.review-nav span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  transform: translate(-1px, -3px);
}

.review-nav-next span {
  transform: translate(1px, -3px);
}

.review-nav-prev {
  left: 18px;
}

.review-nav-next {
  right: 18px;
}

.review-card {
  display: grid;
  justify-items: center;
  flex: 0 0 259px;
  min-height: 343px;
  padding: 34px 26px 27px;
  background: rgba(255, 255, 255, 0.96);
  color: #101010;
  text-align: center;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #eeeeee;
  color: #c9c9c9;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 55px;
  line-height: 1;
}

.review-stars {
  margin-top: 24px;
  color: #f5c400;
  font-size: 23px;
  letter-spacing: 1px;
  line-height: 1;
}

.review-quote {
  max-width: 216px;
  margin: 24px 0 0;
  color: #050505;
  font-size: 0.96rem;
  line-height: 1.25;
}

.review-link {
  margin-top: 19px;
  color: #8b7b68;
  font-size: 0.88rem;
}

.review-link span {
  font-size: 1.4em;
  vertical-align: -0.05em;
}

.review-meta {
  margin: 24px 0 0;
  color: #2e3440;
  font-size: 0.7rem;
}

.review-platform-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(56vw, 760px);
}

.review-platform-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  padding: 12px 20px;
  border: 2px solid #ebd0b5;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.98);
  color: #050505;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: clamp(0.92rem, 1.05vw, 1.2rem);
  font-weight: 400;
  line-height: 1;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.review-platform-link:hover {
  border-color: #f2dcc6;
  background: #ffffff;
  transform: translateY(-2px);
}

.review-platform-icon {
  display: block;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}

.trustpilot-icon {
  overflow: hidden;
}

.trustpilot-icon img {
  width: 108px;
  max-width: none;
  height: 26px;
  object-fit: contain;
  object-position: left center;
}

.google-icon {
  width: 26px;
  height: 26px;
}

@keyframes review-roll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 10px));
  }
}

.meta {
  color: var(--cream);
  font-size: 0.72rem;
}

.menu-panel {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 24px;
  align-items: start;
}

.price {
  color: var(--cream);
  font-size: 1.35rem;
}

.contact-hero {
  min-height: 100vh;
  padding: 210px 24px 120px;
  display: grid;
  place-items: center;
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.42)),
    url("../images/wood.png") center / cover no-repeat;
}

.contact-card {
  --contact-card-pad: clamp(34px, 5vw, 62px);
  width: min(100%, 640px);
  padding: var(--contact-card-pad);
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  color: #101010;
  text-align: center;
}

.contact-card-panel {
  position: relative;
}

.contact-card-panel[hidden] {
  display: none;
}

.contact-card-panel.is-entering {
  animation: contact-panel-in-from-left 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-card-panel.is-leaving {
  position: absolute;
  inset: var(--contact-card-pad);
  animation: contact-panel-out-to-right 420ms ease both;
  pointer-events: none;
}

.contact-card.is-contact-reversing .contact-card-panel.is-entering {
  animation-name: contact-panel-in-from-right;
}

.contact-card.is-contact-reversing .contact-card-panel.is-leaving {
  animation-name: contact-panel-out-to-left;
}

@keyframes contact-panel-in-from-left {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contact-panel-in-from-right {
  from {
    opacity: 0;
    transform: translateX(34px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contact-panel-out-to-right {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(24px);
  }
}

@keyframes contact-panel-out-to-left {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-24px);
  }
}

.contact-card h1 {
  max-width: none;
  margin: 0 0 26px;
  color: #101010;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
}

.contact-card p {
  margin: 0 auto 22px;
  color: rgba(16, 16, 16, 0.76);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.78;
}

.contact-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 30px;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid rgba(16, 16, 16, 0.18);
  background: #101010;
  color: #ffffff;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 0.95rem;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.whatsapp-button svg {
  width: 68px;
  height: auto;
  flex: 0 0 auto;
  color: #25d366;
}

.whatsapp-button:hover {
  background: #1b1b1b;
  transform: translateY(-2px);
}

.contact-detail-link {
  color: rgba(16, 16, 16, 0.78);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 0.98rem;
}

.contact-detail-link:hover {
  color: #101010;
}

.contact-form-button {
  margin-top: 8px;
  padding: 12px 20px;
  border: 1px solid rgba(16, 16, 16, 0.28);
  background: transparent;
  color: #101010;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.contact-form-button:hover {
  background: #101010;
  color: #ffffff;
}

.contact-form-panel {
  display: grid;
  gap: 26px;
  text-align: center;
}

.contact-form-panel h1,
.contact-confirmation-panel h1 {
  margin-bottom: 24px;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
}

.contact-form-panel input,
.contact-form-panel textarea {
  width: 100%;
  border: 1px solid rgba(16, 16, 16, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: #101010;
  padding: 24px 28px;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.7vw, 1.65rem);
  line-height: 1.25;
}

.contact-form-panel textarea {
  min-height: 210px;
  resize: vertical;
}

.contact-form-panel input::placeholder,
.contact-form-panel textarea::placeholder {
  color: rgba(16, 16, 16, 0.7);
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
  outline: 1px solid rgba(16, 16, 16, 0.38);
  outline-offset: 2px;
}

.contact-form-panel input[aria-invalid="true"] {
  border-color: rgba(212, 0, 0, 0.68);
}

.contact-error {
  display: none;
  margin: -16px 0 6px;
  color: #d60000;
  text-align: left;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.35;
}

.contact-error.is-visible {
  display: block;
}

.contact-recaptcha-note {
  max-width: none;
  margin: 18px auto 28px;
  color: rgba(16, 16, 16, 0.64);
  font-size: clamp(0.84rem, 1vw, 1rem);
  line-height: 1.6;
}

.contact-recaptcha-note a {
  color: #8b7b68;
}

.contact-send-button {
  justify-self: center;
  min-width: 170px;
  padding: 18px 34px;
  border: 0;
  background: #ebd0b5;
  color: #101010;
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.contact-send-button:hover {
  background: #e2c29f;
  transform: translateY(-2px);
}

.contact-close-button {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.contact-close-button::before,
.contact-close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 4px;
  background: #101010;
  transform-origin: center;
}

.contact-close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-confirmation-panel {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.contact-confirmation-panel p {
  max-width: 560px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a {
  color: var(--cream);
}

.simple-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: rgba(247, 241, 233, 0.78);
  font-size: 0.9rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(247, 241, 233, 0.06);
  color: var(--paper);
  padding: 12px 13px;
  font: inherit;
}

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

.small-copy {
  color: rgba(247, 241, 233, 0.58);
  font-size: 0.82rem;
  margin: 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 44px 24px;
  background: #161616;
}

.footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-grid p {
  margin: 0;
  color: rgba(247, 241, 233, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  color: rgba(247, 241, 233, 0.68);
  font-size: 0.9rem;
}

@media (max-width: 1500px) {
  .site-header {
    --logo-width: min(390px, 30vw);
  }

  .site-header.is-scrolled {
    --nav-height: 107px;
    --logo-width: min(234px, 18vw);
  }

  .nav {
    padding: 0 42px;
  }

  .nav-group {
    gap: 34px;
  }

  .nav-link {
    font-size: 17px;
  }
}

@media (max-width: 1400px) {
  .philosophy-sections {
    gap: 118px;
    padding: 30px 24px 118px;
  }

  .philosophy-panel {
    min-height: auto;
    gap: clamp(34px, 5vw, 64px);
    align-items: center;
    padding: 0;
  }

  .has-js .philosophy-media {
    transform: none;
    will-change: auto;
  }

  .philosophy-copy {
    position: static;
    width: auto;
    max-width: 590px;
    pointer-events: auto;
  }

  .has-js .philosophy-copy,
  .has-js .philosophy-panel.is-philosophy-active .philosophy-copy,
  .has-js .philosophy-panel.is-philosophy-exiting .philosophy-copy {
    position: static;
    width: auto;
    max-width: 590px;
    opacity: 0;
    visibility: visible;
    transform: translateY(22px);
    transition:
      opacity 1100ms ease,
      transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .has-js .philosophy-panel.is-philosophy-simple-visible .philosophy-copy,
  .has-js .philosophy-panel.is-philosophy-active.is-philosophy-simple-visible .philosophy-copy {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .site-header {
    --nav-height: 96px;
    --logo-width: min(230px, 54vw);
  }

  .site-header.is-scrolled {
    --nav-height: 66px;
    --logo-width: min(170px, 40vw);
  }

  .nav {
    padding: 0 20px;
    justify-content: flex-end;
  }

  .brand {
    left: 50vw;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 24px 24px;
    background: #161616;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav-link {
    width: max-content;
    padding: 14px 0;
    font-size: 18px;
  }

  .section-head,
  .split,
  .grid.three,
  .grid.two,
  .menu-panel {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 20px;
  }

  .story-opening {
    min-height: auto;
    padding: 140px 20px 58px;
  }

  .contact-hero {
    min-height: auto;
    padding: 150px 20px 82px;
  }

  .contact-card {
    --contact-card-pad: 34px 24px;
    padding: 34px 24px;
  }

  .contact-card h1 {
    font-size: clamp(2.4rem, 14vw, 4.4rem);
  }

  .whatsapp-button {
    width: 100%;
    max-width: 340px;
  }

  .contact-form-panel {
    gap: 18px;
  }

  .contact-form-panel input,
  .contact-form-panel textarea {
    padding: 18px 16px;
    font-size: 1rem;
  }

  .contact-form-panel textarea {
    min-height: 160px;
  }

  .contact-close-button {
    top: -20px;
    right: -14px;
  }

  .story-chef-pair {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
    padding: 0 20px 76px;
    gap: 20px;
  }

  .expectation-section {
    gap: 72px;
    padding: 150px 20px 82px;
  }

  .expectation-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .expectation-media {
    order: 1;
    width: min(100%, 420px);
  }

  .expectation-copy {
    order: 2;
    max-width: none;
  }

  .menu-showcase {
    width: min(100%, 359px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 150px 20px 82px;
  }

  .menu-card-overlay h1 {
    font-size: clamp(1.725rem, 11.5vw, 2.82rem);
  }

  .menu-detail-page {
    padding: 150px 20px 82px;
  }

  .menu-detail-header h1 {
    font-size: clamp(2.4rem, 14vw, 4.4rem);
  }

  .menu-pdf-viewer {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .check-availability-page {
    padding: 150px 20px 82px;
  }

  .check-availability-inner h1 {
    font-size: clamp(2.4rem, 14vw, 4.4rem);
  }

  .booking-widget-frame {
    height: 1560px;
    min-height: 0;
  }

  .booking-policy-block {
    scroll-margin-top: 96px;
  }

  .thanks-page {
    min-height: auto;
    padding: 150px 20px 82px;
  }

  .thanks-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .thanks-card {
    text-align: center;
  }

  .thanks-card p:not(.eyebrow),
  .thanks-next {
    margin-left: auto;
    margin-right: auto;
  }

  .thanks-actions {
    justify-content: center;
  }

  .thanks-image {
    width: min(100%, 420px);
    justify-self: center;
  }

  .thanks-card h1 {
    font-size: clamp(2.8rem, 16vw, 5rem);
    text-align: left;
  }

  .thanks-page-title {
    width: 100%;
    font-size: clamp(2.8rem, 16vw, 5rem);
    text-align: left;
  }

  .thanks-card h2 {
    font-size: clamp(1.7rem, 9vw, 2.8rem);
  }

  .faq-section {
    padding: 0 20px 82px;
  }

  .legal-page {
    padding: 150px 20px 82px;
  }

  .strati-definition {
    margin: 150px auto 64px;
  }

  .has-js .strati-definition {
    max-width: 760px;
    min-height: auto;
    margin: 150px auto 64px;
    padding: 0 24px;
  }

  .has-js .definition-panel {
    position: static;
    width: 100%;
    max-width: 100%;
    transform: none;
    pointer-events: auto;
  }

  .definition-heading {
    gap: 10px;
  }

  .definition-list {
    padding-left: 22px;
  }

  .hero-inner {
    padding: 92px 20px 54px;
  }

  .photo-carousel {
    height: 78vh;
    min-height: 480px;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .carousel-arrow-prev {
    left: 16px;
  }

  .carousel-arrow-next {
    right: 16px;
  }

  .review-platform-links {
    grid-template-columns: 1fr;
    width: min(100%, 92vw);
    gap: 16px;
  }

  .review-platform-link {
    min-height: 90px;
    gap: 14px;
    padding: 18px 20px;
  }
}

@media (max-width: 760px) {
  .definition-indent-line {
    display: inline;
    margin-left: 0;
  }

  .philosophy-sections {
    gap: 58px;
    padding: 20px 20px 76px;
  }

  .philosophy-panel {
    min-height: auto;
    width: min(100%, 520px);
    max-width: 100%;
    gap: 28px;
    padding: 0;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .philosophy-media {
    grid-column: 1 !important;
    order: 1 !important;
    width: min(100%, 420px) !important;
    max-width: 100%;
    justify-self: center !important;
    transform: none !important;
  }

  .philosophy-copy {
    grid-column: 1 !important;
    order: 2 !important;
    justify-self: stretch !important;
    align-self: auto !important;
    text-align: left !important;
  }

  .philosophy-copy,
  .has-js .philosophy-copy,
  .has-js .philosophy-panel.is-philosophy-active .philosophy-copy,
  .has-js .philosophy-panel.is-philosophy-exiting .philosophy-copy {
    max-width: 100% !important;
    min-width: 0 !important;
    position: static !important;
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
  }

  .philosophy-text-right .philosophy-copy,
  .philosophy-text-left .philosophy-copy {
    left: auto !important;
    right: auto !important;
    text-align: left !important;
  }

  .philosophy-copy h2,
  .philosophy-copy p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .philosophy-copy h2 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .nav,
  .brand,
  .reveal-on-scroll,
  .home-hero-inner {
    animation: none;
    transition: none;
  }

  .home-hero-inner,
  .reveal-on-scroll {
    opacity: 1;
    transform: translateY(0);
  }

  .has-js .strati-definition[data-definition-reveal] .definition-reveal-line,
  .has-js .strati-definition.is-definition-active .definition-reveal-line {
    opacity: 1;
    clip-path: none;
    transition: none;
  }

  .philosophy-copy,
  .has-js .philosophy-copy,
  .has-js .philosophy-panel.is-philosophy-active .philosophy-copy,
  .has-js .philosophy-panel.is-philosophy-exiting .philosophy-copy {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .has-js .philosophy-media {
    transform: none;
  }

  .home-hero-inner {
    transform: translateY(-15%);
  }
}
