:root {
  --bg: #f3ecdf;
  --bg-strong: #e8dcc7;
  --surface: rgba(255, 251, 245, 0.88);
  --surface-solid: #fffaf3;
  --surface-deep: #f7efe2;
  --text: #1e1712;
  --muted: #6e6259;
  --line: rgba(54, 37, 24, 0.12);
  --line-strong: rgba(54, 37, 24, 0.24);
  --brown: #5e4635;
  --brown-deep: #2a1d16;
  --olive: #6f7358;
  --olive-soft: rgba(111, 115, 88, 0.14);
  --terracotta: #bb7852;
  --cream: #fff8ef;
  --shadow-soft: 0 20px 50px rgba(34, 22, 15, 0.08);
  --shadow-strong: 0 28px 70px rgba(34, 22, 15, 0.16);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shell: min(1180px, calc(100vw - 40px));
  --heading-font: "Cormorant Garamond", Georgia, serif;
  --body-font: "Manrope", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(187, 120, 82, 0.12), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(111, 115, 88, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf6ee 0%, var(--bg) 44%, #efe3d2 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.skip-link,
.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:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  white-space: normal;
  top: 16px;
  left: 16px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brown-deep);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 239, 226, 0.9);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  border-bottom: 1px solid rgba(54, 37, 24, 0.08);
}

.site-header.is-scrolled {
  background: rgba(247, 239, 226, 0.98);
  backdrop-filter: blur(20px);
  border-color: rgba(54, 37, 24, 0.08);
  box-shadow: 0 10px 32px rgba(34, 22, 15, 0.06);
}

.nav-wrap,
.hero-grid,
.story-grid,
.experience-grid,
.booking-grid,
.footer-grid {
  display: grid;
}

.nav-wrap {
  position: relative;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
}

.brand img {
  width: 176px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 250, 243, 0.76);
  transform: translateY(-1px);
}

.site-nav .nav-cta,
.btn-primary {
  background: var(--brown-deep);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.site-nav .nav-cta {
  padding-inline: 16px;
}

.nav-toggle {
  display: none;
  place-self: end;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 250, 243, 0.82);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 5px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 18px 0 58px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  top: 56px;
  right: -120px;
  background: radial-gradient(circle, rgba(187, 120, 82, 0.2), transparent 68%);
}

.hero-glow-two {
  width: 380px;
  height: 380px;
  left: -110px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(111, 115, 88, 0.18), transparent 70%);
}

.hero-stage {
  position: relative;
  min-height: 720px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: var(--heading-font);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4.4rem);
}

h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.hero-intro,
.section-heading p,
.story-copy > p,
.experience-copy > p,
.booking-panel > p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-intro {
  margin: 24px 0 0;
  color: rgba(255, 248, 239, 0.88);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 250, 243, 0.65);
}

.hero-notes li,
.fact-card,
.reservation-card,
.menu-card,
.review-card,
.visit-card,
.booking-panel,
.gallery-card,
.portrait-card,
.landscape-card,
.menu-feature {
  border: 1px solid rgba(54, 37, 24, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-notes li {
  min-height: 84px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.56);
  backdrop-filter: blur(8px);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
}

.hero-image-card,
.portrait-card,
.landscape-card,
.gallery-card,
.menu-feature {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #d7cab8;
}

.hero-image-card {
  position: relative;
  height: 100%;
  min-height: 720px;
  aspect-ratio: auto;
  border-radius: 42px;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 17, 13, 0.78) 0%, rgba(24, 17, 13, 0.46) 34%, rgba(24, 17, 13, 0.14) 66%, rgba(24, 17, 13, 0.14) 100%),
    linear-gradient(180deg, rgba(24, 17, 13, 0.08) 0%, rgba(24, 17, 13, 0.28) 100%);
}

.hero-image-card img,
.portrait-card img,
.landscape-card img,
.gallery-card img,
.menu-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.hero-image-card:hover img,
.portrait-card:hover img,
.landscape-card:hover img,
.gallery-card:hover img,
.menu-feature:hover img {
  transform: scale(1.04);
}

.reservation-card,
.fact-card {
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.82);
  backdrop-filter: blur(12px);
}

.reservation-card {
  padding: 28px;
}

.card-label,
.menu-feature figcaption span,
.experience-cards span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--olive);
}

.reservation-card h2 {
  font-size: 2rem;
}

.reservation-card p,
.fact-card span,
.menu-copy,
.dish-list li span,
.review-meta span,
.visit-card dd,
.visit-card p,
.site-footer p {
  color: var(--muted);
}

.reservation-card a {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 700;
  color: var(--brown);
}

.hero .eyebrow,
.hero h1 {
  color: #fff8ef;
}

.hero .eyebrow {
  color: #e9c9a6;
}

.hero .btn-secondary {
  border-color: rgba(255, 248, 239, 0.28);
  background: rgba(255, 248, 239, 0.12);
  color: #fff8ef;
}

.hero .hero-copy {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 248, 239, 0.12);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(39, 27, 20, 0.34) 0%, rgba(39, 27, 20, 0.24) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(20, 12, 9, 0.18);
}

