:root {
  --ink: #211914;
  --ink-soft: #5f5147;
  --cream: #fff8ed;
  --paper: #f6ecdd;
  --paper-deep: #ead8c2;
  --forest: #1f2f2a;
  --forest-2: #2f4b43;
  --sage: #9caf88;
  --tomato: #dd6337;
  --tomato-dark: #b94725;
  --gold: #e5b24d;
  --line: rgba(33, 25, 20, 0.14);
  --line-light: rgba(255, 248, 237, 0.2);
  --shadow: 0 18px 48px rgba(27, 19, 14, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 20;
  pointer-events: none;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  background: rgba(31, 47, 42, 0.84);
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand {
  color: var(--cream);
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.brand span,
.footer-brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 248, 237, 0.88);
  font-size: 0.93rem;
  font-weight: 800;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.nav-cta,
.button-primary {
  background: var(--tomato);
  color: #fff;
  box-shadow: 0 12px 28px rgba(221, 99, 55, 0.24);
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--tomato-dark);
}

.button-secondary {
  background: var(--cream);
  color: var(--forest);
}

.button-secondary:hover {
  background: #fff;
}

.button-ghost {
  background: rgba(255, 248, 237, 0.08);
  border: 1px solid rgba(255, 248, 237, 0.26);
  color: var(--cream);
}

.button-ghost:hover {
  background: rgba(255, 248, 237, 0.16);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: 50%;
  background: rgba(255, 248, 237, 0.08);
  cursor: pointer;
  flex: 0 0 46px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.menu-toggle:hover {
  background: rgba(255, 248, 237, 0.14);
  border-color: rgba(255, 248, 237, 0.32);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--cream);
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span + span {
  margin-top: 0;
}

.site-header.open .menu-toggle {
  background: rgba(255, 248, 237, 0.16);
}

.site-header.open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 92svh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--forest);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 16, 13, 0.82), rgba(12, 16, 13, 0.42) 48%, rgba(12, 16, 13, 0.16)),
    linear-gradient(180deg, rgba(12, 16, 13, 0.1), rgba(12, 16, 13, 0.74));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 168px 0 166px;
  color: var(--cream);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 6.8rem;
}

h2 {
  margin-bottom: 16px;
  font-size: 4rem;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 248, 237, 0.88);
  font-size: 1.2rem;
}

.hero-actions,
.location-actions,
.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: translateY(50%);
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: var(--radius);
  background: rgba(31, 47, 42, 0.94);
  color: var(--cream);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  padding: 20px 22px;
}

.hero-facts div + div {
  border-left: 1px solid rgba(255, 248, 237, 0.16);
}

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

.hero-facts strong {
  font-size: 1rem;
}

.hero-facts span {
  color: rgba(255, 248, 237, 0.72);
  font-size: 0.92rem;
}

.section {
  padding: 112px 0;
}

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

.section-dark {
  background: var(--forest);
  color: var(--cream);
}

