/* ==========================================================================
   PROSERVE / Practical Journal + Kursusmagerne — site.css
   Handwritten CSS, BEM naming, CSS custom properties, mobile-first.
   Two design families live in one file:
     .page--pub    → publication / advertorial (Practical Journal)
     .page--offer  → commercial SaaS-style (Kursusmagerne)
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl, dd { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; }
img, video { max-width: 100%; height: auto; display: block; }
ul[class], ol[class] { list-style: none; padding: 0; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid #2563eb; outline-offset: 2px; }

/* ---------- Root tokens ---------- */
:root {
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(20, 20, 10, 0.08);
  --shadow-md: 0 16px 40px rgba(10, 20, 10, 0.16);
  --container-w: 1180px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.25rem;
  --space-5: 3.25rem;
  --space-6: 4.5rem;
  --space-7: 6rem;

  /* publication palette */
  --pub-bg: #faf7f1;
  --pub-surface: #ffffff;
  --pub-ink: #201d18;
  --pub-muted: #5f594e;
  --pub-line: #e6ddc9;
  --pub-cream: #f1e8d4;
  --pub-accent: #a8432a;
  --pub-accent-dark: #7c2f1c;
  --pub-gold: #b98426;
  --font-pub-head: 'Fraunces', Georgia, serif;
  --font-pub-body: 'Source Sans 3', -apple-system, sans-serif;

  /* offer palette */
  --offer-forest: #0e2c1d;
  --offer-forest-deep: #081f13;
  --offer-lime: #d6fa53;
  --offer-lime-deep: #bfe63a;
  --offer-cream: #f1efdd;
  --offer-ink: #0e2c1d;
  --offer-white: #ffffff;
  --offer-muted: #4b5c50;
  --offer-line: rgba(14, 44, 29, 0.14);
  --font-offer-head: 'Space Grotesk', -apple-system, sans-serif;
  --font-offer-body: 'Inter', -apple-system, sans-serif;
}

/* ---------- Base ---------- */
body {
  background: var(--pub-bg);
  color: var(--pub-ink);
  font-family: var(--font-pub-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 1.1rem;
}
@media (min-width: 768px) { .container { padding-inline: 2rem; } }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: #111; color: #fff; padding: 0.75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   BUTTONS (shared shapes, palette adapts per family)
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: normal;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--pub-primary { background: var(--pub-accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--pub-primary:hover { background: var(--pub-accent-dark); box-shadow: var(--shadow-md); }
.btn--pub-ghost { background: transparent; color: var(--pub-ink); border-color: var(--pub-ink); }
.btn--pub-ghost:hover { background: var(--pub-ink); color: #fff; }

.btn--offer-primary { background: var(--offer-lime); color: var(--offer-forest); box-shadow: var(--shadow-sm); }
.btn--offer-primary:hover { background: var(--offer-lime-deep); box-shadow: var(--shadow-md); }
.btn--offer-outline { background: transparent; color: var(--offer-white); border-color: rgba(255,255,255,0.55); }
.btn--offer-outline:hover { background: rgba(255,255,255,0.12); }
.btn--offer-dark { background: var(--offer-forest); color: var(--offer-white); }
.btn--offer-dark:hover { background: var(--offer-forest-deep); }
.btn--block { width: 100%; }

/* ==========================================================================
   PUBLICATION FAMILY — advertorial + about
   ========================================================================== */
.page--pub { background: var(--pub-bg); color: var(--pub-ink); font-family: var(--font-pub-body); }
.page--pub h1, .page--pub h2, .page--pub h3, .page--pub .kicker { font-family: var(--font-pub-head); }

.masthead { background: #171512; color: #f6f1e7; text-align: center; padding: 0.65rem 1rem; }
.masthead__ribbon { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; }

.pub-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.1rem; border-bottom: 1px solid var(--pub-line); background: var(--pub-surface);
}
.pub-topbar__brand { font-family: var(--font-pub-head); font-weight: 700; font-size: 1.25rem; text-decoration: none; color: var(--pub-ink); }
.pub-topbar__back { font-size: 0.9rem; font-weight: 600; text-decoration: none; color: var(--pub-accent); }
.pub-topbar__back:hover { text-decoration: underline; }

.article-header { padding: var(--space-4) 0 var(--space-2); }
.article-header__title {
  font-size: clamp(1.75rem, 5.4vw, 3.15rem);
  line-height: 1.14;
  font-weight: 700;
  color: var(--pub-ink);
  max-width: 20ch;
}
.article-header__dek {
  margin-top: var(--space-2);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--pub-muted);
  max-width: 56ch;
  font-family: var(--font-pub-body);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
}
@media (min-width: 1024px) {
  .article-layout { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); align-items: start; }
}

.article-main { min-width: 0; }

.byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem;
  padding: var(--space-3) 0; border-top: 1px solid var(--pub-line); border-bottom: 1px solid var(--pub-line);
  margin-bottom: var(--space-4); color: var(--pub-muted); font-size: 0.92rem;
}
.byline__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pub-accent), var(--pub-gold));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-pub-head); font-weight: 700; font-size: 1rem;
}
.byline__name { color: var(--pub-ink); font-weight: 700; }
.byline__meta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-left: auto; }

