:root {
  color-scheme: light;
  --ink: #171716;
  --charcoal: #262725;
  --concrete: #ece9e2;
  --paper: #faf8f2;
  --warm: #d9a24a;
  --amber: #f0b33e;
  --sage: #3f5f46;
  --rose: #d65b7a;
  --line: rgba(23, 23, 22, 0.14);
  --shadow: 0 26px 60px rgba(20, 19, 16, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(217, 162, 74, 0.16), transparent 28rem),
    linear-gradient(180deg, #f9f7f0 0%, #ece9e2 44%, #f7f4ec 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(38, 39, 37, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 39, 37, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 16ch;
  font-size: clamp(3.15rem, 5.3vw, 5.7rem);
  line-height: 0.94;
}

h1 span {
  display: block;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.95;
}

h3 {
  font-size: 1.02rem;
  line-height: 1.25;
}

p {
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.7;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  color: var(--paper);
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(250, 248, 242, 0.92);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(23, 23, 22, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 0.78rem 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 1.08fr);
  gap: clamp(2rem, 6vw, 6.5rem);
  align-items: center;
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
}

.hero {
  min-height: 94svh;
  padding-top: 6rem;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.hero::before {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: -1;
  height: 45vh;
  content: "";
  background: linear-gradient(180deg, rgba(23, 23, 22, 0.9), rgba(23, 23, 22, 0));
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.55rem;
  padding-top: 2rem;
}

.hero-copy p:not(.section-label) {
  max-width: 34rem;
  color: #3d3d39;
}

.section-label {
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.88rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-actions .button {
  flex: 0 0 auto;
}

.hero-media {
  position: relative;
  min-height: min(66vh, 42rem);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img {
  object-position: center top;
  filter: contrast(1.02) saturate(1.02);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.06));
}

.intro {
  padding: clamp(2.2rem, 5vw, 5rem) 1rem;
}

.intro-statement {
  display: grid;
  width: min(100%, 1280px);
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-statement span {
  padding: clamp(1.2rem, 3vw, 2.3rem);
  border-right: 1px solid var(--line);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 3rem);
}

.intro-statement span:last-child {
  border-right: 0;
}

.feature {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.feature-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-copy > p:not(.section-label) {
  max-width: 34rem;
  color: #464641;
}

.menu-list-heading {
  margin-top: 0.75rem;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-list {
  display: grid;
  gap: 0;
  margin-top: -0.35rem;
  border-top: 1px solid var(--line);
}

.menu-list article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-list span {
  color: var(--warm);
  font-weight: 800;
}

.menu-list p {
  margin-top: 0.28rem;
  color: #65645e;
  font-size: 0.96rem;
}

.customize,
.proof {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.customize {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.customize-actions {
  display: flex;
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
}

.customize-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(18rem, 0.55fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.customize-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(250, 248, 242, 0.46);
}

.customize-grid article,
.proof-card {
  display: flex;
  min-height: 16rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.3rem;
  padding: clamp(1.1rem, 3vw, 2rem);
  border-right: 1px solid var(--line);
}

.customize-grid article:last-child,
.proof-card:last-child {
  border-right: 0;
}

.customize-grid span {
  color: var(--warm);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.customize-grid h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.customize-grid p,
.proof-grid span {
  color: #55544f;
  font-size: 0.98rem;
  line-height: 1.55;
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

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

.menu-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 22, 0.58);
  backdrop-filter: blur(8px);
}

.menu-modal-panel {
  position: relative;
  display: grid;
  width: min(100%, 980px);
  max-height: min(88svh, 760px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.menu-modal-header,
.menu-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
}

.menu-modal-header {
  border-bottom: 1px solid var(--line);
}

.menu-modal-header h2 {
  max-width: 12ch;
  margin-top: 0.4rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.menu-close {
  position: relative;
  flex: 0 0 auto;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-modal-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: auto;
}

.menu-category {
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  gap: 1.3rem;
  padding: clamp(1rem, 3vw, 1.8rem);
  border-right: 1px solid var(--line);
}

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

.menu-category h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.menu-category ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-category li {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.menu-category li:last-child {
  border-bottom: 0;
}

.menu-category span {
  font-weight: 800;
}

.menu-category small {
  color: #65645e;
  font-size: 0.9rem;
  line-height: 1.5;
}

.menu-modal-footer {
  justify-content: flex-start;
  border-top: 1px solid var(--line);
}

body.menu-open {
  overflow: hidden;
}

.dark-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 4rem);
  background:
    linear-gradient(120deg, rgba(214, 91, 122, 0.14), transparent 38%),
    #171716;
  color: var(--paper);
}

.dark-band .section-label {
  color: var(--amber);
}

.band-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.band-copy p:not(.section-label) {
  max-width: 34rem;
  color: rgba(250, 248, 242, 0.72);
}

.story-tab-list {
  display: inline-flex;
  width: fit-content;
  gap: 0.35rem;
  padding: 0.32rem;
  border: 1px solid rgba(250, 248, 242, 0.16);
  border-radius: 999px;
  background: rgba(250, 248, 242, 0.06);
}

.story-tab {
  min-height: 2.65rem;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: transparent;
  color: rgba(250, 248, 242, 0.68);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-tab.is-active {
  background: var(--paper);
  color: var(--ink);
}

.story-tab-panels {
  min-width: 0;
}

.story-panel {
  display: grid;
  gap: 1.2rem;
}

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

.story-panel-copy {
  display: grid;
  gap: 0.85rem;
  max-width: 44rem;
}

.story-panel-copy p {
  color: rgba(250, 248, 242, 0.72);
}

.proof {
  padding-top: clamp(4rem, 8vw, 8rem);
}

.proof-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  max-width: 36rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

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

.proof-card {
  min-height: 14rem;
  transition: background-color 180ms ease, transform 180ms ease;
}

.proof-card:hover {
  background: rgba(250, 248, 242, 0.7);
  transform: translateY(-2px);
}

.proof-grid strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 0.92;
}

.chalk-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.chalk-layout img {
  object-position: top center;
}

figure {
  position: relative;
  min-height: 24rem;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd8cd;
}

.story-photo {
  min-height: 28rem;
}

.story-photo.primary {
  min-height: 34rem;
}

.specials-photo {
  min-height: 37rem;
}

.visit {
  padding: clamp(3rem, 7vw, 7rem) 1rem;
}

.visit-panel {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(250, 248, 242, 0.66);
  box-shadow: 0 18px 50px rgba(23, 23, 22, 0.08);
}

.visit-panel h2 {
  margin-top: 1rem;
}

.visit-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visit-intro {
  max-width: 27rem;
  color: #464641;
}

.visit-address {
  max-width: 27rem;
  color: var(--ink);
  font-style: normal;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 800;
  line-height: 1.55;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.visit-details p {
  color: #464641;
}

.map-card {
  height: clamp(16rem, 28vw, 22rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ddd8cd;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.86) contrast(0.94);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.quick-facts {
  display: grid;
  gap: 0.65rem;
  padding-top: 0.2rem;
}

.quick-facts span {
  display: block;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
  color: #33332f;
  font-size: 0.9rem;
  font-weight: 800;
}

.visit-note {
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--sage);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.instagram-link,
.facebook-link {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease;
}

.instagram-link:hover,
.facebook-link:hover {
  border-color: rgba(23, 23, 22, 0.42);
  transform: translateY(-2px);
}

.instagram-link svg,
.facebook-link svg {
  width: 1.08rem;
  height: 1.08rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.facebook-link svg {
  fill: currentColor;
  stroke: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    width: 2.65rem;
    height: 2.65rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
  }

  .nav-toggle span:not(.sr-only) {
    width: 1rem;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #faf8f2;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.95rem;
  }

  .nav-cta {
    border-color: var(--line);
    border-radius: var(--radius);
  }

  .section-grid,
  .dark-band,
  .visit-panel,
  .customize-heading,
  .proof {
    grid-template-columns: 1fr;
  }

  .proof-heading {
    min-height: auto;
  }

  .hero {
    padding-top: 5rem;
  }

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

  .hero-media {
    min-height: 28rem;
  }

  .intro-statement,
  .customize-grid,
  .proof-grid,
  .menu-modal-content {
    grid-template-columns: 1fr;
  }

  .customize-grid article,
  .proof-card,
  .menu-category {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .customize-grid article:last-child,
  .proof-card:last-child,
  .menu-category:last-child {
    border-bottom: 0;
  }

  .intro-statement span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-statement span:last-child {
    border-bottom: 0;
  }

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

  figure {
    min-height: 25rem;
  }

  .story-tab-list {
    width: 100%;
  }

  .story-tab {
    flex: 1;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .site-header {
    padding: 0.8rem 1rem;
  }

  .brand {
    font-size: 0.86rem;
  }

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

  .visit-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .customize-actions,
  .menu-modal-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-modal {
    padding: 0.75rem;
  }

  .menu-modal-panel {
    max-height: 90svh;
  }

  .hero-media {
    min-height: 23rem;
  }

  .feature-media {
    aspect-ratio: 1 / 1.08;
  }

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

  figure {
    min-height: 20rem;
  }
}
