@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --black:       #141414;
  --orange:      #FF5C28;
  --text:        #1A1A1A;
  --text-muted:  #666;
  --text-light:  #999;
  --border:      #E8E8E8;
  --white:       #fff;
  --blue-card:   #D8F0F8;
  --ig-bg:       #D2EFF5;
  --radius:      16px;
  --max-w:       1280px;
  --pad:         80px;
  --font:        'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; outline: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  opacity: .7;
  transition: opacity .2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; }
.btn-contact {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s;
}
.btn-contact:hover { background: #333; }

/* ─── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: background .2s;
  cursor: pointer;
  border: none;
}
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #333; }

/* ─── SECTION HEADING ────────────────────── */
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-heading p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── RECIPE CARD ────────────────────────── */
.recipe-card {
  background: #EBF6FA;
  border-radius: var(--radius);
  overflow: visible;
  transition: transform .25s;
  position: relative;
  padding: 12px 12px 16px;
}
.recipe-card:hover { transform: translateY(-4px); }
.recipe-card__img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.recipe-card__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform .4s;
}
.recipe-card:hover .recipe-card__img img { transform: scale(1.04); }
.recipe-card__save {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  cursor: pointer;
  border: none;
  transition: transform .2s;
  z-index: 1;
}
.recipe-card__save:hover { transform: scale(1.1); }
.recipe-card__save svg { width: 15px; height: 15px; fill: none; stroke: #bbb; stroke-width: 2; }
.recipe-card__save.liked svg { fill: #FF4D6D; stroke: #FF4D6D; }
.recipe-card__body { padding: 16px 6px 4px; }
.recipe-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.recipe-card__meta { display: flex; gap: 16px; align-items: center; }
.recipe-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.recipe-card__tag svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.recipe-card-sm .recipe-card__img img { height: 160px; }
.recipe-card-sm .recipe-card__title { font-size: 14px; }

/* ─── HERO ───────────────────────────────── */
.hero { padding: 24px 0 40px; }
.hero-card {
  background: var(--blue-card);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 500px;
}
.hero-left {
  width: 50%;
  padding: 56px 56px 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.hero-badge-icon { font-size: 16px; }
.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-tags { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 50px;
}
.hero-tag svg { width: 14px; height: 14px; stroke: var(--white); stroke-width: 1.8; fill: none; }
.hero-bottom-row { display: flex; align-items: center; gap: 32px; }
.hero-author { display: flex; align-items: center; gap: 12px; }
.hero-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.hero-author-name { font-size: 14px; font-weight: 600; }
.hero-author-date { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.hero-btn { padding: 16px 28px; font-size: 15px; border-radius: 50px; gap: 12px; }
.hero-btn-icon {
  width: 30px;
  height: 30px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-btn-icon svg { fill: var(--black); margin-left: 2px; }
.hero-right {
  width: 50%;
  flex-shrink: 0;
  position: relative;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── RECIPES SECTION ────────────────────── */
.recipes-section { padding: 80px 0; }
.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  background: #F5F5F5;
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.filter-tab.active,
.filter-tab:hover { background: var(--black); color: var(--white); }
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ─── CHEF SECTION ───────────────────────── */
.chef-section {
  background: var(--white);
  padding: 60px 0 0;
  overflow: hidden;
}
.chef-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.chef-left { flex: 0 0 45%; padding-bottom: 60px; }
.chef-left h2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.chef-left p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 420px;
}
.chef-btn {
  border-radius: 12px !important;
  padding: 16px 36px !important;
}
.chef-right {
  flex: 0 0 55%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.chef-photo {
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ─── INSTAGRAM SECTION ──────────────────── */
.instagram-section {
  background: var(--ig-bg);
  padding: 80px 0;
}
.instagram-section .section-heading { margin-bottom: 40px; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.ig-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.ig-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}
.ig-card__avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.ig-card__username { font-size: 12px; font-weight: 600; }
.ig-card__location { font-size: 11px; color: var(--text-muted); }
.ig-card__img { width: 100%; height: 200px; object-fit: cover; display: block; }
.ig-card__actions {
  display: flex;
  gap: 14px;
  padding: 10px 14px 8px;
  border-top: 1px solid var(--border);
}
.ig-card__actions button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 12px;
  transition: color .2s;
}
.ig-card__actions button:hover { color: var(--text); }
.ig-card__actions button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.ig-card__actions .ml-auto { margin-left: auto; }
.ig-card__caption { padding: 4px 14px 12px; font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.ig-btn-wrap { text-align: center; }

/* ─── MORE RECIPES ───────────────────────── */
.more-recipes { padding: 80px 0; }
.more-recipes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}
.more-recipes-title-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
  flex: 0 0 auto;
  max-width: 340px;
}
.more-recipes-title-link:hover h2 { color: var(--orange); }
.more-recipes-arrow {
  width: 44px;
  height: 44px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: transform .2s;
}
.more-recipes-title-link:hover .more-recipes-arrow { transform: translateX(4px); }
.more-recipes-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  transition: color .2s;
}
.more-recipes-header p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── SUBSCRIBE SECTION ──────────────────── */
.subscribe-section { padding: 60px 0 80px; }
.subscribe-card {
  background: var(--blue-card);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 280px;
}
.subscribe-deco-left {
  width: 300px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  align-self: flex-end;
}
.subscribe-deco-right {
  width: 260px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  align-self: flex-end;
}
.subscribe-content { text-align: center; flex: 1; padding: 48px 20px 40px; }
.subscribe-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.subscribe-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.subscribe-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 50px;
  padding: 6px 6px 6px 22px;
  align-items: center;
}
.subscribe-form input {
  flex: 1;
  border: none;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 8px 0;
}
.subscribe-form input::placeholder { color: var(--text-light); }
.subscribe-form button {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.subscribe-form button:hover { background: #333; }

/* ─── RECIPE PAGE ───────────────────────── */

/* Page header */
.rp-header { padding: 48px 0 28px; }
.rp-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.rp-meta-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.rp-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rp-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.rp-author-name { font-size: 13px; font-weight: 600; }
.rp-author-date { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.rp-meta-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
.rp-meta-items { display: flex; gap: 28px; align-items: center; flex: 1; }
.rp-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rp-meta-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--text-muted);
  stroke-width: 1.8;
  flex-shrink: 0;
}
.rp-meta-label { font-size: 10px; color: var(--text-muted); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.rp-meta-value { font-size: 13px; font-weight: 700; margin-top: 2px; }
.rp-actions { display: flex; gap: 10px; margin-left: auto; }
.rp-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font);
}
.rp-action-btn:hover { border-color: var(--black); color: var(--black); }
.rp-action-btn svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Hero section */
.rp-hero-section { padding-bottom: 48px; }
.rp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}
.rp-hero-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.rp-hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.rp-hero-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.rp-hero-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.rp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  cursor: pointer;
}
.rp-play-btn svg { width: 18px; height: 18px; fill: var(--black); margin-left: 3px; }
.rp-side-col { display: flex; flex-direction: column; gap: 20px; }
.rp-nutrition-card {
  background: var(--blue-card);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.rp-nutrition-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.rp-nutrition-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  font-size: 13px;
}
.rp-nutrition-row:last-child { border-bottom: none; }
.rp-nutrition-row span:last-child { font-weight: 600; }
.rp-side-caption {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.rp-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Main content grid */
.rp-content { padding-bottom: 80px; }
.rp-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

/* Ingredients */
.rp-ingredients { margin-bottom: 48px; }
.rp-ingredients h2,
.rp-directions h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
}
.rp-ing-group { margin-bottom: 28px; }
.rp-ing-group h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.rp-ing-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.rp-ing-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.rp-ing-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rp-ing-check:checked + .rp-ing-dot {
  border-color: var(--orange);
  background: var(--orange);
}
.rp-ing-check:checked + .rp-ing-dot::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}
.rp-ing-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  cursor: pointer;
  transition: color .2s, text-decoration .2s;
}
.rp-ing-check:checked ~ .rp-ing-label {
  text-decoration: line-through;
  color: #bbb;
}

