:root {
  --paper: #faf6ef;
  --paper-deep: #f1e9db;
  --ink: #2b211c;
  --ink-soft: #6b5c50;
  --espresso: #4a3627;
  --ember: #c2562f;
  --white: #fffdf8;
  --line: rgba(43, 33, 28, 0.14);

  --display: "Fraunces", Georgia, serif;
  --body: "Work Sans", system-ui, sans-serif;

  --radius: 18px;
  --shadow: 0 24px 60px -30px rgba(43, 33, 28, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(194, 86, 47, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 40%, rgba(74, 54, 39, 0.06), transparent 55%),
    var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, var(--paper) 0 18%, transparent 19%),
    var(--ember);
  box-shadow: inset 0 0 0 1px rgba(43, 33, 28, 0.18);
}

.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--ember);
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 6vw, 72px);
  max-width: 1160px;
  margin: 0 auto;
}

/* ---------- Hero ---------- */
.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 104px) clamp(20px, 6vw, 72px) clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3rem, 8.5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero-lede {
  margin: 26px 0 0;
  max-width: 44ch;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--ember);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #a94a28;
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.hero-photo {
  margin: 0;
  position: relative;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--ember);
  border-radius: var(--radius) 22px var(--radius) 22px;
  z-index: -1;
}

.hero-photo img {
  width: 100%;
  height: clamp(340px, 46vw, 560px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.hero-photo figcaption {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- Section heads ---------- */
.section-head {
  max-width: 46ch;
  margin-bottom: clamp(34px, 5vw, 52px);
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* ---------- Hours ---------- */
.hours {
  background:
    linear-gradient(to bottom, var(--paper) 0%, var(--paper-deep) 100%);
  border-block: 1px solid var(--line);
}

.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 44px);
  max-width: 620px;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  font-family: var(--display);
  font-size: 1.15rem;
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-time {
  white-space: nowrap;
  color: var(--ember);
  font-weight: 600;
}

.hours-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ---------- Menu ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px, 6vw, 72px);
}

.menu-col h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 26px;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--ember);
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list li:last-child {
  border-bottom: 0;
}

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.menu-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.16rem;
}

.menu-dot {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--line) 0 5px,
    transparent 5px 9px
  );
}

.menu-price {
  font-family: var(--body);
  font-weight: 600;
  color: var(--ember);
  white-space: nowrap;
}

.menu-desc {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Find ---------- */
.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
}

.find-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 44px);
}

.find-card dl {
  margin: 0;
}

.find-card dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}

.find-card dl > div:last-child {
  border-bottom: 0;
}

.find-card dt {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
}

.find-card dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.12rem;
}

.find-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--espresso);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.find-link:hover {
  transform: translateY(-4px);
  background: #3a2a1d;
}

.find-arrow {
  font-size: 1.6rem;
  color: var(--ember);
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 40px 20px 50px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 4px 0;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-delay {
  animation-delay: 0.15s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .find-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 0.85rem;
  }
}
