/* ============================================================
   W&P ENTERTAX — biuro rachunkowe, Cygów
   Paleta: granat + złoto + biel. Fonty: Fraunces / Figtree / IBM Plex Mono
   ============================================================ */

:root {
  --navy: #0E1E3C;
  --navy-2: #172B57;
  --navy-3: #21396F;
  --gold: #C39A2B;
  --gold-2: #E3C46A;
  --gold-soft: #F6EED3;
  --ink: #172033;
  --muted: #5B6478;
  --line: #DCE1EB;
  --bg: #FFFFFF;
  --bg-2: #F4F6FA;
  --ok: #2E7D4F;
  --err: #B3261E;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --wrap: 1160px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px -24px rgba(14, 30, 60, .35);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-variation-settings: "SOFT" 40, "opsz" 72; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-variation-settings: "SOFT" 40, "opsz" 48; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 6px; z-index: 100; }
.skip-link:focus { left: 8px; }

.wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(14,30,60,.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: 50px; width: auto; display: block; }
.site-footer .brand-logo { height: 56px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--navy);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--gold-2);
  letter-spacing: -.02em;
  position: relative;
}
.brand-mark::after { content: ""; position: absolute; left: 8px; right: 8px; bottom: 6px; height: 2px; background: var(--gold); border-radius: 2px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--navy); letter-spacing: .01em; }
.brand-sub { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-top: 3px; }

.site-nav ul { display: flex; align-items: center; gap: 4px; }
.site-nav a { display: inline-block; padding: 8px 12px; font-weight: 500; font-size: .96rem; color: var(--ink); border-radius: 8px; transition: color .2s, background .2s; }
.site-nav a:hover { color: var(--navy); background: var(--bg-2); }
.site-nav a[aria-current="page"] { color: var(--navy); box-shadow: inset 0 -2px 0 var(--gold); border-radius: 0; }
.site-nav .nav-cta { margin-left: 10px; background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 999px; box-shadow: none; }
.site-nav .nav-cta:hover { background: var(--navy-2); color: #fff; }
.site-nav .nav-cta[aria-current="page"] { border-radius: 999px; box-shadow: 0 0 0 2px var(--gold); color: #fff; }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; width: 44px; height: 44px; padding: 0; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .2s; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 1rem; line-height: 1; border: 1.5px solid transparent; cursor: pointer; transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s; font-family: inherit; }
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-2); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-2); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { border-color: rgba(255,255,255,.35); color: #fff; background: transparent; }
.btn-light:hover { background: rgba(255,255,255,.1); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--gold); }
.section-head.center .eyebrow::after { content: ""; width: 22px; height: 1.5px; background: var(--gold); }
.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 96px; background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.hero h1 { margin: 0 0 22px; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--gold); font-variation-settings: "SOFT" 100, "opsz" 72; }
.hero .lead { max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 22px; font-size: .92rem; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.hero-note svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* Terminarz — karta w hero (element podpisu) */
.ledger {
  position: relative;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 28px 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.ledger::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 39px, rgba(255,255,255,.045) 39px 40px);
  pointer-events: none;
}
.ledger-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; position: relative; }
.ledger-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: #fff; }
.ledger-month { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-2); }
.ledger-rows { position: relative; }
.ledger-row { display: grid; grid-template-columns: 62px 1fr auto; gap: 14px; align-items: center; padding: 10px 10px; margin: 0 -10px; border-radius: 8px; border-bottom: 1px dashed rgba(255,255,255,.14); transition: background .3s; }
.ledger-row:last-child { border-bottom: 0; }
.ledger-day { font-family: var(--font-mono); font-size: 1.35rem; font-weight: 500; color: var(--gold-2); font-variant-numeric: tabular-nums; }
.ledger-day small { font-size: .7rem; color: rgba(255,255,255,.55); margin-left: 2px; }
.ledger-what { font-size: .95rem; color: rgba(255,255,255,.88); line-height: 1.35; }
.ledger-what span { display: block; font-size: .78rem; color: rgba(255,255,255,.55); }
.ledger-tag { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.ledger-row.is-next { background: rgba(227,196,106,.12); }
.ledger-row.is-next .ledger-tag { color: var(--gold-2); }
.ledger-row.is-next .ledger-tag::before { content: "▸ "; }
.ledger-foot { position: relative; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.14); font-size: .86rem; color: rgba(255,255,255,.7); display: flex; gap: 10px; align-items: flex-start; }
.ledger-foot svg { width: 18px; height: 18px; color: var(--gold-2); flex: none; margin-top: 2px; }
.ledger-foot strong { color: #fff; }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 22px 20px; border-right: 1px solid var(--line); display: flex; gap: 14px; align-items: center; min-width: 0; transition: background .2s; }
a.trust-item:hover { background: var(--bg-2); }
.trust-item b { overflow-wrap: anywhere; }
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 26px; height: 26px; color: var(--gold); flex: none; }
.trust-item b { display: block; font-size: .98rem; color: var(--navy); font-weight: 600; line-height: 1.2; }
.trust-item span { font-size: .82rem; color: var(--muted); }
.trust-item .mono { font-size: .82rem; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft); color: var(--navy); display: grid; place-items: center; margin-bottom: 18px; }
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 600; font-size: .92rem; color: var(--navy); }
.card .more svg { width: 16px; height: 16px; transition: transform .2s; }
.card .more:hover svg { transform: translateX(3px); }

