
:root {
  /* ----------------- COLOR / NEUTRALS ----------------- */
  /* Warm cream backgrounds, layered light → lighter */
  --cream-50:  #FBF6F1;   /* page background, lightest */
  --cream-100: #F5ECE3;   /* hero / primary background */
  --cream-200: #EFE4DA;   /* feature strip background */
  --cream-300: #E8DACD;   /* dividers, subtle blocks */

  /* Dusty rose family — the primary accent */
  --rose-50:   #F8E6E2;   /* testimonial / soft tint */
  --rose-100:  #F2D6CF;   /* hero side panel */
  --rose-200:  #EBC2BA;   /* hexagon outline, badges */
  --rose-300:  #DDA59C;   /* hover state of buttons */
  --rose-400:  #C8857F;   /* PRIMARY — buttons, links, italic accent */
  --rose-500:  #B26A65;   /* pressed/active state */
  --rose-600:  #8E4F4B;   /* high-contrast rose */

  /* Tan / botanical — used in illustrations + secondary accents */
  --tan-200:   #E1C9B0;
  --tan-300:   #C5A78E;
  --tan-400:   #A8866A;

  /* Ink — warm near-blacks for type */
  --ink-900:   #1F1B19;   /* primary text */
  --ink-700:   #3D3631;   /* secondary text */
  --ink-500:   #7E726B;   /* tertiary / body muted */
  --ink-300:   #B6A99F;   /* placeholder, disabled */
  --ink-100:   #D9CFC5;   /* hairline borders on cream */

  /* Pure */
  --white:     #FFFFFF;
  --black:     #000000;

  /* Semantic */
  --success:   #6B8E5A;   /* desaturated sage — keeps warmth */
  --warning:   #D49B5A;
  --danger:    #B0524E;
  --info:      #7E9AAA;   /* dusty blue */

  /* Semantic surface / text aliases */
  --bg:        var(--cream-50);
  --bg-soft:   var(--cream-100);
  --bg-tint:   var(--rose-50);
  --surface:   var(--white);
  --border:    var(--ink-100);
  --hairline:  rgba(31,27,25,0.08);

  --fg:        var(--ink-900);
  --fg-muted:  var(--ink-500);
  --fg-soft:   var(--ink-700);
  --fg-on-rose: var(--white);

  --accent:    var(--rose-400);
  --accent-hover: var(--rose-300);
  --accent-press: var(--rose-500);

  /* ----------------- TYPOGRAPHY ----------------- */
  --font-script:  "Allura", "Yellowtail", "Pinyon Script", cursive;          /* logos, beauty accent words */
  --font-serif:   "Cormorant Garamond", "Playfair Display", Georgia, serif;  /* editorial headings */
  --font-sans:    "Montserrat", "Helvetica Neue", system-ui, sans-serif;     /* UI, body, buttons */

  /* Type scale (modular ~1.25) */
  --fs-xs:    12px;
  --fs-sm:    14px;
  --fs-base:  16px;
  --fs-md:    18px;
  --fs-lg:    22px;
  --fs-xl:    28px;
  --fs-2xl:   36px;
  --fs-3xl:   48px;
  --fs-4xl:   64px;
  --fs-5xl:   88px;

  /* Line heights */
  --lh-tight:  1.08;
  --lh-snug:   1.25;
  --lh-normal: 1.55;
  --lh-loose:  1.75;

  /* Tracking */
  --tr-tight:   -0.01em;
  --tr-normal:   0;
  --tr-wide:     0.08em;
  --tr-wider:    0.16em;     /* uppercase labels */
  --tr-widest:   0.24em;     /* hero eyebrow caps */

  /* ----------------- SPACING ----------------- */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* ----------------- RADII ----------------- */
  --r-none:  0;
  --r-xs:    2px;
  --r-sm:    4px;
  --r-md:    8px;
  --r-lg:    16px;
  --r-xl:    24px;
  --r-pill:  999px;

  /* ----------------- SHADOWS ----------------- */
  /* Warm, low-key — never harsh. Tints toward warm-brown, not pure black. */
  --shadow-xs: 0 1px 2px rgba(45, 30, 22, 0.06);
  --shadow-sm: 0 2px 8px rgba(45, 30, 22, 0.06);
  --shadow-md: 0 8px 24px rgba(45, 30, 22, 0.08);
  --shadow-lg: 0 18px 48px rgba(45, 30, 22, 0.10);
  --shadow-rose: 0 12px 28px rgba(200, 133, 127, 0.28);   /* rose-button glow */

  /* ----------------- MOTION ----------------- */
  --ease-out:   cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:   140ms;
  --dur-base:   220ms;
  --dur-slow:   420ms;

  /* ----------------- LAYOUT ----------------- */
  --container:  1200px;
  --gutter:     24px;
}