.pull-intro {
  background: var(--pub-cream);
  border-left: 4px solid var(--pub-gold);
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-pub-head);
  font-style: italic;
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  line-height: 1.5;
  color: var(--pub-ink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: var(--space-4);
}

.article-figure { margin: 0 0 var(--space-4); }
.article-figure img, .article-figure video {
  width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.article-figure--video video { aspect-ratio: 16 / 10; }
.article-figure figcaption { margin-top: 0.6rem; font-size: 0.88rem; color: var(--pub-muted); text-align: center; }

.article-section { margin-bottom: var(--space-5); }
.article-section h2 {
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  line-height: 1.24;
  margin-bottom: var(--space-2);
  color: var(--pub-ink);
}
.article-section p { margin-bottom: var(--space-2); color: var(--pub-ink); max-width: 68ch; }
.article-section p:last-child { margin-bottom: 0; }
.article-section strong { color: var(--pub-accent-dark); }

.kicker {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  font-weight: 700; color: var(--pub-accent-dark); margin-bottom: 0.6rem;
}

.reasons-list { counter-reset: reasons; margin-bottom: var(--space-5); display: grid; gap: var(--space-3); }
.reasons-list__item { position: relative; padding-left: 3.2rem; }
.reasons-list__item::before {
  counter-increment: reasons; content: counter(reasons);
  position: absolute; left: 0; top: -0.15rem;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--pub-ink); color: var(--pub-cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-pub-head); font-weight: 700; font-size: 1.05rem;
}
.reasons-list__item h3 { font-size: 1.12rem; margin-bottom: 0.3rem; color: var(--pub-ink); font-family: var(--font-pub-body); font-weight: 700; }
.reasons-list__item p { color: var(--pub-muted); max-width: 62ch; }

