/* ================================================================
 * EDITORIAL OVERLAY — Akim Folin / ПАНІ UA inspired redesign
 * Loaded AFTER style.css — overrides typography, palette, layout
 * Functionality untouched (IDs, JS hooks intact)
 * ================================================================ */

:root {
  /* ============ CARPATHIAN PALETTE — heavier earth tones ============ */
  /* Inspired by Borzhava ridge sunset, smerek pine forests, village stone,
     aged vyshyvanka linen, smoked clay pottery */

  --ink: #1A130B;          /* coffee-black like burnt wood */
  --ink-soft: #3D3225;     /* aged oak */
  --ink-mute: #786850;     /* faded linen text */

  --paper: #E2D4B5;        /* aged peasant linen — main heavy bg */
  --cream: #D6C6A4;        /* deeper sand */
  --cream-soft: #C8B68F;
  --cream-deep: #B59E72;

  --gold: #B88A3E;         /* deep wheat / sunset Borzhava */
  --gold-deep: #8E6628;    /* darker honey */
  --gold-soft: #DCC089;

  --forest: #3A4A2E;       /* смерек — Carpathian fir */
  --forest-deep: #233019;  /* deep mountain shadow */
  --forest-soft: #5B7140;
  --moss: #6E7847;         /* moss / wild herb */

  --clay: #8E3A1E;         /* baked clay / pottery */
  --bordeaux: #5A1E1A;     /* vyshyvanka red */
  --rust: #B05A30;         /* sunset clay */

  --stone: #6C6149;        /* mountain stone */

  --rule: rgba(26,19,11,0.22);
  --rule-strong: rgba(26,19,11,0.45);
  --rule-soft: rgba(26,19,11,0.10);

  /* Aliases — legacy sage/honey keys remap to new palette */
  --sage: var(--forest);
  --sage-dark: var(--forest-deep);
  --sage-light: var(--forest-soft);
  --sage-mist: var(--cream-deep);
  --honey: var(--gold);
  --honey-light: var(--gold-soft);
  --honey-mist: var(--cream);
}

/* ============ BODY BG — base linen colour ============ */
body {
  background-color: var(--paper);
  background-image:
    /* Hutsul vyshyvanka rhomb pattern overlay */
    url("data:image/svg+xml;utf8,<svg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'><g fill='none' stroke-width='1'><polygon points='60,20 80,40 60,60 40,40' stroke='%235A1E1A' stroke-opacity='0.16'/><polygon points='60,28 72,40 60,52 48,40' fill='%23B88A3E' fill-opacity='0.10'/><polygon points='60,80 80,100 60,120 40,100' stroke='%235A1E1A' stroke-opacity='0.13'/><polygon points='0,40 20,60 0,80' stroke='%235A1E1A' stroke-opacity='0.16'/><polygon points='120,40 100,60 120,80' stroke='%235A1E1A' stroke-opacity='0.16'/><circle cx='30' cy='90' r='1.5' fill='%235A1E1A' fill-opacity='0.30'/><circle cx='90' cy='90' r='1.5' fill='%235A1E1A' fill-opacity='0.30'/><circle cx='30' cy='30' r='1.5' fill='%23B88A3E' fill-opacity='0.30'/><circle cx='90' cy='30' r='1.5' fill='%23B88A3E' fill-opacity='0.30'/><line x1='60' y1='0' x2='60' y2='4' stroke='%235A1E1A' stroke-opacity='0.18'/><line x1='60' y1='116' x2='60' y2='120' stroke='%235A1E1A' stroke-opacity='0.18'/></g></svg>");
  background-size: 120px 120px;
  background-repeat: repeat;
}

/* Subtle linen grain overlay on top of pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  background-image:
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.04 0 0 0 0.28 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  mix-blend-mode: multiply;
  opacity: 0.18;
}

/* Page-level vignette — heavier corners */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(26,19,11,0.18) 100%);
}

