@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Italiana";
  src: url("assets/fonts/italiana-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #08131f;
  --ink-deep: #050c14;
  --paper: #f2eee6;
  --paper-soft: #e8e2d7;
  --white: #fffdf8;
  --gold: #c69b5b;
  --gold-pale: #e7d2ad;
  --wine: #5c2331;
  --muted: #9ea7ae;
  --line-dark: rgba(8, 19, 31, 0.17);
  --line-light: rgba(255, 255, 255, 0.15);
  --display: "Italiana", "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 5rem);
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--ink-deep);
  background: var(--gold-pale);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 5.75rem;
  padding: 0 var(--page-pad);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: min-height 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  min-height: 4.75rem;
  background: rgba(5, 12, 20, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.75rem;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  aspect-ratio: 1;
  border: 1px solid rgba(231, 210, 173, 0.45);
  border-radius: 50%;
}

.brand-mark::before {
  content: "";
  width: 1.1rem;
  aspect-ratio: 1;
  background: var(--gold-pale);
  border-radius: 50%;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 0.92rem;
  width: 1.05rem;
  aspect-ratio: 1;
  background: var(--ink-deep);
  border-radius: 50%;
}

.brand-mark.large {
  width: 4.5rem;
}

.brand-mark.large::before {
  width: 2rem;
}

.brand-mark.large::after {
  left: 1.7rem;
  width: 2rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.045em;
}

.brand-copy small {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.63rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(1.25rem, 2.3vw, 2.8rem);
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold-pale);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.5rem;
  color: var(--ink-deep);
  background: var(--gold-pale);
  border: 1px solid var(--gold-pale);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.8rem;
  padding: 0.65rem 1.2rem;
  font-size: 0.68rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.3rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 0.3s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.dark-link {
  color: var(--ink);
  border-bottom-color: rgba(8, 19, 31, 0.35);
}

.hero {
  position: relative;
  display: flex;
  min-height: max(48rem, 100svh);
  align-items: center;
  padding: 8rem var(--page-pad) 6rem;
  color: var(--white);
  background: var(--ink-deep);
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-wash {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: hero-in 1.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

.hero-wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 10, 17, 0.94) 0%, rgba(4, 10, 17, 0.74) 32%, rgba(4, 10, 17, 0.17) 68%, rgba(4, 10, 17, 0.28) 100%),
    linear-gradient(0deg, rgba(4, 10, 17, 0.64) 0%, transparent 45%);
}

.orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.orb-one {
  top: 13%;
  left: -13rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(231, 210, 173, 0.11);
  box-shadow: inset -4rem 0 7rem rgba(231, 210, 173, 0.03);
}

.hero-content {
  width: min(54rem, 63vw);
  padding-top: 1rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.5rem;
  color: var(--gold-pale);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 2.2rem;
  height: 1px;
  background: currentColor;
}

.eyebrow.dark {
  color: #8e6738;
}

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

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

h1 {
  max-width: 54rem;
  margin-bottom: 2rem;
  font-size: clamp(4.5rem, 8.6vw, 9.8rem);
}

h1 em,
h2 em {
  color: var(--gold-pale);
  font-weight: 400;
}

h2 em {
  color: #9c6e37;
}

.dark-section h2 em,
.reserve h2 em {
  color: var(--gold-pale);
}