.callout-band {
  background: var(--pub-ink); color: var(--pub-cream);
  padding: var(--space-4); border-radius: var(--radius-md);
  margin: 0 0 var(--space-5);
}
.callout-band .kicker { color: var(--pub-gold); }
.callout-band h2 { color: #fff; font-size: clamp(1.35rem, 3vw, 1.85rem); margin-bottom: var(--space-2); }
.callout-band p { color: #e9e2d1; max-width: 66ch; margin-bottom: 0.85rem; }
.callout-band p:last-child { margin-bottom: 0; }

.deliverables-list { display: grid; gap: 0.9rem; margin-bottom: var(--space-5); }
.deliverables-list__item {
  display: flex; gap: 0.85rem; align-items: flex-start;
  background: var(--pub-surface); border: 1px solid var(--pub-line);
  border-radius: var(--radius-sm); padding: 1rem 1.15rem;
}
.deliverables-list__icon {
  flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--pub-cream); color: var(--pub-accent-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.deliverables-list__item p { color: var(--pub-ink); font-weight: 600; }

.worked-example {
  background: var(--pub-surface); border: 1px solid var(--pub-line);
  border-radius: var(--radius-md); padding: var(--space-4);
  margin-bottom: var(--space-4);
}
.worked-example h2 { margin-bottom: var(--space-2); }
.worked-example p { max-width: 68ch; margin-bottom: var(--space-2); }
.worked-example__fee {
  display: inline-block; background: var(--pub-cream); color: var(--pub-accent-dark);
  font-weight: 700; padding: 0.4rem 0.9rem; border-radius: 999px; font-size: 1.05rem;
}

.figure-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; margin-bottom: var(--space-5); }
@media (min-width: 640px) { .figure-strip { grid-template-columns: repeat(4, 1fr); } }
.figure-strip__item {
  background: var(--pub-cream); border-radius: var(--radius-sm);
  padding: 1rem 0.85rem; text-align: center;
}
.figure-strip__value { display: block; font-family: var(--font-pub-head); font-weight: 700; font-size: 1.15rem; color: var(--pub-ink); }
.figure-strip__label { display: block; font-size: 0.8rem; color: var(--pub-muted); margin-top: 0.25rem; }

.steps-list { counter-reset: steps; display: grid; gap: 1rem; margin-bottom: var(--space-5); }
@media (min-width: 640px) { .steps-list { grid-template-columns: repeat(2, 1fr); } }
.steps-list__item {
  position: relative; background: var(--pub-surface); border: 1px solid var(--pub-line);
  border-radius: var(--radius-sm); padding: 1.15rem 1.2rem 1.15rem 3.4rem;
}
.steps-list__item::before {
  counter-increment: steps; content: counter(steps, decimal-leading-zero);
  position: absolute; left: 1.1rem; top: 1.15rem;
  font-family: var(--font-pub-head); font-weight: 700; color: var(--pub-gold); font-size: 1rem;
}
.steps-list__item h3 { font-size: 1.02rem; margin-bottom: 0.25rem; }
.steps-list__item p { color: var(--pub-muted); font-size: 0.94rem; }

.verdict-box {
  border: 2px solid var(--pub-ink); border-radius: var(--radius-md);
  padding: var(--space-4); margin-bottom: var(--space-5);
}
.verdict-box h2 { margin-bottom: 0.6rem; }
.verdict-box p { max-width: 66ch; margin-bottom: 0.7rem; }
.verdict-box p:last-child { margin-bottom: 0; }
.verdict-box__tag {
  display: inline-block; background: var(--pub-ink); color: var(--pub-cream);
  padding: 0.3rem 0.8rem; border-radius: 999px; font-size: 0.82rem; font-weight: 700;
  margin-bottom: 0.8rem;
}

.decision-close {
  background: var(--pub-cream); border-radius: var(--radius-md);
  padding: var(--space-4); text-align: left;
}
.decision-close h2 { margin-bottom: 0.6rem; }
.decision-close p { max-width: 62ch; margin-bottom: var(--space-3); color: var(--pub-ink); }

/* aside sidebar */
.article-aside { display: grid; gap: var(--space-3); align-content: start; }
@media (min-width: 1024px) { .article-aside { position: sticky; top: 1.5rem; } }
.fact-card {
  background: var(--pub-surface); border: 1px solid var(--pub-line);
  border-radius: var(--radius-md); padding: var(--space-3);
  box-shadow: var(--shadow-sm);
}
.fact-card h2 { font-size: 1.05rem; margin-bottom: 0.75rem; font-family: var(--font-pub-body); font-weight: 700; }
.fact-card__row {
  display: flex; justify-content: space-between; gap: 0.5rem;
  padding: 0.55rem 0; border-bottom: 1px dashed var(--pub-line); font-size: 0.92rem;
}
.fact-card__row:last-of-type { border-bottom: none; }
.fact-card__label { color: var(--pub-muted); }
.fact-card__value { font-weight: 700; text-align: right; }
.fact-card__note { font-size: 0.78rem; color: var(--pub-muted); margin-top: 0.6rem; }
.fact-card__note a { color: var(--pub-accent-dark); }
.fact-card .btn { margin-top: var(--space-2); }

.mini-list { display: grid; gap: 0.5rem; margin-top: 0.5rem; }
.mini-list li { font-size: 0.9rem; padding-left: 1.3rem; position: relative; color: var(--pub-ink); }
.mini-list li::before { content: "✓"; position: absolute; left: 0; color: var(--pub-gold); font-weight: 700; }

/* ==========================================================================
   ABOUT (publication family, article-style content page)
   ========================================================================== */
.about-hero { padding: var(--space-5) 0 var(--space-4); }
.about-hero h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); margin-bottom: var(--space-2); }
.about-hero p { max-width: 62ch; color: var(--pub-muted); font-size: 1.08rem; }
.about-body { padding-bottom: var(--space-6); max-width: 72ch; }
.about-body h2 { font-family: var(--font-pub-head); font-size: 1.5rem; margin: var(--space-4) 0 0.7rem; }
.about-body p { margin-bottom: var(--space-2); color: var(--pub-ink); }
.about-body ul { margin: 0.5rem 0 var(--space-2); display: grid; gap: 0.4rem; }
.about-body li { padding-left: 1.3rem; position: relative; }
.about-body li::before { content: "—"; position: absolute; left: 0; color: var(--pub-accent); }