/* Section surfaces — semi-translucent so pattern shows through softly */
section.section-soft,
.features,
.about,
.previews {
  background-color: rgba(214,198,164,0.78); /* var(--cream) at 78% — lets pattern bleed */
  position: relative;
  z-index: 1;
}
.channels, .buy {
  /* Dark sections — pattern hidden */
  position: relative;
  z-index: 1;
}

/* ============ Global type rhythm ============ */
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

/* Carpathian geo-tag — appears below hero headline */
.geo-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
}
.geo-tag::before {
  content: '◆';
  color: var(--rust);
  font-size: 8px;
}

.container { max-width: 1240px; padding: 0 32px; }
@media (max-width: 700px) { .container { padding: 0 22px; } }

/* Force light color scheme — prevents browser auto-dark from inverting */
html, body { color-scheme: only light; }

/* Display headings: Fraunces — classy variable serif from Google Fonts */
h1, h2, h3, .display, .recipe-page h1, .ty-hero h1 {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  letter-spacing: -0.025em;
  line-height: 0.96;
  color: var(--ink) !important;
}

/* All-caps eyebrow / kicker labels */
.kicker, .section-eyebrow, .badge, .recipe-page .kicker {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before, .section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ============ TOPBAR ============ */
.topbar {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(251,248,240,0.92);
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  display: none; /* hide the eye glyph for editorial cleanness */
}
.brand-text {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-text span {
  font-style: italic;
  color: var(--ink-mute);
  font-weight: 300;
}
.lang-btn {
  background: transparent;
  border: 1px solid var(--rule);
  padding: 9px 16px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lang-btn:hover {
  border-color: var(--gold);
  background: rgba(212,162,86,0.06);
  transform: translateY(-1px);
}
.lang-menu {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: 0 24px 48px -8px rgba(26,22,18,0.18);
  padding: 8px;
  margin-top: 10px;
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 1000;
  min-width: 220px;
  max-height: 70vh;
  overflow-y: auto;
}
.lang-menu.open { display: block; }
.lang-menu li {
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.lang-menu li:hover { background: var(--cream-soft); color: var(--gold-deep); }
.lang-menu li.active {
  background: rgba(212,162,86,0.12);
  color: var(--gold-deep);
  font-weight: 600;
}
.lang-menu li::before { content: none; }

/* ============ HERO — editorial layout ============ */
.hero {
  padding: 60px 0 80px;
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 900px) { .hero { padding: 40px 0 60px; } }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  min-height: 0;
  padding-top: 20px;
}
.hero-grid > * { min-width: 0; }
.hero-text, .hero-image { min-width: 0; }
@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: 1fr 1.1fr; gap: 40px; min-height: 640px; }
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
    align-items: center;
    text-align: center;
  }
  /* On mobile: book first (visual hook), text below — both centered */
  .hero-image { order: -1; padding: 10px 0 0 !important; }
  .hero-image img { max-width: 380px !important; width: 100% !important; }
  .hero-text { padding-right: 0 !important; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .bullets { max-width: 480px; margin-left: auto; margin-right: auto; }
  .bullets li { justify-content: flex-start; text-align: left; }
  .cta-block { justify-content: center; }
  .hero h1 { margin-left: auto; margin-right: auto; }
}
@media (max-width: 500px) {
  .hero-image img { max-width: 190px !important; }
  .badge-100 { width: 76px !important; height: 76px !important; right: 0 !important; }
  .badge-100 strong { font-size: 28px !important; }
  .badge-100 span { font-size: 7px !important; }
}
.hero-text { padding-right: 20px; }
.hero h1 {
  font-size: clamp(36px, 6.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 14px 0 22px;
  font-weight: 500;
  color: var(--ink) !important;
  text-shadow: 0 0 0 transparent; /* prevent auto-dark inversion in some browsers */
}
@media (max-width: 600px) {
  .hero h1 { font-size: 36px; line-height: 1.08; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 30px; line-height: 1.1; letter-spacing: -0.015em; }
}
.hero h1 em, .hero h1 i {
  font-style: italic;
  font-weight: 350;
  color: var(--gold-deep);
}
.hero .lead {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 350;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
  font-variation-settings: "opsz" 36, "SOFT" 100;
}
.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  border-top: 1px solid var(--rule);
}
.bullets li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 16px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.5;
}
.bullets li::before { content: ''; }
.bullets li::marker { content: none; }

