:root {
  --paper: #ffffff;
  --ink: #201410;
  --espresso: #2a160e;
  --espresso-soft: #3b251c;
  --sage: #708147;
  --sage-light: #eef1e7;
  --tomato: #c62318;
  --line: #ddd7d2;
  --muted: #665c57;
  --cream-ink: #f8f5f1;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
  --hand: "Caveat", "Segoe Print", cursive;
  --gutter: clamp(1.25rem, 4.4vw, 4rem);
  --content: 90rem;
  --header-height: 6.25rem;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--sage) 58%, white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: -10000px;
  padding: 0.7rem 1rem;
  background: var(--espresso);
  color: white;
  transition: left 0s;
}

.skip-link:focus {
  left: 0.75rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, white 96%, transparent);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) auto minmax(25rem, 1fr);
  align-items: center;
  max-width: var(--content);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  gap: 2rem;
}

.wordmark,
.dialog-wordmark {
  font-family: var(--display);
  font-size: clamp(2.4rem, 3.2vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: clamp(2rem, 4vw, 4rem);
}

.desktop-nav a,
.mobile-menu nav a {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--sage);
  content: "";
  transition: transform 220ms ease;
}

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

.header-actions {
  justify-content: flex-end;
  gap: 1.2rem;
}

.button {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 0.9rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-solid {
  border-color: var(--espresso);
  background: var(--espresso);
  color: white;
}

.button-solid:hover {
  background: #422419;
}

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

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

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  overflow: clip;
  background: var(--paper);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(26rem, 0.82fr) minmax(35rem, 1.18fr);
  min-height: calc(100svh - var(--header-height));
  max-width: var(--content);
  margin: 0 auto;
  padding-left: var(--gutter);
}

.hero-copy {
  z-index: 1;
  align-self: center;
  padding: clamp(3.5rem, 6vh, 6rem) 1.5rem clamp(3.5rem, 6vh, 5rem) 0;
}

.hero h1,
.menu-copy h2,
.story-copy h2,
.visit-copy h2,
.dialog-header h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: none;
  font-size: clamp(4.2rem, 6.25vw, 6.15rem);
  line-height: 0.82;
  white-space: nowrap;
}

h1 span,
h2 span,
blockquote span {
  color: var(--tomato);
}

.hand-note {
  position: relative;
  width: fit-content;
  margin: 2rem 0 1.8rem 0.8rem;
  color: var(--sage);
  font-family: var(--hand);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
  transform: rotate(-2deg);
}

.hand-note::after,
.hand-link::after {
  position: absolute;
  right: -0.25rem;
  bottom: -0.35rem;
  left: -0.4rem;
  height: 2px;
  background: currentColor;
  content: "";
  transform: rotate(-1deg);
}

.hero-intro,
.section-intro {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.55;
}

.hero-facts {
  margin: 1.7rem 0 1.8rem;
}

.hero-facts p {
  display: flex;
  align-items: center;
  margin: 0.7rem 0;
  gap: 0.6rem;
  font-size: 1rem;
}

.hero-facts strong {
  color: var(--sage);
  font-size: 1.25rem;
}

.hero-facts .star {
  color: var(--tomato);
  font-size: 1.35rem;
}

.hero-facts .dot {
  margin: 0 0.1rem;
}

.hero-facts svg,
.contact-list svg {
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--sage);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-actions,
.visit-actions,
.mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-media {
  position: relative;
  min-height: 42rem;
  margin: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: calc(100svh - var(--header-height));
  object-fit: cover;
  object-position: 57% center;
}

.menu-section,
.visit-section {
  padding: clamp(5.5rem, 7vw, 7rem) var(--gutter);
}

.menu-layout,
.story-layout,
.visit-layout {
  display: grid;
  max-width: var(--content);
  margin: 0 auto;
}

.menu-layout {
  grid-template-columns: minmax(30rem, 1.18fr) minmax(27rem, 0.95fr);
  align-items: center;
  gap: clamp(3rem, 5vw, 5rem);
}

.menu-media {
  position: relative;
  min-height: 43rem;
  padding: 0 5rem 3.5rem 0;
}

.menu-media img,
.story-gallery img {
  border-radius: 0.75rem;
  object-fit: cover;
}

.menu-photo-main {
  width: 100%;
  height: 43rem;
}

.menu-photo-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 19.5rem;
  border: 6px solid white;
}

.menu-copy h2,
.story-copy h2,
.visit-copy h2 {
  font-size: clamp(4rem, 6.6vw, 6.6rem);
  line-height: 0.85;
}

