:root {
  --white: #ffffff;
  --concrete: #f3f1ed;
  --ink: #242525;
  --muted: #64625f;
  --line: #d9d6d0;
  --terracotta: #c85c35;
  --terracotta-dark: #aa4626;
  --footer: #232526;
  --display: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4.7vw, 5.5rem);
  --transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-wrap: balance;
}

h1 {
  font-size: clamp(4.1rem, 6.25vw, 7.25rem);
}

h2 {
  font-size: clamp(3.7rem, 5.5vw, 6.5rem);
}

.skip-link {
  position: absolute;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  transform: translateY(-150%);
  color: var(--white);
  background: var(--ink);
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 8.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand__name {
  font-family: var(--display);
  font-size: clamp(2.45rem, 3.35vw, 4rem);
  letter-spacing: -0.035em;
}

.brand__descriptor {
  margin-top: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.37em;
  text-transform: uppercase;
}

.primary-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4.4vw, 5.25rem);
}

.primary-nav > a:not(.button),
.footer-nav a {
  position: relative;
  font-size: 1.06rem;
  font-weight: 500;
}

.primary-nav > a:not(.button)::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform var(--transition);
}

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

.menu-toggle {
  display: none;
}

.button,
.text-button {
  display: inline-flex;
  min-height: 4.7rem;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1rem 2.2rem;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

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

.button svg,
.text-button svg {
  width: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.button--dark:hover,
.button--dark:focus-visible {
  background: #000;
}

.button--accent {
  color: var(--white);
  background: var(--terracotta);
}

.button--accent:hover,
.button--accent:focus-visible {
  background: var(--terracotta-dark);
}

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

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.nav-cta {
  min-height: 4rem;
  padding-inline: 2rem;
}

.grid-lines {
  background-image: linear-gradient(to right, transparent calc(50% - 0.5px), rgba(36, 37, 37, 0.09) calc(50% - 0.5px), rgba(36, 37, 37, 0.09) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}

.hero {
  display: grid;
  min-height: calc(100svh - 8.25rem);
  grid-template-columns: 45% 55%;
  border-bottom: 1px solid var(--line);
}

.hero__content {
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vh, 7rem) var(--page-pad);
}

.hero__copy {
  max-width: 39rem;
}

.hero__copy > p:not(.hero__status) {
  max-width: 31rem;
  margin-top: 2.2rem;
  color: #3d3e3d;
  font-size: clamp(1.12rem, 1.45vw, 1.45rem);
  line-height: 1.62;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.55rem;
  margin-top: 2.6rem;
}

.hero__status {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 3.5rem;
  color: #4f504f;
  font-size: 0.95rem;
}

.hero__status svg {
  width: 1.65rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.hero__media {
  min-width: 0;
  overflow: hidden;
}

.hero__media img {
  object-position: 52% center;
}

.menu-section {
  display: grid;
  min-height: 58rem;
  grid-template-columns: minmax(20rem, 0.95fr) minmax(30rem, 1.1fr) minmax(18rem, 0.62fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  padding: clamp(5rem, 9vw, 9rem) 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.menu-photo {
  align-self: stretch;
}

.menu-photo img {
  min-height: 42rem;
}

.menu-photo figcaption {
  padding: 1rem 2.5rem 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
}

.menu-panel {
  padding-inline: 0.5rem;
}

.accent-rule {
  display: block;
  width: 3rem;
  height: 2px;
  margin-top: 2rem;
  background: var(--terracotta);
}

.menu-intro,
.story__copy p {
  max-width: 29rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.menu-tabs {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: 2.8rem;
  border-bottom: 1px solid var(--line);
}

.menu-tab {
  position: relative;
  padding: 0 0 1rem;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  background: none;
  font-size: 0.98rem;
  white-space: nowrap;
}

.menu-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--terracotta);
  transition: transform var(--transition);
}

.menu-tab.is-active {
  color: var(--terracotta);
}

.menu-tab.is-active::after {
  transform: scaleX(1);
}

.menu-list {
  display: grid;
  min-height: 15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3rem;
  margin-top: 1.5rem;
}

.menu-item {
  display: grid;
  min-height: 4.15rem;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.22rem;
  opacity: 0;
  transform: translateY(7px);
  animation: item-in 340ms forwards;
}

.menu-item:nth-child(2) { animation-delay: 35ms; }
.menu-item:nth-child(3) { animation-delay: 70ms; }
.menu-item:nth-child(4) { animation-delay: 105ms; }
.menu-item:nth-child(5) { animation-delay: 140ms; }
.menu-item:nth-child(6) { animation-delay: 175ms; }
.menu-item:nth-child(n + 7) { animation-delay: 200ms; }

@keyframes item-in {
  to { opacity: 1; transform: translateY(0); }
}

.menu-item__price {
  font-variant-numeric: tabular-nums;
}

.text-button {
  min-height: 3.7rem;
  margin-top: 2.4rem;
  padding: 0.75rem 1.7rem;
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: var(--white);
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--white);
  background: var(--terracotta);
}

.menu-section.is-expanded .menu-list {
  min-height: 23rem;
}

.story {
  display: grid;
  min-height: 40rem;
  grid-template-columns: 56% 44%;
  border-bottom: 1px solid var(--line);
}

.story__media {
  min-height: 40rem;
}

.story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) var(--page-pad);
}

.story__copy p {
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.visit {
  display: grid;
  min-height: 31rem;
  grid-template-columns: 48% 52%;
  background: var(--white);
}

.visit__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7rem) var(--page-pad);
}