/* ============ CTA buttons ============ */
.cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
}
.cta-primary {
  background: var(--bordeaux);
  color: var(--paper) !important;
  border: 1px solid var(--bordeaux);
}
.cta-primary:hover {
  background: var(--clay);
  border-color: var(--clay);
  transform: translateY(-1px);
}
.cta-primary .cta-price {
  margin-left: auto;
  padding-left: 16px;
  border-left: 1px solid rgba(244,238,224,0.3);
  font-feature-settings: "tnum";
}
.cta-secondary {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--ink);
}
.cta-secondary:hover { background: var(--ink); color: var(--paper) !important; }
.cta-flag { font-size: 16px; line-height: 1; }
.trust {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);    /* boosted contrast on heavy linen bg */
  margin-top: 24px;
  font-weight: 500;
}

/* ============ CONTRAST BOOST — fix muted text on heavy bg ============ */
.section-lead, .lead, .feature-card p, .inside-item span,
.faq-item p, .channel-handle, .recipe-body p {
  color: var(--ink-soft) !important;
}
.proof-label {
  color: var(--ink-soft) !important;
  font-weight: 600;
}
.kicker, .section-eyebrow {
  color: var(--ink) !important;
  font-weight: 700;
}

/* ============ DARK SECTIONS — full text override =============== */
/* Beats earlier contrast-boost rules thanks to higher specificity + !important */
.channels h2,
.channels .section-lead,
.channels .channel-name,
.channels .channel-handle,
.channels .channel-desc,
.channels .stat b,
.channels .stat span,
.channels .ct-stat b,
.channels .ct-stat span,
.buy h2,
.buy .section-lead,
.buy .buy-method,
.buy .buy-price,
.buy .buy-note,
footer .footer-brand strong,
footer .footer-brand span,
footer .footer-bottom,
footer .footer-links a,
footer .footer-channels a {
  color: rgba(244,238,224,0.92) !important;
}
/* Sub-elements that should be slightly muted */
.channels .section-lead,
.channels .channel-handle,
.channels .channel-desc,
.channels .stat span,
.channels .ct-stat span,
.buy .section-lead,
.buy .buy-method,
.buy .buy-note,
footer .footer-brand span,
footer .footer-bottom,
footer .footer-links a,
footer .footer-channels a {
  color: rgba(244,238,224,0.72) !important;
}
/* Gold accents in dark sections */
.channels .stat b,
.channels .ct-stat b,
.channels h2 em,
.channels h2 i,
.buy h2 em,
.buy h2 i {
  color: var(--gold) !important;
}
/* Channel name stays bright */
.channels .channel-name { color: rgba(244,238,224,0.98) !important; }

/* ============ HERO image — clean 3D book ============ */
.hero-image {
  position: relative;
  align-self: start;
  perspective: 1800px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}
.hero-image img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: 0 auto;
  transform: rotateY(-5deg) rotateX(1.5deg) translateZ(0);
  transform-origin: center center;
  filter:
    drop-shadow(35px 60px 80px rgba(26,19,11,0.45))
    drop-shadow(0 10px 20px rgba(26,19,11,0.28))
    contrast(1.06) saturate(1.04);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1),
              filter 0.5s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
  animation: float-subtle 9s ease-in-out infinite alternate;
}
@keyframes float-subtle {
  0%   { transform: rotateY(-5deg) rotateX(1.5deg) translateY(0) translateZ(0); }
  100% { transform: rotateY(-3deg) rotateX(0.5deg) translateY(-10px) translateZ(12px); }
}
.hero-image img:hover {
  animation-play-state: paused;
  transform: rotateY(-3deg) rotateX(1deg) scale(1.025) translateZ(30px);
  filter:
    drop-shadow(30px 50px 70px rgba(26,19,11,0.55))
    drop-shadow(0 12px 22px rgba(26,19,11,0.32))
    contrast(1.1) saturate(1.08) brightness(1.02);
}

