:root {
  --bg: #fff6ea;
  --paper: #fffaf3;
  --ink: #2d1d16;
  --muted: #6f5447;
  --accent: #d57c4e;
  --accent-soft: #f3c6aa;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

h1,
h2,
h3,
.brand { font-family: 'Cormorant Garamond', serif; letter-spacing: 0.015em; }

.mast {
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem;
}

.grain {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(213, 124, 78, 0.22), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(243, 198, 170, 0.28), transparent 35%),
    linear-gradient(160deg, #fff1de, #fff9f0 45%, #fff6ea);
  z-index: -1;
}

.topbar,
.hero,
.section,
.order {
  width: min(1080px, 92%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  position: relative;
}

.brand {
  text-decoration: none;
  color: #2b1b12;
  font-size: 1.45rem;
  font-weight: 700;
}

.topnav {
  display: flex;
  gap: 1rem;
}

.topnav a {
  text-decoration: none;
  color: #5d4133;
  font-weight: 600;
}

.menu-button {
  display: none;
  border: 1px solid #d4a689;
  background: #fff8f0;
  color: #5a3b2f;
  border-radius: 999px;
  padding: 0.45rem 0.82rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 0.7rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #9a6d56;
  margin-bottom: 0.62rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.7vw, 4.2rem);
  line-height: 0.95;
  margin-bottom: 0.85rem;
}

.hero p { color: var(--muted); max-width: 56ch; }

.hero-actions {
  margin-top: 1.05rem;
  display: flex;
  gap: 0.62rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.04rem;
  font-weight: 700;
  display: inline-block;
}

.btn-main {
  color: #fff8f0;
  background: linear-gradient(120deg, #cb6f3e, var(--accent));
}

.btn-outline {
  color: #5e3f32;
  border: 1px solid #d9ab8f;
  background: rgba(255, 253, 248, 0.82);
}

.hero figure img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(121, 66, 36, 0.22);
}

.section {
  padding: 3.6rem 0;
}

.heading p {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  color: #9a6f57;
  margin-bottom: 0.45rem;
}

.heading h2 {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 0.95;
}

.menu-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
}

.menu-grid article {
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ebd2c0;
}

.menu-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-grid article div { padding: 0.9rem; }

.menu-grid h3 {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.34rem;
}

.menu-grid p { color: #6d5245; }

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: #9d6e56;
  margin-bottom: 0.5rem;
}

.story h2 {
  font-size: clamp(2rem, 4.7vw, 3.2rem);
  line-height: 0.95;
  margin-bottom: 0.75rem;
}

.story-copy p { color: #6c5246; }

.story figure img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e2c2ac;
}

.gallery-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid #e5c8b4;
}

.order {
  text-align: center;
  background: linear-gradient(160deg, #ffe9d5, #fff4e8);
  border-top: 1px solid #e5bea2;
  border-bottom: 1px solid #e5bea2;
  padding: 2.8rem 1rem 3.5rem;
}

.order h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.95;
  margin-bottom: 0.56rem;
}

.order p {
  color: #654c3f;
  margin-bottom: 1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 870px) {
  .hero,
  .story { grid-template-columns: 1fr; }

  .menu-button { display: inline-block; }

  .topnav {
    position: absolute;
    top: 3rem;
    right: 0;
    flex-direction: column;
    background: rgba(255, 247, 237, 0.98);
    border: 1px solid #e0ba9f;
    border-radius: 12px;
    padding: 0.7rem;
    min-width: 170px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .topnav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