/* Directions */
.rp-directions { margin-bottom: 48px; }
.rp-step { margin-bottom: 32px; }
.rp-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F5F5F5;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 16px;
}
.rp-step-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}
.rp-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.rp-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}
.rp-step-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 16px;
}

/* Sidebar */
.rp-sidebar { position: sticky; top: 100px; }
.rp-other-recipes { margin-bottom: 28px; }
.rp-other-recipes h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.rp-other-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}
.rp-other-item:first-of-type { border-top: 1px solid var(--border); }
.rp-other-item img {
  width: 90px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
}
.rp-other-title { font-size: 13px; font-weight: 600; line-height: 1.4; margin-bottom: 5px; }
.rp-other-author { font-size: 12px; color: var(--text-muted); }
.rp-ad-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.rp-ad-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.rp-ad-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 80, 40, 0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.rp-ad-overlay p {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}
.rp-ad-overlay span {
  color: rgba(255,255,255,.65);
  font-size: 12px;
}

/* Recommendations */
/* Video section */
.rp-video-section { padding: 60px 0 80px; background: #F9FAFB; }
.rp-video-title { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.rp-video-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }
.rp-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.rp-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.rp-recommendations { padding: 0 0 80px; }
.rp-rec-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}
.rp-rec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── BLOG POST PAGE ────────────────────── */
.bp-header {
  padding: 60px 0 32px;
  text-align: center;
}
.bp-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.bp-author-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.bp-author-row img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.bp-author-name { font-size: 14px; font-weight: 600; }
.bp-author-divider { width: 1px; height: 20px; background: var(--border); }
.bp-date { font-size: 14px; color: var(--text-muted); }
.bp-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}
.bp-hero-img { padding-bottom: 48px; }
.bp-hero-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.bp-body { padding-bottom: 80px; }
.bp-layout {
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 60px;
  align-items: start;
}
.bp-article { max-width: 760px; }
.bp-question {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  margin-top: 36px;
  line-height: 1.4;
}
.bp-article p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 24px;
}
.bp-inline-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin: 20px 0 24px;
}
.bp-quote {
  background: #F7F7F7;
  border-radius: var(--radius);
  padding: 36px 48px;
  margin: 40px 0;
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  border: none;
}
.bp-share {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
}
.bp-share-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
  text-transform: uppercase;
}
.bp-share-icons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.bp-share-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all .2s;
}
.bp-share-icons a:hover { border-color: var(--black); color: var(--black); }