/* =========================================================
   SEMANTIC ELEMENT STYLES
   Apply these via class names OR plain selectors below.
   ========================================================= */

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* --- Display + script word (e.g. "Beauty") --- */
.script,
.t-script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--accent);
  font-size: var(--fs-4xl);
  line-height: 1;
  letter-spacing: 0;
}

/* --- H1: bold caps hero (e.g. "SILNA MAMA") --- */
h1, .h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: var(--fs-4xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-tight);
  text-transform: uppercase;
  color: var(--fg);
  margin: 0;
}

/* --- H2: editorial serif (e.g. "Pomagam kobietom…") --- */
h2, .h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--tr-normal);
  color: var(--fg);
  margin: 0;
}

h2 em, .h2 em, .accent-italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

/* --- H3: smaller serif --- */
h3, .h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  color: var(--fg);
  margin: 0;
}

/* --- Eyebrow / section label: tracked uppercase --- */
.eyebrow,
.label-caps {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--fg);
}

/* --- Body --- */
p, .body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  color: var(--fg-muted);
  margin: 0;
  text-wrap: pretty;
}

.body-lead {
  font-size: var(--fs-md);
  color: var(--fg-soft);
}

small, .small {
  font-size: var(--fs-sm);
  color: var(--fg-muted);
}

/* --- Links --- */
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}
a:hover { color: var(--accent-press); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-xs);
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r-xs);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  user-select: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--fg-on-rose);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-rose);
}
.btn-primary:active {
  background: var(--accent-press);
  transform: translateY(1px);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--ink-100);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-link {
  background: transparent;
  color: var(--accent);
  padding: 0;
  letter-spacing: var(--tr-wider);
}

/* --- Inputs --- */
.input {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xs);
  color: var(--fg);
  transition: border-color var(--dur-base) var(--ease-out);
}
.input::placeholder { color: var(--ink-300); }
.input:focus {
  outline: none;
  border-color: var(--accent);
}
</style>
<style>/* =========================================================
   Strona Eliza Prendecka — Trenerka Personalna Kobiet
   Forks marketing_site/styles.css with extensions for the
   specific sections + 3 hero variants.
   ========================================================= */

* { box-sizing: border-box; }

html, body { margin: 0; }
main { width: 100%; overflow-x: hidden; }

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

/* ---------------- HEADER ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) 0;
  gap: var(--sp-8);
}
.brand {
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--accent);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  gap: var(--sp-8);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--ink-900);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  cursor: pointer;
  transition: color var(--dur-base) var(--ease-out);
  background: none;
  border: none;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--accent);
  transition: right var(--dur-base) var(--ease-out);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { right: 0; }
.nav-link.is-active { color: var(--accent); }
.nav-link.is-active::after { right: 0; }

/* ---------------- COMMON SECTION ---------------- */
.section {
  position: relative;
  padding: var(--sp-24) 0;
}
.section--cream-50 { background: var(--cream-50); }
.section--cream-100 { background: var(--cream-100); }
.section--cream-200 { background: var(--cream-200); }
.section--rose-50  { background: var(--rose-50); }

.section__head {
  text-align: center;
  margin-bottom: var(--sp-16);
}
.section__head--left { text-align: left; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--sp-3);
}
.eyebrow--ink { color: var(--ink-900); }
.eyebrow::before,
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin: 0 var(--sp-3) 3px;
}
.eyebrow--no-rule::before, .eyebrow--no-rule::after { display: none; }

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.2;
  color: var(--ink-900);
  margin: 0 auto var(--sp-5);
  max-width: 720px;
  text-wrap: balance;
}
.section__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.section__lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-500);
  max-width: 620px;
  margin: 0 auto;
}

