:root {
  --bg: #f7f4ef;
  --white: #ffffff;
  --text: #1f2933;
  --muted: #6b7280;
  --line: #e7e2d9;
  --green: #2f6f46;
  --green-dark: #255738;
  --accent: #d97706;
  --shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfaf7 0%, #f3efe8 100%);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(231, 226, 217, 0.9);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.site-logo img {
  width: 170px;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--green-dark);
}

.hero {
  padding: 34px 0 56px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero__panel {
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 520px;
  position: relative;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 35, 24, 0.72) 0%, rgba(27, 35, 24, 0.22) 58%, rgba(27, 35, 24, 0.05) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 56px 42px;
  color: #fff;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
}

.hero p {
  margin: 0 0 24px;
  font-size: 18px;
  max-width: 500px;
}

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

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.btn--primary {
  background: var(--green);
  color: #fff;
}

.btn--secondary {
  background: #fff;
  color: var(--green-dark);
}

.hero__side {
  display: grid;
  gap: 20px;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.hero-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.hero-card__link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.section {
  padding: 20px 0 56px;
}

.section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section__heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
}

.section__heading p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
}

.weekly-highlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.weekly-highlight__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.weekly-highlight__content {
  padding: 34px 34px 30px;
}

.kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.weekly-highlight h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.weekly-highlight__meta {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-weight: 700;
}

.weekly-highlight__story {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

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

.category-card {
  min-height: 170px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: #fff;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 18, 13, 0.1) 0%, rgba(12, 18, 13, 0.72) 100%);
}

.category-card__label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  right: 18px;
  font-size: 24px;
  font-weight: 700;
}

.recipe-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.recipe-card__image-wrap {
  display: block;
  text-decoration: none;
}

.recipe-card__image {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.recipe-card__body {
  padding: 18px 18px 20px;
}

.recipe-card__meta {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.recipe-card__title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.recipe-card__title a {
  text-decoration: none;
}

.recipe-card__text {
  margin: 0 0 14px;
  color: var(--muted);
}

.text-link {
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 700;
}

.travel-block {
  background: linear-gradient(135deg, #f6eee3 0%, #f9f5ee 100%);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.travel-block__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.travel-block__top h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.travel-block__top p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 640px;
}

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

.comeback-card {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.comeback-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.comeback-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 36px;
  padding: 34px 0 40px;
  background: #182019;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}

.site-footer__links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.site-footer__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-intro {
  padding: 28px 0 14px;
}

.page-intro h1 {
  margin: 0 0 8px;
  font-size: clamp(32px, 4vw, 50px);
}

.page-intro p {
  margin: 0;
  color: var(--muted);
}

.recipe-detail {
  padding: 28px 0 60px;
}

.recipe-detail__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.recipe-detail__image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.recipe-detail__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.recipe-detail__content {
  background: var(--white);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.recipe-detail__content h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
}

.recipe-detail__meta {
  margin-bottom: 16px;
  color: var(--accent);
  font-weight: 700;
}

.recipe-detail__text,
.recipe-detail__section {
  margin-top: 18px;
  color: var(--text);
}

.recipe-detail__section h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.recipe-detail__section p {
  margin: 0;
  color: var(--muted);
  white-space: pre-line;
}

.empty-state {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero__grid,
  .weekly-highlight,
  .recipe-detail__hero {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .recipe-grid,
  .comeback-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__panel {
    min-height: 460px;
  }

  .weekly-highlight__image img,
  .recipe-detail__image img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .section__heading,
  .travel-block__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-grid,
  .recipe-grid,
  .comeback-grid {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .weekly-highlight__content,
  .recipe-detail__content,
  .travel-block {
    padding: 22px;
  }

  .hero__panel {
    min-height: 420px;
  }

  .hero h1,
  .page-intro h1,
  .recipe-detail__content h1 {
    line-height: 1.08;
  }
}
.lang-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lang-switcher a {
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  color: var(--green-dark);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}

.lang-switcher a.is-active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.recipe-detail__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 24px;
  margin-top: 28px;
  align-items: start;
}

.detail-card {
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.detail-card h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.detail-card--method {
  margin-bottom: 60px;
}

.table-wrap {
  overflow-x: auto;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.detail-table thead th {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 2px solid var(--line);
  color: var(--text);
  vertical-align: top;
}

.detail-table tbody td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--text);
}

.nutrition-list {
  display: grid;
  gap: 0;
}

.nutrition-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.nutrition-row span {
  color: var(--text);
}

.nutrition-row strong {
  color: var(--text);
  white-space: nowrap;
}

.method-list {
  margin: 0;
  padding-left: 24px;
}

.method-list li {
  margin-bottom: 14px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .recipe-detail__grid {
    grid-template-columns: 1fr;
  }
}