/* ─── BLOG HERO ──────────────────────────── */
.blog-hero {
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.blog-hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}
.blog-hero p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.blog-search {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 6px 6px 22px;
  align-items: center;
}
.blog-search input {
  flex: 1;
  border: none;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 8px 0;
}
.blog-search input::placeholder { color: var(--text-light); }
.blog-search button {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.blog-search button:hover { background: #333; }

/* ─── BLOG LAYOUT ────────────────────────── */
.blog-section { padding: 60px 0 80px; }
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

/* ─── BLOG ARTICLE ROWS ──────────────────── */
.blog-article-row {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}
.blog-article-row:first-child { border-top: 1px solid var(--border); }
.blog-article-img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  display: block;
}
.blog-article-body { flex: 1; }
.blog-article-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  transition: color .2s;
}
.blog-article-row:hover h3 { color: var(--orange); }
.blog-article-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-article-meta img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.blog-article-author { font-size: 13px; font-weight: 600; }
.blog-article-divider { width: 1px; height: 20px; background: var(--border); }
.blog-article-date { font-size: 13px; color: var(--text-muted); }

/* ─── PAGINATION ─────────────────────────── */
.pagination { display: flex; gap: 8px; align-items: center; padding: 36px 0 0; }
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-btn:hover,
.page-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }
.page-btn-next { width: auto; padding: 0 16px; border-radius: 50px; }

