:root {
  --ink: #25170f;
  --muted: #765f4e;
  --cream: #fff8ed;
  --paper: #fffdf7;
  --pho: #d95f2b;
  --pho-dark: #a83f1d;
  --herb: #287d4a;
  --gold: #f2b84b;
  --shadow: 0 24px 70px rgba(83, 42, 20, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at top left, #ffe6c8 0, transparent 34rem), var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.hero {
  min-height: 92vh;
  padding: 28px clamp(20px, 5vw, 72px) 72px;
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.94), rgba(255, 235, 207, 0.88)),
    radial-gradient(circle at 80% 20%, rgba(217, 95, 43, 0.22), transparent 22rem);
}

.nav, .section, footer {
  max-width: 1160px;
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand, .nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--pho), var(--pho-dark));
  box-shadow: 0 12px 30px rgba(217, 95, 43, 0.3);
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  color: var(--muted);
}

.hero-grid {
  max-width: 1160px;
  margin: 82px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pho-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}
.button.primary { color: white; background: var(--pho); box-shadow: 0 18px 40px rgba(217, 95, 43, 0.32); }
.button.ghost { color: var(--pho-dark); border: 2px solid rgba(168, 63, 29, 0.22); background: rgba(255,255,255,0.45); }

.photo-card {
  position: relative;
  min-height: 520px;
  border-radius: 52px;
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
  background: #2b150d;
}
.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 23, 15, 0.04), rgba(37, 23, 15, 0.72));
  z-index: 1;
}
.photo-card figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
  display: grid;
  gap: 6px;
  color: white;
}
.photo-card figcaption span {
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(40, 125, 74, 0.88);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.photo-card figcaption strong {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.photo-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 16px;
  margin-top: 6px;
}
.photo-strip img {
  width: 100%;
  height: clamp(190px, 24vw, 280px);
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 14px 40px rgba(88, 48, 20, 0.12);
}
.photo-strip img:nth-child(2) { margin-top: 28px; }
.photo-credit {
  margin-top: 22px;
  font-size: .92rem;
  color: #f2d7b8 !important;
}
.section {
  padding: clamp(70px, 10vw, 116px) clamp(20px, 5vw, 0px);
}
.intro, .visit {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 42px;
  align-items: start;
}
.intro > p, .visit p { color: var(--muted); font-size: 1.08rem; }
.section-heading { margin-bottom: 28px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.menu-card, .story-panel, .visit-card {
  border: 1px solid rgba(168, 63, 29, 0.12);
  border-radius: 30px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 14px 40px rgba(88, 48, 20, 0.08);
}
.menu-card { padding: 26px; position: relative; }
.menu-card p { color: var(--muted); margin-bottom: 0; }
.price {
  float: right;
  color: white;
  background: var(--herb);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 900;
}
.story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 22px;
  align-items: stretch;
}
.story-panel { padding: clamp(28px, 5vw, 50px); background: var(--ink); color: var(--cream); }
.story-panel .eyebrow { color: var(--gold); }
.story-panel p:not(.eyebrow) { color: #eadfce; }
.story-stats {
  display: grid;
  gap: 18px;
}
.story-stats div {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fffdf8, #ffe9cc);
  box-shadow: 0 12px 34px rgba(88, 48, 20, 0.08);
}
.story-stats strong {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  color: var(--pho-dark);
}
.story-stats span { color: var(--muted); font-weight: 800; }
.visit-card { padding: 28px; }
.visit-card p { margin-bottom: 16px; }
.visit-card p:last-child { margin-bottom: 0; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(20px, 5vw, 0px) 46px;
  color: var(--muted);
  border-top: 1px solid rgba(168, 63, 29, 0.12);
}
footer p { margin: 0; }

@media (max-width: 860px) {
  .nav { align-items: flex-start; }
  .nav-links { gap: 10px; font-size: .92rem; }
  .hero-grid, .intro, .story, .visit { grid-template-columns: 1fr; }
  .photo-card, .photo-card img { min-height: 380px; border-radius: 34px; }
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img:nth-child(2) { margin-top: 0; }
  .menu-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}

@media (max-width: 560px) {
  .nav, .nav-links { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 3.5rem; }
  .section { padding-top: 62px; padding-bottom: 62px; }
}