/* Hard ground shadow ellipse (gravity feel) */
.hero-image::before {
  content: '';
  position: absolute;
  bottom: 4%;
  left: 8%;
  right: 12%;
  height: 56px;
  background: radial-gradient(ellipse at center, rgba(26,19,11,0.55), transparent 65%);
  filter: blur(28px);
  z-index: -1;
  transform: scaleY(0.5);
  animation: shadow-pulse 7s ease-in-out infinite alternate;
}
@keyframes shadow-pulse {
  0%   { transform: scaleY(0.5) scaleX(1); opacity: 0.9; }
  100% { transform: scaleY(0.42) scaleX(0.85); opacity: 0.55; }
}

/* Golden glow halo */
.hero-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 40%, rgba(212,162,86,0.15), transparent 55%);
  filter: blur(40px);
  z-index: -2;
  pointer-events: none;
}

/* Mouse-tracking class added by JS — overrides float animation when mouse is over */
.hero-image.tracking img {
  animation: none;
  transition: transform 0.1s linear, filter 0.5s;
}
.badge-100 {
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 28px;
  right: -8px;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  text-align: center;
  border: 1.5px solid var(--gold);
  z-index: 5;
  box-shadow: 0 14px 30px rgba(26,19,11,0.45);
  transform: rotate(8deg);
}
.badge-100 strong {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}
.badge-100 span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============ Section base ============ */
section { padding: 100px 0; }
section.section-soft { background: var(--cream); }

/* Centered header for all sections EXCEPT hero (which has 2-col layout) */
section:not(.hero) > .container > h2,
section:not(.hero) > .container > .kicker,
section:not(.hero) > .container > .section-eyebrow,
section:not(.hero) > .container > .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
section:not(.hero) > .container > .kicker,
section:not(.hero) > .container > .section-eyebrow {
  display: flex;
  justify-content: center;
}
section h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 350;
  margin: 14px auto 36px;
  max-width: 900px;
  letter-spacing: -0.02em;
}
section h2 em, section h2 i { font-style: italic; color: var(--gold-deep); font-weight: 350; }
.section-lead {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 60px;
  font-variation-settings: "opsz" 36;
}

/* ============ FEATURES (3 cards) ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 800px) {
  .features-grid { grid-template-columns: 1fr; }
  .features-grid .feature-card:not(:last-child) { border-bottom: 1px solid var(--rule); border-right: 0; }
}
.feature-card {
  padding: 56px 40px;
  border-right: 1px solid var(--rule);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: background 0.4s cubic-bezier(.2,.8,.2,1), transform 0.4s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.feature-card:last-child { border-right: 0; }
.feature-card:hover {
  background: rgba(212,162,86,0.04);
  transform: translateY(-2px);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  font-size: 32px;
  margin-bottom: 32px;
  filter: grayscale(0.3);
}
.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.feature-card p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============ PROOF BAR ============ */
.proof-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin: 90px auto 0;
  padding: 50px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(212,162,86,0.03), transparent);
}
.proof-item {
  border-right: 1px solid var(--rule);
  padding: 8px 24px;
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.proof-item:last-child { border-right: 0; }
.proof-item:hover { transform: translateY(-3px); }
.proof-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 5.4vw, 68px);
  font-weight: 350;
  color: var(--ink);
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
  line-height: 1;
  background: linear-gradient(135deg, var(--ink) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variation-settings: "opsz" 96;
}
.proof-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 14px;
  font-weight: 500;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-text p {
  font-family: 'Fraunces', serif;
  font-size: clamp(19px, 1.85vw, 22px);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 26px;
  max-width: 580px;
  font-weight: 350;
  opacity: 1 !important;
  transform: none !important;
}
.about-text blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.3;
  color: var(--gold-deep);
  padding-left: 24px;
  border-left: 1px solid var(--gold);
  margin-top: 36px;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}