/* ─── BLOG SIDEBAR ───────────────────────── */
.blog-sidebar-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.blog-sidebar-recipe {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.blog-sidebar-recipe:first-of-type { border-top: 1px solid var(--border); }
.blog-sidebar-recipe img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
}
.blog-sidebar-recipe-title { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 6px; }
.blog-sidebar-recipe-author { font-size: 12px; color: var(--text-muted); }
.blog-sidebar-ad {
  margin-top: 32px;
  background: var(--blue-card);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.blog-sidebar-ad .ad-star { font-size: 18px; display: block; margin-bottom: 16px; }
.blog-sidebar-ad img { width: 120px; height: 120px; object-fit: cover; border-radius: 50%; margin: 0 auto 16px; }
.blog-sidebar-ad p { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.blog-sidebar-ad span { font-size: 12px; color: var(--text-muted); }

/* ─── CONTACT PAGE ───────────────────────── */
.contact-section { padding: 80px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.contact-image-col img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
}
.contact-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 1.1;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.contact-form .form-group { display: flex; flex-direction: column; gap: 8px; }
.contact-form .form-group:not(.form-row .form-group) { margin-bottom: 20px; }
.contact-form label { font-size: 13px; font-weight: 600; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  background: var(--white);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--black); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-light); }
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ─── CHECKOUT SECTION ───────────────────── */
.checkout-section { padding: 0 0 80px; }
.checkout-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}
.checkout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ─── BLOG POST PAGE ─────────────────────── */
.post-header {
  padding: 60px 0 0;
  border-bottom: 1px solid var(--border);
}
.post-header-inner {
  text-align: center;
  max-width: 1100px;
}
.post-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 28px;
}
.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}
.post-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.post-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.post-author span { font-size: 15px; font-weight: 600; }
.post-meta-divider { width: 1px; height: 28px; background: var(--border); }
.post-date { font-size: 14px; color: var(--text-muted); }
.post-excerpt {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 40px;
}
.blog-post-section { padding: 0; }
.blog-post-layout {
  display: grid;
  grid-template-columns: 60px 1fr 320px;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 80px 80px;
  align-items: start;
}
.share-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.share-sidebar-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}
.share-sidebar-links { display: flex; flex-direction: column; gap: 12px; }
.share-sidebar-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all .2s;
}
.share-sidebar-links a:hover { border-color: var(--black); color: var(--black); }
.post-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 36px;
}
.post-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.post-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 36px 0 16px;
}
.post-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 12px;
}
.post-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  margin: 28px 0;
  background: #FFF8F5;
  border-radius: 0 10px 10px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}
.post-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.post-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.sidebar-section { position: sticky; top: 100px; }
.sidebar-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
.blog-sidebar-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  margin-bottom: 20px;
}
.blog-sidebar-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.blog-sidebar-card__body { padding: 16px; }
.blog-card__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--orange);
  margin-bottom: 8px;
}
.blog-sidebar-card__body h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-sidebar-card__body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.btn-sm { padding: 10px 22px !important; font-size: 13px !important; }

/* ─── FOOTER ─────────────────────────────── */
footer { padding: 40px 0 0; }
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 32px;
}
.footer-brand .footer-logo { display: block; margin-bottom: 8px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.6;
}
.footer-links { display: flex; gap: 40px; align-items: center; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-divider { height: 1px; background: var(--border); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 0;
}
.footer-socials { display: flex; gap: 14px; align-items: center; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all .2s;
}
.footer-socials a:hover { border-color: var(--black); color: var(--black); }

/* ─── ACADEMIC BANNER ────────────────────── */
.academic-banner {
  background: #FFF8F0;
  border-bottom: 1.5px solid #FFD9C2;
  padding: 12px 0;
}
.academic-banner .container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #B84500;
  font-weight: 500;
}
.academic-banner svg { flex-shrink: 0; }

/* ─── ABOUT PAGE ─────────────────────────── */

