/* ============================================================
   Fyzio Pospíšil — styles.css
   Art direction: "calm active recovery"
   Warm white · deep petrol · energetic coral accent
   ============================================================ */

:root {
  /* Palette */
  --bg:        #f6f1e8;   /* warm white */
  --bg-2:      #efe8da;   /* warm tint */
  --surface:   #fffdf8;   /* card */
  --ink:       #14201d;   /* near-black green */
  --muted:     #55635e;   /* body muted */
  --petrol:    #0e3d3a;   /* deep petrol / forest */
  --petrol-2:  #12514c;
  --petrol-ink:#0a2c2a;
  --sage:      #8fb3a6;
  --accent:    #ff6a3d;   /* energetic coral */
  --accent-2:  #ff855e;
  --line:      #e2d9c8;   /* hairline on light */
  --line-dark: #ffffff1f;

  /* Type */
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Space & shape */
  --container: 1180px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -28px rgba(14, 61, 58, .35);
  --shadow-sm: 0 10px 30px -18px rgba(14, 61, 58, .4);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

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

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--petrol); color: #fff; padding: .7rem 1.1rem; border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Typography helpers ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 500;
  text-transform: uppercase; letter-spacing: .16em; font-size: .78rem;
  color: var(--petrol);
}
.eyebrow--light { color: var(--sage); }
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent);
}

/* ---------- Buttons ---------- */
.btn {
  --pad: .85rem 1.4rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: var(--pad); border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn--lg { --pad: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn--accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 14px 30px -12px color-mix(in srgb, var(--accent) 70%, transparent);
}
.btn--accent:hover { background: var(--accent-2); transform: translateY(-3px); box-shadow: 0 20px 38px -12px color-mix(in srgb, var(--accent) 75%, transparent); }
.btn--ghost { background: transparent; color: var(--petrol); border-color: color-mix(in srgb, var(--petrol) 30%, transparent); }
.btn--ghost:hover { background: var(--petrol); color: #fff; transform: translateY(-3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px -24px rgba(14,61,58,.6); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 700; font-size: 1.16rem; letter-spacing: -.02em; color: var(--petrol); }
.brand__mark { flex: none; }
.brand--light { color: #fff; }

.nav__links { display: flex; align-items: center; gap: 1.85rem; }
.nav__links a:not(.btn) {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem; color: var(--ink);
  position: relative; padding: .3rem 0; transition: color .2s var(--ease);
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--accent);
  transition: width .3s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--petrol); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__cta { margin-left: .4rem; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px;
  align-items: center; justify-content: center; background: transparent; border: 1.5px solid var(--line); border-radius: 12px;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--petrol); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid var(--line);
    transform: translateY(-140%); transition: transform .4s var(--ease); box-shadow: var(--shadow);
    max-height: calc(100dvh - 74px); overflow-y: auto;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a:not(.btn) { padding: .95rem .2rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__cta { margin: 1rem 0 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 82% 12%, color-mix(in srgb, var(--sage) 40%, transparent), transparent 70%),
    radial-gradient(50% 50% at 8% 90%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__content { max-width: 34rem; }
.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 4.5rem); margin: 1.1rem 0 1.3rem; color: var(--petrol);
}
.hero__accent { color: var(--accent); position: relative; }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); max-width: 33rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.9rem 0 2.2rem; }

.hero__meta { list-style: none; display: flex; gap: 2.2rem; padding: 0; flex-wrap: wrap; }
.hero__meta li { display: flex; flex-direction: column; }
.hero__meta a { display: flex; flex-direction: column; }
.hero__meta strong { font-family: var(--font-head); font-size: 1.08rem; color: var(--petrol); }
.hero__meta span { font-size: .85rem; color: var(--muted); }
.hero__meta a:hover strong { color: var(--accent); }

.hero__figure { position: relative; }
.hero__figure img {
  width: 100%; aspect-ratio: 9/11; object-fit: cover; border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow); transform: rotate(1.2deg);
}
.hero__badge {
  position: absolute; left: -18px; bottom: 28px;
  background: var(--petrol); color: #fff; padding: 1rem 1.3rem; border-radius: var(--radius-sm);
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm); border: 1px solid var(--petrol-2);
}
.hero__badge-num { font-family: var(--font-head); font-weight: 700; font-size: 2rem; line-height: 1; color: var(--accent); }
.hero__badge-lbl { font-size: .82rem; color: var(--sage); max-width: 8rem; }