.hero-lede {
  max-width: 32rem;
  margin-bottom: 2.3rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.hero-meta {
  position: absolute;
  right: var(--page-pad);
  bottom: 3.5rem;
  display: flex;
  align-items: stretch;
}

.hero-meta div {
  min-width: 8.2rem;
  padding: 0 1.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-meta strong,
.hero-meta span {
  display: block;
}

.hero-meta strong {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
}

.hero-meta span {
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 3.25rem;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 3.2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
  overflow: hidden;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  width: 45%;
  height: 100%;
  background: var(--gold-pale);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  from { transform: translateX(-110%); }
  to { transform: translateX(240%); }
}

.ticker {
  padding: 1.2rem 0;
  color: var(--paper);
  background: var(--wine);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker span {
  padding: 0 2.7rem;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.ticker i {
  color: var(--gold-pale);
  font-size: 0.7rem;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(4rem, 7vw, 7rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(8, 19, 31, 0.6);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label span {
  color: #996e3e;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.48);
  border-bottom-color: var(--line-light);
}

.section-label.light span {
  color: var(--gold-pale);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
}

.story h2,
.menu h2,
.experiences h2,
.reserve h2,
.visit h2 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 6.3vw, 7.5rem);
}

.story-copy .lead {
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.35;
}

.story-copy > p:not(.lead) {
  color: rgba(8, 19, 31, 0.66);
}

.story-copy .text-link {
  margin-top: 1rem;
}

.story-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(15rem, 0.7fr);
  gap: 1.4rem;
  align-items: stretch;
  margin-top: clamp(5rem, 9vw, 9rem);
}

.image-card {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.image-card img {
  height: 100%;
  min-height: 33rem;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-card:hover img {
  transform: scale(1.025);
}

.image-card figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  justify-content: space-between;
  padding: 1.1rem 1.3rem;
  color: var(--white);
  background: rgba(5, 12, 20, 0.55);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-note {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 33rem;
  padding: 2.5rem;
  color: var(--gold-pale);
  background: var(--ink);
}

.story-note p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.6vw, 2.6rem);
  line-height: 1.2;
}

.crescent {
  position: relative;
  display: block;
  width: 7rem;
  aspect-ratio: 1;
  border: 1px solid rgba(231, 210, 173, 0.3);
  border-radius: 50%;
}

.crescent::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.45rem;
  width: 3.6rem;
  aspect-ratio: 1;
  background: var(--gold-pale);
  border-radius: 50%;
}

.crescent::after {
  content: "";
  position: absolute;
  top: 1.05rem;
  left: 2.55rem;
  width: 3.65rem;
  aspect-ratio: 1;
  background: var(--ink);
  border-radius: 50%;
}

.dark-section {
  color: var(--white);
  background: var(--ink-deep);
  overflow: hidden;
}

.orb-two {
  top: 8rem;
  right: -17rem;
  width: 38rem;
  aspect-ratio: 1;
  border: 1px solid rgba(231, 210, 173, 0.1);
  box-shadow: inset 8rem 0 10rem rgba(198, 155, 91, 0.025);
}

.menu-intro {
  display: grid;
  grid-template-columns: 1.3fr 0.55fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: end;
}

.menu-intro > p {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.6);
}

.menu-tabs {
  display: flex;
  gap: 0;
  margin: clamp(4rem, 7vw, 7rem) 0 3rem;
  border-bottom: 1px solid var(--line-light);
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  position: relative;
  flex: 0 0 auto;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  color: rgba(255, 255, 255, 0.44);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-tab:first-child {
  padding-left: 0;
}

.menu-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--gold-pale);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.menu-tab.active {
  color: var(--white);
}

.menu-tab.active::after {
  transform: scaleX(1);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(25rem, 1.15fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.menu-image {
  position: relative;
  margin: 0;
}

.menu-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 1rem;
  border: 1px solid rgba(231, 210, 173, 0.3);
  pointer-events: none;
}

.menu-image img {
  height: min(66vw, 44rem);
  object-fit: cover;
}

.menu-image figcaption {
  position: absolute;
  z-index: 2;
  right: 2.2rem;
  bottom: 2.2rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.4rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem 2rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  animation: menu-item-in 0.55s both;
}

.menu-item:nth-child(2) { animation-delay: 0.06s; }
.menu-item:nth-child(3) { animation-delay: 0.12s; }
.menu-item:nth-child(4) { animation-delay: 0.18s; }

@keyframes menu-item-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 400;
}

.menu-item p {
  grid-column: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
}

.menu-item span {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: start;
  padding-top: 0.25rem;
  color: var(--gold-pale);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 3rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
}

.menu-foot p {
  margin: 0;
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.button-outline:hover {
  color: var(--ink);
  background: var(--gold-pale);
  border-color: var(--gold-pale);
}

.experiences-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(22rem, 0.7fr);
  gap: 1.4rem;
}

.experience-main {
  position: relative;
  min-height: 45rem;
  overflow: hidden;
}

.experience-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 12, 20, 0.83), transparent 70%);
}

