/* =============================================
   Akademia Smaku — pure-cloud-61.css
   Design DNA: template71 (canadel.com)
   Adapted: Premium Polish Culinary Blog
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Roboto:wght@100;300;400;500;700&family=Pathway+Gothic+One&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7em;
  color: #6b6b6b;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #2b2b2b;
  line-height: 1.15em;
}
h1 { font-size: 60px; }
h2 { font-size: 51px; }
h3 { font-size: 43px; }
h4 { font-size: 28px; }
h5 { font-size: 20px; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ---- CONTAINER ---- */
.container {
  width: 82%;
  max-width: 1080px;
  margin: 0 auto;
}

/* ---- SECTION DIVIDER ---- */
.section-divider {
  width: 17%;
  height: 1px;
  background: #2b2b2b;
  margin: 18px 0 28px;
}
.section-divider.center { margin: 18px auto 28px; }
.section-divider.light { background: rgba(255,255,255,0.5); }

/* ============================================
   NOTIFICATION BAR
   ============================================ */
#notif-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: linear-gradient(to right, #1b1a1a, #000);
  color: #fff;
  text-align: center;
  padding: 9px 50px;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
#notif-bar a { color: #e8c49a; text-decoration: underline; }
#notif-bar .close-notif {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: #fff; cursor: pointer; font-size: 18px;
}

/* ============================================
   STICKY HEADER
   ============================================ */
#site-header {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  transition: top 0.3s ease;
}
#site-header.notif-hidden { top: 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
}

/* Logo */
.site-logo svg { height: 48px; width: auto; }
.site-logo a { display: flex; align-items: center; gap: 10px; }
.site-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1b1a1a;
  letter-spacing: 0.5px;
}
.site-logo .logo-sub {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8622a;
  display: block;
  margin-top: -4px;
}

