/* ============================================================
   Aneta Dofková — Komunikace se zvířaty
   Brand system: warm cream · eucalyptus sage · soft clay
   ============================================================ */

:root {
  /* Palette */
  --cream:      #FBF6EE;
  --cream-2:    #F4EBDC;
  --sand:       #EADFC9;
  --ink:        #322E28;
  --ink-soft:   #5E574D;
  --ink-faint:  #6E665B;
  --sage:       #71815E;
  --sage-deep:  #4E5C3B;
  --sage-soft:  #DDE3D0;
  --clay:       #C18A72;
  --clay-deep:  #9E6750;
  --clay-soft:  #F0DDD2;
  --white:      #FFFEFB;
  --line:       rgba(50, 46, 40, 0.12);
  --shadow-sm:  0 2px 12px rgba(78, 92, 59, 0.07);
  --shadow-md:  0 14px 40px rgba(78, 70, 55, 0.10);
  --shadow-lg:  0 30px 70px rgba(78, 70, 55, 0.16);

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Fluid scale */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.92rem);
  --step-0:  clamp(1rem, 0.96rem + 0.22vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.36rem + 0.7vw, 2rem);
  --step-3:  clamp(1.9rem, 1.65rem + 1.25vw, 2.9rem);
  --step-4:  clamp(2.4rem, 1.95rem + 2.25vw, 4.2rem);

  --radius:    22px;
  --radius-lg: 34px;
  --maxw: 1180px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible {
  outline: 3px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.kicker::before {
  content: ""; width: 26px; height: 1.5px; background: var(--clay); display: inline-block;
}
.kicker--center { justify-content: center; }

.eyebrow-heading { margin-block: .7rem 0; font-size: var(--step-3); max-width: 18ch; }
.section-head { max-width: 60ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); font-size: var(--step-1); }

.lead { font-size: var(--step-1); color: var(--ink-soft); }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: 1rem; top: -100px;
  background: var(--sage-deep); color: var(--white);
  padding: .7rem 1.1rem; border-radius: 10px; z-index: 200;
  transition: top .2s ease;
}
.skip:focus { top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--step-0);
  letter-spacing: 0.005em;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--sage-deep); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #3f4b30; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--sage-deep); color: var(--sage-deep); transform: translateY(-2px); }