.menu-copy h2 {
  font-size: clamp(4rem, 5.8vw, 6rem);
}

.menu-copy .section-intro {
  margin: 2rem 0 1.6rem;
}

.text-link {
  position: relative;
  border: 0;
  padding: 0.2rem 0;
  background: transparent;
  color: var(--sage);
  cursor: pointer;
  font-size: 1.15rem;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -0.15rem;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 200ms ease;
}

.text-link:hover::after {
  transform: scaleX(0.72);
}

.featured-menu {
  margin-top: 2.9rem;
}

.menu-row {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.menu-row span:last-child {
  font-variant-numeric: tabular-nums;
}

.dietary-note {
  margin: 2rem 0 0;
  color: var(--sage);
  font-size: 0.95rem;
}

.story-section {
  padding: clamp(5rem, 8vw, 7.5rem) var(--gutter);
  background: var(--espresso);
  color: var(--cream-ink);
}

.story-layout {
  grid-template-columns: minmax(28rem, 0.92fr) minmax(34rem, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 5vw, 5rem);
}

.story-copy h2 {
  font-size: clamp(4rem, 5.6vw, 5.8rem);
}

.story-copy > p {
  max-width: 34rem;
  margin: 2.4rem 0 3.5rem;
  color: #ebe3dd;
  font-size: 1.12rem;
  line-height: 1.8;
}

.story-copy blockquote {
  margin: 0 0 1.8rem;
  color: #a6b479;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-style: italic;
  line-height: 0.95;
}

.hand-link {
  position: relative;
  display: inline-block;
  margin-left: 0.7rem;
  color: #a6b479;
  font-family: var(--hand);
  font-size: 2rem;
  transform: rotate(-2deg);
}

.story-gallery {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  grid-template-rows: repeat(2, minmax(13rem, 1fr));
  height: 43rem;
  gap: 0.9rem;
}

.story-gallery img {
  width: 100%;
  height: 100%;
}

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

.visit-layout {
  grid-template-columns: minmax(30rem, 0.95fr) minmax(30rem, 1.05fr);
  align-items: center;
  gap: clamp(4rem, 7vw, 7rem);
}

.visit-copy .section-intro {
  margin: 2rem 0 2.3rem;
}

.visit-copy h2 {
  font-size: clamp(4rem, 5.5vw, 5.6rem);
}

.visit-details {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
}

.contact-list {
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}

.contact-list p {
  display: flex;
  align-items: flex-start;
  margin: 0 0 1.45rem;
  gap: 1rem;
  font-size: 1rem;
}

.contact-list a {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.contact-list i {
  color: var(--sage);
  font-style: normal;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  margin: 0 0 1rem;
  gap: 1.5rem;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.visit-actions {
  margin-top: 2.8rem;
}

.map-frame {
  overflow: hidden;
  height: 41rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--sage-light);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.78) contrast(0.96);
}

.site-footer {
  padding: 2.5rem var(--gutter);
  background: var(--espresso);
  color: var(--cream-ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  max-width: var(--content);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 55%);
  gap: 2rem;
}

.footer-inner .wordmark {
  font-size: 3.6rem;
}

.footer-inner p {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
}

.footer-inner p:last-child {
  justify-self: end;
}

.menu-dialog {
  width: min(68rem, calc(100vw - 2rem));
  max-height: min(54rem, calc(100svh - 2rem));
  margin: auto;
  border: 0;
  padding: 0;
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 90px rgb(42 22 14 / 30%);
}

.menu-dialog::backdrop {
  background: rgb(32 20 16 / 70%);
  backdrop-filter: blur(5px);
}

.dialog-shell {
  display: flex;
  min-height: 40rem;
  flex-direction: column;
}

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 2rem 2.4rem 1.6rem;
}

.dialog-wordmark {
  margin: 0 0 0.8rem;
  font-size: 1.55rem;
}

.dialog-header h2 {
  font-size: 4.8rem;
  line-height: 0.8;
}

.dialog-close {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.dialog-close svg {
  width: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.menu-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  padding: 0 2.4rem;
  gap: 2.4rem;
}

.menu-tabs button {
  position: relative;
  border: 0;
  padding: 1.2rem 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

.menu-tabs button[aria-selected="true"] {
  color: var(--ink);
}

.menu-tabs button[aria-selected="true"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--sage);
  content: "";
}

.dialog-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 2.4rem;
}