.hero .btn-primary {
  box-shadow: 0 18px 38px rgba(20, 12, 9, 0.22);
}

.fact-card {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 26px 24px;
}

.fact-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.trust-strip {
  padding: 14px 0;
  border-top: 1px solid rgba(54, 37, 24, 0.08);
  border-bottom: 1px solid rgba(54, 37, 24, 0.08);
  background: rgba(255, 248, 239, 0.64);
  backdrop-filter: blur(16px);
}

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

.trust-track span {
  padding: 12px 14px;
  text-align: center;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.8);
  font-size: 0.9rem;
}

.section {
  padding: 112px 0;
}

.story-grid,
.experience-grid,
.booking-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.story-points,
.experience-cards {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.story-points article,
.experience-cards article {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(54, 37, 24, 0.08);
}

.story-points article:last-child,
.experience-cards article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.story-points h3,
.experience-cards h3,
.review-meta strong,
.visit-card h3,
.site-footer h3 {
  font-family: var(--body-font);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.story-points h3,
.experience-cards h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.story-media {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.portrait-card {
  aspect-ratio: 0.78 / 1.1;
}

.landscape-card {
  align-self: end;
  aspect-ratio: 1.08 / 0.9;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.menu-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.menu-feature {
  position: sticky;
  top: 132px;
  aspect-ratio: 0.84 / 1.08;
}

.menu-feature figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.86);
  backdrop-filter: blur(14px);
  font-size: 0.95rem;
}

.menu-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

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

.menu-card {
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 251, 245, 0.82);
}

.menu-copy {
  margin: 14px 0 20px;
}

.dish-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.dish-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(54, 37, 24, 0.08);
}

.dish-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.dish-list strong,
.dish-list em {
  display: block;
  font-style: normal;
  font-weight: 800;
}

.dish-list span {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 18px;
}

.gallery-card {
  aspect-ratio: 1 / 0.88;
}

.gallery-tall {
  grid-row: span 2;
  aspect-ratio: 0.82 / 1.2;
}

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

.review-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.78);
}

.quote {
  margin: 0 0 28px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.review-meta {
  display: grid;
  gap: 2px;
}

.booking-panel,
.visit-card {
  min-height: 100%;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 251, 245, 0.78);
}

.visit-card dl {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.visit-card dt {
  margin-bottom: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 800;
}

.visit-card dd,
.visit-card p {
  margin: 0;
}

.hours-list {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(54, 37, 24, 0.08);
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.hours-list span {
  color: var(--muted);
}

.hours-list strong {
  font-weight: 700;
}

.site-footer {
  padding: 36px 0 48px;
  background: var(--brown-deep);
  color: rgba(255, 250, 243, 0.88);
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.site-footer img {
  width: 208px;
  height: auto;
  margin-bottom: 16px;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(.2, .7, .1, 1);
  transition-delay: var(--delay, 0ms);
}

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

@media (max-width: 1100px) {
  .hero-stage,
  .story-grid,
  .experience-grid,
  .booking-grid,
  .menu-showcase {
    grid-template-columns: 1fr;
  }

  .menu-grid,
  .review-grid,
  .gallery-grid,
  .story-media,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .hero-image-card {
    min-height: 640px;
  }

  .menu-feature {
    position: relative;
    top: auto;
    aspect-ratio: 1.16 / 1;
  }
}

@media (max-width: 820px) {
  .nav-wrap {
    grid-template-columns: auto auto;
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: grid;
    justify-content: stretch;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 248, 239, 0.96);
    border: 1px solid rgba(54, 37, 24, 0.08);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, -8px, 0);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .site-nav a {
    width: 100%;
    text-align: left;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 14vw, 5rem);
  }

  h2 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }

  .trust-track {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 84px 0;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100vw - 28px, 100%);
  }

  .nav-wrap {
    gap: 16px;
    padding: 12px 0;
  }

  .brand img,
  .site-footer img {
    width: 148px;
  }

  .hero {
    padding-top: 10px;
    padding-bottom: 34px;
  }

  .hero-stage,
  .hero-image-card {
    min-height: 640px;
    border-radius: 28px;
  }

  .hero-image-card img {
    object-position: 68% center;
  }

  .hero-image-card::after {
    background:
      linear-gradient(180deg, rgba(24, 17, 13, 0.16) 0%, rgba(24, 17, 13, 0.42) 44%, rgba(24, 17, 13, 0.78) 100%);
  }

  .hero-overlay {
    align-items: flex-end;
    padding: 18px;
  }

  .hero .hero-copy {
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    backdrop-filter: none;
    box-shadow: none;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.8rem, 12vw, 4.2rem);
    line-height: 0.92;
  }

  .hero-intro {
    max-width: 30ch;
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .hero .btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .hero-intro,
  .section-heading p,
  .story-copy > p,
  .experience-copy > p,
  .booking-panel > p,
  .quote {
    font-size: 0.98rem;
  }

  .reservation-card,
  .fact-card,
  .menu-card,
  .review-card,
  .visit-card,
  .booking-panel {
    padding: 22px;
  }

  .hero .hero-copy {
    max-width: 100%;
  }

  .hours-list p {
    flex-direction: column;
    gap: 4px;
  }
}