.btn--clay { background: var(--clay-deep); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--clay:hover { background: #8c5a45; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--block { width: 100%; }

/* ============================================================
   Header / Nav
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
  padding-block: 1.1rem;
}
.header.is-scrolled {
  background: rgba(251, 246, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: .65rem;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__mark { width: 38px; height: 38px; flex: none; color: var(--sage-deep); transition: transform .4s ease; }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.05); }
.brand__name { font-family: var(--serif); font-size: 1.3rem; line-height: 1; color: var(--ink); }
.brand__name small { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: 0.22em; text-transform: uppercase; color: #5E6E48; font-weight: 700; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a:not(.btn) { font-weight: 600; font-size: .98rem; color: var(--ink-soft); position: relative; transition: color .2s ease; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--clay);
  transition: width .25s ease;
}
.nav__links a:not(.btn):hover { color: var(--ink); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__cta { margin-left: .4rem; }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; }
.nav__toggle span { position: relative; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: background .2s; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s ease; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: var(--cream); padding: 2rem var(--gutter);
    transform: translateX(105%); transition: transform .35s cubic-bezier(.5,0,.2,1);
    box-shadow: var(--shadow-lg); z-index: 90;
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__links a:not(.btn) { font-size: 1.25rem; font-family: var(--serif); color: var(--ink); }
  .nav__cta { margin-left: 0; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding-top: clamp(7rem, 14vw, 10rem); padding-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__eyebrow { margin-bottom: 1.3rem; }
.hero__title { font-size: var(--step-4); max-width: 16ch; }
.hero__title em { font-style: italic; color: var(--sage-deep); }
.hero__text { margin-top: 1.5rem; max-width: 46ch; font-size: var(--step-1); color: var(--ink-soft); }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__contactline {
  margin-top: 1.8rem; display: inline-flex; align-items: center; gap: .6rem;
  font-size: var(--step--1); color: var(--ink-soft);
}
.hero__contactline a { color: var(--sage-deep); font-weight: 700; }
.hero__contactline a:hover { text-decoration: underline; }

.hero__media { position: relative; }
.hero__photo {
  position: relative; z-index: 2;
  border-radius: 230px 230px 28px 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero__blob {
  position: absolute; z-index: 1; width: 118%; height: 118%; top: -9%; left: -9%;
  background: radial-gradient(circle at 35% 30%, var(--sage-soft), transparent 62%),
              radial-gradient(circle at 75% 80%, var(--clay-soft), transparent 60%);
  filter: blur(6px);
}
.hero__badge {
  position: absolute; z-index: 3; bottom: 1.4rem; left: -1.4rem;
  background: var(--white); border-radius: 18px; padding: .9rem 1.15rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .7rem; max-width: 230px;
}
.hero__badge .heart { font-size: 1.5rem; }
.hero__badge p { font-size: .82rem; line-height: 1.4; color: var(--ink-soft); }
.hero__badge strong { color: var(--ink); display: block; font-size: .9rem; }

.hero__deco { position: absolute; pointer-events: none; opacity: .5; color: var(--sage); }
.hero__deco--1 { top: 18%; right: 4%; width: 30px; }
.hero__deco--2 { bottom: 12%; left: 46%; width: 22px; color: var(--clay); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 440px; margin-inline: auto; order: -1; }
  .hero__title { max-width: 100%; }
  .hero__badge { left: 0; }
}

/* ============================================================
   Wave / decorative divider
   ============================================================ */
.band-sage { background: var(--sage-soft); position: relative; }
.band-cream2 { background: var(--cream-2); }
.curve-top { display: block; width: 100%; height: clamp(40px, 6vw, 80px); }

/* ============================================================
   "Co je komunikace" — intro + steps
   ============================================================ */
.komunikace__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.prose p { margin-top: 1.1rem; color: var(--ink-soft); }
.prose p:first-child { margin-top: 0; }
.checklist { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .75rem; }
.checklist li { position: relative; padding-left: 2.1rem; color: var(--ink-soft); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 1.25rem; height: 1.25rem;
  background: var(--clay-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239E6750' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 0.8rem no-repeat;
  border-radius: 50%;
}
.disclaimer {
  margin-top: 1.8rem; padding: 1.1rem 1.3rem; border-radius: 16px;
  background: var(--cream-2); border-left: 4px solid var(--sage);
  font-size: var(--step--1); color: var(--ink-soft);
}

/* Steps card */
.steps {
  background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md); position: sticky; top: 100px;
}
.steps h3 { font-size: var(--step-2); }
.steps__list { list-style: none; padding: 0; margin: 1.5rem 0 0; counter-reset: step; display: grid; gap: 0; }
.steps__list li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
  padding: 1rem 0; position: relative;
}
.steps__list li:not(:last-child) { border-bottom: 1px dashed var(--line); }
.steps__num {
  counter-increment: step; width: 42px; height: 42px; flex: none; border-radius: 50%;
  background: var(--sage-soft); color: var(--sage-deep); display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
}
.steps__num::before { content: counter(step); }
.steps__body strong { display: block; font-size: 1.05rem; color: var(--ink); }
.steps__body span { color: var(--ink-soft); font-size: var(--step--1); }

@media (max-width: 860px) {
  .komunikace__grid { grid-template-columns: 1fr; }
  .steps { position: static; }
}

/* ============================================================
   "S čím pomohu" — cards
   ============================================================ */
.help-grid {
  margin-top: 2.6rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
.help-card {
  background: var(--white); border-radius: var(--radius); padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(255,255,255,.6);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column; gap: .8rem;
}
.help-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.help-card__icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sage-soft); color: var(--sage-deep);
}
.help-card:nth-child(even) .help-card__icon { background: var(--clay-soft); color: var(--clay-deep); }
.help-card__icon svg { width: 26px; height: 26px; }
.help-card p { font-weight: 600; color: var(--ink); line-height: 1.4; }

