/* ============================================================
   Pogaduszka — redesign
   Palette derived from the original brand:
     rose  #FFB6BF  (logo)
     cream #F0E7E0
     sky   #6EC1E4
     ink   #3A3A3A
   ============================================================ */

:root {
  /* brand */
  --rose:        #FFB6BF;
  --rose-soft:   #FFE3E7;
  --rose-tint:   #FFF3F5;
  --rose-deep:   #C4677A;   /* accessible on light backgrounds */

  --sky:         #6EC1E4;
  --sky-soft:    #DBF0F9;
  --sky-deep:    #2A7893;

  --cream:       #F0E7E0;
  --cream-soft:  #F8F2ED;
  --sand:        #FBF7F4;

  /* neutrals */
  --ink:         #2E2A2A;
  --ink-2:       #3A3A3A;
  --muted:       #6F6864;
  --line:        #E7DCD4;
  --white:       #FFFFFF;

  /* type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* layout */
  --shell:   1180px;
  --radius:  22px;
  --radius-sm: 14px;
  --header-h: 82px;

  /* elevation */
  --shadow-sm: 0 2px 10px rgba(58, 42, 38, .05);
  --shadow:    0 14px 40px -18px rgba(58, 42, 38, .28);
  --shadow-lg: 0 34px 80px -34px rgba(58, 42, 38, .38);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.72;
  color: var(--ink-2);
  background: var(--sand);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--rose-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }

ul, ol { margin: 0; padding: 0; list-style: none; }

button, input { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--sky-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -140%;
  z-index: 200;
  padding: .8rem 1.4rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: translate .18s ease;
}
.skip-link:focus-visible { translate: -50% 0; }

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px var(--rose-tint);
}