/* ==========================================================================
   OFFER FAMILY — commercial SaaS-style (course + legal + contact)
   ========================================================================== */
.page--offer { background: var(--offer-cream); color: var(--offer-ink); font-family: var(--font-offer-body); }
.page--offer h1, .page--offer h2, .page--offer h3, .page--offer .eyebrow, .page--offer .offer-nav__brand { font-family: var(--font-offer-head); }

.announce-bar {
  background: var(--offer-lime); color: var(--offer-forest); text-align: center;
  font-size: 0.85rem; font-weight: 600; padding: 0.6rem 1rem;
}
.announce-bar a { color: var(--offer-forest); text-decoration: underline; font-weight: 700; }

.offer-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--offer-cream); border-bottom: 1px solid var(--offer-line);
}
.offer-nav__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.1rem; gap: 1rem;
}
.offer-nav__brand { font-weight: 700; font-size: 1.2rem; text-decoration: none; color: var(--offer-ink); }
.offer-nav__toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: transparent; border: 1px solid var(--offer-line);
  border-radius: var(--radius-sm);
}
.offer-nav__toggle span { display: block; width: 20px; height: 2px; background: var(--offer-ink); margin-inline: auto; }
.offer-nav__links {
  display: none; list-style: none; margin: 0; padding: 1rem 1.1rem 1.25rem; gap: 0.9rem;
  background: var(--offer-cream); border-bottom: 1px solid var(--offer-line);
  font-weight: 600; font-size: 0.98rem;
}
.offer-nav__links a { text-decoration: none; display: block; padding: 0.6rem 0; }
.offer-nav__links--open { display: grid; }
.offer-nav__cta { display: none; }
.offer-nav__links-cta { display: block; }
@media (min-width: 1024px) {
  .offer-nav__toggle { display: none; }
  .offer-nav__bar { padding: 1rem 2rem; }
  .offer-nav__links {
    display: flex; position: static; padding: 0; border: 0; background: transparent;
    flex-direction: row; align-items: center; gap: 1.9rem;
  }
  .offer-nav__links a { padding: 0; }
  .offer-nav__cta { display: inline-flex; }
  .offer-nav__links-cta { display: none; }
}

