:root {
  --brand: #2f5f66;
  --bg-top: var(--brand);
  --bg-bottom: var(--brand);
  --surface: #dcecef;
  --surface-strong: #cfe4e8;
  --surface-warm: #c3dde3;
  --text-main: #edf8fa;
  --text-muted: #d3ebef;
  --heading: #f4fdff;
  --accent: #aee6ef;
  --accent-soft: #88d0dc;
  --line: #9fc6cd;
  --line-strong: #7fb2bc;
  --shadow: 0 14px 30px rgba(13, 44, 50, 0.2);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
  color: var(--text-main);
  background: var(--brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(10px);
  background: var(--brand);
  border-bottom: 1px solid rgba(237, 248, 250, 0.22);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
}

.brand {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--heading);
}

.section-block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.hero-content {
  max-width: 740px;
}

.hero.section-block {
  padding-bottom: 1.5rem;
}

.kicker {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.trail-note {
  margin: 0.75rem 0 0;
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(195, 221, 227, 0.22);
  color: #e5f7fa;
  border: 1px solid rgba(207, 228, 232, 0.55);
  font-size: 0.92rem;
}

.hero h1 {
  margin: 0.8rem 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: var(--heading);
}

.hero p {
  font-size: 1.08rem;
  color: var(--text-muted);
}

.menu-section {
  color: var(--text-main);
  padding-top: 0.9rem;
  background: var(--brand);
  border-radius: 1.5rem;
  border: 1px solid var(--brand);
  box-shadow: none;
}

.section-heading {
  color: var(--heading);
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  margin-bottom: 0.2rem;
  font-size: 2rem;
}

.menu-grid {
  display: grid;
  gap: 0.95rem;
}

.menu-pill {
  background: var(--surface-strong);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.menu-pill.is-open {
  border-color: var(--line-strong);
}

.menu-pill-main {
  width: 100%;
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem;
  border: 0;
  text-align: left;
  background: var(--surface);
  cursor: pointer;
}

.menu-pill-main:hover {
  background: #d3e8ec;
}

.menu-thumb {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid #9ebfc6;
}

.menu-pill-copy h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #25494f;
}

.menu-pill-copy p {
  margin: 0.25rem 0 0;
  color: #386169;
}


.menu-pill-detail {
  padding: 0 0.9rem 1rem;
  background: var(--surface-warm);
}

.menu-pill-detail > p {
  margin: 0.1rem 0 0.7rem;
  color: #315860;
}

.recipe-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
}

.recipe-group h4 {
  margin: 0.35rem 0;
  color: #2f575f;
}

.recipe-group ul {
  margin: 0;
  padding-left: 1.2rem;
}

.site-footer {
  text-align: center;
  padding: 1.2rem;
  color: #d8eef2;
}

@media (max-width: 800px) {
  .menu-pill-main {
    grid-template-columns: 76px 1fr;
  }


  .menu-thumb {
    width: 76px;
    height: 76px;
  }

  .recipe-layout {
    grid-template-columns: 1fr;
  }
}