.section-dark p:not(.eyebrow),
.section-dark dd {
  color: rgba(255, 248, 237, 0.76);
}

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

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.section-heading p:not(.eyebrow),
.comments-intro p,
.location-copy p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.compact-heading {
  max-width: 640px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.menu-card {
  min-height: 420px;
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 14px 34px rgba(33, 25, 20, 0.08);
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card div {
  padding: 20px;
}

.menu-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.menu-card p,
.comment-card p {
  color: var(--ink-soft);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

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

.story-copy p:not(.eyebrow) {
  margin-bottom: 26px;
}

.story-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.story-gallery figure,
.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #111;
}

.story-main {
  grid-row: span 2;
}

.story-gallery img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.story-gallery figure:hover img,
.gallery-item:hover img {
  transform: scale(1.05);
}

.story-gallery figcaption,
.gallery-item::after {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(31, 47, 42, 0.84);
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-item::after {
  content: attr(aria-label);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.comments-section {
  background: linear-gradient(180deg, var(--paper), var(--paper-deep));
}

.comments-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.comments-intro {
  grid-column: 1 / 2;
  max-width: 440px;
  position: sticky;
  top: 112px;
}

.comment-form {
  grid-column: 2 / 3;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 10px;
}

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

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

.field span,
.field-label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 950;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(33, 25, 20, 0.16);
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--ink);
  outline: none;
  padding: 12px 13px;
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 4px rgba(47, 75, 67, 0.12);
}

.field small {
  color: var(--ink-soft);
  font-weight: 750;
}

.rating-picker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 2px;
  padding: 4px 0;
  flex-wrap: wrap;
}

.star-btn {
  width: 34px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(33, 25, 20, 0.2);
  cursor: pointer;
  font-size: 2.05rem;
  line-height: 1;
  text-shadow: none;
  transition: color 0.16s ease, transform 0.16s ease, text-shadow 0.16s ease;
}

.star-btn:hover {
  transform: translateY(-1px) scale(1.06);
}

.star-btn:focus-visible {
  outline: 2px solid var(--forest-2);
  outline-offset: 2px;
  border-radius: 4px;
}

.star-btn.active {
  color: var(--gold);
  text-shadow: 0 6px 18px rgba(229, 178, 77, 0.26);
}

.rating-picker.previewing .star-btn.active {
  color: rgba(33, 25, 20, 0.2);
  text-shadow: none;
}

.rating-picker.previewing .star-btn.preview {
  color: var(--gold);
  text-shadow: 0 6px 18px rgba(229, 178, 77, 0.26);
}

.comment-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest-2);
  font-weight: 850;
}

.comment-status.error {
  color: #9b2f20;
}

.comments-feed {
  grid-column: 2 / 3;
  padding-top: 4px;
}

.feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.feed-head h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.refresh-btn {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
  font-weight: 900;
}

.refresh-btn:hover {
  background: rgba(31, 47, 42, 0.08);
}

.comments-list {
  display: grid;
  max-height: 520px;
  overflow: auto;
  border-top: 1px solid var(--line);
}

.comment-card {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.comment-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.comment-top b {
  display: block;
}

.comment-stars {
  color: #b77a20;
  white-space: nowrap;
}

.empty-comments {
  padding: 24px 0;
  color: var(--ink-soft);
  font-weight: 760;
}

.location-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: stretch;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-dark .location-copy p:not(.eyebrow) {
  color: rgba(255, 248, 237, 0.76);
}

.info-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.info-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 248, 237, 0.16);
}

.info-list dt {
  color: var(--gold);
  font-weight: 950;
}

.info-list dd {
  margin: 0;
}

.map {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #fff;
}

.map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.footer {
  background: #17231f;
  color: rgba(255, 248, 237, 0.72);
  border-top: 1px solid rgba(255, 248, 237, 0.12);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  margin: 0;
}

.footer-brand {
  color: var(--cream);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1040px) {
  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 3.3rem;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.88rem;
  }

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

  .split-section,
  .location-layout {
    grid-template-columns: 1fr;
  }

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

  .comments-layout {
    grid-template-columns: 1fr;
  }

  .comments-intro,
  .comment-form,
  .comments-feed {
    grid-column: auto;
  }

  .comments-intro {
    max-width: 680px;
    position: static;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 8px;
  }

  .nav {
    border-radius: 18px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    padding: 14px;
    border: 1px solid rgba(255, 248, 237, 0.16);
    border-radius: var(--radius);
    background: rgba(31, 47, 42, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.open .nav-links {
    display: grid;
  }

  .nav-links a {
    min-height: 44px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding: 132px 0 136px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    transform: translateY(38%);
  }

  .hero-facts div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 248, 237, 0.16);
  }

  .section {
    padding: 92px 0;
  }

  .section:first-of-type {
    padding-top: 132px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav {
    min-height: 62px;
    padding: 8px 10px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .comments-intro p,
  .location-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .location-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .menu-grid,
  .story-gallery,
  .gallery-grid,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .menu-card {
    min-height: auto;
    grid-template-rows: 210px auto;
  }

  .story-gallery {
    grid-auto-rows: 230px;
  }

  .story-main {
    grid-row: auto;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .comment-form {
    padding: 18px;
  }

  .star-btn {
    width: 32px;
    height: 40px;
    font-size: 1.9rem;
  }

  .feed-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .map {
    min-height: 430px;
  }

  .footer-inner {
    display: grid;
    justify-items: center;
    text-align: center;
  }
}