/* ---------------- HERO  (5 variants share base) ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream-100);
}

/* ===== Shared centered hero (V1, V2, V3) ===== */
.hero--centered { background: var(--cream-100); }
.hero-c__inner {
  position: relative;
  z-index: 2;
  padding: var(--sp-24) var(--sp-4) var(--sp-24);
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-c__script {
  font-family: var(--font-script);
  font-size: 92px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--sp-3);
  display: block;
}
.hero-c__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(44px, 5.8vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin: 0 0 var(--sp-8);
  text-wrap: balance;
}
.hero-c__title--serif {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 5.6vw, 80px);
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.hero-c__title--serif em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.hero-c__title-script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.25em;
  text-transform: none;
  color: var(--accent);
  letter-spacing: 0;
  padding: 0 8px;
  line-height: 0.9;
  vertical-align: -0.05em;
}
.hero-c__lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-700);
  max-width: 600px;
  margin: 0 auto var(--sp-10);
}
.hero-c__ctas {
  display: inline-flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Side sprigs flanking centered hero V1 */
.hero-c__sprig {
  position: absolute;
  top: 50%;
  width: 220px;
  pointer-events: none;
  opacity: 0.75;
  transform: translateY(-50%);
  z-index: 1;
}
.hero-c__sprig--l {
  left: 2%;
  transform: translateY(-50%) rotate(-12deg);
}
.hero-c__sprig--r {
  right: 2%;
  transform: translateY(-50%) scaleX(-1) rotate(-8deg);
}

/* V2 horizontal rule with eyebrow */
.hero-c__rule {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
  width: 100%;
  max-width: 640px;
}
.hero-c__rule-line {
  flex: 1;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.hero-c__rule-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tr-widest);
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.hero-c__leaf-bottom {
  width: 140px;
  margin-top: var(--sp-12);
  opacity: 0.7;
}

/* V3 portrait at top */
.hero-c__portrait {
  position: relative;
  margin-bottom: var(--sp-8);
  width: 210px;
}
.hero-c__portrait-arch {
  position: relative;
  width: 210px;
  aspect-ratio: 0.78 / 1;
  background: var(--rose-100);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}
.hero-c__portrait-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.hero-c__portrait-sprig {
  position: absolute;
  top: 30%;
  width: 130px;
  pointer-events: none;
  opacity: 0.75;
}
.hero-c__portrait-sprig--l {
  left: -130px;
  transform: rotate(-12deg);
}
.hero-c__portrait-sprig--r {
  right: -130px;
  transform: rotate(12deg) scaleX(-1);
}
.hero--v3c .eyebrow {
  margin-bottom: var(--sp-3);
}

/* ===== Variant 1 — Botaniczny cluster ===== */
.hero--v1 .hero__rose-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: var(--rose-100);
  z-index: 0;
}
.hero--v1 .hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 100px 1fr 1.05fr;
  gap: var(--sp-8);
  align-items: center;
  padding: var(--sp-20) 0 var(--sp-24);
}
.hero--v1 .hero__decor {
  position: relative;
  align-self: stretch;
  overflow: visible;
  min-height: 480px;
}
.hero--v1 .hero__fern {
  position: absolute;
  left: -90px;
  top: 40px;
  height: 600px;
  width: auto;
  pointer-events: none;
  opacity: 0.95;
}
.hero--v1 .hero__copy { padding-right: var(--sp-8); position: relative; z-index: 2; }
.hero--v1 .hero__cluster {
  position: relative;
  height: 540px;
  z-index: 2;
}
.hero__script {
  font-family: var(--font-script);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: var(--sp-2);
  display: block;
}
.hero__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin: 0 0 var(--sp-6);
  text-wrap: balance;
}
.hero__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 460px;
  margin: 0 0 var(--sp-8);
}
.hero__ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  align-items: center;
}
.hero__cta-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--ink-900);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-100);
  padding-bottom: 4px;
  transition: color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.hero__cta-link:hover { color: var(--accent); border-color: var(--accent); }