.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem;
  font-weight: 700; margin-bottom: 0.8rem;
}

.offer-section { padding: var(--space-6) 0; }
.offer-section--tight { padding: var(--space-5) 0; }
.offer-section--dark { background: var(--offer-forest); color: var(--offer-white); }
.offer-section--dark .eyebrow { color: var(--offer-lime); }
.offer-section--cream { background: var(--offer-cream); color: var(--offer-ink); }
.offer-section--white { background: var(--offer-white); color: var(--offer-ink); }
.offer-section--lime { background: var(--offer-lime); color: var(--offer-forest); }

.offer-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: var(--space-2);
  max-width: 22ch;
}
.offer-section > .container > p.offer-section__lead {
  max-width: 60ch; font-size: 1.08rem; margin-bottom: var(--space-4); opacity: 0.92;
}

/* Hero */
.offer-hero { background: var(--offer-forest); color: var(--offer-white); padding: var(--space-5) 0 var(--space-6); overflow: hidden; }
.offer-hero__grid {
  display: grid; gap: var(--space-3);
}
@media (min-width: 1024px) { .offer-hero__grid { grid-template-columns: 1.5fr 1fr; align-items: start; gap: var(--space-4); } }

.offer-hero__blocks { display: grid; gap: 0.7rem; }
.offer-hero__block {
  border-radius: var(--radius-lg); padding: 1.4rem 1.5rem;
}
.offer-hero__block--lime { background: var(--offer-lime); color: var(--offer-forest); }
.offer-hero__block--dark { background: var(--offer-forest-deep); border: 1px solid rgba(255,255,255,0.14); }
.offer-hero h1 {
  font-size: clamp(1.9rem, 6vw, 3.1rem); line-height: 1.06; font-weight: 700; margin: 0;
}
.offer-hero__dek { font-size: clamp(1.02rem, 2.4vw, 1.2rem); margin-top: var(--space-3); max-width: 52ch; opacity: 0.92; }
.offer-hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: var(--space-3); }

.offer-hero__aside { display: grid; gap: 1rem; }
.offer-hero__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.offer-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.pull-quote {
  background: var(--offer-forest-deep); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md); padding: 1.25rem 1.4rem;
}
.pull-quote p { font-family: var(--font-offer-head); font-size: 1.15rem; line-height: 1.4; }
.pull-quote span { color: var(--offer-lime); }
.pull-quote small { display: block; margin-top: 0.6rem; font-size: 0.78rem; opacity: 0.75; font-family: var(--font-offer-body); }
.pull-quote small a { color: var(--offer-lime); }

/* Steps */
.offer-steps { display: grid; gap: 1rem; }
@media (min-width: 640px) { .offer-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .offer-steps { grid-template-columns: repeat(4, 1fr); } }
.offer-steps__item { background: var(--offer-white); border-radius: var(--radius-md); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.offer-steps__num { font-family: var(--font-offer-head); font-weight: 700; font-size: 1.6rem; color: var(--offer-lime-deep); -webkit-text-stroke: 1px var(--offer-forest); display: block; margin-bottom: 0.5rem; }
.offer-steps__item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.offer-steps__item p { font-size: 0.92rem; color: var(--offer-muted); }

/* Cards grid (pain / audience) */
.offer-grid-2 { display: grid; gap: var(--space-3); }
@media (min-width: 768px) { .offer-grid-2 { grid-template-columns: repeat(2, 1fr); } }
.offer-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md); padding: 1.5rem;
}
.offer-section--cream .offer-card, .offer-section--white .offer-card {
  background: var(--offer-white); border-color: var(--offer-line); box-shadow: var(--shadow-sm);
}
.offer-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.offer-card p { font-size: 0.96rem; }
.offer-section--dark .offer-card p { color: rgba(255,255,255,0.82); }
.offer-section--cream .offer-card p, .offer-section--white .offer-card p { color: var(--offer-muted); }

