@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --parchment: #f6efdf;
  --surface: #fffaf0;
  --ink: #103528;
  --loam: #17261f;
  --sage: #c8d6b4;
  --hairline: #d9cfb8;
  --coral: #e75037;
  --ochre: #f2b233;
  --blue: #4d67a8;
  --shadow: 0 22px 60px rgba(20, 58, 43, 0.16);
  --display: "Fraunces", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--parchment);
  color: var(--loam);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 4px;
}

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

.concept-bar {
  padding: 10px 24px;
  background: var(--ink);
  color: var(--parchment);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--hairline);
  background: rgba(246, 239, 223, 0.94);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.brand img {
  width: 220px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.path-grid a {
  text-decoration: none;
}

.nav-links a:hover,
.path-grid a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.15;
  text-align: center;
}

.header-cta,
.button-primary {
  background: var(--ink);
  color: var(--parchment);
}

.button-secondary {
  background: var(--ochre);
  color: var(--ink);
}

.button-ghost {
  border: 1px solid rgba(16, 53, 40, 0.3);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(44px, 6vw, 86px) clamp(18px, 4vw, 56px) 48px;
  min-height: 650px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow,
.label,
.card-kicker {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: 64px;
  line-height: 0.98;
}

h2 {
  font-size: 44px;
  line-height: 1.05;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
}

.hero-lede,
.section-heading p,
.event-panel p,
.story-notes p,
.image-band-copy p,
.source-paths h2 + .path-grid {
  font-size: 18px;
}

.hero-lede {
  max-width: 58ch;
  margin: 24px 0 0;
}

.hero-actions,
.center-actions,
.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-media figcaption {
  padding: 14px 18px;
  color: rgba(23, 38, 31, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow: hidden;
  background: var(--hairline);
}

.quick-strip article {
  min-height: 156px;
  padding: 24px;
  background: var(--surface);
}

.quick-strip article:nth-child(2) {
  background: var(--sage);
}

.quick-strip article:nth-child(3) {
  background: var(--ochre);
}

.quick-strip article:nth-child(4) {
  background: var(--ink);
  color: var(--parchment);
}

.quick-strip article:nth-child(4) .label {
  color: var(--ochre);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 18px;
}

.quick-strip p {
  margin: 0;
  font-weight: 700;
}

.section {
  padding: 92px clamp(18px, 4vw, 56px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.6fr);
  gap: 48px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.section-heading p:last-child {
  margin: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.menu-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: var(--surface);
}

.menu-card.featured {
  grid-row: span 2;
  background: var(--ink);
  color: var(--parchment);
}

.menu-card.featured h3,
.menu-card.featured p {
  color: inherit;
}

.menu-card.accent {
  background: var(--coral);
  color: var(--parchment);
}

.menu-card.accent h3,
.menu-card.accent p {
  color: inherit;
}

.menu-card.blue {
  background: var(--blue);
  color: var(--parchment);
}

.menu-card.blue h3,
.menu-card.blue p {
  color: inherit;
}

.menu-card p:last-child {
  margin: 18px 0 0;
}

.center-actions {
  justify-content: center;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  padding: 92px clamp(18px, 4vw, 56px);
  background: var(--surface);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.story-copy,
.story-notes {
  max-width: 650px;
}

.story-notes {
  display: grid;
  gap: 20px;
}

.story-notes p {
  margin: 0;
  padding: 24px;
  border-left: 6px solid var(--coral);
  background: var(--parchment);
}

.event-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 20px;
  background: var(--sage);
}

.event-panel p {
  max-width: 62ch;
}

.event-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.image-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--ink);
  color: var(--parchment);
}

.image-band-copy {
  padding: clamp(34px, 6vw, 70px);
}

.image-band h2,
.image-band p {
  color: inherit;
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.source-paths {
  padding: 76px clamp(18px, 4vw, 56px);
  text-align: center;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin: 30px auto 0;
}

.path-grid a {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: var(--surface);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.8fr);
  gap: 40px;
  padding: 64px clamp(18px, 4vw, 56px);
  background: var(--loam);
  color: var(--parchment);
}

.site-footer img {
  width: 210px;
  margin-bottom: 24px;
  background: rgba(246, 239, 223, 0.08);
}

.site-footer h2,
.site-footer p {
  color: inherit;
}

.site-footer p {
  max-width: 62ch;
  margin: 0;
}

.owner-cta {
  justify-self: end;
  max-width: 560px;
}

.owner-cta .button {
  margin-top: 22px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-links {
    order: 3;
  }

  .hero,
  .section-heading,
  .story-band,
  .event-panel,
  .image-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  h1 {
    max-width: 13ch;
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .quick-strip,
  .menu-grid,
  .path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-actions,
  .owner-cta {
    justify-self: start;
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .concept-bar {
    padding-inline: 14px;
  }

  .brand img {
    width: 190px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
  }

  .header-cta,
  .button {
    width: 100%;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-actions,
  .event-actions {
    width: 100%;
  }

  .quick-strip,
  .menu-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .quick-strip article,
  .menu-card {
    min-height: auto;
  }

  .section,
  .story-band {
    padding-block: 64px;
  }

  .image-band img {
    min-height: 300px;
  }
}

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