.leaf-frame {
  position: absolute;
  display: block;
  overflow: visible;
}
.hero--v1 .leaf-frame--lg { width: 280px; height: 360px; left: 30px; top: 60px; transform: rotate(-10deg); }
.hero--v1 .leaf-frame--md { width: 200px; height: 260px; left: 310px; top: 30px; }
.hero--v1 .leaf-frame--sm { width: 220px; height: 200px; left: 320px; top: 300px; transform: rotate(8deg); }
.leaf-frame__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* ===== Variant 2 — Editorial split (asymmetric) ===== */
.hero--v2 { background: var(--cream-50); }
.hero--v2 .hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  padding: var(--sp-24) 0;
}
.hero--v2 .hero__copy { position: relative; z-index: 2; }
.hero--v2 .hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tr-widest);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--sp-5);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}
.hero--v2 .hero__eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero--v2 .hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink-900);
  margin-bottom: var(--sp-6);
}
.hero--v2 .hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.hero--v2 .hero__photo-stack {
  position: relative;
  height: 620px;
}
.hero--v2 .hero__photo-arch {
  position: absolute;
  inset: 0 60px 0 0;
  background: var(--rose-100);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  overflow: hidden;
}
.hero--v2 .hero__photo-arch__inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.hero--v2 .hero__photo-rose-square {
  position: absolute;
  right: 0;
  bottom: 80px;
  width: 180px;
  height: 230px;
  background: var(--accent);
  z-index: 2;
}
.hero--v2 .hero__photo-rose-square__inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.85;
}
.hero--v2 .hero__sprig {
  position: absolute;
  left: -40px;
  bottom: -10px;
  width: 150px;
  z-index: 3;
  pointer-events: none;
}
.hero--v2 .hero__signature {
  position: absolute;
  right: -10px;
  top: 30px;
  font-family: var(--font-script);
  font-size: 56px;
  color: var(--accent);
  transform: rotate(-6deg);
  z-index: 3;
  line-height: 1;
}

/* ===== Variant 3 — Pełnoekranowy (full-bleed scrim) ===== */
.hero--v3 {
  background: var(--cream-100);
  min-height: 720px;
}
.hero--v3 .hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero--v3 .hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(245, 236, 227, 0.96) 0%,
    rgba(245, 236, 227, 0.86) 38%,
    rgba(245, 236, 227, 0.45) 60%,
    rgba(245, 236, 227, 0.0) 100%);
}
/* When photo IS the bg, push the scrim further right to keep face visible */
.hero--v5-bg .hero__bg::after {
  background: linear-gradient(98deg,
    rgba(245, 236, 227, 0.97) 0%,
    rgba(245, 236, 227, 0.92) 30%,
    rgba(245, 236, 227, 0.72) 48%,
    rgba(245, 236, 227, 0.30) 65%,
    rgba(245, 236, 227, 0.0) 78%);
}
.hero--v3 .hero__inner {
  position: relative;
  z-index: 2;
  padding: var(--sp-24) 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--sp-10);
  align-items: center;
  min-height: 720px;
}
.hero--v3 .hero__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--sp-6);
  align-self: stretch;
  padding-top: 60px;
}
.hero--v3 .hero__rail-line {
  width: 1px;
  background: var(--accent);
  opacity: 0.5;
}
.hero--v3 .hero__rail-line:first-child {
  flex: 0 0 40px;
}
.hero--v3 .hero__rail-line:last-child {
  flex: 1;
}
.hero--v3 .hero__rail-script {
  font-family: var(--font-script);
  font-size: 64px;
  color: var(--accent);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  line-height: 1;
}
.hero--v3 .hero__copy { max-width: 700px; }
.hero--v3 .hero__title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--ink-900);
  margin: 0 0 var(--sp-6);
}
.hero--v3 .hero__title-serif {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  font-size: 0.55em;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}
.hero--v3 .hero__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 540px;
  margin-bottom: var(--sp-8);
}
.hero--v3 .hero__leaf {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 280px;
  opacity: 0.65;
  z-index: 1;
  pointer-events: none;
}
/* Hide the corner leaf when an arch/card photo is on the right */
.hero--v5-arch .hero__leaf,
.hero--v5-card .hero__leaf {
  display: none;
}