.visit__details h2 {
  font-size: clamp(3.45rem, 5vw, 5.65rem);
}

.visit-list {
  display: grid;
  gap: 0.95rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.visit-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #464745;
}

.visit-list svg,
.button--phone svg {
  width: 1.35rem;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--terracotta);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.visit-list a {
  border-bottom: 1px solid currentColor;
}

.visit__details .button-row {
  margin-top: 2rem;
}

.visit__details .button {
  min-height: 4rem;
}

.button--phone:hover svg,
.button--phone:focus-visible svg {
  stroke: var(--white);
}

.map-art {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: var(--concrete);
}

.map-art > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-road {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-width: 26;
}

.map-road--wide { stroke-width: 54; }
.map-road--fine { stroke-width: 12; }

.map-park {
  fill: #dfe2dc;
}

.map-art text {
  fill: #4e504f;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.map-pin path { fill: var(--terracotta); }
.map-pin circle { fill: var(--white); }

.map-art .map-label {
  fill: var(--terracotta-dark);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
}

.site-footer {
  display: grid;
  min-height: 17rem;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: 3.5rem var(--page-pad);
  color: var(--white);
  background: var(--footer);
}

.brand--footer .brand__name {
  font-size: clamp(3rem, 5vw, 5rem);
}

.footer-brand .accent-rule {
  width: 2rem;
  margin-top: 0.8rem;
}

.footer-brand p {
  margin-top: 0.85rem;
  color: #d4d3cf;
}

.footer-nav {
  gap: clamp(2.5rem, 7vw, 7rem);
}

.footer-note {
  grid-column: 1 / -1;
  color: #8e908f;
  font-size: 0.78rem;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: transform 500ms ease;
}

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

.hero [data-reveal] {
  animation: hero-in 720ms both cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero .hero__media {
  animation-delay: 90ms;
}

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

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

@media (max-width: 1100px) {
  .site-header {
    min-height: 6.8rem;
  }

  .primary-nav {
    gap: 2rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 48% 52%;
  }

  .hero__content {
    min-height: 43rem;
  }

  .menu-section {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
  }

  .menu-photo--small {
    display: none;
  }

  .menu-photo figcaption {
    padding-inline: 1.5rem;
  }

  .story {
    grid-template-columns: 52% 48%;
  }

  .visit {
    grid-template-columns: 56% 44%;
  }

  .footer-nav {
    gap: 2.5rem;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 1.25rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  h1 {
    font-size: clamp(3.75rem, 17vw, 5.2rem);
  }

  h2 {
    font-size: clamp(3.35rem, 14vw, 4.8rem);
  }

  .site-header {
    position: sticky;
    top: 0;
    min-height: 5.35rem;
    padding-block: 0.85rem;
    backdrop-filter: blur(14px);
  }

  .brand__name {
    font-size: 2.35rem;
  }

  .brand__descriptor {
    margin-top: 0.35rem;
    font-size: 0.56rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    width: 3rem;
    height: 3rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .menu-toggle span {
    width: 1.25rem;
    height: 1px;
    background: var(--ink);
    transition: transform var(--transition);
  }

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

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

  .primary-nav {
    position: fixed;
    inset: 5.35rem 0 auto;
    display: flex;
    height: calc(100svh - 5.35rem);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 3rem var(--page-pad);
    transform: translateY(-120%);
    background: var(--white);
    transition: transform 420ms cubic-bezier(0.7, 0, 0.2, 1);
  }

  .primary-nav.is-open {
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    width: 100%;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 2.75rem;
    font-weight: 400;
  }

  .primary-nav .nav-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 2rem;
  }

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

  .hero__content {
    min-height: 39rem;
    padding-block: 4.5rem 3.8rem;
  }

  .hero__copy > p:not(.hero__status) {
    margin-top: 1.8rem;
    font-size: 1.08rem;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 2rem;
  }

  .button {
    width: 100%;
    min-height: 3.9rem;
    padding-inline: 1.2rem;
  }

  .hero__status {
    align-items: flex-start;
    margin-top: 2.4rem;
    font-size: 0.84rem;
  }

  .hero__media {
    height: min(30rem, 72svh);
  }

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

  .menu-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4.5rem 0;
  }

  .menu-photo--large {
    width: calc(100% - 2.5rem);
    align-self: flex-start;
  }

  .menu-photo img {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .menu-panel {
    order: -1;
    width: 100%;
    padding-inline: var(--page-pad);
  }

  .menu-intro {
    font-size: 1rem;
  }

  .menu-tabs {
    max-width: 100%;
    gap: 1.3rem;
    overflow-x: auto;
  }

  .menu-list {
    min-height: 0;
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .menu-item {
    min-height: 3.9rem;
  }

  .menu-section.is-expanded .menu-list {
    min-height: 0;
  }

  .text-button {
    width: 100%;
  }

  .story {
    display: flex;
    flex-direction: column-reverse;
  }

  .story__copy {
    min-height: 30rem;
    padding-block: 4.5rem;
  }

  .story__media {
    height: 25rem;
    min-height: 0;
  }

  .story__media img {
    object-position: 43% center;
  }

  .visit__details {
    padding-block: 4.5rem;
  }

  .visit-list li {
    align-items: flex-start;
    font-size: 0.94rem;
  }

  .map-art {
    min-height: 22rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .site-footer {
    display: block;
    min-height: 0;
    padding-block: 4rem 2rem;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid #4a4c4d;
  }

  .footer-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid #4a4c4d;
  }

  .footer-note {
    margin-top: 3rem;
  }
}

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