.menu-panel {
  display: grid;
  grid-template-columns: minmax(20rem, 1.2fr) minmax(15rem, 0.8fr);
  align-items: stretch;
  gap: 2.5rem;
}

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

.menu-panel > img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.dialog-menu-list div {
  display: flex;
  min-height: 3.6rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  gap: 1.5rem;
}

.dialog-menu-list strong {
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 1.2rem 2.4rem;
  gap: 2rem;
}

.dialog-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 74rem) {
  :root {
    --header-height: 5.3rem;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-actions .header-call {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(22rem, 0.9fr) minmax(28rem, 1.1fr);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7.1vw, 5.35rem);
  }

  .menu-layout,
  .story-layout,
  .visit-layout {
    gap: 2.5rem;
  }

  .menu-layout {
    grid-template-columns: minmax(24rem, 1.1fr) minmax(23rem, 0.9fr);
  }

  .story-layout {
    grid-template-columns: minmax(23rem, 0.9fr) minmax(28rem, 1.1fr);
  }

  .visit-layout {
    grid-template-columns: minmax(23rem, 0.95fr) minmax(27rem, 1.05fr);
  }

  .menu-media {
    min-height: 36rem;
  }

  .menu-photo-main {
    height: 36rem;
  }

  .story-gallery {
    height: 36rem;
  }
}

@media (max-width: 62rem) {
  .site-header {
    height: var(--header-height);
    background: white;
    backdrop-filter: none;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-content: center;
    border: 0;
    padding: 0;
    gap: 0.45rem;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 1.65rem;
    height: 1.5px;
    background: var(--ink);
    transition: transform 220ms ease;
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 1000;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem var(--gutter) 2rem;
    background: white;
  }

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

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu nav a {
    border-bottom: 1px solid var(--line);
    padding: 0.7rem 0;
    font-family: var(--display);
    font-size: 3.3rem;
  }

  .hero-inner,
  .menu-layout,
  .story-layout,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 0 var(--gutter) 0;
  }

  .hero-copy {
    padding: 4rem 0 3rem;
  }

  .hero-media {
    min-height: 34rem;
    margin: 0 calc(var(--gutter) * -1);
  }

  .hero-media img {
    min-height: 34rem;
  }

  .menu-layout {
    gap: 5rem;
  }

  .menu-media {
    order: 2;
    min-height: 35rem;
  }

  .menu-copy {
    order: 1;
  }

  .story-layout,
  .visit-layout {
    gap: 4.5rem;
  }

  .story-gallery {
    height: 38rem;
  }

  .map-frame {
    height: 34rem;
  }

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

  .footer-inner p:last-child {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 40rem) {
  :root {
    --header-height: 4.7rem;
  }

  .site-header .wordmark {
    font-size: 2.45rem;
  }

  .hero-copy {
    padding-top: 3.25rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5rem);
    line-height: 0.84;
    white-space: normal;
  }

  .hand-note {
    margin-top: 1.7rem;
    font-size: 1.9rem;
  }

  .hero-intro,
  .section-intro {
    font-size: 1.04rem;
  }

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

  .hero-media,
  .hero-media img {
    min-height: 27rem;
  }

  .hero-media img {
    object-position: 61% center;
  }

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

  .menu-copy h2,
  .story-copy h2,
  .visit-copy h2 {
    font-size: clamp(3.5rem, 17vw, 4.8rem);
  }

  .menu-media {
    min-height: 28rem;
    padding: 0 2rem 2.5rem 0;
  }

  .menu-photo-main {
    height: 28rem;
  }

  .menu-photo-detail {
    width: 44%;
    height: 12rem;
    border-width: 4px;
  }

  .menu-row {
    min-height: 4.35rem;
    font-size: 0.98rem;
  }

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

  .story-copy > p {
    margin-bottom: 2.6rem;
    font-size: 1rem;
  }

  .story-copy blockquote {
    font-size: 3.05rem;
  }

  .story-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 18rem 12rem;
    height: auto;
  }

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

  .contact-list {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 0.8rem;
  }

  .map-frame {
    height: 27rem;
  }

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

  .footer-inner .wordmark {
    margin-bottom: 1rem;
    font-size: 3.2rem;
  }

  .dialog-header,
  .dialog-body,
  .dialog-footer {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .dialog-header h2 {
    font-size: 4rem;
  }

  .menu-tabs {
    padding: 0 1.25rem;
    gap: 1.4rem;
  }

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

  .menu-panel > img {
    max-height: 17rem;
    min-height: 17rem;
  }

  .dialog-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 0.9rem;
  }
}

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

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

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