/* ===== V5 photo placements ===== */

/* Layout: arch — owalny portret z prawej, tekst po lewej */
.hero--v5-arch .hero__inner {
  grid-template-columns: 60px 1fr auto;
  align-items: center;
}
.hero-v5__arch {
  position: relative;
  width: 360px;
  height: 540px;
  z-index: 2;
}
.hero-v5__arch-shape {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--rose-100);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-v5__arch-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.hero-v5__arch-sprig {
  position: absolute;
  left: -110px;
  bottom: -30px;
  width: 240px;
  opacity: 1;
  pointer-events: none;
  transform: rotate(-18deg);
  z-index: 3;
  filter: drop-shadow(0 6px 18px rgba(45, 30, 22, 0.12));
}

/* Layout: card — mniejsza wstawka z ramką offsetowaną */
.hero--v5-card .hero__inner {
  grid-template-columns: 60px 1fr auto;
  align-items: center;
}
.hero-v5__card {
  position: relative;
  width: 280px;
  height: 360px;
  z-index: 2;
}
.hero-v5__card-frame {
  position: absolute;
  inset: -20px -20px 20px 20px;
  border: 1.5px solid var(--accent);
  z-index: 1;
}
.hero-v5__card-photo {
  position: absolute;
  inset: 0;
  background: var(--rose-100);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hero-v5__card-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-v5__card-signature {
  position: absolute;
  right: -10px;
  top: -36px;
  font-family: var(--font-script);
  font-size: 52px;
  color: var(--accent);
  transform: rotate(-6deg);
  z-index: 3;
  line-height: 1;
}

/* ---------------- HERO VARIANT SWITCHER (Tweaks UI) ---------------- */
/* The variant switch is also exposed as 3 dots top-right inside the hero so the
   user understands at a glance there are 3 versions. */
.hero__variant-dots {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-8);
  display: flex;
  gap: var(--sp-2);
  z-index: 10;
}
.hero__variant-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid var(--accent);
  padding: 0;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out);
}
.hero__variant-dot.is-active { background: var(--accent); }
.hero__variant-dot:hover { background: var(--rose-200); }

/* ---------------- STATS BAND ---------------- */
.stats {
  background: var(--cream-200);
  padding: var(--sp-12) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
.stat {
  text-align: center;
  padding: 0 var(--sp-6);
  border-right: 1px solid var(--ink-100);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  margin: 0 0 var(--sp-2);
  letter-spacing: -0.02em;
}
.stat__num sup { font-size: 0.4em; vertical-align: super; font-weight: 500; }
.stat__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--ink-700);
  margin: 0;
}

/* ---------------- DLA KOGO (audience cards) ---------------- */
.audience { background: var(--cream-50); padding: var(--sp-24) 0; position: relative; }
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.audience-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-8) var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.audience-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  margin: 0;
  letter-spacing: 0.1em;
}
.audience-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  color: var(--ink-900);
  margin: 0 0 var(--sp-2);
  text-wrap: balance;
}
.audience-card__title em { font-style: italic; color: var(--accent); font-weight: 500; }
.audience-card__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-500);
  margin: 0;
}
.audience-card__list {
  list-style: none;
  margin: var(--sp-3) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.audience-card__list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 13px;
  color: var(--ink-700);
}
.audience-card__leaf {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 90px;
  opacity: 0.35;
  pointer-events: none;
  transform: rotate(15deg);
}