.btn {
  --btn-bg: var(--rose);
  --btn-fg: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { box-shadow: 0 10px 24px -12px rgba(196, 103, 122, .8); }
.btn--primary:hover { background: #FFA6B1; box-shadow: 0 16px 30px -14px rgba(196, 103, 122, .9); }

.btn--ghost {
  --btn-bg: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--white); border-color: var(--rose); }

.btn--lg { padding: .95rem 1.8rem; font-size: 1rem; }
.btn--sm { padding: .55rem 1.15rem; font-size: .88rem; }
.btn--block { display: flex; width: 100%; }

.tag {
  display: inline-block;
  padding: .12rem .6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: middle;
}
.tag--soft { background: var(--sky-soft); color: var(--sky-deep); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
/* The blur lives on a pseudo-element: `backdrop-filter` on the header itself
   would make it the containing block for the fixed mobile drawer. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: color-mix(in srgb, var(--sand) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-stuck::before {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: color-mix(in srgb, var(--sand) 94%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: inherit;
}
.brand__mark { width: 52px; height: 52px; transition: transform .3s ease; }
.brand:hover .brand__mark { transform: rotate(-6deg) scale(1.06); }
.brand__text { display: grid; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}
.brand__sub {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
}

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav__list { display: flex; align-items: center; gap: 1.5rem; }

.nav__link {
  position: relative;
  padding: .35rem 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  transition: color .18s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__link:hover { color: var(--rose-deep); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--rose-deep); }

.burger {
  display: none;
  position: relative;
  z-index: 96; /* stays tappable above the open drawer */
  width: 46px; height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(46, 42, 42, .38);
  backdrop-filter: blur(2px);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .65;
  pointer-events: none;
}
.hero__blob--rose {
  width: 42rem; height: 42rem;
  top: -18rem; right: -14rem;
  background: var(--rose-soft);
}
.hero__blob--sky {
  width: 30rem; height: 30rem;
  bottom: -16rem; left: -12rem;
  background: var(--sky-soft);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero__title {
  font-size: clamp(2.3rem, 1.35rem + 3.4vw, 4rem);
  margin-bottom: 1.35rem;
}
.hero__title em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero__lead {
  max-width: 34rem;
  font-size: clamp(1.02rem, .98rem + .3vw, 1.15rem);
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2.75rem;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.hero__trust li { display: grid; gap: .2rem; }
.hero__trust strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}
.hero__trust span {
  font-size: .82rem;
  line-height: 1.45;
  color: var(--muted);
}

.hero__media {
  position: relative;
  margin: 0;
}
/* Direct child only — `img:first-child` would also match the logo nested in
   .hero__heart and mask it with the photo's organic border-radius. */
.hero__media > img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  object-position: 50% 62%;
  border-radius: 46% 54% 42% 58% / 38% 36% 64% 62%;
  box-shadow: var(--shadow-lg);
}
.hero__heart {
  position: absolute;
  left: -1.5rem;
  bottom: 1.5rem;
  display: grid;
  place-items: center;
  width: clamp(84px, 11vw, 130px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
/* The logo's ink fills its whole square canvas, so it must stay inside the
   circle's inscribed square (70.7%) or the heart's upper lobes get sliced.
   Sizing proportionally keeps that true at every breakpoint. */
.hero__heart img {
  width: 62%;
  height: auto;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}

/* ---------- sections ---------- */
.section { padding: clamp(3.75rem, 7vw, 6.5rem) 0; }
.section--cream {
  background: var(--cream-soft);
  border-block: 1px solid var(--line);
}

.section__head {
  max-width: 46rem;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}
.section__title { font-size: clamp(1.9rem, 1.3rem + 2.1vw, 2.9rem); }
.section__lead {
  margin-top: 1rem;
  font-size: 1.06rem;
  color: var(--muted);
}

/* ---------- about ---------- */
.about {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: start;
}

.about__photo {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  margin: 0;
}
.about__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 200px 200px var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.about__intro {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.05rem + .45vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink);
  padding-left: 1.4rem;
  border-left: 3px solid var(--rose);
  margin-bottom: 2.5rem;
}

.about__block + .about__block { margin-top: 2.5rem; }
.about__h {
  font-size: 1.35rem;
  margin-bottom: .9rem;
}

.timeline { display: grid; gap: .1rem; }
.timeline li {
  position: relative;
  padding: .7rem 0 .7rem 2rem;
  border-bottom: 1px dashed var(--line);
}
.timeline li:last-child { border-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: .25rem;
  top: 1.35rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--rose);
}
.timeline li::after {
  content: "";
  position: absolute;
  left: calc(.25rem + 4px);
  top: 1.9rem;
  bottom: -.4rem;
  width: 1px;
  background: var(--line);
}
.timeline li:last-child::after { display: none; }

/* ---------- offer ---------- */
.offer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: 1.75rem;
  align-items: start;
}

.card {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card--offer:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: 1.25rem;
  border-radius: 18px;
}
.card__icon svg { width: 28px; height: 28px; }
.card__icon--rose { background: var(--rose-tint); color: var(--rose-deep); }
.card__icon--sky  { background: var(--sky-soft);  color: var(--sky-deep); }

.card__title { font-size: 1.5rem; margin-bottom: .6rem; }
.card__text { color: var(--muted); font-size: .96rem; margin-bottom: 1.35rem; }

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.pills li {
  padding: .42rem .9rem;
  border-radius: 999px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  font-size: .88rem;
  line-height: 1.35;
  color: var(--ink-2);
  transition: background-color .2s ease, border-color .2s ease;
}
.pills li:hover { background: var(--rose-tint); border-color: var(--rose); }

.card__note {
  margin-top: 1.75rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--sky-soft);
  font-size: .93rem;
  color: var(--ink-2);
}

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--rose);
  margin-bottom: .85rem;
}
.step__title { font-size: 1.22rem; margin-bottom: .5rem; }
.step p { font-size: .94rem; color: var(--muted); }

