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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ddd0b5;
  background-image:
    url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  color: #3a3228;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

/* ──────────────────── Header ──────────────────── */

header {
  padding: 2.5rem 3rem 1rem;
  text-align: center;
}

header a {
  display: inline-block;
}

.header-logo {
  height: 72px;
  width: auto;
  display: block;
  opacity: 0.9;
}

/* ──────────────────── Main ──────────────────── */

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem 4rem;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

/* Page title */
.page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2c241c;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* ──────────────────── Tabs ──────────────────── */

.tabs {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 520px;
  position: relative;
}

.tab {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.tab-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: #a89c8a;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.tab:hover .tab-label {
  color: #6b5f4f;
}

.tab.active .tab-label {
  color: #2c241c;
}

/* Thin underline indicator */
.tab-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 1.5px;
  border-radius: 1px;
  background-color: #2c241c;
  transition: width 0.3s ease;
}

.tab.active .tab-indicator {
  width: 100%;
}

/* ──────────────────── Tab Panels ──────────────────── */

.tab-content {
  display: none;
  width: 100%;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────── Story Section ──────────────────── */

.story-text {
  text-align: left;
  margin-bottom: 3rem;
}

.story-text p {
  font-size: 1rem;
  line-height: 2;
  color: #5a4e40;
  margin-bottom: 1.25rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

/* Arrow to next section */
.next-section-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #a89c8a;
  transition: color 0.3s ease;
  margin: 1rem auto 0;
  padding: 1rem;
}

.next-section-arrow:hover {
  color: #3a3228;
}

.arrow-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.arrow-icon {
  font-size: 1.3rem;
  animation: bounce 2.2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ──────────────────── Dishes ──────────────────── */

.dish {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(196, 183, 158, 0.6);
  padding: 1.75rem 0;
}

.dish:first-of-type {
  padding-top: 0;
}

.dish:last-of-type {
  margin-bottom: 2rem;
}

.dish summary {
  cursor: pointer;
  list-style: none;
  text-align: center;
  padding: 0.25rem 0;
}

.dish summary::-webkit-details-marker {
  display: none;
}

.dish summary::marker {
  display: none;
  content: '';
}

/* Header row: name + chevron inline */
.dish-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.dish-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 1.65rem;
  color: #2c241c;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

.dish-chevron {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid #a89c8a;
  border-bottom: 1.5px solid #a89c8a;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

.dish[open] .dish-chevron {
  transform: rotate(-135deg);
  top: 2px;
}

.dish-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 0.9rem;
  color: #8a7d6b;
  line-height: 1.65;
  max-width: 540px;
  margin: 0.35rem auto 0;
}

.dish-body {
  padding: 1.25rem 0 0.25rem;
}

.dish-body p {
  font-size: 0.97rem;
  line-height: 1.9;
  color: #5a4e40;
  text-align: left;
}

/* Closing note */
.closing-note {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 183, 158, 0.6);
}

.closing-note p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #6b5f4f;
}

/* ──────────────────── Footer ──────────────────── */

footer {
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(58, 50, 40, 0.1);
}

.footer-logo {
  height: 36px;
  width: auto;
  display: inline-block;
  opacity: 0.5;
}

/* ──────────────────── Responsive ──────────────────── */

@media (max-width: 600px) {
  header {
    padding: 1.5rem 1.5rem 0.75rem;
  }

  .header-logo {
    height: 56px;
  }

  main {
    padding: 0.5rem 1.25rem 3rem;
  }

  .page-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
  }

  .tabs {
    gap: 1.75rem;
    margin-bottom: 2.25rem;
    max-width: 100%;
  }

  .tab-label {
    font-size: 1.1rem;
  }

  .story-text p {
    font-size: 0.93rem;
    line-height: 1.9;
  }

  .dish-name {
    font-size: 1.35rem;
  }

  .dish-sub {
    font-size: 0.85rem;
  }

  .dish-body p {
    font-size: 0.9rem;
  }

  .closing-note p {
    font-size: 1rem;
  }

  footer {
    padding: 1.5rem 1.5rem 1.5rem;
  }
}
