:root {
  --ink: #211816;
  --muted: #6d5f59;
  --paper: #fffaf1;
  --cream: #f6ead2;
  --red: #a43027;
  --red-dark: #7e211b;
  --green: #2f5b45;
  --blue: #254d65;
  --line: rgba(33, 24, 22, 0.16);
  --shadow: 0 24px 60px rgba(64, 38, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand-logo-wrap {
  display: grid;
  width: 72px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

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

.header-order,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-order,
.button.primary {
  background: var(--red);
  color: white;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: calc(88vh - 76px);
  border-bottom: 1px solid var(--line);
}

.hero-banner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 3fr 1fr;
  min-height: calc(100vh - 76px);
}

.hero-media {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--green);
}

.hero-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(33, 24, 22, 0) 45%, rgba(33, 24, 22, 0.26));
}

.hero-banner .hero-media {
  display: grid;
  align-items: stretch;
  min-height: auto;
  background: var(--cream);
}

.hero-banner .hero-media img {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.hero-banner .hero-media::after {
  display: none;
}

.hero-info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--red-dark);
}

.hero-info-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 3vw, 34px);
  background: var(--red-dark);
  color: white;
  text-decoration: none;
}

.hero-info-card span {
  margin-bottom: 8px;
  color: #f7d89d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-info-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.7vw, 40px);
  line-height: 1;
}

.hero-info-card small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
}

.hero-action-card {
  background: var(--green);
}

.hero-action-card:hover {
  background: #244936;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(164, 48, 39, 0.08), transparent 42%),
    var(--paper);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(50px, 6.2vw, 86px);
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 58px);
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-lede {
  max-width: 650px;
  color: #443631;
  font-size: clamp(18px, 1.8vw, 23px);
}

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

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}

.quick-info div {
  min-height: 82px;
  padding: 16px;
  border-top: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.6);
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.intro-band,
.section,
.order-section,
.visit-section {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  background: var(--green);
  color: white;
}

.intro-band .section-kicker {
  color: #ffd68b;
}

.intro-band p:last-child {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.photo-strip img {
  aspect-ratio: 1.34;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.menu-card img {
  aspect-ratio: 1.18;
  object-fit: cover;
}

.menu-card div {
  padding: 20px;
}

.menu-card p,
.order-copy p,
.visit-card p,
.hours-card p {
  color: var(--muted);
}

.order-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  align-items: stretch;
  background: var(--cream);
}

.order-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.order-link-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.order-link-card img {
  aspect-ratio: 1.9;
  object-fit: cover;
}

.order-link-card div {
  padding: clamp(22px, 4vw, 38px);
}

.order-link-card p {
  color: var(--muted);
}

.family-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(47, 91, 69, 0.08), transparent 45%),
    var(--paper);
}

.family-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.family-photo img {
  aspect-ratio: 1.8;
  object-fit: cover;
}

.family-copy {
  max-width: 620px;
}

.family-copy p {
  color: var(--muted);
  font-size: 19px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 20px;
  background:
    linear-gradient(90deg, rgba(37, 77, 101, 0.08), transparent 44%),
    var(--paper);
}

.visit-card,
.hours-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.large-stat {
  margin-bottom: 0;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 82px;
  font-weight: 800;
  line-height: 0.9;
}

.muted {
  color: var(--muted);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
  min-height: calc(86vh - 76px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(164, 48, 39, 0.08), transparent 44%),
    var(--paper);
}

.about-copy {
  max-width: 720px;
}

.about-sign {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.about-sign img {
  aspect-ratio: 1.5;
  object-fit: contain;
  padding: clamp(12px, 2vw, 24px);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(28px, 5vw, 80px);
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: var(--green);
  color: white;
}

.about-story .section-kicker {
  color: #ffd68b;
}

.story-text p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.story-family-photo {
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  aspect-ratio: 1.8;
  object-fit: cover;
}

.values-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--cream);
}

.values-section article {
  min-height: 190px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.values-section p {
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: white;
}

.footer p {
  margin: 0;
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .intro-band,
  .about-hero,
  .about-story,
  .family-section,
  .order-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .hero-info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-info-card {
    min-height: 128px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 300px;
  }

  .quick-info,
  .menu-grid,
  .values-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 14px;
  }

  .brand small,
  .header-order {
    display: none;
  }

  .brand-logo-wrap {
    width: 58px;
    height: 40px;
  }

  .hero-media {
    min-height: 190px;
  }

  .hero-banner .hero-media {
    min-height: 0;
  }

  .hero-info-strip {
    grid-template-columns: 1fr;
  }

  .hero-info-card {
    min-height: auto;
    padding: 18px 16px;
  }

  .hero-info-card strong {
    font-size: 25px;
  }

  .hero-copy,
  .intro-band,
  .section,
  .about-hero,
  .about-story,
  .values-section,
  .order-section,
  .visit-section {
    padding: 38px 16px;
  }

  h1 {
    font-size: 43px;
  }

  .quick-info {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .quick-info div {
    min-height: 76px;
    padding: 10px;
  }

  .quick-info dt {
    font-size: 10px;
  }

  .quick-info dd {
    font-size: 13px;
    line-height: 1.25;
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .footer {
    display: block;
  }

  .footer p + p {
    margin-top: 8px;
  }
}