/* Hero */
.about-hero {
  background: #EBF6FA;
  padding: 100px 0 80px;
  text-align: center;
}
.about-hero__inner { max-width: 680px; margin: 0 auto; }
.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.about-hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
}
.about-hero__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Story */
.about-story { padding: 100px 0; }
.about-story__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story__img-col img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-label {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.about-story__text-col h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-story__text-col p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1.5px solid var(--border);
}
.about-stat__number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat__label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Values */
.about-values { padding: 80px 0; background: #F9FAFB; }
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
}
.about-value-card__icon {
  width: 56px;
  height: 56px;
  background: #EBF6FA;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.about-value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.about-value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Team */
.about-team { padding: 100px 0; }
.about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.about-team-card { text-align: center; }
.about-team-card__img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.about-team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.about-team-card:hover .about-team-card__img img { transform: scale(1.05); }
.about-team-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.about-team-card__role {
  display: block;
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 10px;
}
.about-team-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Academic detail cards */
.academic-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.academic-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.academic-card__icon {
  width: 48px;
  height: 48px;
  background: #EBF6FA;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.academic-card__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.academic-card__value {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.academic-card__sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.academic-card__sub a {
  color: var(--orange);
}
.academic-card__sub a:hover {
  text-decoration: underline;
}

/* Learning outcomes table */
.lo-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}
.lo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.lo-table thead tr {
  background: var(--black);
  color: var(--white);
}
.lo-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}
.lo-table td {
  padding: 16px 20px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.65;
}
.lo-table tbody tr:last-child td { border-bottom: none; }
.lo-table tbody tr:nth-child(even) { background: #F9FAFB; }
.lo-table td:first-child {
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  font-size: 13px;
}
.lo-table code {
  background: #EBF6FA;
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--text);
}

