/* ===========================================================
   mluvitalsky.cz — produkční styly
   =========================================================== */

:root {
  --ink: #15211c;
  --text: #545b53;
  --text-2: #41463f;
  --muted: #6a706a;
  --muted-2: #9a9f98;
  --green: #1f4d3a;
  --green-dk: #163a2c;
  --green-tint: #edf2ee;
  --green-tint-2: #e3ece6;
  --paper: #faf9f6;
  --paper-2: #f7f6f2;
  --paper-3: #f5f4f1;
  --line: #eceae4;
  --line-2: #e7e6e0;
  --line-3: #e3e2dc;
  --white: #ffffff;
  --maxw: 1240px;
  --pad: max(24px, 4vw);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--green); color: #fff; }
h1, h2, h3, p { margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 16px; font-weight: 550; line-height: 1; cursor: pointer;
  padding: 15px 28px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .2s, box-shadow .2s, border-color .2s, color .2s;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 20px rgba(31,77,58,.22); }
.btn-primary:hover { background: var(--green-dk); transform: translateY(-2px); }
.btn-ghost { color: var(--green); border-color: var(--line-3); background: transparent; }
.btn-ghost:hover { background: var(--paper-3); }
.btn-light { background: #fff; color: var(--ink); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.btn-light:hover { transform: translateY(-2px); }
.btn-sm { padding: 12px 22px; font-size: 14.5px; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  font-size: 15px; font-weight: 500; color: var(--green); text-decoration: none;
  transition: gap .2s, color .2s;
}
.arrow-link:hover { gap: 11px; color: var(--green-dk); }

/* ---------- Eyebrow / chips / badges ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  color: var(--green); background: var(--green-tint); padding: 7px 14px; border-radius: 999px;
}
.eyebrow.on-dark { color: #8fb39f; background: transparent; padding: 0; letter-spacing: .06em; }
.section-num { font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }

.chip {
  font-size: 14px; color: var(--text-2); background: #fff; border: 1px solid var(--line-3);
  padding: 9px 16px; border-radius: 999px;
  transition: background .2s, border-color .2s, color .2s;
}
.chip:hover { background: var(--green-tint); border-color: #d8e3da; color: var(--green); }

.badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 11px 18px; border-radius: 999px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.badge-dark { background: var(--ink); color: #fff; }
.badge-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(21,33,28,.45); }
.badge-dark b { font-size: 18px; font-weight: 700; letter-spacing: -.02em; }
.badge-dark span { font-size: 14px; color: #d6e0da; }
.badge-soft { background: var(--green-tint); color: var(--green); border: 1px solid #d8e3da; font-size: 14px; font-weight: 600; }
.badge-soft:hover { transform: translateY(-2px); background: var(--green-tint-2); box-shadow: 0 12px 24px -14px rgba(31,77,58,.4); }

/* ---------- Typography ---------- */
.h1 { font-size: clamp(34px, 4.8vw, 60px); line-height: 1.05; letter-spacing: -.035em; font-weight: 600; }
.h1-lg { font-size: clamp(38px, 5.2vw, 66px); line-height: 1.04; letter-spacing: -.035em; font-weight: 600; }
.h2 { font-size: clamp(26px, 3.4vw, 44px); line-height: 1.08; letter-spacing: -.03em; font-weight: 600; }
.h3 { font-size: clamp(22px,2.6vw,28px); letter-spacing: -.025em; font-weight: 600; }
.lead { font-size: clamp(16px,1.6vw,20px); line-height: 1.6; color: var(--text); }
.muted { color: var(--text); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 var(--pad); height: 66px;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid #ececea;
  transition: background .3s, box-shadow .3s, border-color .3s, height .3s;
}
.nav.scrolled { height: 58px; background: rgba(255,255,255,.9); box-shadow: 0 6px 26px -8px rgba(21,33,28,.16); border-bottom-color: transparent; }
.brand { display: flex; align-items: baseline; gap: 1px; font-size: 19px; font-weight: 600; letter-spacing: -.02em; text-decoration: none; user-select: none; }
.brand .b1 { color: var(--ink); } .brand .b2 { color: var(--green); } .brand .b3 { color: #b4b8b2; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 4px; font-size: 14.5px; font-weight: 450; }
.nav-link { position: relative; padding: 8px 13px; border-radius: 8px; color: var(--text-2); text-decoration: none; transition: color .2s, background .2s; }
.nav-link:hover { background: var(--paper-3); color: var(--ink); }
.nav-link.is-active::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 2px; border-radius: 2px; background: var(--green); }
.nav-cta { font-size: 14px; padding: 10px 18px; box-shadow: 0 1px 2px rgba(21,33,28,.18); }
.hamburger { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; margin-right: -8px; border-radius: 10px; cursor: pointer; color: var(--ink); background: none; border: 0; transition: background .2s; }
.hamburger:hover { background: var(--paper-3); }
.mobile-menu { display: none; }

/* ---------- Sections ---------- */
.section { padding-top: clamp(40px,6vw,84px); padding-bottom: clamp(40px,6vw,84px); }
.section-tight { padding-top: clamp(30px,4vw,56px); padding-bottom: clamp(30px,4vw,56px); }
.center { text-align: center; }
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Hero (split) ---------- */
.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,76px); align-items: center; padding-top: clamp(40px,6vw,96px); padding-bottom: clamp(50px,6vw,90px); }
.hero h1 { margin: 24px 0; }
.hero .lead { max-width: 30em; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 38px; }
.hero-stats { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.stat-inline { display: flex; align-items: center; gap: 10px; }
.stat-badge { width: 38px; height: 38px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-weight: 600; }
.stat-badge.dark { background: var(--ink); color: #fff; font-size: 11px; letter-spacing: .02em; }
.stat-badge.soft { background: var(--green-tint); color: var(--green); font-size: 14px; font-weight: 700; }
.stat-inline .t { font-size: 13.5px; line-height: 1.35; color: var(--text); }
.stat-inline .t strong { color: var(--ink); font-weight: 600; }
.stat-divider { width: 1px; height: 34px; background: var(--line-2); }

/* ---------- Photo frames ---------- */
.photo { position: relative; border-radius: 24px; overflow: hidden; background-size: cover; background-position: center; }
.photo-portrait { aspect-ratio: 4/5; }
.photo-ph { background: repeating-linear-gradient(135deg, #efece4 0 16px, #f5f2eb 16px 32px); box-shadow: 0 30px 70px -32px rgba(21,33,28,.35); display: flex; align-items: flex-end; padding: 22px; transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s; }
.photo-ph:hover { transform: translateY(-5px); box-shadow: 0 40px 80px -34px rgba(21,33,28,.42); }
.photo-tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; color: #8f8a7e; background: rgba(255,255,255,.8); backdrop-filter: blur(6px); padding: 8px 13px; border-radius: 10px; }
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.photo-strip .photo { aspect-ratio: 1/1; border-radius: 20px; transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s; }
.photo-strip .photo:hover { transform: scale(1.04); box-shadow: 0 26px 50px -28px rgba(21,33,28,.32); }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 30px 28px 26px;
  text-decoration: none; color: inherit; display: block;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(21,33,28,.3); border-color: #dfe6df; }
.card .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--green-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.card h3 { font-size: 21px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 9px; }
.card p { font-size: 15px; line-height: 1.55; color: var(--text); margin-bottom: 18px; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head h2 { max-width: 13em; margin-top: 12px; }

/* ---------- Trust / dark band ---------- */
.band-dark { background: var(--ink); border-radius: 28px; padding: clamp(36px,5vw,64px); color: #fff; }
.trust { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px,4vw,60px); align-items: center; }
.trust .quote { font-size: clamp(22px,2.6vw,32px); line-height: 1.32; letter-spacing: -.02em; color: #fff; font-weight: 500; margin: 16px 0 28px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 22px 20px; transition: background .25s, border-color .25s, transform .25s; }
.stat-box:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); transform: translateY(-3px); }
.stat-box .n { font-size: 40px; font-weight: 600; letter-spacing: -.03em; color: #fff; line-height: 1; }
.stat-box .l { font-size: 14px; color: #aab8b1; margin-top: 7px; }
.stat-box.wide { grid-column: span 2; }
.stat-box.wide p { font-size: 15px; color: #d6e0da; line-height: 1.5; }
.stat-box.wide strong { color: #fff; font-weight: 600; }
.link-light { display: inline-flex; align-items: center; gap: 7px; color: #fff; text-decoration: none; font-size: 15px; font-weight: 500; transition: gap .2s; }
.link-light:hover { gap: 11px; }

/* ---------- Feature panels (Výuka) ---------- */
.panel { background: var(--paper); border: 1px solid var(--line); border-radius: 26px; padding: clamp(28px,4vw,52px); }
.panel-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px,4vw,60px); align-items: center; }
.mini-grid { display: flex; flex-direction: column; gap: 12px; }
.mini-row { display: flex; gap: 12px; }
.mini { flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; transition: transform .22s, box-shadow .22s, border-color .22s; }
.mini:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -20px rgba(21,33,28,.22); border-color: #dfe6df; }
.mini .t { font-size: 15px; font-weight: 600; color: var(--ink); }
.mini .s { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

.feature { display: flex; align-items: flex-start; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; transition: transform .22s, box-shadow .22s, border-color .22s; }
.feature:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -22px rgba(21,33,28,.24); border-color: #dfe6df; }
.feature .ico { flex-shrink: 0; width: 34px; height: 34px; border-radius: 999px; background: var(--green-tint); display: flex; align-items: center; justify-content: center; }
.feature .t { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.feature .s { font-size: 14.5px; line-height: 1.5; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Service cards (Tlumočení) ---------- */
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: clamp(28px,3vw,40px); transition: transform .25s, box-shadow .25s, border-color .25s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(21,33,28,.26); border-color: #dfe6df; }
.svc-card .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--green-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.svc-card h2 { margin-bottom: 18px; }
.list { display: flex; flex-direction: column; gap: 13px; }
.list .li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: var(--text-2); }
.list .dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 999px; background: var(--green); }
.note { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; font-size: 14.5px; line-height: 1.55; color: var(--text); }

.cta-band { background: var(--ink); border-radius: 28px; padding: clamp(34px,5vw,60px); display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { font-size: 16px; color: #aab8b1; }

/* ---------- Price table ---------- */
.price { background: #fff; border: 1px solid var(--line-2); border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px -40px rgba(21,33,28,.3); }
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 28px; border-bottom: 1px solid #f0efe9; transition: background .18s; }
.price-row:last-child { border-bottom: 0; }
.price-row:hover { background: var(--paper-2); }
.price-row .name { font-size: 16.5px; font-weight: 600; color: var(--ink); }
.price-row .sub { font-size: 13.5px; color: var(--muted-2); margin-top: 3px; }
.price-row .val { font-size: 16px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.price-row .val .od { color: var(--muted-2); font-weight: 500; }
.free-band { margin-top: 18px; background: var(--green); border-radius: 24px; padding: clamp(26px,4vw,40px); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.free-band .k { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #cfe3d6; margin-bottom: 12px; }
.free-band .k .d { width: 7px; height: 7px; border-radius: 999px; background: #8fd3a8; }
.free-band .big { font-size: clamp(20px,2.4vw,26px); font-weight: 600; letter-spacing: -.02em; color: #fff; }
.free-band .s { font-size: 15px; color: #b6cdbf; margin-top: 6px; }
.fineprint { text-align: center; font-size: 13.5px; color: var(--muted-2); margin: 22px auto 0; max-width: 34em; line-height: 1.5; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px,5vw,64px); align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.cmethod { display: flex; align-items: center; gap: 14px; color: var(--ink); text-decoration: none; }
.cmethod .ic { width: 44px; height: 44px; border-radius: 12px; background: #fff; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; transition: background .2s, border-color .2s; }
.cmethod .ic svg { stroke: var(--green); transition: stroke .2s; }
a.cmethod:hover .ic { background: var(--green); border-color: var(--green); }
a.cmethod:hover .ic svg { stroke: #fff; }
.cmethod .lbl { display: block; font-size: 12.5px; color: var(--muted-2); }
.cmethod .val { font-size: 16px; font-weight: 500; }
.socials { display: flex; gap: 10px; }
.social { width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line-3); display: flex; align-items: center; justify-content: center; color: #9aa09a; text-decoration: none; transition: background .2s, color .2s, transform .2s, box-shadow .2s; }
.social:hover { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-3px) scale(1.08); box-shadow: 0 10px 22px rgba(31,77,58,.4); }

.formcard { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: clamp(26px,3vw,40px); box-shadow: 0 30px 70px -45px rgba(21,33,28,.35); }
.form { display: flex; flex-direction: column; gap: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 500; color: var(--text-2); margin-bottom: 8px; }
.field label .req { color: var(--green); }
.field label .opt { color: var(--muted-2); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid #e2e1da; border-radius: 12px;
  font-size: 15px; font-family: inherit; color: var(--ink); background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,77,58,.12); }
.field.err input, .field.err select, .field.err textarea { border-color: #b3261e; }
.field .msg { color: #b3261e; font-size: 12.5px; margin-top: 6px; display: none; }
.field.err .msg { display: block; }
.form button { width: 100%; cursor: pointer; font-size: 16px; font-weight: 550; color: #fff; background: var(--green); padding: 15px 24px; border: none; border-radius: 12px; font-family: inherit; transition: background .2s, transform .2s, box-shadow .2s; }
.form button:hover { background: var(--green-dk); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(31,77,58,.3); }
.form button:disabled { opacity: .6; cursor: default; transform: none; box-shadow: none; }
.form-foot { text-align: center; font-size: 13px; color: var(--muted-2); margin-top: 2px; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .ic { width: 60px; height: 60px; border-radius: 999px; background: var(--green-tint); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.form-success h3 { font-size: 23px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 10px; }
.form-success p { font-size: 15.5px; line-height: 1.6; color: var(--text); max-width: 24em; margin: 0 auto; }
.form-error-top { background: #fdecea; border: 1px solid #f5c6c2; color: #9b2b22; border-radius: 12px; padding: 12px 15px; font-size: 14px; display: none; }
.form-error-top.show { display: block; }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; }
.legal h1 { margin-bottom: 16px; }
.legal .updated { font-size: 14px; color: var(--muted-2); margin-bottom: 14px; }
.legal .callout { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.legal-body { display: flex; flex-direction: column; gap: 28px; margin-top: 38px; }
.legal-body h2 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -.01em; }
.legal-body p { font-size: 15.5px; line-height: 1.65; color: var(--text); }
.cookie-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 24px 26px; }
.cookie-card .top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.cookie-card h2 { margin: 0; }
.tag { font-size: 12.5px; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.tag-on { color: var(--green); background: var(--green-tint); }
.tag-opt { color: var(--muted); background: var(--line); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid #ececea; background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-top: clamp(48px,6vw,72px); padding-bottom: 40px; }
.footer p { font-size: 14.5px; line-height: 1.6; color: var(--muted); max-width: 26em; margin: 14px 0 18px; }
.footer h4 { font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 16px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer-col a { color: var(--text-2); text-decoration: none; padding: 6px 12px; margin: -6px -12px; border-radius: 8px; width: fit-content; transition: color .2s, background .2s; }
.footer-col a:hover { color: var(--ink); background: #efeee9; }
.footer-bottom { border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 0 40px; font-size: 13px; color: var(--muted-2); }
.footer-bottom a { color: var(--muted-2); text-decoration: none; }
.footer-bottom a:hover { color: var(--green); }
.footer-bottom .links { display: flex; gap: 20px; }

/* ---------- Cookie bar + back to top ---------- */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; display: flex; justify-content: center; padding: 16px; pointer-events: none; }
.cookie-bar.hidden { display: none; }
.cookie-inner { pointer-events: auto; max-width: 720px; width: 100%; background: rgba(255,255,255,.94); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border: 1px solid var(--line-2); border-radius: 18px; box-shadow: 0 24px 60px -24px rgba(21,33,28,.4); padding: 20px 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-inner .txt { flex: 1; min-width: 240px; }
.cookie-inner .t { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.cookie-inner .s { font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.cookie-inner .s a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 11px 18px; font-size: 14px; }
.btn-soft { background: var(--paper-3); color: var(--text-2); }
.btn-soft:hover { background: var(--line); }

.back-top { position: fixed; right: var(--pad); bottom: 24px; z-index: 90; width: 46px; height: 46px; border-radius: 999px; background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); border: 1px solid var(--line-3); box-shadow: 0 10px 28px -10px rgba(21,33,28,.4); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--green); opacity: 0; visibility: hidden; transform: translateY(8px); transition: background .2s, color .2s, transform .25s, box-shadow .2s, opacity .25s, visibility .25s; }
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--green); color: #fff; transform: translateY(-3px); box-shadow: 0 14px 32px -10px rgba(31,77,58,.5); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: none; position: fixed; top: 58px; left: 0; right: 0; z-index: 49; background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid #ececea; box-shadow: 0 14px 30px -16px rgba(21,33,28,.2); padding: 10px var(--pad) 18px; flex-direction: column; gap: 2px; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 13px 14px; border-radius: 10px; font-size: 16px; font-weight: 500; color: var(--ink); text-decoration: none; transition: background .2s; }
  .mobile-menu a:hover { background: var(--paper-3); }
  .mobile-menu .btn { margin-top: 8px; }
  .mobile-menu .btn-primary { color: #fff; }
  .hero, .trust, .panel-split, .contact, .grid-2 { grid-template-columns: 1fr; }
  .hero .photo-portrait { order: 2; max-width: 460px; }
}
@media (max-width: 760px) {
  .grid-3 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 495px) {
  .footer-grid { grid-template-columns: 1fr; gap: 20px; padding-top: 32px; padding-bottom: 24px; }
  .footer-grid > div { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .footer-grid .brand { justify-content: center; }
  .footer-grid .footer p { font-size: 15px; margin: 10px 0 12px; }
  .footer-grid h4 { font-size: 13px; margin-bottom: 8px; }
  .footer-grid .socials { justify-content: center; }
  .footer-grid .footer-col { align-items: center; gap: 4px; font-size: 15px; }
  .footer-grid .footer-col a { margin: 0; width: auto; padding: 4px 10px; }
  .footer-grid .footer-col span { padding: 4px 0; }
}
@media (max-width: 560px) {
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .cta-band, .free-band, .cookie-inner { flex-direction: column; align-items: stretch; }
  .cta-band .btn, .free-band .btn { text-align: center; }
}
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