.experience-main img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.experience-main:hover img {
  transform: scale(1.025);
}

.experience-overlay {
  position: absolute;
  z-index: 2;
  right: 3rem;
  bottom: 3rem;
  left: 3rem;
  color: var(--white);
}

.experience-overlay > p {
  margin-bottom: 0.7rem;
  color: var(--gold-pale);
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-overlay h3 {
  margin: 0 0 1.8rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 1.03;
}

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

.experience-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1.4rem;
}

.experience-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: start;
  padding: 2.2rem;
  color: var(--paper);
  background: var(--ink);
  transition: background 0.35s ease, transform 0.35s ease;
}

.experience-card:hover {
  background: #0e2031;
  transform: translateX(-5px);
}

.experience-card > span {
  color: var(--gold-pale);
  font-size: 0.66rem;
}

.experience-card h3 {
  margin-bottom: 0.55rem;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
}

.experience-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.83rem;
}

.experience-card > a {
  display: grid;
  place-items: center;
  width: 2.3rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition: color 0.3s ease, background 0.3s ease;
}

.experience-card:hover > a {
  color: var(--ink);
  background: var(--gold-pale);
}

.quote-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 43rem;
  padding: 7rem var(--page-pad);
  color: var(--paper);
  background: var(--wine);
  overflow: hidden;
}