@media (max-width: 980px) { .help-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .help-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Příběh / About
   ============================================================ */
.story__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.story__media { position: sticky; top: 100px; }
.story__photo-main {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.story__photo-main img { width: 100%; height: 100%; object-fit: cover; }
.story__photo-sub {
  width: 52%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  margin-top: -16%; margin-left: auto; border: 6px solid var(--cream);
  aspect-ratio: 3 / 4;
}
.story__photo-sub img { width: 100%; height: 100%; object-fit: cover; }
.story__quote {
  margin-top: 1.6rem; font-family: var(--serif); font-style: italic; font-size: var(--step-1);
  color: var(--sage-deep); line-height: 1.4; padding-left: 1.1rem; border-left: 3px solid var(--clay);
}
.story__text { font-size: var(--step-0); }
.story__text p { margin-top: 1.15rem; color: var(--ink-soft); }
.story__text p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 3.4em; line-height: .8; float: left;
  padding: .08em .12em 0 0; color: var(--clay-deep); font-weight: 500;
}
.story__text .sign {
  margin-top: 1.8rem; font-family: var(--serif); font-style: italic; font-size: var(--step-1); color: var(--ink);
}

@media (max-width: 860px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__media { position: static; max-width: 420px; margin-inline: auto; }
}

/* ============================================================
   Galerie
   ============================================================ */
.gallery {
  margin-top: 2.6rem;
  display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(150px, 19vw, 230px);
  gap: 1rem; grid-auto-flow: dense;
}
.gallery figure { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin: 0; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.5rem 1.1rem .9rem; color: #fff; font-size: .85rem; font-weight: 600;
  background: linear-gradient(to top, rgba(50,46,40,.55), transparent);
  opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease;
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(140px, 38vw, 200px); }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 2; }
}

/* ============================================================
   Ceník / Pricing
   ============================================================ */
.price-grid { margin-top: 2.6rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; align-items: stretch; }
.price-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  border: 1.5px solid transparent; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.is-featured { border-color: var(--sage); box-shadow: var(--shadow-md); }
.price-card__tag {
  position: absolute; top: -13px; left: 1.7rem; background: var(--clay-deep); color: var(--white);
  font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 999px;
}
.price-card h3 { font-size: var(--step-1); }
.price-card__amount { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.6rem); color: var(--sage-deep); margin: .6rem 0 1rem; }
.price-card__amount small { font-family: var(--sans); font-size: .9rem; color: var(--ink-faint); font-weight: 700; }
.price-card p { color: var(--ink-soft); font-size: var(--step--1); }
.price-card .btn { margin-top: auto; }

@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* Process / ordering info */
.info-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.info-card { background: var(--cream-2); border-radius: var(--radius); padding: 1.6rem 1.5rem; }
.info-card h4 { font-size: var(--step-1); margin-bottom: .6rem; display: flex; align-items: center; gap: .55rem; }
.info-card h4 svg { width: 1.3rem; height: 1.3rem; color: var(--clay-deep); flex: none; }
.info-card p { color: var(--ink-soft); font-size: var(--step--1); }
@media (max-width: 860px) { .info-grid { grid-template-columns: 1fr; } }