/* NAV */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > ul { display: flex; gap: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1b1a1a;
  padding: 8px 16px;
  display: block;
  transition: color 0.2s;
}
.main-nav > ul > li > a:hover { color: #c8622a; }
.main-nav > ul > li.active > a { color: #c8622a; }

/* Header CTA button */
.header-cta {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #1b1a1a;
  color: #fff;
  border: 2px solid #1b1a1a;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.header-cta:hover { background: #c8622a; border-color: #c8622a; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #1b1a1a;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 12px 0;
}
.mobile-nav.open { display: block; }
.mobile-nav ul li a {
  display: block;
  padding: 10px 5%;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1b1a1a;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav ul li a:hover { color: #c8622a; }

/* ============================================
   HERO SLIDER
   ============================================ */
#hero {
  margin-top: 76px;
  position: relative;
  height: 88vh;
  min-height: 500px;
  overflow: hidden;
}
/* Adjust for notif bar */
body.has-notif #hero { margin-top: 114px; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide .slide-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide .slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.hero-slide .slide-text {
  max-width: 620px;
  background: radial-gradient(ellipse at left center, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0) 65%);
  padding: 40px 80px 40px 0;
}

.hero-slide .slide-label {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8622a;
  margin-bottom: 12px;
  display: block;
}

.hero-slide h1 {
  font-size: 72px;
  font-weight: 700;
  color: #1b1a1a;
  line-height: 1.05em;
  text-shadow: 0 0 10px rgba(255,255,255,0.95), 0 0 20px rgba(255,255,255,0.9), 0 0 35px rgba(255,255,255,0.99);
  margin-bottom: 18px;
}

.hero-slide .slide-sub {
  font-size: 16px;
  color: #2b2b2b;
  font-weight: 400;
  margin-bottom: 28px;
  max-width: 460px;
}

.btn {
  display: inline-block;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #2b2b2b;
  color: #2b2b2b;
  padding: 10px 28px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: ' →';
  opacity: 0;
  margin-left: -0.5em;
  transition: all 0.2s ease;
}
.btn:hover { background: #2b2b2b; color: #fff; padding-right: 34px; }
.btn:hover::after { opacity: 1; margin-left: 0.2em; }

.btn-light {
  border-color: #fff;
  color: #fff;
}
.btn-light:hover { background: #fff; color: #1b1a1a; }

.btn-accent {
  border-color: #c8622a;
  color: #c8622a;
}
.btn-accent:hover { background: #c8622a; color: #fff; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #1b1a1a;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
}
.scroll-cue .cue-line {
  width: 1px; height: 40px;
  background: #1b1a1a;
}
.scroll-cue i { font-size: 20px; }

/* ============================================
   SECTIONS — COMMON
   ============================================ */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-title {
  font-size: 43px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 10px;
}
.section-sub {
  font-size: 15px;
  color: #6b6b6b;
  max-width: 600px;
  margin-bottom: 40px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================
   FEATURED RECIPES — CAROUSEL
   ============================================ */
#featured {
  background: #fafafa;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.recipe-card {
  background: #fff;
  box-shadow: 0 2px 18px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.recipe-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.18);
  transform: translateY(-4px);
}
.recipe-card .card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.recipe-card .card-body { padding: 22px 24px 26px; }
.recipe-card .card-label {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8622a;
  display: block;
  margin-bottom: 8px;
}
.recipe-card h4 {
  font-size: 22px;
  color: #2b2b2b;
  margin-bottom: 10px;
  line-height: 1.2em;
}
.recipe-card p { font-size: 13px; color: #888; margin-bottom: 16px; }
.recipe-card .card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #aaa;
  font-family: 'Pathway Gothic One', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.recipe-card .card-meta i { color: #c8622a; margin-right: 4px; }

.recipe-card .badge-premium {
  background: #1b1a1a;
  color: #fff;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 10px;
}
.recipe-card .badge-free {
  background: #c8622a;
  color: #fff;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 10px;
}

/* ============================================
   ABOUT BAND (lifestyle photo + text)
   ============================================ */
#about-band {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.about-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.about-band-img {
  position: relative;
  overflow: hidden;
}
.about-band-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-band-text {
  background: #1b1a1a;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 6%;
}
.about-band-text h2 {
  font-size: 43px;
  color: #fff;
  margin-bottom: 12px;
}
.about-band-text .section-divider { background: rgba(255,255,255,0.4); }
.about-band-text p { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 14px; }
.about-band-text .btn-light { margin-top: 10px; }

/* ============================================
   STATS ROW
   ============================================ */
#stats {
  background: #fff;
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat-bordered {
  text-align: center;
  padding: 22px 0;
  border-top: 1px solid #2b2b2b;
  border-bottom: 1px solid #2b2b2b;
  width: 72%;
  margin: 0 auto;
}
.stat-circle {
  width: 250px; height: 250px;
  border-radius: 50%;
  background: #1b1a1a;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: inherit;
  line-height: 1em;
}
.stat-circle .stat-number { font-size: 72px; }
.stat-label {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.7;
  margin-top: 4px;
}
.stat-circle .stat-label { color: rgba(255,255,255,0.75); }
.stat-bordered .stat-number { color: #2b2b2b; }
.stat-bordered .stat-label { color: #888; }

/* ============================================
   SUBSCRIPTION PLANS
   ============================================ */
#pricing {
  background: #fafafa;
  padding: 80px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.plan-card {
  background: #fff;
  border: 2px solid #e8e8e8;
  padding: 40px 36px;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.plan-card:hover {
  border-color: #c8622a;
  box-shadow: 0 6px 28px rgba(200,98,42,0.12);
}
.plan-card.featured {
  border-color: #1b1a1a;
  background: #1b1a1a;
  color: #fff;
}
.plan-card.featured h4 { color: #fff; }
.plan-card.featured p { color: rgba(255,255,255,0.7); }
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: #c8622a;
  color: #fff;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  white-space: nowrap;
}
.plan-card h4 {
  font-size: 26px;
  color: #2b2b2b;
  margin-bottom: 6px;
}
.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: #c8622a;
  line-height: 1em;
  margin: 16px 0 4px;
}
.plan-price sup { font-size: 22px; vertical-align: top; margin-top: 12px; display: inline-block; }
.plan-price .per {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #888;
  font-weight: 400;
}
.plan-card.featured .plan-price .per { color: rgba(255,255,255,0.5); }
.plan-features {
  margin: 22px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  font-size: 13px;
  color: #6b6b6b;
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.75); }
.plan-features li i { color: #c8622a; font-size: 12px; flex-shrink: 0; }
.plan-card.featured .plan-features li i { color: #e8c49a; }

/* ============================================
   CATEGORIES GRID
   ============================================ */
#categories {
  padding: 80px 0;
  background: #fff;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,26,26,0.85) 0%, rgba(27,26,26,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.cat-card .cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
}
.cat-card .cat-count {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ============================================
   INTRO TEXT — double border box
   ============================================ */
.intro-box {
  border: 4px double rgba(0,0,0,0.75);
  padding: 4%;
  margin: 60px auto;
  max-width: 820px;
}
.intro-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.intro-box-left h2 {
  font-size: 38px;
  color: #2b2b2b;
  margin-bottom: 10px;
}
.intro-box-left .tag {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8622a;
  display: block;
  margin-bottom: 12px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
  background: #1b1a1a;
  padding: 80px 0;
  color: #fff;
}
#testimonials .section-title { color: #fff; }
#testimonials .section-divider { background: rgba(255,255,255,0.3); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.testi-card {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 32px 28px;
  position: relative;
}
.testi-card .stars {
  color: #c8622a;
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: 20px;
}
.testi-card .author {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.testi-card .author strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 2px;
}
.testi-card .quote-mark {
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}

/* ============================================
   LATEST POSTS
   ============================================ */
#latest-posts {
  background: #fafafa;
  padding: 80px 0;
}
.posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
}
.post-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #fff;
  box-shadow: 0 2px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.post-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.14); }
.post-card .post-thumb {
  width: 200px; height: 160px;
  object-fit: cover;
}
.post-card .post-body {
  padding: 20px 22px;
}
.post-card .post-date {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  display: block;
  margin-bottom: 6px;
}
.post-card h5 {
  font-size: 18px;
  color: #2b2b2b;
  margin-bottom: 8px;
  line-height: 1.25em;
}
.post-card p { font-size: 12px; color: #888; margin-bottom: 12px; }
.post-card .read-more {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c8622a;
  transition: letter-spacing 0.2s;
}
.post-card .read-more:hover { letter-spacing: 2px; }

/* ============================================
   CTA BAND
   ============================================ */
#cta-band {
  position: relative;
  padding: 0;
  overflow: hidden;
  height: 420px;
}
#cta-band .cta-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
#cta-band .cta-overlay {
  position: absolute; inset: 0;
  background: rgba(27,26,26,0.62);
}
#cta-band .cta-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 0 8%;
  text-align: right;
}
#cta-band h2 {
  font-size: 52px;
  color: #fff;
  max-width: 540px;
  margin-bottom: 12px;
}
#cta-band p { color: rgba(255,255,255,0.8); max-width: 420px; font-size: 15px; margin-bottom: 24px; }

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: #1b1a1a;
  color: #fff;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col .footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.footer-col .footer-logo-sub {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8622a;
  display: block;
  margin-bottom: 18px;
}
.footer-col p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  line-height: 1.6em;
}
.footer-col p i {
  color: #c8622a;
  width: 16px;
  margin-right: 6px;
}
.footer-col h5 {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li {
  margin-bottom: 9px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  position: relative;
}
.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: #c8622a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease-out;
}
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li a:hover::after { transform: scaleX(1); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.footer-social .social-label {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-right: 6px;
}
.footer-social a {
  width: 34px; height: 34px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: #c8622a; color: #c8622a; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: #c8622a; }

/* ============================================
   COOKIE BANNER
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9998;
  background: #fff;
  box-shadow: 0 4px 28px rgba(0,0,0,0.18);
  padding: 28px;
  max-width: 360px;
  width: calc(100% - 48px);
  display: none;
}
#cookie-banner.visible { display: block; }
#cookie-banner h4 {
  font-size: 18px;
  color: #2b2b2b;
  margin-bottom: 10px;
}
#cookie-banner p {
  font-size: 12px;
  color: #888;
  margin-bottom: 16px;
  line-height: 1.6em;
}
.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.cookie-toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #555;
}
.cookie-toggle-item .toggle-label { font-weight: 500; }
.cookie-toggle-item .toggle-required {
  font-size: 10px;
  color: #aaa;
  font-style: italic;
}
/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 36px; height: 20px;
  display: inline-block;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: #ddd;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  left: 3px; top: 3px;
  transition: transform 0.2s;
}
.toggle-switch input:checked + .toggle-slider { background: #c8622a; }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(16px); }
.toggle-switch input:disabled + .toggle-slider { background: #1b1a1a; opacity: 0.8; cursor: default; }

.cookie-btns {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  flex: 1;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn-accept {
  background: #1b1a1a;
  color: #fff;
}
.cookie-btn-accept:hover { background: #c8622a; }
.cookie-btn-deny {
  background: #f0f0f0;
  color: #555;
}
.cookie-btn-deny:hover { background: #ddd; }

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
  position: relative;
  height: 320px;
  margin-top: 76px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
body.has-notif .page-banner { margin-top: 114px; }
.page-banner .banner-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-banner .banner-overlay {
  position: absolute; inset: 0;
  background: rgba(27,26,26,0.6);
}
.page-banner .banner-content {
  position: relative; z-index: 2;
  padding: 0 5%;
  width: 100%;
}
.page-banner .breadcrumb {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.page-banner .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-banner .breadcrumb a:hover { color: #c8622a; }
.page-banner h1 {
  font-size: 52px;
  color: #fff;
  text-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: 80px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-grid img {
  width: 100%;
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}
.about-values {
  background: #fafafa;
  padding: 80px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}
.value-card {
  padding: 32px 24px;
  border-top: 3px solid #c8622a;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
}
.value-card i {
  font-size: 28px;
  color: #c8622a;
  margin-bottom: 14px;
}
.value-card h4 {
  font-size: 20px;
  color: #2b2b2b;
  margin-bottom: 10px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h3 {
  font-size: 34px;
  margin-bottom: 12px;
}
.contact-info .section-divider { margin: 14px 0 24px; }
.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-item .icon {
  width: 42px; height: 42px;
  background: #1b1a1a;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2b2b2b;
  margin-bottom: 3px;
}
.contact-item-text p { color: #6b6b6b; font-size: 14px; margin: 0; }

.contact-form h3 {
  font-size: 34px;
  margin-bottom: 12px;
}
.contact-form .section-divider { margin: 14px 0 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #2b2b2b;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #1b1a1a; }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #1b1a1a;
  color: #fff;
  border: 2px solid #1b1a1a;
  padding: 13px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.form-submit:hover { background: #c8622a; border-color: #c8622a; }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-section {
  padding: 70px 0;
}
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
}
.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.blog-post-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  overflow: hidden;
}
.blog-post-item img {
  width: 280px; height: 200px;
  object-fit: cover;
}
.blog-post-body {
  padding: 24px 24px 24px 0;
}
.blog-post-body .post-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
}
.blog-post-body .post-meta .cat { color: #c8622a; }
.blog-post-body h3 {
  font-size: 28px;
  color: #2b2b2b;
  margin-bottom: 10px;
  line-height: 1.2em;
}
.blog-post-body p { font-size: 13px; color: #888; margin-bottom: 16px; }
.blog-sidebar {}
.sidebar-widget {
  background: #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  padding: 26px 22px;
  margin-bottom: 28px;
}
.sidebar-widget h4 {
  font-size: 20px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}
.sidebar-widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13px;
  color: #6b6b6b;
}
.sidebar-widget ul li a:hover { color: #c8622a; }

/* ============================================
   SINGLE POST
   ============================================ */
.post-section {
  padding: 70px 0;
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
}
.post-content h1 {
  font-size: 46px;
  margin-bottom: 14px;
}
.post-meta-bar {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
}
.post-meta-bar .cat { color: #c8622a; }
.post-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 36px;
}
.post-body h2 { font-size: 28px; margin: 32px 0 14px; }
.post-body h3 { font-size: 22px; margin: 24px 0 12px; }
.post-body p { font-size: 15px; color: #555; line-height: 1.75em; margin-bottom: 18px; }
.post-body ul { margin: 14px 0 18px 20px; list-style: disc; }
.post-body ul li { font-size: 15px; color: #555; margin-bottom: 6px; }
.post-body blockquote {
  border-left: 4px solid #c8622a;
  margin: 24px 0;
  padding: 16px 22px;
  background: #fafafa;
  font-style: italic;
  color: #555;
}
.recipe-box {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  padding: 28px;
  margin: 28px 0;
}
.recipe-box h4 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #2b2b2b;
}
.recipe-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}
.recipe-meta-item {
  text-align: center;
  padding: 12px;
  background: #fff;
  border: 1px solid #e8e8e8;
}
.recipe-meta-item i { color: #c8622a; display: block; font-size: 18px; margin-bottom: 6px; }
.recipe-meta-item span {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #aaa;
  display: block;
}
.recipe-meta-item strong { font-size: 16px; color: #2b2b2b; display: block; margin-bottom: 2px; }

/* Premium lock */
.premium-lock {
  background: #1b1a1a;
  color: #fff;
  padding: 50px 36px;
  text-align: center;
  margin: 32px 0;
  position: relative;
}
.premium-lock::before {
  content: '';
  position: absolute;
  top: -20px; left: 0; right: 0;
  height: 20px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.15));
}
.premium-lock i { font-size: 36px; color: #c8622a; margin-bottom: 14px; }
.premium-lock h3 { font-size: 28px; color: #fff; margin-bottom: 10px; }
.premium-lock p { color: rgba(255,255,255,0.65); max-width: 420px; margin: 0 auto 22px; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
  padding: 70px 0;
}
.legal-content {
  max-width: 820px;
}
.legal-content h2 { font-size: 32px; margin: 36px 0 14px; }
.legal-content h3 { font-size: 22px; margin: 26px 0 10px; }
.legal-content p { font-size: 15px; color: #555; line-height: 1.75em; margin-bottom: 14px; }
.legal-content ul { margin: 14px 0 18px 22px; list-style: disc; }
.legal-content ul li { font-size: 15px; color: #555; line-height: 1.6em; margin-bottom: 8px; }
.legal-content .last-updated {
  font-family: 'Pathway Gothic One', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 36px;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
#scroll-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 42px; height: 42px;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 5px 0 0 5px;
  z-index: 900;
  transition: background 0.2s;
}
#scroll-top.visible { display: flex; }
#scroll-top:hover { background: #c8622a; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1080px) {
  h1 { font-size: 48px; }
  h2 { font-size: 40px; }
  h3 { font-size: 34px; }
  .hero-slide h1 { font-size: 58px; }
  .recipe-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-slide h1 { font-size: 46px; }
  .about-band-inner { grid-template-columns: 1fr; }
  .about-band-img { height: 300px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-circle { margin: 0 auto; }
  .stat-bordered { width: 60%; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .posts-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-post-item { grid-template-columns: 1fr; }
  .blog-post-item img { width: 100%; height: 220px; }
  .blog-post-body { padding: 20px; }
  .post-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .intro-box-grid { grid-template-columns: 1fr; gap: 24px; }
  .recipe-meta-grid { grid-template-columns: repeat(2, 1fr); }
  #cta-band .cta-content { align-items: center; text-align: center; }
  #cta-band h2 { font-size: 38px; }
  .post-card { grid-template-columns: 1fr; }
  .post-card .post-thumb { width: 100%; height: 200px; }
}

@media (max-width: 767px) {
  .hero-slide h1 { font-size: 36px; }
  .hero-slide .slide-sub { font-size: 14px; }
  .hero-slide .slide-text { padding: 24px 20px; }
  .section { padding: 50px 0; }
  h2.section-title { font-size: 32px; }
  .recipe-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-banner h1 { font-size: 36px; }
  #cookie-banner { bottom: 0; right: 0; left: 0; max-width: 100%; width: 100%; border-radius: 0; }
  .post-hero-img { height: 240px; }
  .stats-grid { grid-template-columns: 1fr; }
  #notif-bar { font-size: 11px; }
}