.about-photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.about-photo img {
  width: 100%;
  border-radius: 4px;
  filter: contrast(1.05) saturate(0.92);
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
  display: block;
}
.about-photo:hover img { transform: scale(1.04); }
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,19,11,0.15));
  pointer-events: none;
  border-radius: 4px;
}

/* ============ CHANNELS ============ */
.channels {
  background: var(--ink);
  color: var(--paper);
}
.channels h2 { color: var(--paper); }
.channels h2 em, .channels h2 i { color: var(--gold); }
.channels .section-lead { color: rgba(244,238,224,0.7); }
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(244,238,224,0.15);
}
@media (max-width: 800px) { .channels-grid { grid-template-columns: 1fr; } }
.channel-card {
  background: transparent;
  border-radius: 0;
  border-right: 1px solid rgba(244,238,224,0.15);
  padding: 50px 36px;
  text-decoration: none;
  color: var(--paper);
  transition: background 0.4s cubic-bezier(.2,.8,.2,1), transform 0.4s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.channel-card:last-child { border-right: 0; }
.channel-card:hover {
  background: rgba(244,238,224,0.06);
  transform: translateY(-4px);
}
.channel-card::after {
  content: 'WATCH ON YOUTUBE \2192';
  position: absolute;
  bottom: 24px;
  left: 36px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s, transform 0.4s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.channel-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.channel-card { padding-bottom: 60px; }
.channel-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 8px;
  border: 1.5px solid rgba(212,162,86,0.45);
  box-shadow: 0 14px 28px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.channel-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.channel-name {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0;
}
.channel-handle {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,238,224,0.5);
  margin-bottom: 6px;
}
.channel-stats {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(244,238,224,0.13);
  border-bottom: 1px solid rgba(244,238,224,0.13);
}
.channel-stats .stat { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.channel-stats .stat b {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
}
.channel-stats .stat span {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,238,224,0.55);
}
.channel-desc {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 350;
  line-height: 1.5;
  color: rgba(244,238,224,0.85) !important;
  margin: 0;
}

/* Combined-channels stat bar (below 3 cards) */
.channels-total {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  padding: 32px 0;
  border-top: 1px solid rgba(244,238,224,0.15);
  border-bottom: 1px solid rgba(244,238,224,0.15);
}
@media (max-width: 700px) { .channels-total { grid-template-columns: repeat(2, 1fr); } }
.ct-stat {
  text-align: center;
  border-right: 1px solid rgba(244,238,224,0.13);
  padding: 0 12px;
}
.ct-stat:last-child { border-right: 0; }
.ct-stat b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--gold);
  font-feature-settings: "tnum";
  letter-spacing: -0.03em;
}
.ct-stat span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,238,224,0.55);
  margin-top: 6px;
}

/* ============ PREVIEWS ============ */
.previews { background: var(--paper); }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 768px) { .preview-grid { grid-template-columns: 1fr; } }
.preview-grid img {
  border-radius: 0;
  box-shadow: 0 30px 60px -20px rgba(26,22,18,0.18);
  filter: contrast(1.03);
}

/* ============ FREE TEASER (recipes) ============ */
.free-teaser-card {
  background: var(--cream);
  border-radius: 0;
  border: 1px solid var(--rule);
  padding: 80px 60px;
  box-shadow: none;
}
@media (max-width: 700px) {
  .free-teaser-card { padding: 40px 20px; }
}
.free-teaser-card .free-cta {
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  border: 1px solid var(--ink);
  padding: 18px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.free-teaser-card .free-cta:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}