/* Mid callout leverage band */
.leverage-band { background: var(--offer-lime); border-radius: var(--radius-lg); padding: var(--space-4); }
.leverage-band .eyebrow { color: var(--offer-forest-deep); }
.leverage-band h2 { color: var(--offer-forest); }
.leverage-band p { max-width: 62ch; margin-bottom: 0.8rem; color: var(--offer-forest-deep); }
.leverage-band p:last-child { margin-bottom: 0; }
.leverage-band__tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--offer-forest); color: var(--offer-lime);
  padding: 0.35rem 0.9rem; border-radius: 999px; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.9rem;
}

/* Deliverables cards with rate tag */
.deliverable-cards { display: grid; gap: 1.1rem; }
@media (min-width: 768px) { .deliverable-cards { grid-template-columns: repeat(3, 1fr); } }
.deliverable-card {
  background: var(--offer-white); border-radius: var(--radius-md); padding: 1.5rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.6rem;
}
.deliverable-card h3 { font-size: 1.1rem; }
.deliverable-card p { color: var(--offer-muted); font-size: 0.95rem; flex-grow: 1; }
.deliverable-card__rate {
  align-self: flex-start; background: var(--offer-cream); color: var(--offer-forest);
  font-weight: 700; padding: 0.4rem 0.8rem; border-radius: 999px; font-size: 0.88rem;
}

/* What clients pay aside box */
.rate-aside {
  border: 2px solid var(--offer-forest); border-radius: var(--radius-md);
  padding: var(--space-4); background: var(--offer-white);
  margin-top: var(--space-4);
}
.rate-aside__label {
  display: inline-block; background: var(--offer-forest); color: var(--offer-lime);
  padding: 0.35rem 0.9rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; margin-bottom: 1rem;
}
.rate-aside table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.rate-aside__wrap { overflow-x: auto; }
.rate-aside th, .rate-aside td { text-align: left; padding: 0.6rem 0.5rem; border-bottom: 1px solid var(--offer-line); white-space: nowrap; }
.rate-aside th:last-child, .rate-aside td:last-child { text-align: right; }
.rate-aside p { margin-top: 1rem; font-size: 0.92rem; color: var(--offer-muted); }
.rate-aside p a { color: var(--offer-forest); font-weight: 700; }

/* Ambient loop / gif section */
.loop-panel { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-md); }
.loop-panel video { width: 100%; height: 100%; object-fit: cover; }

/* Pricing spotlight */
.pricing-spotlight {
  background: var(--offer-forest); color: var(--offer-white);
  border-radius: var(--radius-lg); padding: var(--space-4);
  display: grid; gap: var(--space-3); position: relative;
  border: 2px solid var(--offer-lime);
}
@media (min-width: 768px) { .pricing-spotlight { grid-template-columns: 1.2fr 1fr; align-items: center; } }
.pricing-spotlight__badge {
  position: absolute; top: -0.9rem; left: var(--space-4);
  background: var(--offer-lime); color: var(--offer-forest);
  font-weight: 700; font-size: 0.8rem; padding: 0.35rem 0.9rem; border-radius: 999px;
}
.pricing-spotlight h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.pricing-spotlight__hours { color: var(--offer-lime); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.8rem; display: block; }
.pricing-spotlight ul { display: grid; gap: 0.55rem; margin-bottom: 0; }
.pricing-spotlight li { padding-left: 1.6rem; position: relative; font-size: 0.96rem; }
.pricing-spotlight li::before { content: "✓"; position: absolute; left: 0; color: var(--offer-lime); font-weight: 700; }
.pricing-spotlight__price-box {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md); padding: var(--space-3); text-align: center;
}
.pricing-spotlight__price { font-family: var(--font-offer-head); font-size: 2.4rem; font-weight: 700; color: var(--offer-lime); display: block; }
.pricing-spotlight__price-note { font-size: 0.82rem; opacity: 0.75; margin-bottom: 1rem; }
.pricing-spotlight .btn { margin-top: 0.9rem; }