/* ---------- pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, .85fr);
  gap: 2rem;
  align-items: start;
}

.price-list {
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 3vw, 2.4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.price {
  display: flex;
  align-items: baseline;
  gap: .9rem;
  padding: 1.05rem 0;
  border-bottom: 1px dashed var(--line);
}
.price:last-child { border-bottom: 0; }

.price__label { display: grid; }
.price__name { font-weight: 600; color: var(--ink); line-height: 1.35; }
.price__meta { font-size: .84rem; color: var(--muted); }

.price__dots {
  flex: 1;
  min-width: 1.5rem;
  height: 1px;
  /* baseline-aligned with .price__name rather than the whole two-line label */
  align-self: baseline;
  translate: 0 -.35em;
  background-image: radial-gradient(circle, var(--line) 1px, transparent 1.2px);
  background-size: 7px 2px;
  background-repeat: repeat-x;
}

.price__value {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.price__value--soft {
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  color: var(--rose-deep);
}

.pricing__aside {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  padding: clamp(1.6rem, 3vw, 2.1rem);
  background: linear-gradient(165deg, var(--rose-tint), var(--cream-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.pricing__heart { width: 68px; margin: 0 auto 1rem; }
.pricing__note {
  font-size: .95rem;
  color: var(--ink-2);
  margin-bottom: 1.5rem;
}

/* ---------- contact ---------- */
.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: stretch;
}

.contact__cards { display: grid; gap: 1rem; align-content: start; }

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, border-color .2s ease;
}
.contact-card:hover { transform: translateX(4px); border-color: var(--rose); }

.contact-card__icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--rose-tint);
  color: var(--rose-deep);
}
.contact-card__icon svg { width: 22px; height: 22px; }

.contact-card__label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-card__value {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.45;
}
a.contact-card__value:hover { color: var(--rose-deep); text-decoration: underline; }

.contact__map {
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: saturate(.85);
}

/* ============================================================
   Legal pages (polityka prywatności, regulamin)
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4.25rem) 0 clamp(2rem, 4vw, 3.25rem);
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero__blob {
  position: absolute;
  top: -16rem; right: -10rem;
  width: 32rem; height: 32rem;
  border-radius: 50%;
  background: var(--rose-soft);
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 46rem; }
.page-hero__title { font-size: clamp(2rem, 1.4rem + 2.2vw, 3.1rem); }
.page-hero__lead {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--muted);
}
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  margin-top: 1.5rem;
}
.page-hero__meta span {
  padding: .3rem .85rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .82rem;
  color: var(--muted);
}

.legal {
  display: grid;
  grid-template-columns: minmax(0, 16rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(2.75rem, 5vw, 4.5rem) 0 clamp(3.5rem, 7vw, 6rem);
}

/* table of contents */
.toc {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  padding: 1.5rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.toc__title {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .9rem;
}
.toc__list { display: grid; gap: .1rem; counter-reset: toc; }
.toc__link {
  display: flex;
  gap: .6rem;
  padding: .45rem .5rem;
  border-radius: 10px;
  font-size: .89rem;
  line-height: 1.4;
  color: var(--ink-2);
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}
.toc__link::before {
  counter-increment: toc;
  content: counter(toc) ".";
  flex-shrink: 0;
  font-weight: 700;
  color: var(--rose);
}
.toc__link:hover { background: var(--cream-soft); color: var(--rose-deep); }
.toc__link.is-active {
  background: var(--rose-tint);
  color: var(--rose-deep);
  font-weight: 600;
}
.toc__link.is-active::before { color: var(--rose-deep); }

/* article body */
.legal__body { max-width: 46rem; }

.legal__intro {
  padding: 1.4rem 1.5rem;
  margin-bottom: 2.5rem;
  background: var(--sky-soft);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--ink-2);
}

.legal-section { scroll-margin-top: calc(var(--header-h) + 1.5rem); }
.legal-section + .legal-section {
  margin-top: 2.75rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--line);
}

.legal-section__head {
  display: flex;
  align-items: baseline;
  gap: .9rem;
  margin-bottom: 1.1rem;
}
.legal-section__num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  color: var(--rose);
}
.legal-section__title { font-size: clamp(1.3rem, 1.15rem + .5vw, 1.6rem); }

.legal-section > p { color: var(--muted); }

