:root {
  color-scheme: dark;
  --bg: #0a0d14;
  --panel: rgba(14, 18, 28, 0.78);
  --panel-strong: rgba(19, 24, 38, 0.96);
  --text: #f6efe6;
  --muted: #c6b8a7;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ff8a3d;
  --accent-2: #ffd166;
  --accent-3: #7bdff2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 138, 61, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(123, 223, 242, 0.12), transparent 26%),
    linear-gradient(180deg, #090c12 0%, #0c111a 45%, #090c12 100%);
  color: var(--text);
  min-height: 100vh;
}

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.ambient-one {
  top: -160px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(255, 138, 61, 0.18);
}

.ambient-two {
  top: 12vh;
  right: -100px;
  width: 280px;
  height: 280px;
  background: rgba(123, 223, 242, 0.12);
}

.ambient-three {
  bottom: 5vh;
  left: 18vw;
  width: 220px;
  height: 220px;
  background: rgba(255, 209, 102, 0.1);
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 28px 24px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: #180f0b;
  background: linear-gradient(145deg, #ffd166, #ff8a3d);
  box-shadow: 0 12px 30px rgba(255, 138, 61, 0.28);
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transform: translateY(-1px);
}

main {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 22px 24px 72px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 24px 0 38px;
}

.hero-copy,
.hero-showcase,
.section,
.footer {
  animation: rise 700ms ease both;
}

.hero-copy h1,
.section-heading h2,
.story-panel h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  max-width: 10ch;
}

.eyebrow {
  margin: 0;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 700;
}

.lead,
.section-heading p,
.story-panel p,
.story-highlights p,
.dish-content p,
.region-card p,
.recipe-copy p,
.recipe-aside,
.subscribe-card p,
.mini-card p,
.favorite-item p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy .lead {
  font-size: 1.05rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #1a120d;
  background: linear-gradient(145deg, #ffd166, #ff8a3d);
  box-shadow: 0 18px 40px rgba(255, 138, 61, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats article,
.story-highlights article,
.favorite-item,
.showcase-card,
.mini-card,
.dish-card {
  backdrop-filter: blur(14px);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-stats strong {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 6px;
  color: var(--accent-2);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.showcase-card {
  border-radius: var(--radius-xl);
  padding: 28px;
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255, 138, 61, 0.2), rgba(10, 13, 20, 0.5)),
    rgba(17, 21, 34, 0.9);
}

.showcase-main h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin: 14px 0 12px;
}

.tag,
.region-badge,
.time-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tag {
  color: #20130a;
  background: linear-gradient(145deg, #ffd166, #ffb347);
}

.dish-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.dish-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.86rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  border-radius: 22px;
  padding: 18px;
  min-height: 122px;
}

.mini-card h3,
.dish-content h3,
.story-highlights h3,
.favorite-item h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.mini-card.accent {
  background:
    linear-gradient(180deg, rgba(123, 223, 242, 0.18), rgba(14, 18, 28, 0.8)),
    var(--panel);
}

.section {
  padding: 42px 0 16px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-heading h2,
.story-panel h2 {
  margin: 10px 0 12px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.section-heading.compact h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 26px;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 14px;
  align-items: stretch;
  margin-bottom: 18px;
}

.toolbar,
.recipe-layout,
.subscribe-card {
  animation: rise 700ms ease both;
}

.search-box,
.feature-pill {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
}

.search-box {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
}

.search-box span {
  color: var(--accent-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
}

.search-box input::placeholder {
  color: rgba(198, 184, 167, 0.7);
}

.feature-pill {
  min-width: 260px;
  padding: 16px 18px;
  display: grid;
  gap: 4px;
  align-content: center;
}

.feature-pill strong {
  color: var(--accent-2);
}

.feature-pill span {
  color: var(--muted);
  line-height: 1.6;
}

.filter {
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter:hover {
  transform: translateY(-1px);
  color: var(--text);
}

.filter.active {
  color: #1b130d;
  background: linear-gradient(145deg, #ffd166, #ff8a3d);
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(255, 138, 61, 0.2);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dish-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 100%;
  transition: transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
}

.dish-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
}

.dish-card.is-hidden {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  position: absolute;
}

.dish-visual {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 138, 61, 0.22), rgba(123, 223, 242, 0.12));
}

.dish-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 13, 20, 0.02), rgba(10, 13, 20, 0.46)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 24%);
  pointer-events: none;
}

.dish-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.dish-card:hover .dish-visual img {
  transform: scale(1.08);
}

.dish-content {
  padding: 20px 20px 22px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.region-badge {
  color: #ffe7d4;
  background: rgba(255, 138, 61, 0.18);
}

.time-badge {
  color: #dff9ff;
  background: rgba(123, 223, 242, 0.14);
}

.card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent-2);
  font-weight: 700;
}

.card-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.card-link:hover::after {
  transform: translateX(3px);
}

.regions .section-heading {
  margin-bottom: 18px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.region-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255, 138, 61, 0.13), transparent 28%),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.region-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.12);
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.region-card h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.region-card.warm {
  background:
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.03);
}

.region-card.cool {
  background:
    radial-gradient(circle at top right, rgba(123, 223, 242, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.03);
}

.story-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
}

.story-panel,
.story-highlights article {
  border-radius: var(--radius-xl);
}

.story-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 209, 102, 0.12), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-highlights {
  display: grid;
  gap: 14px;
}

.story-highlights article {
  padding: 22px;
}

.favorites-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.recipe-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.recipe-copy,
.recipe-aside,
.subscribe-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(14, 18, 28, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.recipe-copy {
  padding: 28px;
}

.recipe-copy h2,
.subscribe-card h2 {
  margin: 10px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
}

.recipe-steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.recipe-steps article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.recipe-steps span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ffd166, #ff8a3d);
  color: #1b130d;
  font-weight: 800;
}

.recipe-steps h3,
.recipe-aside h3 {
  margin: 0 0 8px;
}

.recipe-aside {
  padding: 28px;
  align-self: stretch;
  background:
    radial-gradient(circle at top left, rgba(255, 138, 61, 0.16), transparent 24%),
    rgba(14, 18, 28, 0.88);
}

.recipe-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #1b130d;
  background: linear-gradient(145deg, #ffd166, #ff8a3d);
  font-size: 0.8rem;
  font-weight: 800;
}

.benefit-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.benefit-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent-2);
}

.subscribe-card {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 18px;
  align-items: end;
}

.subscribe-form {
  display: grid;
  gap: 10px;
}

.subscribe-form label {
  color: var(--accent-2);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

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

.subscribe-row input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
}

.subscribe-row input::placeholder {
  color: rgba(198, 184, 167, 0.7);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent-2);
}

.favorite-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border-radius: var(--radius-lg);
  padding: 20px;
}

.favorite-item span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: none;
  background: rgba(255, 138, 61, 0.14);
  color: var(--accent-2);
  font-weight: 800;
}

.footer {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 26px 24px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer strong {
  font-size: 1.02rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

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

@media (max-width: 1080px) {
  .hero,
  .story-section {
    grid-template-columns: 1fr;
  }

  .toolbar,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recipe-layout,
  .subscribe-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar,
  main,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-stats,
  .showcase-grid,
  .dish-grid,
  .favorites-list,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .subscribe-row {
    flex-direction: column;
    align-items: stretch;
  }

  .section-heading h2,
  .story-panel h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .card-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