/* Add-ons */
.addon-cards { display: grid; gap: 1rem; }
@media (min-width: 768px) { .addon-cards { grid-template-columns: repeat(3, 1fr); } }
.addon-card {
  background: var(--offer-white); border-radius: var(--radius-md); padding: 1.4rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.6rem;
}
.addon-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; }
.addon-card h3 { font-size: 1.02rem; }
.addon-card__price { font-weight: 700; color: var(--offer-forest); white-space: nowrap; }
.addon-card p { font-size: 0.92rem; color: var(--offer-muted); }
.addon-card__tag { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--offer-muted); }

/* Perks stack */
.perks-stack { display: grid; gap: 0.8rem; }
@media (min-width: 768px) { .perks-stack { grid-template-columns: repeat(2, 1fr); } }
.perks-stack__item {
  display: flex; gap: 0.9rem; align-items: flex-start; background: var(--offer-white);
  border-radius: var(--radius-sm); padding: 1rem 1.15rem; box-shadow: var(--shadow-sm);
}
.perks-stack__icon {
  flex-shrink: 0; width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--offer-lime); color: var(--offer-forest); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.perks-stack__item p { font-weight: 600; font-size: 0.96rem; }

/* Limits block */
.limits-block { display: grid; gap: 1rem; }
@media (min-width: 768px) { .limits-block { grid-template-columns: repeat(2, 1fr); } }
.limits-block__item { border-left: 3px solid var(--offer-forest); padding-left: 1rem; }
.limits-block__item h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.limits-block__item p { font-size: 0.94rem; color: var(--offer-muted); }

/* FAQ */
.faq-list { display: grid; gap: 0.75rem; }
.faq-item { background: var(--offer-white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item__q {
  width: 100%; text-align: left; background: none; border: 0; padding: 1.1rem 1.2rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-weight: 700; font-size: 0.98rem; color: var(--offer-ink);
}
.faq-item__icon { flex-shrink: 0; font-size: 1.3rem; color: var(--offer-forest); transition: transform 0.2s ease; }
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { padding: 0 1.2rem 1.1rem; color: var(--offer-muted); font-size: 0.94rem; }
.faq-item__q::-webkit-details-marker { display: none; }

/* Lead form */
.lead-form-section { background: var(--offer-forest); color: var(--offer-white); }
.lead-form {
  background: var(--offer-white); color: var(--offer-ink);
  border-radius: var(--radius-lg); padding: var(--space-4);
  display: grid; gap: 1rem; max-width: 640px;
}
.lead-form__row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .lead-form__row--2 { grid-template-columns: repeat(2, 1fr); } }
.lead-form label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.4rem; }
.lead-form input, .lead-form textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--offer-line); font-size: 1rem; background: var(--offer-cream);
}
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--offer-forest); background: var(--offer-white); }
.lead-form textarea { min-height: 110px; resize: vertical; }
.lead-form__consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--offer-muted); }
.lead-form__consent input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 0.15rem; }
.lead-form__error { color: #b3261e; font-size: 0.85rem; min-height: 1.1rem; }
.lead-form__success {
  display: none; background: #eaf6ec; border: 1.5px solid #2f7a3d; color: #1e5228;
  border-radius: var(--radius-sm); padding: 1rem 1.1rem; font-weight: 600;
}
.lead-form__success--visible { display: block; }
.lead-form--submitted .lead-form__fields { display: none; }
.lead-form__note { font-size: 0.82rem; color: var(--offer-muted); }

/* Sticky CTA bar (accent-borrowed rail treatment) */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--offer-forest); color: var(--offer-white);
  padding: 0.75rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.sticky-cta p { font-size: 0.86rem; font-weight: 600; display: none; }
.sticky-cta .btn { flex-shrink: 0; }
@media (min-width: 640px) { .sticky-cta p { display: block; } }
.sticky-cta-space { padding-bottom: 5.5rem; }