/* Service detail blocks (uslugi.html) */
.service { display: grid; grid-template-columns: 300px 1fr; gap: 40px; padding: 44px 0; border-top: 1px solid var(--line); scroll-margin-top: 100px; }
.service:first-of-type { border-top: 0; }
.service h2 { font-size: 1.6rem; }
.service .service-for { margin-top: 10px; font-size: .9rem; color: var(--muted); }
.service ul.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; margin-top: 16px; }
ul.checks li { position: relative; padding-left: 28px; color: var(--ink); }
ul.checks li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold-soft); }
ul.checks li::after { content: ""; position: absolute; left: 5px; top: 10px; width: 6px; height: 9px; border: solid var(--navy); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ---------- Process (real sequence) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 28px 28px 30px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--font-mono); font-size: .8rem; letter-spacing: .12em; color: var(--gold); display: block; margin-bottom: 12px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .98rem; }

/* ---------- Owner / about ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.portrait {
  aspect-ratio: 4 / 5; border-radius: var(--radius); background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
  position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 28px; color: #fff; box-shadow: var(--shadow);
}
.portrait::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(180deg, transparent 0 39px, rgba(255,255,255,.05) 39px 40px); }
.portrait .initials { position: absolute; top: 24px; left: 28px; font-family: var(--font-display); font-size: 5.5rem; line-height: 1; color: rgba(227,196,106,.22); font-weight: 700; }
.portrait .caption { position: relative; }
.portrait .caption b { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; }
.portrait .caption span { font-size: .9rem; color: rgba(255,255,255,.75); }
.portrait .cert { position: relative; margin-top: 14px; display: inline-flex; gap: 8px; align-items: center; background: rgba(227,196,106,.14); border: 1px solid rgba(227,196,106,.4); border-radius: 999px; padding: 6px 12px; font-family: var(--font-mono); font-size: .75rem; color: var(--gold-2); }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.fact { padding: 18px 20px; border-left: 2px solid var(--gold); background: var(--bg-2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.fact b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); font-weight: 600; line-height: 1.1; }
.fact span { font-size: .88rem; color: var(--muted); }

/* ---------- Audience ---------- */
.audience { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.audience .card { padding: 24px; }
.audience h3 { font-size: 1.1rem; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; position: relative; }
.price-card.is-featured { border-color: var(--gold); box-shadow: var(--shadow); }
.price-card .badge { position: absolute; top: -12px; left: 28px; background: var(--gold); color: var(--navy); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.price-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.price-card .who { color: var(--muted); font-size: .92rem; min-height: 44px; }
.price { margin: 18px 0 20px; display: flex; align-items: baseline; gap: 6px; }
.price .from { font-size: .85rem; color: var(--muted); }
.price .amount { font-family: var(--font-mono); font-size: 2.2rem; font-weight: 500; color: var(--navy); font-variant-numeric: tabular-nums; }
.price .per { font-size: .85rem; color: var(--muted); }
.price .amount-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; font-style: italic; color: var(--gold); }
.price-card ul.checks { display: grid; gap: 10px; margin-bottom: 24px; font-size: .95rem; }
.price-card .btn { margin-top: auto; }
.price-note { margin-top: 26px; font-size: .9rem; color: var(--muted); max-width: 760px; }

.addons { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.addons-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 16px 24px; border-top: 1px solid var(--line); align-items: center; }
.addons-row:first-child { border-top: 0; background: var(--bg-2); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.addons-row b { font-weight: 600; color: var(--navy); }
.addons-row span { display: block; font-size: .88rem; color: var(--muted); }
.addons-row .mono { color: var(--navy); white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 44px 20px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--navy); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 8px; top: 50%; width: 10px; height: 10px; border: solid var(--gold); border-width: 0 2px 2px 0; transform: translateY(-70%) rotate(45deg); transition: transform .25s; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { color: var(--muted); padding: 0 0 20px; max-width: 720px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(180deg, transparent 0 39px, rgba(255,255,255,.04) 39px 40px); }
.cta-band .wrap { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; padding-top: 72px; padding-bottom: 72px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.75); }
.cta-band .eyebrow { color: var(--gold-2); }
.cta-band .eyebrow::before { background: var(--gold-2); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.big-phone { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 500; color: #fff; }
.big-phone svg { width: 28px; height: 28px; color: var(--gold-2); }

/* ---------- Page head (subpages) ---------- */
.page-head { padding: 64px 0 40px; background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%); border-bottom: 1px solid var(--line); }
.page-head h1 { margin-bottom: 14px; }
.page-head .lead { max-width: 680px; }
.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 18px; display: flex; gap: 8px; }
.crumbs a:hover { color: var(--navy); }
.crumbs span::before { content: "/"; margin-right: 8px; color: var(--line); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.contact-card::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(180deg, transparent 0 39px, rgba(255,255,255,.045) 39px 40px); pointer-events: none; }
.contact-card > * { position: relative; }
.contact-card .label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 8px; }
.contact-card .big-phone { margin-bottom: 8px; }
.contact-card .note { font-size: .9rem; color: rgba(255,255,255,.7); }
.contact-list { display: grid; gap: 16px; margin-top: 26px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 2px; }
.contact-list b { display: block; color: var(--navy); font-weight: 600; }
.contact-list span { color: var(--muted); font-size: .95rem; }
.contact-list a:hover { text-decoration: underline; }
.regdata { margin-top: 26px; padding: 18px 20px; background: var(--bg-2); border-radius: var(--radius-sm); font-size: .9rem; }
.regdata dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; margin: 0; }
.regdata dt { color: var(--muted); }
.regdata dd { margin: 0; font-family: var(--font-mono); color: var(--navy); }