/* Webmaster contact note */
.webmaster-note {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  background: #F9FAFB;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 12px 24px;
  width: fit-content;
}
.webmaster-note svg { color: var(--orange); flex-shrink: 0; }
.webmaster-note a { color: var(--orange); font-weight: 600; }
.webmaster-note a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   HAMBURGER MENU
═══════════════════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  order: 3;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET  (max 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --pad: 40px; }

  /* Navbar */
  .nav-links { gap: 24px; }

  /* Hero */
  .hero-title { font-size: 42px; }
  .hero-left { padding: 40px 40px 40px 48px; }

  /* Chef */
  .chef-left h2 { font-size: 48px; }

  /* Grids */
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .more-grid { grid-template-columns: repeat(2, 1fr); }
  .rp-rec-grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about-team__grid { grid-template-columns: repeat(2, 1fr); }
  .academic-details-grid { grid-template-columns: repeat(2, 1fr); }

  /* Blog */
  .blog-layout { grid-template-columns: 1fr 300px; gap: 40px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET PORTRAIT  (max 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --pad: 24px; }

  /* Navbar — show burger, hide links */
  .nav-burger { display: flex; }
  .btn-contact { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 28px;
    font-size: 15px;
    opacity: 1;
    border-bottom: 1px solid var(--border);
  }
  .navbar { position: sticky; }
  .navbar .container { position: relative; }

  /* Hero — stack */
  .hero-card { flex-direction: column; min-height: auto; }
  .hero-left { width: 100%; padding: 40px 32px 32px; }
  .hero-right { width: 100%; min-height: 260px; position: relative; }
  .hero-img { position: relative; width: 100%; height: 260px; object-fit: cover; inset: auto; }
  .hero-title { font-size: 36px; }
  .hero-bottom-row { flex-wrap: wrap; gap: 20px; }

  /* Recipes grid */
  .recipes-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Chef — stack */
  .chef-section .container { flex-direction: column; }
  .chef-left { flex: none; width: 100%; padding-bottom: 0; }
  .chef-left h2 { font-size: 36px; }
  .chef-right { flex: none; width: 100%; justify-content: center; }

  /* Instagram */
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }

  /* More grid */
  .more-grid { grid-template-columns: repeat(2, 1fr); }
  .more-recipes-header { flex-direction: column; gap: 16px; align-items: flex-start; }

  /* Subscribe — hide decorations */
  .subscribe-deco-left,
  .subscribe-deco-right { display: none; }
  .subscribe-card { justify-content: center; min-height: auto; border-radius: 16px; }
  .subscribe-content { padding: 40px 20px; }
  .subscribe-content h2 { font-size: 26px; }
  .subscribe-form { flex-direction: column; border-radius: 12px; padding: 12px; gap: 10px; }
  .subscribe-form input { padding: 8px 4px; }
  .subscribe-form button { width: 100%; text-align: center; }

  /* Footer */
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 12px 24px; }

  /* Checkout / recipes section */
  .checkout-grid { grid-template-columns: repeat(2, 1fr); }

  /* Blog */
  .blog-hero h1 { font-size: 36px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
  .blog-article-row { flex-direction: column; }
  .blog-article-img { width: 100%; height: 200px; }

  /* Blog post */
  .bp-title { font-size: 34px; }
  .bp-hero-img img { height: 280px; }
  .bp-layout { grid-template-columns: 1fr; }
  .bp-share { flex-direction: row; flex-wrap: wrap; position: static; padding-top: 0; padding-bottom: 24px; }
  .bp-share-icons { flex-direction: row; }
  .bp-quote { font-size: 20px; padding: 24px 28px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-image-col { display: none; }
  .contact-title { font-size: 36px; }
  .contact-form .form-row { grid-template-columns: 1fr; }

  /* Recipe page */
  .rp-title { font-size: 34px; }
  .rp-hero-grid { grid-template-columns: 1fr; }
  .rp-hero-img-wrap img { height: 280px; }
  .rp-content-grid { grid-template-columns: 1fr; }
  .rp-sidebar { position: static; }
  .rp-rec-grid { grid-template-columns: repeat(2, 1fr); }
  .rp-meta-bar { flex-wrap: wrap; gap: 14px; }
  .rp-meta-divider { display: none; }
  .rp-actions { margin-left: 0; }

  /* Section headings */
  .section-heading h2 { font-size: 32px; }

  /* About page */
  .about-hero__title { font-size: 34px; }
  .about-story__layout { grid-template-columns: 1fr; gap: 40px; }
  .about-story__img-col { display: none; }
  .about-story__text-col h2 { font-size: 28px; }
  .about-stats { gap: 24px; }
  .about-values__grid { grid-template-columns: 1fr; }
  .about-team__grid { grid-template-columns: repeat(2, 1fr); }
  .academic-details-grid { grid-template-columns: 1fr; }
  .webmaster-note { border-radius: 12px; width: 100%; }
  .lo-table th, .lo-table td { padding: 12px 14px; font-size: 13px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE  (max 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --pad: 16px; }

  /* Hero */
  .hero-title { font-size: 30px; }
  .hero-badge { font-size: 12px; padding: 7px 14px; }
  .hero-tags { gap: 8px; }
  .hero-author { display: none; }

  /* Grids → single column */
  .recipes-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: 1fr; }
  .more-grid { grid-template-columns: 1fr; }
  .rp-rec-grid { grid-template-columns: 1fr; }
  .about-team__grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }

  /* About hero */
  .about-hero { padding: 60px 0 48px; }
  .about-hero__title { font-size: 28px; }

  /* Recipe page */
  .rp-title { font-size: 26px; }

  /* Blog post */
  .bp-title { font-size: 26px; }

  /* Section heading */
  .section-heading h2 { font-size: 26px; }

  /* Chef */
  .chef-left h2 { font-size: 30px; }

  /* Subscribe */
  .subscribe-content h2 { font-size: 22px; }

  /* Filter tabs */
  .filter-tabs { gap: 6px; }
  .filter-tab { padding: 8px 16px; font-size: 13px; }

  /* Lo table font */
  .lo-table th, .lo-table td { font-size: 12px; padding: 10px 12px; }
}