/* ==========================================================================
   LEGAL PAGES (offer family, simple article)
   ========================================================================== */
.legal-hero { padding: var(--space-5) 0 var(--space-3); }
.legal-hero h1 { font-size: clamp(1.8rem, 4.6vw, 2.6rem); margin-bottom: 0.6rem; }
.legal-hero p { color: var(--offer-muted); }
.legal-body { padding-bottom: var(--space-6); max-width: 72ch; }
.legal-body h2 { font-size: 1.3rem; margin: var(--space-4) 0 0.6rem; }
.legal-body p { margin-bottom: var(--space-2); }
.legal-body ul { margin: 0.4rem 0 var(--space-2); display: grid; gap: 0.4rem; }
.legal-body li { padding-left: 1.2rem; position: relative; }
.legal-body li::before { content: "•"; position: absolute; left: 0; color: var(--offer-forest); }
.legal-body a { color: var(--offer-forest); font-weight: 600; }

/* Contact page specifics */
.contact-grid { display: grid; gap: var(--space-4); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact-info { display: grid; gap: 1rem; }
.contact-info__card {
  background: var(--offer-white); border-radius: var(--radius-md); padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.contact-info__card h2 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-info__card p { color: var(--offer-muted); font-size: 0.95rem; }
.contact-info__card address { font-style: normal; color: var(--offer-ink); line-height: 1.6; }

/* ==========================================================================
   SHARED — disclaimer + footer + cookie banner
   ========================================================================== */
.site-disclaimer {
  display: block; max-width: var(--container-w); margin: 0 auto;
  padding: var(--space-4) 1.1rem; font-size: 0.9rem; line-height: 1.6;
  color: var(--pub-muted);
}
.page--offer .site-disclaimer { color: var(--offer-muted); }
.site-disclaimer strong { color: inherit; }
.site-disclaimer a { color: var(--pub-accent-dark); font-weight: 700; }
.page--offer .site-disclaimer a { color: var(--offer-forest); }
@media (min-width: 768px) { .site-disclaimer { padding: var(--space-5) 2rem; } }

.site-footer {
  background: #171512; color: #cfc8b8; padding: var(--space-5) 1.1rem var(--space-4);
}
.page--offer .site-footer { background: var(--offer-forest-deep); color: #c9d6cc; }
.site-footer__inner { max-width: var(--container-w); margin: 0 auto; display: grid; gap: var(--space-3); }
.site-footer__company { font-size: 0.9rem; line-height: 1.7; white-space: pre-line; }
.site-footer__company strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 0.3rem; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 0.9rem 1.4rem; padding-top: var(--space-3); border-top: 1px solid rgba(255,255,255,0.14); }
.site-footer__links a { text-decoration: none; font-size: 0.92rem; font-weight: 600; color: inherit; }
.site-footer__links a:hover { text-decoration: underline; }
@media (min-width: 768px) { .site-footer { padding: var(--space-6) 2rem var(--space-5); } }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200;
  background: #171512; color: #f3efe4; border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem; box-shadow: var(--shadow-md);
  display: none; gap: 0.9rem; max-width: 560px; margin-inline: auto;
  flex-direction: column;
}
.cookie-banner--visible { display: flex; }
.cookie-banner p { font-size: 0.88rem; line-height: 1.5; }
.cookie-banner p a { color: #f0cf7e; font-weight: 700; }
.cookie-banner__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie-banner__actions button {
  border-radius: 999px; padding: 0.6rem 1.2rem; font-weight: 700; font-size: 0.88rem; border: 2px solid #f3efe4;
  background: transparent; color: #f3efe4;
}
.cookie-banner__actions button.cookie-banner__accept { background: #f3efe4; color: #171512; }

/* Utility text-link used inline for asterisked rate mentions */
.rate-link { color: inherit; text-decoration: underline; font-weight: 700; }