.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map iframe { width: 100%; height: 380px; border: 0; display: block; }
.map-side { align-self: stretch; min-height: 420px; display: flex; }
.map-side iframe { height: auto; min-height: 420px; flex: 1; }

/* ---------- Prose (privacy) ---------- */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.78); padding: 64px 0 28px; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand-name, .site-footer .brand-mark { color: #fff; }
.site-footer .brand-mark { background: rgba(255,255,255,.08); color: var(--gold-2); }
.site-footer .brand-sub { color: rgba(255,255,255,.55); }
.footer-about { margin-top: 18px; font-size: .95rem; max-width: 340px; }
.footer-h { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; font-weight: 600; }
.footer-links li { margin-bottom: 9px; }
.footer-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-reg { font-family: var(--font-mono); font-size: .82rem; line-height: 1.8; color: rgba(255,255,255,.7); }
.footer-reg b { color: #fff; font-weight: 500; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .84rem; color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-3, .steps, .pricing { grid-template-columns: 1fr 1fr; }
  .audience { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .portrait { max-width: 420px; }
  .service { grid-template-columns: 1fr; gap: 16px; }
  .cta-band .wrap { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px -20px rgba(14,30,60,.35); display: none; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 18px; }
  .site-nav a { display: block; padding: 12px 6px; font-size: 1.05rem; }
  .site-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--gold); padding-left: 12px; }
  .site-nav .nav-cta { margin: 10px 0 0; text-align: center; }
  .site-nav .nav-cta[aria-current="page"] { padding-left: 18px; box-shadow: 0 0 0 2px var(--gold); }
  .nav-toggle { display: flex; }
  .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); }
  .brand-logo { height: 42px; }
  .grid-3, .grid-2, .steps, .pricing, .audience, .facts, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .service ul.checks { grid-template-columns: 1fr; }
  .ledger { padding: 22px 20px 18px; }
  .ledger-row { grid-template-columns: 52px 1fr; }
  .ledger-tag { grid-column: 2; }
  .price-card.is-featured { order: -1; }
  .map iframe { height: 300px; }
}