/* ---------------- O MNIE ---------------- */
.about { background: var(--cream-100); padding: var(--sp-24) 0; position: relative; overflow: hidden; }
.about__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: var(--sp-16);
  align-items: center;
}
.about__photo-wrap { position: relative; }
.about__photo {
  position: relative;
  aspect-ratio: 0.78 / 1;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  background: var(--rose-100);
  overflow: hidden;
  z-index: 2;
}
.about__photo-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.about__photo-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid var(--accent);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  z-index: 1;
}
.about__photo-frame--offset {
  top: 32px;
  left: 32px;
  right: -32px;
  bottom: -32px;
  inset: auto;
  width: calc(100% - 0px);
  height: 100%;
  border: 1px solid var(--accent);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  z-index: 1;
  transform: translate(20px, 20px);
}
.about__signature {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-family: var(--font-script);
  font-size: 56px;
  color: var(--accent);
  transform: rotate(-6deg);
  line-height: 1;
  z-index: 3;
}
.about__sprig {
  position: absolute;
  left: -60px;
  bottom: -40px;
  width: 180px;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}
/* Plant lying horizontally — stem tip extends off the left edge of the viewport,
   leaves spread into the page toward the photo. .about has overflow:hidden so
   the bit past the left screen edge gets clipped. */
.about__plant {
  position: absolute;
  left: 50px;
  top: 100px;
  width: 280px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(90deg);
}
/* Per-style coloring. The line-art branch is already dark, so we leave it as-is. */
.about__plant--line { filter: drop-shadow(0 10px 28px rgba(45, 30, 22, 0.14)); }
.about__plant--solid { filter: drop-shadow(0 10px 28px rgba(45, 30, 22, 0.12)); }
.about__plant--blossom { filter: drop-shadow(0 10px 28px rgba(45, 30, 22, 0.14)); }
.about__plant--rose {
  filter: brightness(0.6) saturate(1.4) drop-shadow(0 10px 28px rgba(45, 30, 22, 0.14));
}
.about__copy { padding-right: var(--sp-4); }
.about__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 3.5vw, 44px);
  line-height: 1.18;
  color: var(--ink-900);
  margin: 0 0 var(--sp-6);
  text-wrap: balance;
}
.about__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.about__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-500);
  margin: 0 0 var(--sp-5);
  max-width: 540px;
}
.about__list {
  list-style: none;
  margin: var(--sp-6) 0 var(--sp-8);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3) var(--sp-6);
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
}
.check-circle {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid var(--rose-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.check-circle svg { width: 12px; height: 12px; }

/* ---------------- OFERTA ---------------- */
.offer { background: var(--cream-50); padding: var(--sp-24) 0; position: relative; }
.offer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--sp-6);
  align-items: stretch;
}
.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  position: relative;
}
.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.offer-card--featured {
  background: var(--ink-900);
  color: var(--cream-100);
}
.offer-card--featured .offer-card__label { color: var(--rose-200); }
.offer-card--featured .offer-card__title { color: var(--cream-50); }
.offer-card--featured .offer-card__desc { color: rgba(245, 236, 227, 0.7); }
.offer-card--featured .offer-card__feature-list li { color: rgba(245, 236, 227, 0.85); }
.offer-card--featured .offer-card__feature-list .check-circle { border-color: var(--rose-300); color: var(--rose-200); }
.offer-card--featured .offer-card__cta { background: var(--accent); color: var(--white); border-color: var(--accent); }
.offer-card--featured .offer-card__cta:hover { background: var(--accent-hover); }