.free-thumb {
  background: var(--paper);
  border-radius: 4px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s, border-color 0.4s;
  text-decoration: none;
  overflow: hidden;
  position: relative;
}
.free-thumb:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -8px rgba(26,19,11,0.24);
  border-color: var(--gold);
}
.free-thumb::before {
  content: 'FREE';
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 8px;
  border-radius: 999px;
  z-index: 2;
  opacity: 0.9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}
.free-thumb img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.96) saturate(1.05);
  transition: filter 0.5s, transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.free-thumb:hover img { filter: brightness(1.02) saturate(1.1); transform: scale(1.06); }
.free-thumb span {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 14px 16px;
  color: var(--ink);
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  line-height: 1.3;
}

/* ============ WHATS INSIDE ============ */
.inside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
@media (max-width: 700px) { .inside-grid { grid-template-columns: 1fr; } }
.inside-item {
  padding: 32px 28px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.inside-item:nth-child(2n) { border-right: 0; }
@media (max-width: 700px) {
  .inside-item { border-right: 0; }
}
.inside-item strong {
  color: var(--gold-deep);
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  flex-shrink: 0;
  font-feature-settings: "tnum";
  font-style: italic;
}
.inside-item div {
  font-size: 15px;
  line-height: 1.5;
}
.inside-item b {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.inside-item span { color: var(--ink-soft); }

/* ============ BUY section ============ */
.buy { background: var(--ink); color: var(--paper); }
.buy h2 { color: var(--paper); }
.buy .section-lead { color: rgba(244,238,224,0.65); }
.buy-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.buy-card {
  flex: 0 1 320px;
  min-width: 280px;
}
@media (max-width: 900px) { .buy-grid { gap: 20px; } .buy-card { flex: 1 1 100%; max-width: 420px; } }
.buy-card {
  background: rgba(244,238,224,0.04);
  border-radius: 4px;
  border: 1px solid rgba(244,238,224,0.12);
  padding: 44px 32px 36px;
  box-shadow: none;
  color: var(--paper);
  text-align: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1),
              border-color 0.4s cubic-bezier(.2,.8,.2,1),
              background 0.4s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.buy-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,162,86,0.45);
  background: rgba(244,238,224,0.06);
}
.buy-card-highlight {
  background: rgba(212,162,86,0.08);
  border-color: rgba(212,162,86,0.4);
  transform: scale(1.04);
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.55);
}
.buy-card-highlight:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: var(--gold);
}
.buy-card-highlight::after {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.buy-flag {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.buy-method-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,238,224,0.65) !important;
  margin-bottom: 16px;
  font-weight: 500;
}
.buy-method {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,238,224,0.55);
  margin-bottom: 18px;
}
.buy-price {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 350;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--paper);
  font-variation-settings: "opsz" 144;
}
.buy-price-sub {
  font-size: 12px;
  color: rgba(244,238,224,0.5);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.buy-btn {
  background: var(--paper);
  color: var(--ink) !important;
  border: 1px solid var(--paper);
  padding: 16px 32px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  width: 100%;
  text-transform: uppercase;
  margin-top: 14px;
}
.buy-btn:hover {
  background: var(--gold);
  color: var(--ink) !important;
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212,162,86,0.3);
}
.buy-card-highlight .buy-btn {
  background: var(--gold);
  border-color: var(--gold);
}
.buy-card-highlight .buy-btn:hover {
  background: var(--paper);
  border-color: var(--paper);
}
.buy-note {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: rgba(244,238,224,0.5);
  margin-top: 18px;
  line-height: 1.5;
}

/* ============ GUARANTEE BAR ============ */
.guarantee-bar {
  background: var(--cream);
  border-radius: 0;
  border: 1px solid var(--rule);
  padding: 50px 60px;
  text-align: center;
}
.guarantee-bar h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 400;
}