.hero__scroll { position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: var(--muted); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--petrol), transparent); animation: scrollpulse 2.2s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100% { transform: scaleY(.5); opacity: .4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; } }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__figure { order: -1; max-width: 460px; margin-inline: auto; }
  .hero__figure img { aspect-ratio: 4/3; transform: none; }
  .hero__scroll { display: none; }
  .hero__badge { left: auto; right: -6px; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--petrol); color: #fff; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: clamp(1.8rem, 4vw, 2.8rem) 0; }
.trust__item { display: flex; flex-direction: column; gap: .35rem; padding: .4rem 1.2rem; position: relative; }
.trust__item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 15%; height: 70%; width: 1px; background: var(--line-dark); }
.trust__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: #fff; line-height: 1; }
.trust__num [data-count] { color: var(--accent); }
.trust__lbl { color: var(--sage); font-size: .92rem; }
@media (max-width: 720px) {
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 1.4rem 0; }
  .trust__item:nth-child(2)::after { display: none; }
}

/* ============================================================
   SECTIONS (generic)
   ============================================================ */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section--tint { background: var(--bg-2); }
.section__head { max-width: 44rem; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__title { font-size: clamp(1.9rem, 3.8vw, 3rem); color: var(--petrol); margin: .9rem 0 .8rem; }
.section__title--light { color: #fff; }
.section__lead { color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.15rem); }

/* ---------- Cards (Co řešíme) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--accent);
  transition: width .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.card:hover::before { width: 100%; }
.card__icon {
  display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center;
  border-radius: 15px; background: color-mix(in srgb, var(--sage) 26%, transparent); color: var(--petrol);
  margin-bottom: 1.2rem; transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.card__icon svg { width: 27px; height: 27px; }
.card:hover .card__icon { background: var(--petrol); color: #fff; transform: rotate(-6deg); }
.card__title { font-size: 1.3rem; margin-bottom: .5rem; color: var(--petrol); }
.card__text { color: var(--muted); font-size: .98rem; }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Methods ---------- */
.methods { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.methods__list { list-style: none; padding: 0; margin: 2.2rem 0 0; display: grid; gap: 1.1rem; }
.method {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.method:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.method__head { display: flex; align-items: center; gap: .9rem; margin-bottom: .35rem; }
.method__no { font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: 1.05rem; }
.method__title { font-size: 1.25rem; color: var(--petrol); }
.method p { color: var(--muted); font-size: .97rem; }
.methods__media { position: relative; }
.methods__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.methods__quote {
  position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
  background: color-mix(in srgb, var(--petrol) 92%, transparent); color: #fff;
  font-family: var(--font-head); font-size: 1rem; line-height: 1.4; padding: 1rem 1.2rem; border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}
@media (max-width: 860px) { .methods { grid-template-columns: 1fr; } .methods__media { max-width: 460px; margin-inline: auto; } }

/* ---------- Steps (Jak to probíhá) ---------- */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 1rem; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 1.7rem; text-align: center; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__no {
  display: inline-flex; width: 58px; height: 58px; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--petrol); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  margin-bottom: 1.1rem; box-shadow: 0 0 0 6px color-mix(in srgb, var(--sage) 30%, transparent);
}
.step__title { font-size: 1.35rem; color: var(--petrol); margin-bottom: .5rem; }
.step__text { color: var(--muted); font-size: .97rem; }
.step__link { align-self: center; width: 42px; height: 2px; background: repeating-linear-gradient(90deg, var(--sage) 0 8px, transparent 8px 14px); }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .step__link { width: 2px; height: 26px; justify-self: center; background: repeating-linear-gradient(180deg, var(--sage) 0 8px, transparent 8px 14px); }
}

/* ---------- About (dark) ---------- */
.section--dark { background: var(--petrol-ink); color: #fff; position: relative; overflow: hidden; }
.section--dark::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(50% 60% at 85% 20%, color-mix(in srgb, var(--petrol-2) 60%, transparent), transparent 70%);
}
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; z-index: 1; }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about__tag {
  position: absolute; left: 1rem; bottom: 1rem; background: var(--accent); color: #fff;
  font-family: var(--font-head); font-weight: 600; padding: .5rem 1rem; border-radius: 999px; font-size: .9rem;
}
.about__text { color: color-mix(in srgb, #fff 82%, transparent); font-size: 1.08rem; margin: 1rem 0 1.6rem; }
.creds { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: .8rem; }
.creds li { position: relative; padding-left: 1.9rem; color: color-mix(in srgb, #fff 88%, transparent); }
.creds li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 25%, transparent);
}
@media (max-width: 860px) { .about { grid-template-columns: 1fr; } .about__media { max-width: 400px; } }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.price {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem 1.8rem; display: flex; flex-direction: column; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price--featured { background: var(--petrol); color: #fff; border-color: var(--petrol); }
.price__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  padding: .35rem 1rem; border-radius: 999px; white-space: nowrap;
}
.price__name { font-size: 1.35rem; color: var(--petrol); margin-bottom: .4rem; }
.price--featured .price__name { color: #fff; }
.price__desc { color: var(--muted); font-size: .95rem; min-height: 3rem; }
.price--featured .price__desc { color: var(--sage); }
.price__value { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--petrol); margin: .6rem 0 1.4rem; }
.price--featured .price__value { color: var(--accent); }
.price__btn { margin-top: auto; width: 100%; }
.pricing__note { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 1.6rem; }
@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } .price__desc { min-height: 0; } }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; display: flex; flex-direction: column; gap: 1rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.quote__stars { color: var(--accent); letter-spacing: .15em; font-size: 1.05rem; }
.quote blockquote { font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.quote figcaption { margin-top: auto; display: flex; flex-direction: column; }
.quote figcaption strong { font-family: var(--font-head); color: var(--petrol); }
.quote figcaption span { font-size: .85rem; color: var(--muted); }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq .section__head { margin-bottom: 0; position: sticky; top: 100px; }
.faq__list { display: grid; gap: .8rem; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .3s var(--ease), border-color .3s var(--ease); }
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: color-mix(in srgb, var(--accent) 30%, var(--line)); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem; font-family: var(--font-head); font-weight: 600;
  font-size: 1.08rem; color: var(--petrol); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex: none; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq__icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__body { padding: 0 1.4rem 1.25rem; color: var(--muted); }
.faq__body p { max-width: 46ch; }
@media (max-width: 860px) { .faq { grid-template-columns: 1fr; } .faq .section__head { position: static; } }

/* ---------- Contact ---------- */
.section--contact { background: var(--bg-2); }
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.2rem; }
.contact__list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact__ico { flex: none; width: 46px; height: 46px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; background: var(--petrol); color: #fff; }
.contact__ico svg { width: 22px; height: 22px; }
.contact__k { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.contact__list a:hover { color: var(--accent); }
.contact__list strong, .contact__list span > a { font-family: var(--font-head); font-weight: 600; color: var(--petrol); font-size: 1.05rem; }

/* Form */
.contact__form-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm); }
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: .9rem; color: var(--petrol); }
.field label span { color: var(--accent); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--bg); border: 1.5px solid var(--line); border-radius: 11px;
  padding: .8rem .95rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--petrol); background: var(--surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--petrol) 12%, transparent);
}
.field.is-invalid input, .field.is-invalid select { border-color: #d94a3a; box-shadow: 0 0 0 4px color-mix(in srgb, #d94a3a 12%, transparent); }
.field__err { color: #c53a2b; font-size: .82rem; min-height: 1rem; }
.form__submit { margin-top: .3rem; }
.form__status { padding: .9rem 1.1rem; border-radius: 11px; font-weight: 500; }
.form__status.is-success { background: color-mix(in srgb, var(--sage) 30%, transparent); color: var(--petrol-ink); border: 1px solid var(--sage); }
.form__status.is-error { background: color-mix(in srgb, #d94a3a 14%, transparent); color: #9c2a1e; border: 1px solid #e59b91; }
.form__fineprint { font-size: .8rem; color: var(--muted); }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }

.map { margin-top: clamp(2rem, 4vw, 3rem); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); line-height: 0; }
.map iframe { filter: grayscale(.2) contrast(1.02); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--petrol-ink); color: #fff; padding: clamp(2.8rem, 5vw, 4rem) 0 1.6rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer__claim { color: var(--sage); margin-top: 1rem; max-width: 22rem; font-size: .95rem; }
.footer__col h3 { font-size: 1rem; color: #fff; margin-bottom: 1rem; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer__col a, .footer__col li { color: color-mix(in srgb, #fff 78%, transparent); font-size: .95rem; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line-dark); color: var(--sage); font-size: .85rem; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Sticky mobile CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
  display: none; text-align: center; padding: 1rem; border-radius: 999px;
  background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 600;
  box-shadow: 0 14px 34px -10px color-mix(in srgb, var(--accent) 70%, transparent);
  transform: translateY(140%); transition: transform .4s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
@media (max-width: 900px) { .sticky-cta { display: block; } body { padding-bottom: 5rem; } }

/* ============================================================
   Reveal on scroll (fallback + JS-driven)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