.offer-card__photo {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
}
.offer-card__badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}
.offer-card__body {
  padding: var(--sp-8) var(--sp-8) var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  flex: 1;
}
.offer-card__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.offer-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.18;
  color: var(--ink-900);
  margin: 0;
  text-wrap: balance;
}
.offer-card__title em { font-style: italic; color: var(--accent); font-weight: 500; }
.offer-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-500);
  margin: 0;
}
.offer-card__feature-list {
  list-style: none;
  margin: var(--sp-2) 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.offer-card__feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.5;
}
.offer-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  background: transparent;
  border: 1px solid var(--ink-100);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--r-xs);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  text-decoration: none;
}
.offer-card__cta:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ---------------- LEAD MAGNET ---------------- */
.magnet {
  background: var(--rose-50);
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}
.magnet__sprig-l {
  position: absolute;
  left: -30px;
  top: -20px;
  width: 200px;
  opacity: 0.7;
  pointer-events: none;
  transform: rotate(-25deg);
}
.magnet__sprig-r {
  position: absolute;
  right: -30px;
  bottom: -20px;
  width: 220px;
  opacity: 0.6;
  pointer-events: none;
  transform: rotate(180deg);
}
.magnet__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 2;
}
.magnet__visual {
  position: relative;
  aspect-ratio: 0.78 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.magnet__pdf {
  width: 75%;
  aspect-ratio: 0.72 / 1;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transform: rotate(-4deg);
  display: flex;
  flex-direction: column;
}
.magnet__pdf-band {
  background: var(--accent);
  height: 90px;
  padding: var(--sp-5) var(--sp-6);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.magnet__pdf-band__eyebrow {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0 0 4px;
}
.magnet__pdf-band__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}
.magnet__pdf-body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.magnet__pdf-line {
  height: 4px;
  background: var(--cream-200);
  border-radius: 2px;
}
.magnet__pdf-line--short { width: 60%; }
.magnet__pdf-line--accent { background: var(--rose-200); width: 40%; }
.magnet__pdf-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1.5px solid var(--rose-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 4px;
}
.magnet__pdf-icon svg { width: 18px; height: 18px; }

.magnet__pdf-2 {
  position: absolute;
  width: 65%;
  aspect-ratio: 0.72 / 1;
  background: var(--cream-100);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  transform: rotate(6deg);
  z-index: -1;
  right: 5%;
  top: 18%;
}

.magnet__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 3.5vw, 44px);
  line-height: 1.18;
  color: var(--ink-900);
  margin: 0 0 var(--sp-5);
  text-wrap: balance;
}
.magnet__title em { font-style: italic; color: var(--accent); font-weight: 500; }
.magnet__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-500);
  margin: 0 0 var(--sp-6);
  max-width: 520px;
}
.magnet__list {
  list-style: none;
  margin: 0 0 var(--sp-8);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 480px;
}
.magnet__list li {
  display: flex;
  gap: var(--sp-3);
  font-size: 14px;
  color: var(--ink-700);
}
.magnet__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--r-xs);
  padding: 6px;
  box-shadow: var(--shadow-xs);
}
.magnet__form .input {
  border: none;
  background: transparent;
  padding: 12px 16px;
}
.magnet__form .input:focus { outline: none; box-shadow: none; }
.magnet__form .btn {
  padding: 12px 22px;
}
.magnet__legal {
  font-size: 11px;
  color: var(--ink-500);
  margin-top: var(--sp-3);
  letter-spacing: 0.02em;
}

/* ---------------- OPINIE / TESTIMONIALS ---------------- */
.testimonials {
  background: var(--cream-100);
  padding: var(--sp-24) 0;
  position: relative;
}
.testimonials__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-12) var(--sp-12);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testimonial-card__mark {
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 0.6;
  color: var(--rose-200);
  position: absolute;
  top: var(--sp-8);
  left: var(--sp-8);
  user-select: none;
}
.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink-700);
  font-style: italic;
  margin: 0 0 var(--sp-8);
  padding-top: var(--sp-10);
  text-wrap: pretty;
  position: relative;
}
.testimonial-card__text strong { color: var(--accent); font-weight: 500; }
.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--ink-100);
}
.testimonial-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  background-color: var(--rose-100);
}
.testimonial-card__name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: var(--tr-wide);
  text-transform: uppercase;
  color: var(--ink-900);
  margin: 0;
}
.testimonial-card__role {
  font-size: 13px;
  color: var(--ink-500);
  margin: 4px 0 0;
}

.testimonials__side {
  padding-left: var(--sp-4);
}
.testimonials__nav {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}
.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rose-200);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.testimonials__dot.is-active { background: var(--accent); width: 28px; border-radius: 4px; }