/* ============ LEAD CAPTURE ============ */
.lead-card {
  background: var(--paper);
  border: 1px solid rgba(26,19,11,0.1);
  border-radius: 8px;
  padding: 56px 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 30px 60px -20px rgba(26,19,11,0.18);
  position: relative;
  overflow: hidden;
}
.lead-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-deep));
}
.lead-card .lead-icon {
  font-size: 38px;
  margin-bottom: 18px;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(212,162,86,0.3));
}
.lead-card h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.018em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.lead-card p {
  font-family: 'Fraunces', serif;
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 auto 28px;
  max-width: 480px;
  font-weight: 350;
}
.lead-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 16px;
}
@media (max-width: 600px) {
  .lead-form { flex-direction: column; }
  .lead-card { padding: 44px 28px; }
}
.lead-form input[type=email] {
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--cream-soft);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 16px 22px;
  flex: 1;
  color: var(--ink);
  transition: border-color 0.25s, background 0.25s;
}
.lead-form input[type=email]:focus {
  outline: none;
  border-color: var(--gold-deep);
  background: var(--paper);
}
.lead-form button {
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
  white-space: nowrap;
}
.lead-form button:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(168,124,58,0.35);
}
.lead-note {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  margin-top: 10px;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: rgba(244,238,224,0.55);
  padding: 0;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.faq-item:hover {
  background: rgba(244,238,224,0.85);
  border-color: rgba(212,162,86,0.4);
  box-shadow: 0 8px 24px -8px rgba(26,19,11,0.12);
}
.faq-item[open] {
  background: var(--paper);
  border-color: rgba(212,162,86,0.55);
  box-shadow: 0 14px 32px -10px rgba(26,19,11,0.15);
}
.faq-item summary {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 400;
  cursor: pointer;
  letter-spacing: -0.01em;
  padding: 24px 60px 24px 28px;
  list-style: none;
  position: relative;
  transition: color 0.3s;
  color: var(--ink);
  text-align: left;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-deep);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  line-height: 1;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212,162,86,0.12);
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: rgba(212,162,86,0.25);
}
.faq-item[open] summary { color: var(--gold-deep); }
.faq-item:hover summary { color: var(--gold-deep); }
.faq-item p {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  padding: 0 60px 26px 28px;
  font-weight: 350;
  text-align: left;
  animation: faq-reveal 0.45s cubic-bezier(.2,.8,.2,1);
}
@media (max-width: 600px) {
  .faq-item summary { padding: 20px 56px 20px 22px; font-size: 18px; }
  .faq-item summary::after { right: 20px; }
  .faq-item p { padding: 0 22px 22px; font-size: 16px; }
}
@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 32px;
  border-top: 1px solid var(--rule);
}
.footer-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(244,238,224,0.15);
}
@media (max-width: 700px) {
  .footer-row { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
}
.footer-brand strong {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.footer-brand span {
  font-size: 13px;
  color: rgba(244,238,224,0.6);
  letter-spacing: 0.05em;
}
.footer-links, .footer-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-channels a {
  color: rgba(244,238,224,0.7);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-channels a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,238,224,0.4);
  text-align: center;
}

/* ============ FREE TEASER section ============ */
.free-teaser { background: var(--paper); }
.free-teaser .kicker { color: var(--ink); }

/* ============ Upsell + recipe page ============ */
.upsell-banner, .upsell-final {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 0;
  box-shadow: none;
}
.upsell-btn {
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.upsell-btn:hover { background: var(--gold-deep); }

/* Recipe pages */
.recipe-page .upsell-final h2 { color: var(--ink); }
.method li::before { background: var(--ink); }
.tip {
  background: var(--cream);
  border-left: 2px solid var(--gold);
  border-radius: 0;
}
.tip strong { color: var(--gold-deep); }

/* ============ Hide legacy ornaments ============ */
.brand-mark { display: none !important; }

/* ============ SECTION DIVIDERS — Hutsul vyshyvanka thread ============ */
.section-divider {
  height: 60px;
  width: 100%;
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 60' width='240' height='60'><g fill='none' stroke-width='1.5'><polygon points='30,20 50,30 30,40 10,30' stroke='%235A1E1A' stroke-opacity='0.55'/><polygon points='30,25 42,30 30,35 18,30' fill='%23B88A3E' fill-opacity='0.55' stroke='none'/><polygon points='90,20 110,30 90,40 70,30' stroke='%235A1E1A' stroke-opacity='0.55'/><polygon points='90,25 102,30 90,35 78,30' fill='%23B88A3E' fill-opacity='0.55' stroke='none'/><polygon points='150,20 170,30 150,40 130,30' stroke='%235A1E1A' stroke-opacity='0.55'/><polygon points='150,25 162,30 150,35 138,30' fill='%23B88A3E' fill-opacity='0.55' stroke='none'/><polygon points='210,20 230,30 210,40 190,30' stroke='%235A1E1A' stroke-opacity='0.55'/><polygon points='210,25 222,30 210,35 198,30' fill='%23B88A3E' fill-opacity='0.55' stroke='none'/><line x1='0' y1='30' x2='240' y2='30' stroke='%235A1E1A' stroke-opacity='0.20' stroke-dasharray='1 3'/><circle cx='60' cy='30' r='1.5' fill='%235A1E1A' fill-opacity='0.6'/><circle cx='120' cy='30' r='1.5' fill='%235A1E1A' fill-opacity='0.6'/><circle cx='180' cy='30' r='1.5' fill='%235A1E1A' fill-opacity='0.6'/></g></svg>");
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ============ SCROLL-REVEAL animations ============
   Disabled because IntersectionObserver missed mobile scroll-into-view
   in some browsers, leaving critical content hidden. All elements with
   .reveal class are visible by default. JS adds .in immediately. */
.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ DROP CAP — first letter of about-text ============ */
.about-text > p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 5em;
  line-height: 0.9;
  float: left;
  margin: 0.05em 0.12em 0 -0.05em;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

/* ============ MARQUEE — endless dish-strip ============ */
.marquee {
  overflow: hidden;
  width: 100%;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: rgba(214,198,164,0.5);
  padding: 24px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee-scroll 60s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee-item::after {
  content: '◆';
  color: var(--gold);
  margin-left: 32px;
  font-size: 10px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============ FULL-BLEED LIFESTYLE PHOTOS ============ */
.bleed-photo {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
.bleed-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,19,11,0.0) 60%, rgba(26,19,11,0.35) 100%);
}
@media (max-width: 700px) { .bleed-photo { height: 280px; } }

.bleed-photo .caption {
  position: absolute;
  bottom: 24px;
  left: 32px;
  z-index: 3;
  color: var(--paper);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(26,19,11,0.5);
}

/* ============ CLEAN SECTION BACKGROUNDS ============
 * Solid editorial colors. Side vyshyvanka stripes live on ::before/::after
 * via polish.css — don't add bg-images or ::before/::after overlays here.
 */
.features      { position: relative; background-color: var(--cream-soft); }
.about         { position: relative; background-color: var(--cream); }
.channels      { position: relative; background-color: var(--ink); }
.previews      { position: relative; background-color: var(--paper); }
.whats-inside  { position: relative; background-color: var(--cream); }
.buy           { position: relative; background-color: var(--ink); }
.lead-capture  { position: relative; background-color: var(--cream-soft); }
.faq           { position: relative; background-color: var(--paper); }
footer         { position: relative; background-color: var(--ink); }
.hero          { position: relative; overflow: hidden; }

/* Each section's content sits above the side stripes */
.features > .container,
.about > .container,
.channels > .container,
.previews > .container,
.whats-inside > .container,
.buy > .container,
.lead-capture > .container,
.faq > .container,
footer .container,
.hero > .container { position: relative; z-index: 1; }

/* ============ HUTSUL ICON BADGES — replace emojis ============ */
.feature-icon-svg {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  color: var(--gold-deep);
}
.feature-icon-svg svg { width: 100%; height: 100%; }
.feature-card .feature-icon { display: none; } /* hide emoji */

