:root {
  --ink: #263025;
  --olive: #344230;
  --olive-deep: #202a20;
  --moss: #72806a;
  --terracotta: #b9684f;
  --terracotta-dark: #8f4938;
  --cream: #f4eee3;
  --paper: #fbf7ef;
  --sand: #dfd2bd;
  --line: rgba(38, 48, 37, 0.2);
  --white: #fffdf8;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --page: min(1200px, calc(100% - 48px));
  --radius: 22px;
  --shadow: 0 24px 60px rgba(30, 38, 29, 0.13);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

address {
  font-style: normal;
}

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 11vw, 156px);
}

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

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

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

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  letter-spacing: -0.05em;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 20px;
  left: 50%;
  width: min(1240px, calc(100% - 32px));
  color: var(--white);
  transform: translateX(-50%);
  transition: color 240ms ease, top 240ms ease;
}

.nav-shell {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 100px;
  background: rgba(26, 33, 25, 0.2);
  box-shadow: 0 15px 45px rgba(15, 20, 14, 0.12);
  backdrop-filter: blur(13px);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  color: var(--ink);
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(38, 48, 37, 0.12);
  background: rgba(251, 247, 239, 0.93);
  box-shadow: 0 12px 36px rgba(30, 38, 29, 0.13);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 1.26rem;
  letter-spacing: -0.025em;
}

.wordmark-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: italic;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 3px;
}

.primary-navigation a {
  padding: 12px 15px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-navigation a:not(.nav-reserve):hover,
.primary-navigation a:not(.nav-reserve):focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .primary-navigation a:not(.nav-reserve):hover,
.site-header.is-scrolled .primary-navigation a:not(.nav-reserve):focus-visible {
  background: rgba(38, 48, 37, 0.08);
}

.primary-navigation .nav-reserve {
  padding: 14px 21px;
  color: var(--olive-deep);
  background: var(--cream);
}

.site-header.is-scrolled .primary-navigation .nav-reserve {
  color: var(--white);
  background: var(--olive);
}

.primary-navigation .nav-reserve:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

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

.hero-image,
.hero-wash {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("./assets/hero.jpg");
  background-position: center 44%;
  background-size: cover;
  transform: scale(1.025);
  animation: hero-arrive 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(21, 29, 20, 0.83) 0%, rgba(21, 29, 20, 0.43) 52%, rgba(21, 29, 20, 0.12) 80%),
    linear-gradient(0deg, rgba(15, 22, 15, 0.62) 0%, transparent 49%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(100px, 13vh, 145px);
}

.hero-eyebrow {
  padding-left: 42px;
  opacity: 0;
  animation: rise-in 800ms 260ms ease forwards;
}

.hero-eyebrow::before {
  position: absolute;
  width: 28px;
  height: 1px;
  margin-top: 0.45em;
  margin-left: -42px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 970px;
  margin: 0;
  font-size: clamp(4rem, 9.5vw, 9.2rem);
  letter-spacing: -0.065em;
  text-shadow: 0 3px 25px rgba(17, 22, 16, 0.23);
  opacity: 0;
  animation: rise-in 920ms 390ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero h1 em {
  color: #e8c2ac;
  font-weight: 400;
}

.hero-intro {
  max-width: 610px;
  margin: 30px 0 0;
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  line-height: 1.55;
  opacity: 0;
  animation: rise-in 800ms 560ms ease forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
  opacity: 0;
  animation: rise-in 800ms 700ms ease forwards;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(20, 27, 19, 0.17);
}

.button-light {
  color: var(--olive-deep);
  background: var(--cream);
}

.button-light:hover {
  background: var(--white);
}

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

.button-dark:hover {
  background: var(--terracotta-dark);
}

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

.button-outline:hover {
  color: var(--olive-deep);
  background: var(--cream);
  border-color: var(--cream);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: gap 200ms ease, color 200ms ease;
}

.text-link:hover {
  gap: 17px;
  color: var(--terracotta-dark);
}

.text-link-light:hover {
  color: #f0c4ae;
}

.service-note {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 58px);
  bottom: 34px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 15px;
  padding: 17px 21px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background: rgba(29, 37, 27, 0.38);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-note i {
  grid-column: 1 / -1;
  height: 1px;
  margin-block: 5px;
  background: rgba(255, 255, 255, 0.25);
}

.service-note span {
  opacity: 0.72;
}

.service-note strong {
  font-weight: 700;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 50%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: translateX(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-scroll:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-50%) translateY(4px);
}

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

.welcome-grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 210px;
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.section-label p {
  margin: 0;
}

.welcome-copy h2 {
  max-width: 760px;
}

.welcome-copy > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.welcome-note {
  padding-top: 10px;
  text-align: center;
}

.roundel {
  display: grid;
  width: 116px;
  height: 116px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid var(--olive);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 3.4rem;
  font-style: italic;
  transform: rotate(-8deg);
  transition: color 300ms ease, background 300ms ease, transform 300ms ease;
}

.welcome-note:hover .roundel {
  color: var(--cream);
  background: var(--olive);
  transform: rotate(0deg) scale(1.04);
}

.welcome-note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.35;
}

.menu-section {
  color: var(--cream);
  background: var(--olive-deep);
}

.menu-heading,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 65px;
}

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

