:root {
  color-scheme: light;
  --paper: #f3ebdd;
  --paper-muted: #e7ddcd;
  --forest: #17372f;
  --forest-soft: #315148;
  --brick: #a33f2b;
  --brick-hover: #873522;
  --ink: #17201d;
  --white: #ffffff;
  --rule: rgba(23, 55, 47, 0.25);
  --radius: 4px;
  --page-pad: clamp(20px, 6vw, 96px);
  --content-max: 1280px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: Aptos, "Segoe UI", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

body,
button,
a {
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

address {
  font-style: normal;
}

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

h1,
h2,
h3 {
  color: var(--forest);
  font-family: "Arial Narrow", "Roboto Condensed", "Aptos Display", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(2.125rem, 5vw, 3.25rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.375rem;
  line-height: 1.15;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 50;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid var(--brick);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--rule);
  background: rgba(243, 235, 221, 0.96);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: min(calc(100% - (2 * var(--page-pad))), var(--content-max));
  min-height: var(--header-height);
  margin: 0 auto;
  gap: 30px;
}

.brand-link {
  width: fit-content;
  color: var(--forest);
  font-family: "Arial Narrow", "Roboto Condensed", "Aptos Display", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mobile,
.call-mobile {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  white-space: nowrap;
}

.desktop-nav a,
.header-call {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--brick-hover);
}

.header-call {
  justify-self: end;
  border-radius: var(--radius);
  background: var(--brick);
  color: var(--white);
  padding: 11px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.section-shell {
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.hero {
  display: flex;
  align-items: center;
  min-height: min(820px, calc(100dvh - var(--header-height)));
  padding-top: 44px;
  padding-bottom: 44px;
}

.hero-grid,
.about-grid,
.experience > *,
.food-band,
.visit-grid,
.site-footer > * {
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.hero-copy {
  grid-column: 1 / span 7;
  position: relative;
  z-index: 2;
  padding-right: clamp(8px, 3vw, 48px);
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 6.2vw, 4.875rem);
  line-height: 0.96;
}

.hero h1 span {
  display: block;
}

.hero-lede {
  max-width: 20ch;
  margin-bottom: 28px;
  color: var(--forest-soft);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.25;
}

.hero-actions {
  margin-bottom: 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 120ms ease, transform 120ms ease;
}

.button-primary {
  background: var(--brick);
  color: var(--white);
}

.button-primary:hover {
  background: var(--brick-hover);
  transform: translateY(-1px);
}

.button:active,
.header-call:active,
.mobile-call-bar a:active {
  transform: translateY(1px);
}

.hero-contact {
  display: grid;
  gap: 4px;
  max-width: 39ch;
  color: var(--forest);
  font-size: 0.91rem;
  font-weight: 650;
}

.hero-contact a {
  width: fit-content;
  text-underline-offset: 4px;
}

.hero-visual {
  grid-column: 8 / -1;
  margin: 0 -32px 0 0;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: var(--paper-muted);
}

.hero-image-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.image-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  border-left: 5px solid var(--forest);
  padding: 28px;
  background: var(--paper-muted);
  color: var(--forest);
  font-family: "Arial Narrow", "Roboto Condensed", "Aptos Display", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
}

.hero-visual.is-error .hero-image-frame img {
  display: none;
}

.hero-visual.is-error figcaption {
  display: none;
}

.hero-grid.has-image-error .hero-copy {
  grid-column: 1 / -1;
  max-width: 72ch;
  padding-right: 0;
}

.hero-grid.has-image-error .hero-visual {
  display: none;
}

.hero-visual figcaption {
  max-width: 48ch;
  margin-top: 10px;
  color: var(--forest-soft);
  font-size: 0.75rem;
  line-height: 1.4;
}

.about,
.experience,
.visit {
  padding-top: 104px;
  padding-bottom: 104px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.accent-rule {
  grid-column: 1;
  width: 5px;
  height: 88px;
  margin-top: 8px;
  background: var(--brick);
}

.about h2 {
  grid-column: 2 / span 6;
}

.about p {
  grid-column: 5 / span 6;
  max-width: 60ch;
  margin: 28px 0 0;
  color: var(--forest-soft);
  font-size: 1.12rem;
}

.section-heading-stack {
  margin-bottom: 52px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.experience-item {
  position: relative;
  padding-top: 24px;
}

.experience-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 3px;
  background: var(--brick);
}

.experience-item p {
  max-width: 36ch;
  margin-bottom: 0;
  color: var(--forest-soft);
}

.food-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.food-band {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  border-radius: var(--radius);
  padding: clamp(36px, 6vw, 72px);
  background: var(--paper-muted);
}

.food-heading {
  grid-column: 1 / span 6;
}

.food-heading h2 {
  margin-bottom: 18px;
}

.food-disclosure {
  margin-bottom: 0;
  color: var(--forest-soft);
  font-weight: 700;
}

.food-action {
  grid-column: 8 / -1;
  align-self: center;
}

.food-action p {
  max-width: 34ch;
  margin-bottom: 24px;
  color: var(--forest-soft);
}

.visit {
  padding-bottom: 112px;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.visit-content {
  grid-column: 1 / span 8;
}

.visit-address {
  display: grid;
  margin: 22px 0 30px;
  color: var(--forest);
  font-family: "Arial Narrow", "Roboto Condensed", "Aptos Display", sans-serif;
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.02;
}

.visit-content > p {
  max-width: 48ch;
  color: var(--forest-soft);
}

.visit-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}

.text-link {
  color: var(--forest);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  white-space: nowrap;
}

.visit-mark {
  grid-column: 10 / -1;
  display: grid;
  min-height: 220px;
  align-content: end;
  border-left: 5px solid var(--forest);
  padding: 22px;
  color: var(--forest);
  font-family: "Arial Narrow", "Roboto Condensed", "Aptos Display", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.visit-mark span:first-child {
  font-size: clamp(4rem, 8vw, 7rem);
}

.visit-mark span:last-child {
  margin-top: 8px;
  font-size: 1.3rem;
}

.site-footer {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  border-top: 2px solid var(--forest);
  padding-top: 30px;
}

.footer-main strong {
  color: var(--forest);
  font-family: "Arial Narrow", "Roboto Condensed", "Aptos Display", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.footer-main address {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.footer-main a {
  width: fit-content;
  text-underline-offset: 4px;
}

.footer-note {
  max-width: 78ch;
  margin-top: 32px;
  margin-bottom: 0;
  color: var(--forest-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.mobile-call-bar {
  display: none;
}

@media (max-width: 900px) {
  .header-inner {
    gap: 16px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(3rem, 7.8vw, 4.2rem);
  }

  .hero-visual {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --page-pad: 20px;
    --header-height: 64px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
    font-size: 17px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    width: calc(100% - 40px);
  }

  .brand-desktop,
  .call-desktop,
  .desktop-nav {
    display: none;
  }

  .brand-mobile,
  .call-mobile {
    display: inline;
  }

  .header-call {
    padding: 9px 15px;
  }

  .hero {
    min-height: calc(100dvh - var(--header-height) - 72px - env(safe-area-inset-bottom));
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .hero-grid,
  .about-grid,
  .experience-grid,
  .food-band,
  .visit-grid,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy,
  .hero-visual,
  .accent-rule,
  .about h2,
  .about p,
  .food-heading,
  .food-action,
  .visit-content,
  .visit-mark {
    grid-column: 1;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(2.85rem, 14vw, 3.45rem);
  }

  .hero-lede {
    margin-bottom: 20px;
    font-size: 1.18rem;
  }

  .hero-actions {
    margin-bottom: 18px;
  }

  .hero-contact {
    font-size: 0.82rem;
  }

  .hero-image-frame {
    aspect-ratio: 4 / 3;
  }

  .hero-image-frame img {
    object-position: center;
  }

  .hero-visual figcaption {
    font-size: 0.7rem;
  }

  .about,
  .experience,
  .visit {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-grid {
    gap: 0;
  }

  .accent-rule {
    width: 64px;
    height: 5px;
    margin: 0 0 24px;
  }

  .about h2 {
    margin-bottom: 20px;
  }

  .about p {
    margin: 0;
  }

  .section-heading-stack {
    margin-bottom: 34px;
  }

  .experience-grid {
    gap: 36px;
  }

  .experience-item {
    padding-top: 18px;
  }

  .food-section {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .food-band {
    padding: 34px 24px;
  }

  .food-heading h2 {
    margin-bottom: 12px;
  }

  .food-action p {
    margin-bottom: 20px;
  }

  .visit-address {
    margin-top: 14px;
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .visit-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .visit-mark {
    min-height: 132px;
    margin-top: 20px;
  }

  .visit-mark span:first-child {
    font-size: 4rem;
  }

  .site-footer {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .footer-main {
    gap: 22px;
  }

  .footer-main address {
    justify-items: start;
    text-align: left;
  }

  .footer-note {
    margin-top: 26px;
  }

  .mobile-call-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: block;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    background: var(--forest);
  }

  .mobile-call-bar a {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--brick);
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 120ms ease, transform 120ms ease;
  }
}

@media (max-width: 374px) {
  :root {
    --page-pad: 16px;
  }

  .header-inner {
    width: calc(100% - 32px);
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .button {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }
}

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

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

@media (forced-colors: active) {
  .button,
  .header-call,
  .mobile-call-bar a {
    border: 2px solid ButtonText;
  }

  .accent-rule,
  .experience-item::before {
    background: CanvasText;
  }
}
