:root {
  --ink: #1a1410;
  --muted: #6e5f54;
  --paper: #fff8ec;
  --cream: #f4ead9;
  --terracotta: #b54c2e;
  --saffron: #d99a2b;
  --olive: #506b48;
  --wine: #5b1d1b;
  --line: rgba(26, 20, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 248, 236, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 0.9;
}

.brand small {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 34px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

.nav-call {
  padding: 11px 16px;
  color: #fff;
  background: var(--terracotta);
  border-radius: 999px;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 154, 43, 0.22), transparent 30%),
    var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(22px, 6vw, 82px) 60px;
}

.hero-photo {
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(26, 20, 16, 0.28), rgba(26, 20, 16, 0.02)),
    url("assets/real/storefront.jpg") center / cover;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(52px, 6.8vw, 104px);
}

h2 {
  font-size: clamp(38px, 5vw, 76px);
}

h3 {
  margin: 0;
  font-size: 24px;
}

.lead,
.story-text p,
.section-heading p,
.reviews-section p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--terracotta);
}

.button.secondary {
  color: var(--terracotta);
  background: transparent;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--wine);
  color: #fff;
}

.trust-strip div {
  min-height: 142px;
  padding: 32px clamp(20px, 4vw, 60px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 850;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(72px, 10vw, 140px) clamp(20px, 6vw, 96px);
}

.story-text {
  align-self: center;
}

.story-text p {
  max-width: 720px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.feature-list span {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--olive);
  font-weight: 900;
}

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

figure img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

figcaption {
  padding: 18px 20px;
  color: var(--muted);
  font-weight: 800;
}

.menu-section {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 6vw, 96px);
  background: var(--cream);
}

.section-heading {
  max-width: 980px;
}

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

.menu-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3vw, 36px);
  background: #fffdf7;
  border: 1px solid rgba(181, 76, 46, 0.25);
  box-shadow: 0 20px 60px rgba(91, 29, 27, 0.08);
}

.menu-grid h3 {
  color: var(--wine);
}

.menu-grid p {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 780;
  line-height: 1.35;
}

.menu-grid p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-grid strong {
  color: var(--terracotta);
}

.photo-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr) minmax(0, 0.8fr);
  align-items: stretch;
  background: var(--wine);
  color: #fff;
}

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

.photo-band div {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 80px);
}

.photo-band .eyebrow {
  color: var(--saffron);
}

.photo-band h2 {
  color: #fff;
  font-size: clamp(36px, 4.4vw, 66px);
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 5vw, 76px);
  padding: clamp(70px, 10vw, 140px) clamp(20px, 6vw, 96px);
  background: #fffdf7;
}

.review-cards {
  display: grid;
  gap: 16px;
}

.review-cards article {
  padding: 28px;
  border-left: 7px solid var(--saffron);
  background: var(--paper);
}

.review-cards strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.review-cards p {
  margin: 0;
  font-size: 18px;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  background: var(--ink);
  color: #fff;
}

.visit-photo {
  min-height: 600px;
  background: url("assets/real/storefront.jpg") center / cover;
}

.visit-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 90px);
}

.visit-card .eyebrow {
  color: var(--saffron);
}

.visit-card h2 {
  color: #fff;
  font-size: clamp(36px, 4.4vw, 66px);
}

dl {
  display: grid;
  gap: 24px;
  margin: 34px 0 0;
}

dt {
  color: var(--saffron);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.35;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 60px 20px;
  background: #090706;
  color: #fff;
  text-align: center;
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.footer-brand span {
  color: var(--saffron);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
  font-size: 20px;
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.footer-links a {
  min-width: 92px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.footer small {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
  }

  .hero,
  .story-section,
  .photo-band,
  .reviews-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    min-height: 56svh;
    order: -1;
  }

  .hero-copy {
    padding-top: 48px;
  }

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

  .photo-band img {
    min-height: 320px;
  }

  .visit-photo {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  nav a:not(.nav-call) {
    display: none;
  }

  .brand span {
    font-size: 24px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .trust-strip,
  .menu-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .menu-grid p {
    grid-template-columns: 1fr;
  }
}
