:root {
  color-scheme: light;
  --bg: #f7f1e6;
  --bg-2: #fff7eb;
  --ink: #2a1b12;
  --ink-soft: rgba(42, 27, 18, 0.7);
  --accent: #c73e1d;
  --accent-2: #f6b93b;
  --accent-3: #1f7a54;
  --stroke: rgba(42, 27, 18, 0.15);
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Be Vietnam Pro", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: #f8f2e9;
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='120' height='120' filter='url(%23n)' opacity='0.07'/></svg>");
  mix-blend-mode: multiply;
  z-index: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8vw;
  background: rgba(255, 247, 235, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stroke);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff8f0;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.logo__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.logo__sub {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.nav__links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav__cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}

.hero--full {
  min-height: 70vh;
  padding: 120px 8vw 80px;
  position: relative;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--stroke);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(42, 27, 18, 0.8), rgba(42, 27, 18, 0.25));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  color: #fff7eb;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #ffd18f;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin: 16px 0;
}

.hero h1 span {
  color: #ffd18f;
  display: block;
}

.lead {
  color: rgba(255, 247, 235, 0.8);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--accent-2);
  color: #3d2005;
  box-shadow: 0 12px 25px rgba(246, 185, 59, 0.3);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 247, 235, 0.6);
  color: #fff7eb;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero__meta {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero__meta h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.menu--split {
  padding: 80px 8vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  background: #fff7eb;
}

.section__head {
  display: grid;
  gap: 12px;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.menu__items {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--stroke);
}

.menu-item span {
  color: var(--accent);
  font-weight: 600;
}

.menu__photo {
  min-height: 360px;
  border-radius: 28px;
  background-image: linear-gradient(
      120deg,
      rgba(42, 27, 18, 0.25),
      rgba(42, 27, 18, 0.1)
    ),
    var(--photo);
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid;
  align-items: end;
  padding: 24px;
  box-shadow: 0 24px 50px rgba(42, 27, 18, 0.18);
}

.menu__badge {
  background: rgba(255, 247, 235, 0.92);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 6px;
}

.flavors {
  padding: 80px 8vw;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  background: linear-gradient(120deg, #fff1e0 0%, #fff7eb 100%);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.flavors__track {
  display: grid;
  gap: 16px;
}

.flavors__card {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--stroke);
}

.flavors__panel {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--stroke);
  display: grid;
  gap: 14px;
}

.story--chef {
  padding: 80px 8vw;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.story__image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(42, 27, 18, 0.2);
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.story__highlights h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.cta {
  margin: 80px 8vw;
  padding: 36px;
  border-radius: 28px;
  background: var(--accent-2);
  color: #3d2005;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cta__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cta__form input {
  flex: 1;
  min-width: 160px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(61, 32, 5, 0.2);
  font-family: inherit;
}

.footer {
  padding: 40px 8vw 60px;
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--stroke);
}

.footer__links {
  display: flex;
  gap: 16px;
}

.footer__note {
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav__links {
    width: 100%;
    justify-content: space-between;
  }

  .hero--full {
    padding: 100px 8vw 60px;
  }
}

@media (max-width: 700px) {
  .nav__links {
    display: none;
  }

  .cta {
    margin: 60px 6vw;
  }
}