/* numbered clauses */
.legal-list {
  counter-reset: clause;
  display: grid;
  gap: .9rem;
  margin-top: 1.25rem;
}
.legal-list > li {
  position: relative;
  padding-left: 2.5rem;
  font-size: .96rem;
  line-height: 1.68;
}
.legal-list > li::before {
  counter-increment: clause;
  content: counter(clause);
  position: absolute;
  left: 0;
  top: .15rem;
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  color: var(--rose-deep);
}

/* bulleted sub-items */
.legal-sublist {
  display: grid;
  gap: .4rem;
  margin: .7rem 0 0;
}
.legal-sublist li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .93rem;
  color: var(--muted);
}
.legal-sublist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px; height: 1.5px;
  border-radius: 2px;
  background: var(--rose);
}
.legal-sublist a { font-weight: 600; }

.legal__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.legal__footer p { margin: 0; font-size: .9rem; color: var(--muted); }

@media (max-width: 900px) {
  .legal { grid-template-columns: 1fr; }
  .toc { position: static; }
  .toc__list { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); display: grid; }
}

/* ---------- footer ---------- */
.site-footer {
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.75rem;
  background: var(--ink);
  color: #D9D2CE;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer__brand { display: flex; align-items: center; gap: .9rem; }
.footer__brand img { width: 46px; height: 46px; }
.footer__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
}
.footer__sub { margin: 0; font-size: .82rem; color: #A79E99; }

.footer__nav { display: flex; flex-wrap: wrap; gap: .35rem 1.4rem; }
.footer__nav a {
  font-size: .9rem;
  color: #D9D2CE;
  text-decoration: none;
  transition: color .18s ease;
}
.footer__nav a:hover { color: var(--rose); }

.footer__social { display: flex; gap: .6rem; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #D9D2CE;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.footer__social a:hover { background: var(--rose); color: var(--ink); border-color: var(--rose); }
.footer__social svg { width: 20px; height: 20px; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  padding-top: 1.5rem;
  font-size: .8rem;
  color: #948B86;
}
.footer-legal p { margin: 0; }

/* ---------- cookie banner ---------- */
.cookie {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  width: min(100% - 2.5rem, 25rem);
  padding: 1.4rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: rise .4s ease both;
}
.cookie[hidden] { display: none; }
.cookie__title { font-size: 1.15rem; margin-bottom: .5rem; }
.cookie__text { font-size: .88rem; color: var(--muted); margin-bottom: 1.1rem; }
.cookie__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cookie__link { font-size: .85rem; color: var(--muted); }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- mobile call button ---------- */
.call-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 110;
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  background: var(--rose);
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.call-fab svg { width: 20px; height: 20px; }

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 30rem; margin-inline: auto; }
  .hero__media > img { aspect-ratio: 4 / 3.6; }
  .hero__heart { left: auto; right: .5rem; bottom: -1.25rem; }
  .about,
  .pricing,
  .contact { grid-template-columns: 1fr; }
  .about__photo,
  .pricing__aside { position: static; }
  .about__photo { max-width: 24rem; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }

  .burger { display: block; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 95;
    width: min(84vw, 21rem);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .5rem;
    padding: 6rem 1.75rem 2rem;
    background: var(--sand);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    translate: 100% 0;
    visibility: hidden;
    transition: translate .3s cubic-bezier(.22, 1, .36, 1), visibility .3s;
  }
  .nav.is-open { translate: 0 0; visibility: visible; }

  .nav__list { flex-direction: column; align-items: stretch; gap: .25rem; }
  .nav__link {
    display: block;
    padding: .8rem .25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 1.25rem; }

  .hero__trust { grid-template-columns: 1fr; gap: 1rem; }

  .call-fab { display: inline-flex; }
  body.nav-open .call-fab { display: none; }
  .cookie { left: 1rem; right: 1rem; bottom: 1rem; width: auto; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 2rem, var(--shell)); }
  .brand__sub { display: none; }
  .brand__mark { width: 44px; height: 44px; }
  .price { flex-wrap: wrap; }
  .price__dots { display: none; }
  .price__value { margin-left: auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- motion / contrast preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .call-fab, .cookie, .contact__map, .hero__blob { display: none !important; }
  body { background: #fff; }
  .reveal { opacity: 1; transform: none; }
}