/* ---------------- KONTAKT ---------------- */
.contact {
  background: var(--cream-50);
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}
.contact__leaf {
  position: absolute;
  right: -40px;
  top: 60px;
  width: 220px;
  opacity: 0.55;
  pointer-events: none;
}
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-16);
}
.contact__copy { padding-right: var(--sp-6); }
.contact__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 3.5vw, 44px);
  line-height: 1.18;
  color: var(--ink-900);
  margin: 0 0 var(--sp-5);
  text-wrap: balance;
}
.contact__title em { font-style: italic; color: var(--accent); font-weight: 500; }
.contact__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-500);
  margin: 0 0 var(--sp-8);
  max-width: 460px;
}
.contact__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.contact__detail {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.contact__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  border: 1px solid var(--rose-200);
}
.contact__detail-icon svg { width: 16px; height: 16px; }
.contact__detail-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 2px;
}
.contact__detail-value {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--ink-900);
  margin: 0;
  font-weight: 500;
  text-decoration: none;
}
.contact__detail-value:hover { color: var(--accent); }

.contact__form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-10);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.field__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--ink-700);
}
.field__input {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-100);
  color: var(--ink-900);
  transition: border-color var(--dur-base) var(--ease-out);
  border-radius: 0;
}
.field__input:focus {
  outline: none;
  border-color: var(--accent);
}
.field__input::placeholder { color: var(--ink-300); }
textarea.field__input { min-height: 100px; resize: vertical; }
.field__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.chip {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--ink-100);
  color: var(--ink-700);
  background: transparent;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.is-active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.contact__form .btn { align-self: flex-start; padding: 16px 32px; }
.contact__form-legal {
  font-size: 11px;
  color: var(--ink-500);
  line-height: 1.55;
}
.contact__form-legal a { color: var(--accent); }

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: var(--ink-900);
  color: rgba(245, 236, 227, 0.7);
  padding: var(--sp-20) 0 var(--sp-8);
  position: relative;
  overflow: hidden;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}
.site-footer__brand {
  font-family: var(--font-script);
  font-size: 44px;
  color: var(--rose-200);
  line-height: 1;
  margin-bottom: var(--sp-4);
}
.site-footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 236, 227, 0.6);
  max-width: 320px;
  margin-bottom: var(--sp-6);
}
.site-footer .footer-col__title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  color: var(--cream-50);
  margin: 0 0 var(--sp-5);
}
.site-footer .footer-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.site-footer .footer-col__list a,
.site-footer .footer-col__list span {
  font-size: 14px;
  color: rgba(245, 236, 227, 0.65);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}
.site-footer .footer-col__list a:hover { color: var(--rose-200); }

.footer-socials {
  display: flex;
  gap: var(--sp-2);
}
.social-chip {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(245, 236, 227, 0.08);
  color: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-base) var(--ease-out);
  text-decoration: none;
}
.social-chip:hover { background: var(--accent); color: var(--white); }
.social-chip svg { width: 16px; height: 16px; }

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(245, 236, 227, 0.12);
  font-size: 12px;
  color: rgba(245, 236, 227, 0.45);
}
.site-footer__legal a {
  color: rgba(245, 236, 227, 0.55);
  text-decoration: none;
  margin-left: var(--sp-6);
}
.site-footer__legal a:hover { color: var(--rose-200); }

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: var(--tr-wider);
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--r-xs);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  user-select: none;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-rose);
}
.btn-primary:active { background: var(--accent-press); transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-100);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark {
  background: var(--ink-900);
  color: var(--cream-100);
}
.btn-dark:hover { background: var(--ink-700); }
.btn--lg { padding: 18px 36px; font-size: 12px; }

/* ---------------- TWEAKS PANEL ACCENT SWATCH GRID ---------------- */
.accent-swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

/* ---------------- RESPONSIVE  (basic; desktop-first) ---------------- */
@media (max-width: 980px) {
  .hero--v1 .hero__inner { grid-template-columns: 1fr; }
  .hero--v1 .hero__rose-panel { width: 100%; height: 50%; top: auto; bottom: 0; }
  .hero--v1 .hero__decor { display: none; }
  .hero--v2 .hero__inner { grid-template-columns: 1fr; }
  .hero--v3 .hero__inner { grid-template-columns: 1fr; }
  .hero--v3 .hero__rail { display: none; }
  .audience__grid, .offer__grid, .stats__grid { grid-template-columns: 1fr; }
  .about__inner, .magnet__inner, .testimonials__inner, .contact__inner { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
</style>