.menu-heading > p {
  max-width: 440px;
  margin: 0 0 8px auto;
  color: rgba(244, 238, 227, 0.7);
}

.menu-browser {
  overflow: hidden;
  border: 1px solid rgba(244, 238, 227, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.menu-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(244, 238, 227, 0.2);
}

.menu-tab {
  position: relative;
  min-height: 77px;
  border: 0;
  border-right: 1px solid rgba(244, 238, 227, 0.2);
  color: rgba(244, 238, 227, 0.58);
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  transition: color 200ms ease, background 200ms ease;
}

.menu-tab:last-child {
  border-right: 0;
}

.menu-tab::after {
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 3px;
  background: var(--terracotta);
  content: "";
  transition: right 240ms ease, left 240ms ease;
}

.menu-tab:hover,
.menu-tab.is-active {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.045);
}

.menu-tab.is-active::after {
  right: 24%;
  left: 24%;
}

.menu-panel {
  padding: clamp(28px, 5vw, 66px);
}

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

.menu-panel.is-active {
  animation: menu-arrive 400ms ease both;
}

.menu-intro {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  color: rgba(244, 238, 227, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-intro p {
  margin: 0;
  color: var(--terracotta);
  font-weight: 800;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 6vw, 90px);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  min-height: 116px;
  align-items: center;
  padding-block: 22px;
  border-top: 1px solid rgba(244, 238, 227, 0.14);
  transition: padding 200ms ease, border-color 200ms ease;
}

.menu-item:hover {
  padding-inline: 10px;
  border-color: var(--terracotta);
}

.menu-item h3 {
  margin-bottom: 7px;
  font-size: 1.34rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.menu-item p {
  margin-bottom: 0;
  color: rgba(244, 238, 227, 0.56);
  font-size: 0.84rem;
  line-height: 1.45;
}

.menu-item strong {
  align-self: start;
  padding-top: 4px;
  color: #ddb39b;
  font-family: var(--serif);
  font-size: 1.07rem;
  font-weight: 400;
}

.menu-item strong::after {
  margin-left: 5px;
  color: rgba(244, 238, 227, 0.38);
  font-family: var(--sans);
  font-size: 0.56rem;
  content: "OMR";
}

.menu-currency {
  margin: 24px 0 0;
  color: rgba(244, 238, 227, 0.4);
  font-size: 0.7rem;
}

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

.story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.story-visual {
  position: relative;
  min-height: 560px;
}

.story-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(390px, 88%);
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  padding: 43px;
  color: var(--cream);
  border-radius: 190px 190px 26px 26px;
  background: var(--terracotta-dark);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(-3deg);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-visual:hover .story-card {
  transform: translate(-50%, -50%) rotate(0deg) scale(1.02);
}

.story-card span,
.story-card p {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.story-card p {
  margin: 0;
  color: rgba(244, 238, 227, 0.68);
}

.story-shape {
  position: absolute;
  border-radius: 50%;
}

.story-shape-one {
  top: 5%;
  left: -7%;
  width: 240px;
  height: 240px;
  border: 1px solid var(--moss);
}

.story-shape-two {
  right: -10%;
  bottom: 5%;
  width: 310px;
  height: 310px;
  background: rgba(114, 128, 106, 0.18);
}

.story-copy {
  max-width: 600px;
}

.story-copy > p:not(.eyebrow) {
  max-width: 560px;
}

.story-copy .text-link {
  margin-top: 17px;
}

.reservation-section {
  color: var(--ink);
  background: var(--sand);
}

.reservation-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.reservation-copy {
  position: sticky;
  top: 130px;
}

.reservation-copy h2 {
  font-size: clamp(3.2rem, 6.8vw, 6.1rem);
}

.reservation-copy > p:not(.eyebrow) {
  max-width: 460px;
}

.reservation-copy a {
  border-bottom: 1px solid currentColor;
}

.reservation-fineprint {
  display: flex;
  gap: 13px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(38, 48, 37, 0.2);
  font-size: 0.75rem;
  line-height: 1.5;
}

.reservation-fineprint span {
  color: var(--terracotta-dark);
}

.reservation-fineprint p {
  margin: 0;
}

.reservation-card {
  min-height: 650px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.reservation-form {
  display: grid;
  gap: 24px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  min-width: 0;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field label span {
  color: rgba(38, 48, 37, 0.5);
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(38, 48, 37, 0.32);
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color 180ms ease, background 180ms ease;
}

.field input,
.field select {
  min-height: 52px;
}

.field textarea {
  min-height: 70px;
  padding-block: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--terracotta-dark);
}

.field [aria-invalid="true"] {
  border-color: #a72e23;
  background: rgba(167, 46, 35, 0.04);
}

.field-error {
  display: block;
  min-height: 18px;
  padding-top: 4px;
  color: #8a251c;
  font-size: 0.68rem;
  line-height: 1.3;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
  border: 0;
}

.form-status {
  min-height: 20px;
  margin: -10px 0 0;
  color: #8a251c;
  font-size: 0.75rem;
  text-align: center;
}

.reservation-success {
  display: grid;
  min-height: 530px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.reservation-success[hidden] {
  display: none;
}

.success-mark {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  place-items: center;
  color: var(--paper);
  border-radius: 50%;
  background: var(--olive);
  font-size: 1.6rem;
}

.reservation-success h3 {
  max-width: 460px;
  margin: 0 auto 22px;
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

.reservation-success > p:not(.eyebrow) {
  max-width: 460px;
}

.success-note {
  padding: 17px;
  border-radius: 10px;
  background: rgba(52, 66, 48, 0.07);
  font-size: 0.74rem;
}

.text-button {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.reviews-heading {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 65px;
}

.reviews-heading h2 {
  max-width: 800px;
}

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

.review-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: transparent;
  transition: color 280ms ease, background 280ms ease, border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}

.review-card:hover {
  border-color: var(--olive);
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(30, 38, 29, 0.1);
}

.review-card-featured {
  color: var(--cream);
  border-color: var(--olive);
  background: var(--olive);
  transform: translateY(-20px);
}

.review-card-featured:hover {
  color: var(--cream);
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-28px);
}

.review-stars {
  color: var(--terracotta);
  font-size: 0.73rem;
  letter-spacing: 0.2em;
}

.review-card-featured .review-stars {
  color: #efc2a9;
}

.review-card blockquote {
  margin: 50px 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.review-card figcaption {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.review-card figcaption span {
  margin-top: 3px;
  opacity: 0.58;
}

.review-disclaimer {
  margin: 25px 0 0;
  color: rgba(38, 48, 37, 0.55);
  font-size: 0.68rem;
  text-align: right;
}

.private-section {
  padding-bottom: clamp(88px, 11vw, 156px);
  background: var(--paper);
}

.private-panel {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
  padding: clamp(48px, 8vw, 94px);
  color: var(--white);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 20%, rgba(185, 104, 79, 0.32), transparent 26%),
    var(--terracotta-dark);
  box-shadow: var(--shadow);
}

.private-panel h2 {
  margin-bottom: 0;
}

.private-panel > div:last-child {
  justify-self: end;
  max-width: 430px;
}

.private-panel > div:last-child p {
  color: rgba(255, 255, 255, 0.78);
}

.private-panel .button {
  margin-top: 18px;
}

.location-section {
  color: var(--cream);
  background: var(--olive-deep);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 22px clamp(40px, 7vw, 100px);
  align-items: stretch;
}

.location-copy {
  grid-row: span 2;
  padding-block: 20px;
}

.location-copy h2 {
  font-size: clamp(3.1rem, 5.7vw, 5.4rem);
}

.location-copy address {
  margin: 45px 0 5px;
  color: rgba(244, 238, 227, 0.76);
  font-size: 1rem;
  line-height: 1.7;
}

.concept-address {
  margin-bottom: 30px;
  color: rgba(244, 238, 227, 0.39);
  font-size: 0.67rem;
}

.location-copy .text-link:hover {
  color: #efc2a9;
}

.map-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d8d0be;
  color: var(--ink);
}

.map-card::before,
.map-card::after {
  position: absolute;
  border: 1px solid rgba(52, 66, 48, 0.17);
  border-radius: 50%;
  content: "";
}

.map-card::before {
  top: -80px;
  right: -30px;
  width: 300px;
  height: 300px;
}

.map-card::after {
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
}

.map-road {
  position: absolute;
  height: 18px;
  border-top: 1px solid rgba(52, 66, 48, 0.33);
  border-bottom: 1px solid rgba(52, 66, 48, 0.33);
  background: rgba(255, 255, 255, 0.25);
}

.map-road-one {
  top: 50%;
  left: -10%;
  width: 125%;
  transform: rotate(-17deg);
}

.map-road-two {
  top: 20%;
  left: -18%;
  width: 100%;
  transform: rotate(57deg);
}

.map-road-three {
  right: -20%;
  bottom: 17%;
  width: 90%;
  transform: rotate(23deg);
}

.map-label {
  position: absolute;
  color: rgba(38, 48, 37, 0.56);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-label-one {
  top: 42%;
  left: 9%;
  transform: rotate(-17deg);
}

.map-label-two {
  top: 16%;
  right: 14%;
}

.map-label-three {
  right: 8%;
  bottom: 24%;
  transform: rotate(23deg);
}

.map-pin {
  position: absolute;
  z-index: 3;
  top: 48%;
  left: 55%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 14px 9px 9px;
  border-radius: 50px;
  color: var(--cream);
  background: var(--terracotta-dark);
  box-shadow: 0 12px 25px rgba(38, 48, 37, 0.25);
  transform: translate(-50%, -50%);
  animation: pin-pulse 2.8s ease-in-out infinite;
}

.map-pin span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
}

.map-pin strong {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.map-key {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(251, 247, 239, 0.72);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.map-key span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta-dark);
}

.hours-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(244, 238, 227, 0.16);
  border-radius: 15px;
}

.hours-card > div {
  padding: 22px;
  border-right: 1px solid rgba(244, 238, 227, 0.16);
}

.hours-card > div:last-child {
  border-right: 0;
}

.hours-card span,
.hours-card strong {
  display: block;
}

.hours-card span {
  margin-bottom: 12px;
  color: rgba(244, 238, 227, 0.48);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hours-card strong {
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.45;
}

.site-footer {
  padding: 74px 0 95px;
  color: var(--cream);
  border-top: 1px solid rgba(244, 238, 227, 0.12);
  background: var(--olive-deep);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.7fr 1fr;
  gap: 50px;
  align-items: start;
}

.footer-wordmark {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.footer-top > p {
  color: rgba(244, 238, 227, 0.58);
  font-family: var(--serif);
  line-height: 1.5;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
  font-size: 0.75rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  width: fit-content;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #efc2a9;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 238, 227, 0.12);
  color: rgba(244, 238, 227, 0.45);
  font-size: 0.65rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-reserve {
  display: none;
}

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

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

@keyframes hero-arrive {
  from { opacity: 0; transform: scale(1.09); }
  to { opacity: 1; transform: scale(1.025); }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes menu-arrive {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pin-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.045); }
}

@media (max-width: 1000px) {
  .welcome-grid {
    grid-template-columns: 100px 1fr;
  }

  .welcome-note {
    display: none;
  }

  .story-grid {
    gap: 50px;
  }

  .story-visual {
    min-height: 500px;
  }

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

  .reservation-copy {
    position: static;
  }

  .reservation-copy > p:not(.eyebrow) {
    max-width: 650px;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .review-card:last-child {
    grid-column: 1 / -1;
    min-height: 300px;
  }

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

@media (max-width: 760px) {
  :root {
    --page: min(100% - 32px, 640px);
  }

  html {
    scroll-padding-top: 90px;
  }

  body {
    padding-bottom: 73px;
  }

  .section {
    padding-block: 82px;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 22px);
  }

  .nav-shell {
    min-height: 60px;
    padding: 6px 7px 6px 16px;
    background: rgba(31, 40, 29, 0.7);
  }

  .site-header.is-scrolled {
    top: 8px;
  }

  .wordmark {
    font-size: 1.04rem;
  }

  .wordmark-mark {
    width: 34px;
    height: 34px;
  }

  .js .menu-toggle {
    position: relative;
    z-index: 5;
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    color: inherit;
    background: rgba(255, 255, 255, 0.12);
  }

  .js .site-header.is-scrolled .menu-toggle {
    background: rgba(38, 48, 37, 0.08);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 1.5px;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .js .primary-navigation {
    position: absolute;
    z-index: 3;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    padding: 83px 14px 14px;
    border: 1px solid rgba(38, 48, 37, 0.12);
    border-radius: 30px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top;
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  }

  .js .primary-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .primary-navigation a {
    padding: 15px 12px;
    border-top: 1px solid rgba(38, 48, 37, 0.1);
    border-radius: 0;
  }

  .primary-navigation .nav-reserve,
  .site-header.is-scrolled .primary-navigation .nav-reserve {
    margin-top: 8px;
    border: 0;
    border-radius: 50px;
    color: var(--white);
    background: var(--olive);
    text-align: center;
  }

  html:not(.js) .nav-shell { flex-wrap: wrap; gap: 8px; }
  html:not(.js) .primary-navigation { width: 100%; flex-wrap: wrap; justify-content: center; }
  html:not(.js) .primary-navigation a { padding: 8px 10px; border: 0; font-size: .72rem; }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-image {
    background-position: 58% center;
  }

  .hero-wash {
    background: linear-gradient(0deg, rgba(17, 24, 16, 0.89) 2%, rgba(17, 24, 16, 0.42) 67%, rgba(17, 24, 16, 0.2) 100%);
  }

  .hero-content {
    padding-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 17vw, 6.2rem);
  }

  .hero h1 br {
    display: none;
  }

  .hero-intro {
    max-width: 520px;
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 21px;
    margin-top: 28px;
  }

  .hero-scroll,
  .service-note {
    display: none;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-label {
    padding-top: 0;
  }

  .menu-heading,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 45px;
  }

  .menu-heading > p {
    margin-left: 0;
  }

  .menu-tab {
    min-height: 66px;
    font-size: 1rem;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .menu-item {
    min-height: 100px;
  }

  .menu-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .story-visual {
    min-height: 460px;
  }

  .story-card {
    min-height: 390px;
    padding: 35px;
  }

  .reservation-card {
    min-height: 0;
  }

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

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

  .review-card,
  .review-card:last-child {
    grid-column: auto;
    min-height: 330px;
  }

  .review-card-featured {
    transform: none;
  }

  .review-card-featured:hover {
    transform: translateY(-8px);
  }

  .private-section {
    padding-bottom: 82px;
  }

  .private-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 28px;
  }

  .private-panel > div:last-child {
    justify-self: start;
  }

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

  .location-copy {
    grid-row: auto;
    padding-bottom: 35px;
  }

  .map-card {
    min-height: 390px;
  }

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

  .hours-card > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 238, 227, 0.16);
  }

  .hours-card > div:last-child {
    border-bottom: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 50px;
  }

  .mobile-reserve {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(52, 66, 48, 0.96);
    box-shadow: 0 13px 36px rgba(18, 24, 17, 0.3);
    backdrop-filter: blur(12px);
  }

  .mobile-reserve span {
    display: grid;
    font-family: var(--serif);
    font-size: 1.08rem;
    line-height: 1.15;
  }

  .mobile-reserve small {
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--sans);
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-reserve strong {
    font-size: 1.3rem;
  }
}

@media (max-width: 420px) {
  .hero-eyebrow {
    padding-left: 0;
  }

  .hero-eyebrow::before {
    display: none;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  h2 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .menu-panel {
    padding: 24px 18px;
  }

  .menu-item {
    gap: 12px;
  }

  .story-card {
    width: 94%;
  }

  .reservation-card {
    padding: 25px 20px;
  }

  .reservation-success {
    min-height: 450px;
  }

  .map-pin {
    left: 50%;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