.notes { margin-top: 1.6rem; display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.3rem; }
.note-box { background: var(--white); border-radius: var(--radius); padding: 1.5rem 1.5rem; box-shadow: var(--shadow-sm); }
.note-box h4 { font-size: var(--step-1); margin-bottom: .7rem; }
.note-box p, .note-box li { color: var(--ink-soft); font-size: var(--step--1); }
.note-box ul { margin: .6rem 0 0; padding-left: 1.1rem; display: grid; gap: .4rem; }
@media (max-width: 860px) { .notes { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; margin: 2.4rem auto 0; display: grid; gap: .9rem; }
.faq details {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  overflow: hidden; border: 1px solid var(--line);
}
.faq summary {
  list-style: none; cursor: pointer; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--serif); font-size: var(--step-1); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 22px; height: 22px; flex: none; transition: transform .3s ease; color: var(--sage-deep); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq__answer { padding: 0 1.5rem 1.35rem; color: var(--ink-soft); }

/* ============================================================
   Kontakt
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.contact__intro .lead { margin-top: 1rem; }
.contact__signature { margin-top: 1.8rem; font-family: var(--serif); font-style: italic; font-size: var(--step-1); color: var(--ink); }
.contact__cards { margin-top: 1.8rem; display: grid; gap: .9rem; }
.contact-chip {
  display: flex; align-items: center; gap: .9rem; background: var(--white);
  border-radius: 16px; padding: 1rem 1.2rem; box-shadow: var(--shadow-sm);
}
.contact-chip__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--sage-soft); color: var(--sage-deep); display: grid; place-items: center; flex: none; }
.contact-chip__icon svg { width: 22px; height: 22px; }
.contact-chip small { display: block; color: var(--ink-faint); font-size: .78rem; }
.contact-chip a, .contact-chip strong { color: var(--ink); font-weight: 700; }
.contact-chip a:hover { color: var(--sage-deep); }

.form {
  background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.field input, .field textarea {
  width: 100%; padding: .85rem 1rem; border-radius: 13px; border: 1.5px solid var(--line);
  background: var(--cream); font: inherit; color: var(--ink); transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage); background: var(--white); }
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: .8rem; color: var(--ink-faint); margin: -.3rem 0 1.1rem; }
.form__status { margin-top: 1rem; font-size: .9rem; font-weight: 600; min-height: 1.2em; }
.form__status.ok { color: var(--sage-deep); }
.form__status.err { color: var(--clay-deep); }

@media (max-width: 860px) {
  .contact__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--sage-deep); color: #EDEDE3; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer__grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer .brand__name { color: var(--white); }
.footer .brand__name small { color: var(--sage-soft); }
.footer .brand__mark { color: var(--sage-soft); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer__links a { color: #D7DBC8; font-size: .92rem; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.16); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; font-size: .82rem; color: #D7DBC8; }
.footer__bottom a:hover { color: var(--white); text-decoration: underline; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .help-card, .price-card, .gallery img, .btn, .brand__mark { transition: none !important; }
}

/* ============================================================
   Form consent + honeypot
   ============================================================ */
.field--hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
.consent {
  display: flex; align-items: flex-start; gap: .7rem;
  margin: .2rem 0 1.2rem; cursor: pointer;
}
.consent input[type="checkbox"] {
  flex: 0 0 auto; width: 1.25rem; height: 1.25rem; margin-top: .15rem;
  accent-color: var(--sage-deep); cursor: pointer;
}
.consent span { font-size: .82rem; line-height: 1.55; color: var(--ink-soft); }
.consent a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 2px; }
.consent a:hover { color: var(--clay-deep); }

/* ============================================================
   Legal / privacy page
   ============================================================ */
.wrap--narrow { max-width: 760px; }
.legal { padding-top: clamp(6rem, 12vh, 9rem); }
.legal__effective { color: var(--ink-faint); font-size: var(--step--1); margin-top: .6rem; }
.legal__body { margin-top: 2.4rem; }
.legal__body h2 {
  font-size: var(--step-1); margin-top: 2.4rem; margin-bottom: .2rem;
  padding-top: 1.8rem; border-top: 1px solid var(--line);
}
.legal__body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.legal__body h3 { font-size: var(--step-0); margin-top: 1.4rem; color: var(--sage-deep); }
.legal__body ul { margin: 1rem 0 0; padding-left: 1.3rem; display: grid; gap: .55rem; }
.legal__body ul li { color: var(--ink-soft); }
.legal__body a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal__body a:hover { color: var(--clay-deep); }