.quote-moon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(40rem, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(231, 210, 173, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.quote-moon::before {
  content: "";
  position: absolute;
  top: 17%;
  left: 17%;
  width: 66%;
  aspect-ratio: 1;
  border: 1px solid rgba(231, 210, 173, 0.1);
  border-radius: 50%;
}

.quote-section blockquote {
  position: relative;
  z-index: 1;
  max-width: 67rem;
  margin: 0;
  text-align: center;
}

.quote-section blockquote > span {
  display: block;
  height: 3rem;
  color: var(--gold-pale);
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
}

.quote-section blockquote p {
  margin: 1.2rem 0 2rem;
  font-family: var(--display);
  font-size: clamp(2.15rem, 4.7vw, 5rem);
  line-height: 1.1;
}

.quote-section blockquote footer {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.reserve {
  color: var(--white);
  background: var(--ink-deep);
}

.reserve-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(30rem, 1.1fr);
  gap: clamp(4rem, 10vw, 11rem);
}

.reserve-copy > p:not(.eyebrow) {
  max-width: 28rem;
  margin: 2rem 0 3rem;
  color: rgba(255, 255, 255, 0.58);
}

.reserve-contact {
  display: grid;
  gap: 1.2rem;
}

.reserve-contact a {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: 1.5rem;
}

.reserve-contact span {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--sans);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reserve-form {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  color: var(--ink);
  background: var(--paper);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.reserve-form label {
  display: block;
  margin-bottom: 1.4rem;
  color: rgba(8, 19, 31, 0.55);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.85rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(8, 19, 31, 0.22);
  border-radius: 0;
  outline: none;
  font-size: 0.94rem;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.25s ease;
}

.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
  border-color: var(--wine);
}

.reserve-form textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 0.8rem;
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.form-submit:hover {
  color: var(--ink);
  background: var(--gold-pale);
  border-color: var(--gold-pale);
}

.form-note {
  margin: 1rem 0 0;
  color: rgba(8, 19, 31, 0.5);
  font-size: 0.7rem;
  text-align: center;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(4rem, 10vw, 11rem);
  align-items: end;
}

.visit .address {
  margin: 2.5rem 0;
  color: rgba(8, 19, 31, 0.64);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  line-height: 1.35;
}

.visit-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

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

.visit-details {
  border-top: 1px solid var(--line-dark);
}

.visit-details div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.visit-details span {
  color: rgba(8, 19, 31, 0.46);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-details strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
}

.site-footer {
  padding: clamp(5rem, 8vw, 8rem) var(--page-pad) 2rem;
  color: var(--white);
  background: var(--ink-deep);
}

.footer-brand {
  padding-bottom: clamp(4rem, 7vw, 7rem);
  text-align: center;
}

.footer-brand .brand-mark {
  margin-bottom: 1.5rem;
}

.footer-brand h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 1;
}

.footer-brand p {
  margin: 0.7rem 0 0;
  color: var(--gold-pale);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line-light);
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-links span {
  margin-bottom: 0.5rem;
  color: var(--gold-pale);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  transition: color 0.25s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  color: rgba(255, 255, 255, 0.34);
  border-top: 1px solid var(--line-light);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.mobile-reserve {
  display: none;
}

.toast {
  position: fixed;
  z-index: 2000;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 24rem;
  padding: 1rem 1.25rem;
  color: var(--white);
  background: var(--wine);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(30rem, 86vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.7rem;
    padding: 7rem 3rem;
    color: var(--white);
    background: var(--ink-deep);
    box-shadow: -2rem 0 5rem rgba(0, 0, 0, 0.25);
    transform: translateX(110%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav a {
    font-family: var(--display);
    font-size: 2.1rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-open .site-nav {
    transform: translateX(0);
  }

  .nav-toggle {
    position: relative;
    z-index: 1001;
    display: grid;
    justify-self: end;
    width: 2.9rem;
    height: 2.9rem;
    place-content: center;
    gap: 0.42rem;
    padding: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 1.1rem;
    height: 1px;
    background: currentColor;
    transition: transform 0.3s ease;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(0.23rem) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    transform: translateY(-0.23rem) rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    width: min(48rem, 76vw);
  }

  .hero-meta {
    display: none;
  }

  .story-grid,
  .menu-intro,
  .reserve-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .story-copy,
  .menu-intro > p,
  .reserve-copy > p:not(.eyebrow) {
    max-width: 40rem;
  }

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

  .experience-stack {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
  }

  .experience-card {
    grid-template-columns: auto 1fr;
  }

  .experience-card > a {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 1.25rem;
  }

  html {
    scroll-padding-top: 4.5rem;
  }

  body {
    padding-bottom: 4.2rem;
  }

  .site-header,
  .site-header.scrolled {
    min-height: 4.5rem;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy small {
    font-size: 0.55rem;
  }

  .brand-mark {
    width: 2rem;
  }

  .brand-mark::before {
    width: 0.9rem;
  }

  .brand-mark::after {
    left: 0.78rem;
    width: 0.9rem;
  }

  .hero {
    min-height: 47rem;
    align-items: flex-end;
    padding-top: 7rem;
    padding-bottom: 7.5rem;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, rgba(4, 10, 17, 0.93) 0%, rgba(4, 10, 17, 0.55) 58%, rgba(4, 10, 17, 0.22) 100%),
      linear-gradient(90deg, rgba(4, 10, 17, 0.5), transparent);
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    font-size: clamp(3.7rem, 17vw, 5.2rem);
  }

  .hero-lede {
    max-width: 27rem;
    font-size: 0.95rem;
  }

  .hero-actions {
    gap: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .section-label {
    margin-bottom: 3.5rem;
  }

  .story h2,
  .menu h2,
  .experiences h2,
  .reserve h2,
  .visit h2 {
    font-size: clamp(3.2rem, 14vw, 4.4rem);
  }

  .story-grid {
    gap: 2.5rem;
  }

  .story-visuals {
    grid-template-columns: 1fr;
    margin-top: 4.5rem;
  }

  .image-card img {
    min-height: 26rem;
  }

  .story-note {
    min-height: 22rem;
  }

  .menu-tabs {
    margin-top: 3.5rem;
  }

  .menu-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .menu-image img {
    height: 33rem;
  }

  .menu-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .experiences-head {
    margin-bottom: 3.5rem;
  }

  .experience-main {
    min-height: 38rem;
  }

  .experience-overlay {
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .experience-stack {
    grid-template-columns: 1fr;
  }

  .experience-card {
    padding: 1.6rem;
  }

  .quote-section {
    min-height: 35rem;
  }

  .reserve-grid {
    gap: 3.5rem;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .visit-grid {
    gap: 3.5rem;
  }

  .visit-details div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .mobile-reserve {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.2rem;
    padding: 0 1.4rem;
    color: var(--ink);
    background: var(--gold-pale);
    border-top: 1px solid rgba(8, 19, 31, 0.1);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
