/* ===========================================================
   KL CONSULT PLT — styles v4.1 "Warm editorial, navy"
   Display: Fraunces (serif) · Body: Hanken Grotesk
   Paper/ivory canvas · brand navy #13294b · brass-gold accents
   (green appears only in success indicators via --ok)
   Light + dark themes via [data-theme] custom properties
   =========================================================== */

:root,
:root[data-theme="light"] {
  /* canvas */
  --bg:      #f7f2e9;
  --bg-alt:  #efe7d8;
  --card:    #fffcf5;
  --line:    #ddd3bf;
  --line-soft: #e8e0cf;

  /* text */
  --ink:        #2b3242;
  --ink-strong: #141f38;
  --muted:      #5f6a7d;

  /* brand */
  --brand:    #13294b;
  --brand-2:  #24507f;
  --brand-3:  #3a6ea5;
  --gold:     #a87e2f;
  --gold-2:   #c8a24e;
  --gold-soft: rgba(168,126,47,.12);
  --brand-soft: rgba(19,41,75,.08);

  /* footer / dark bands stay deep navy in both themes */
  --band:      #101f3a;
  --band-2:    #0b1730;
  --band-ink:  #ece5d0;
  --band-muted:#93a2bd;

  /* buttons */
  --btn-bg:    var(--brand);
  --btn-ink:   #f7f2e6;
  --btn-hover: #0d1e38;

  --ok:  #2d6a4e;
  --err: #a0392c;

  --font-display: "Fraunces", Georgia, "Times New Roman", "Noto Serif SC", "Songti SC", SimSun, serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;

  --shadow-sm: 0 1px 2px rgba(20,31,56,.05), 0 2px 8px rgba(20,31,56,.05);
  --shadow-md: 0 10px 30px rgba(20,31,56,.10);
  --shadow-lg: 0 24px 60px rgba(20,31,56,.16);
  --radius: 14px;
  --maxw: 1180px;

  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg:      #0e1626;
  --bg-alt:  #0a101c;
  --card:    #16223a;
  --line:    #2b3a55;
  --line-soft: #223048;

  --ink:        #d7d5cb;
  --ink-strong: #f1eee2;
  --muted:      #939cae;

  --brand:    #7ba7d9;
  --brand-2:  #92b9e4;
  --brand-3:  #a9cbee;
  --gold:     #cfa757;
  --gold-2:   #dcb96f;
  --gold-soft: rgba(207,167,87,.14);
  --brand-soft: rgba(123,167,217,.12);

  --band:      #0a101c;
  --band-2:    #070b14;
  --band-ink:  #ece5d0;
  --band-muted:#93a2bd;

  --btn-bg:    #cfa757;
  --btn-ink:   #131c30;
  --btn-hover: #dcb96f;

  --ok:  #6db38f;
  --err: #d47c6c;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.25);
  --shadow-md: 0 10px 30px rgba(0,0,0,.4);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.5);

  color-scheme: dark;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body); color: var(--ink); background: var(--bg);
  line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
  transition: background .25s ease, color .25s ease;
}
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold); }
::selection { background: var(--gold-2); color: #141f38; }

h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 600; line-height: 1.12;
  color: var(--ink-strong); letter-spacing: -.01em;
}
h1 em, h2 em, .accent-em {
  font-style: italic; font-weight: 500; color: var(--gold);
}
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* eyebrow: small caps with brass rule */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  text-transform: uppercase; letter-spacing: .22em; font-size: .74rem;
  font-weight: 700; color: var(--gold); margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: var(--gold); opacity: .7; }
.eyebrow.center::after { content: ""; width: 2.2rem; height: 1px; background: var(--gold); opacity: .7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: .9rem 1.7rem; border-radius: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem; cursor: pointer;
  border: 1.5px solid transparent; letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s, border-color .15s, color .15s;
}
.btn-primary { background: var(--btn-bg); color: var(--btn-ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--btn-hover); color: var(--btn-ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border-color: var(--line); color: var(--ink-strong); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; text-align: center; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
/* buttons sitting on the deep-navy band */
.on-band .btn-ghost { border-color: rgba(236,229,208,.35); color: var(--band-ink); }
.on-band .btn-ghost:hover { border-color: var(--gold-2); color: var(--gold-2); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 84px; }
.brand { display: flex; align-items: center; gap: .8rem; min-width: 0; }
.brand-logo {
  width: 52px; height: 52px; object-fit: contain; background: #fff;
  border-radius: 50%; padding: 6px; flex: none;
  box-shadow: 0 0 0 1.5px var(--gold-2), var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 650; color: var(--ink-strong); font-size: 1.32rem; letter-spacing: 0; white-space: nowrap; }
.brand-name span { color: var(--gold); font-style: italic; font-weight: 500; }
.brand-tag { font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .28rem; }

.nav { display: flex; align-items: center; gap: .9rem; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 1.35rem; }
.nav-list a { color: var(--ink); font-weight: 600; font-size: .93rem; }
.nav-list a:hover { color: var(--gold); }
.nav-list a[aria-current="page"] { color: var(--gold); }
.nav-cta {
  background: var(--btn-bg); color: var(--btn-ink) !important; padding: .62rem 1.25rem;
  border-radius: 9px; font-weight: 700; box-shadow: var(--shadow-sm);
}
.nav-cta:hover { background: var(--btn-hover); transform: translateY(-1px); }

/* theme + language controls */
.nav-controls { display: flex; align-items: center; gap: .55rem; }
.lang-toggle, .theme-toggle {
  display: inline-flex; align-items: center; gap: .1rem; background: transparent;
  border: 1px solid var(--line); border-radius: 9px; cursor: pointer; color: var(--ink);
  font: 700 .78rem var(--font-body); padding: .5rem .6rem; letter-spacing: .04em;
  transition: border-color .15s, color .15s, background .15s;
}
.lang-toggle:hover, .theme-toggle:hover { border-color: var(--gold); }
.lang-opt { padding: 0 .22rem; color: var(--muted); }
.lang-opt.active { color: var(--gold); }
.lang-sep { color: var(--line); }
.theme-toggle svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .ic-sun { display: none; }
.theme-toggle .ic-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .ic-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .ic-moon { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink-strong); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 420px at 88% 0%, var(--gold-soft), transparent 65%),
    radial-gradient(640px 480px at 0% 100%, var(--brand-soft), transparent 60%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 3rem; padding: 5.2rem 24px 5.6rem; }
.pill {
  display: inline-flex; align-items: center; gap: .55rem; background: var(--card);
  border: 1px solid var(--line); color: var(--ink); font-weight: 600; font-size: .82rem;
  padding: .42rem 1rem; border-radius: 999px; margin-bottom: 1.6rem; box-shadow: var(--shadow-sm);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); }
.hero-text h1 { font-size: clamp(2.7rem, 5.4vw, 4.4rem); font-weight: 620; margin: 0 0 1.3rem; }
.lead { font-size: 1.16rem; color: var(--muted); max-width: 46ch; }
.hero-actions { display: flex; gap: .9rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-trust { list-style: none; display: flex; gap: 0; margin-top: 2.9rem; flex-wrap: wrap; }
.hero-trust li { display: flex; flex-direction: column; padding: 0 2rem; border-left: 1px solid var(--line); }
.hero-trust li:first-child { padding-left: 0; border-left: 0; }
.hero-trust strong { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--ink-strong); line-height: 1; }
.hero-trust span { font-size: .84rem; color: var(--muted); margin-top: .35rem; }

/* hero art: ledger / engagement card */
.hero-art { position: relative; display: flex; justify-content: center; align-items: center; min-height: 420px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.ledger {
  position: relative; width: min(440px, 96%);
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 1.6rem 1.7rem; display: grid; gap: 1.05rem;
  animation: float 8s ease-in-out infinite;
}
.ledger::before { content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); border-radius: 0 0 4px 4px; }
.ledger-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line-soft); }
.ledger-title { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 620; font-size: 1.02rem; color: var(--ink-strong); }
.ledger-logo { width: 26px; height: 26px; object-fit: contain; background: #fff; border-radius: 50%; padding: 2px; box-shadow: 0 0 0 1px var(--gold-2); }
.ledger-badge { display: inline-flex; align-items: center; gap: .4rem; color: var(--ok); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ledger-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.ledger-rows { list-style: none; display: grid; gap: .68rem; }
.ledger-rows li { display: flex; align-items: baseline; gap: .6rem; font-size: .93rem; color: var(--ink); }
.ledger-rows .li-label { flex: none; font-weight: 600; }
.ledger-rows .li-dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); }
.ledger-rows .li-val { flex: none; font-family: var(--font-display); font-weight: 620; color: var(--ink-strong); }
.ledger-rows .li-val.ok { color: var(--ok); font-family: var(--font-body); font-weight: 800; font-size: .8rem; letter-spacing: .06em; }
.ledger-chart { border: 1px solid var(--line-soft); background: var(--bg); border-radius: 12px; padding: .5rem; }
.ledger-chart svg { width: 100%; height: 92px; display: block; }
.ledger-foot { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: var(--muted); }
.ledger-seal {
  font-family: var(--font-display); font-style: italic; font-weight: 600; color: var(--gold);
  border: 1.5px solid var(--gold-2); border-radius: 999px; padding: .2rem .8rem;
  transform: rotate(-4deg); letter-spacing: .04em;
}
.chip {
  position: absolute; display: inline-flex; align-items: center; gap: .5rem;
  background: var(--card); border: 1px solid var(--line); border-radius: 11px;
  padding: .6rem .85rem; font-size: .84rem; font-weight: 700; color: var(--ink-strong);
  box-shadow: var(--shadow-md); white-space: nowrap; z-index: 2;
}
.chip .ic { width: 17px; height: 17px; fill: none; stroke: var(--gold); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.chip-1 { top: 26%; right: -5%; animation: float 5.6s ease-in-out infinite .3s; }
.chip-2 { top: 62%; left: -7%; animation: float 6.4s ease-in-out infinite .7s; }

/* staggered hero load */
@keyframes riseIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-text .pill, .hero-text h1, .hero-text .lead, .hero-actions, .hero-trust {
  opacity: 0; animation: riseIn .65s cubic-bezier(.22,.7,.25,1) forwards;
}
.hero-text .pill { animation-delay: .05s; }
.hero-text h1 { animation-delay: .14s; }
.hero-text .lead { animation-delay: .26s; }
.hero-actions { animation-delay: .38s; }
.hero-trust { animation-delay: .5s; }
.hero-art { opacity: 0; animation: riseIn .8s cubic-bezier(.22,.7,.25,1) .45s forwards; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(620px 360px at 90% 0%, var(--gold-soft), transparent 65%),
    radial-gradient(560px 400px at 4% 110%, var(--brand-soft), transparent 60%);
}
.page-hero .container { position: relative; }
.page-head { text-align: center; max-width: 700px; margin: 0 auto; padding: 4.2rem 0 4.4rem; }
.page-head h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); font-weight: 620; }
.page-head p { color: var(--muted); margin-top: 1rem; font-size: 1.12rem; }
.page-head .eyebrow { justify-content: center; }
.page-head .hero-actions { justify-content: center; }

/* ---------- Sections ---------- */
.section { padding: 5.6rem 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { text-align: center; max-width: 690px; margin: 0 auto 3.2rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 620; }
.section-sub { color: var(--muted); margin-top: .9rem; font-size: 1.06rem; }
.section-cta { text-align: center; margin-top: 2.8rem; }
.grid { display: grid; gap: 1.4rem; }

/* ---------- Cards ---------- */
.services-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-2); }
.card-icon {
  width: 54px; height: 54px; display: grid; place-items: center; border-radius: 12px;
  background: var(--brand-soft); margin-bottom: 1.2rem;
}
.card-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--brand); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.28rem; margin-bottom: .5rem; font-weight: 620; }
.card p { color: var(--muted); font-size: .97rem; }
.card-feature { background: linear-gradient(170deg, var(--band), var(--band-2)); border-color: transparent; box-shadow: var(--shadow-md); }
.card-feature h3 { color: var(--band-ink); }
.card-feature p { color: var(--band-muted); }
.card-feature .card-icon { background: rgba(236,229,208,.1); }
.card-feature .card-icon svg { stroke: var(--gold-2); }
.card-badge {
  position: absolute; top: 1.3rem; right: 1.3rem; background: var(--gold); color: #fffcf5;
  font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: .24rem .62rem; border-radius: 999px;
}
.card-alliance { border-style: dashed; border-color: var(--gold-2); }
.partner-tag {
  display: inline-block; font-size: .66rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: var(--gold); background: var(--gold-soft);
  border: 1px solid var(--gold-2); padding: .22rem .62rem; border-radius: 999px; margin-bottom: 1rem;
}
.card-link { display: inline-block; margin-top: 1rem; font-weight: 700; font-size: .92rem; color: var(--brand); }
.card-link:hover { color: var(--gold); }
.services-note { text-align: center; max-width: 680px; margin: 2.6rem auto 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* service teaser chips (home) */
.svc-teaser { list-style: none; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; max-width: 780px; margin: 2.6rem auto 0; }
.svc-teaser li {
  display: inline-flex; align-items: center; gap: .55rem; background: var(--card);
  border: 1px solid var(--line); border-radius: 999px; padding: .62rem 1.2rem;
  font-weight: 600; font-size: .95rem; color: var(--ink); box-shadow: var(--shadow-sm);
}
.svc-teaser li span { font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); background: var(--gold-soft); padding: .18rem .5rem; border-radius: 6px; }

/* ---------- Steps ---------- */
.steps-grid { grid-template-columns: repeat(3, 1fr); }
.step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.1rem 1.8rem; box-shadow: var(--shadow-sm); }
.step-num {
  font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 2.6rem;
  color: var(--gold); line-height: 1; margin-bottom: .9rem;
}
.step h3 { font-size: 1.24rem; margin-bottom: .45rem; font-weight: 620; }
.step p { color: var(--muted); font-size: .97rem; }

/* ---------- About ---------- */
.about-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3.4rem; align-items: center; }
.about-art { position: relative; display: flex; justify-content: center; align-items: center; min-height: 280px; }
.about-frame {
  position: relative; padding: 2.4rem; border: 1px solid var(--line); border-radius: 50%;
  background: var(--card); box-shadow: var(--shadow-md);
}
.about-frame::before { content: ""; position: absolute; inset: 10px; border: 1.5px dashed var(--gold-2); border-radius: 50%; opacity: .7; }
.about-logo { position: relative; width: min(220px, 60vw); border-radius: 50%; }
.about-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 1.1rem; font-weight: 620; }
.about-text p { color: var(--muted); margin-bottom: 1rem; font-size: 1.05rem; }
.about-points { list-style: none; display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.about-points li { background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: .48rem 1.15rem; font-weight: 600; font-size: .9rem; color: var(--ink); }
.about-points li::before { content: "✓ "; color: var(--gold); font-weight: 800; }
.about-text .btn { margin-top: 1.7rem; }

/* ---------- Creds ---------- */
.creds { padding: 2.6rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.creds-label { text-align: center; text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; font-weight: 700; color: var(--muted); margin-bottom: 1.3rem; }
.creds-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 3rem; }
.creds-list li { font-family: var(--font-display); font-weight: 620; font-size: 1.35rem; color: var(--ink-strong); opacity: .55; transition: opacity .15s, color .15s; }
.creds-list li:hover { opacity: 1; color: var(--gold); }
.creds-note { max-width: 720px; margin: 1.5rem auto 0; text-align: center; color: var(--muted); font-size: .95rem; line-height: 1.65; }
.creds-note strong { color: var(--ink-strong); font-weight: 700; }

/* ---------- News ---------- */
.news-grid { grid-template-columns: repeat(3, 1fr); }
.news-loading, .news-empty { color: var(--muted); grid-column: 1 / -1; text-align: center; }
.news-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .6rem; transition: transform .18s ease, box-shadow .18s ease, border-color .18s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-2); }
.news-date { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.news-tag { align-self: flex-start; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--gold); background: var(--gold-soft); border: 1px solid var(--gold-2); padding: .2rem .6rem; border-radius: 999px; }
.news-card h3 { font-size: 1.16rem; font-weight: 620; }
.news-card p { color: var(--muted); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(170deg, var(--band), var(--band-2)); padding: 4.4rem 0; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 85% 20%, rgba(207,167,87,.14), transparent 60%); }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-copy { max-width: 640px; }
.cta-copy h2 { margin: .2rem 0 .5rem; color: var(--band-ink); font-weight: 620; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta-copy p { color: var(--band-muted); font-size: 1.06rem; }
.cta-band .eyebrow { color: var(--gold-2); }
.cta-band .eyebrow::before { background: var(--gold-2); }
.cta-band .btn-primary { background: var(--gold); color: #141f38; }
.cta-band .btn-primary:hover { background: var(--gold-2); }

/* ---------- Why grid / promise ---------- */
.why-grid { grid-template-columns: repeat(4, 1fr); }
.promise-grid { grid-template-columns: repeat(4, 1fr); }
.promise-card { text-align: center; padding: 1.7rem 1.3rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.promise-card .p-ic { width: 46px; height: 46px; margin: 0 auto .9rem; border-radius: 12px; display: grid; place-items: center; background: var(--brand-soft); }
.promise-card .p-ic svg { width: 23px; height: 23px; fill: none; stroke: var(--brand); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.promise-card h3 { font-size: 1.02rem; margin-bottom: .35rem; font-weight: 620; }
.promise-card p { font-size: .87rem; color: var(--muted); line-height: 1.55; }

/* ---------- Forms ---------- */
.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-md); display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: .35rem; }
.contact-form label > span, .field-label { font-weight: 700; font-size: .9rem; color: var(--ink-strong); }
.contact-form input, .contact-form textarea, .contact-form select, .tool-form input, .tool-form select {
  width: 100%; padding: .82rem .95rem; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: var(--bg); transition: border-color .15s, box-shadow .15s;
}
.contact-form select, .tool-form select { cursor: pointer; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus,
.tool-form input:focus, .tool-form select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-note { font-size: .88rem; color: var(--muted); text-align: center; margin-top: .2rem; }
.form-status { border-radius: 10px; padding: .85rem 1rem; font-size: .92rem; font-weight: 600; line-height: 1.45; }
.form-status.ok { background: rgba(45,106,78,.12); color: var(--ok); border: 1px solid rgba(45,106,78,.35); }
.form-status.err { background: rgba(160,57,44,.1); color: var(--err); border: 1px solid rgba(160,57,44,.3); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.svc-checks { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: -.3rem; }
.svc-check { display: flex; align-items: center; gap: .55rem; padding: .65rem .8rem; border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; font-size: .9rem; color: var(--ink); transition: border-color .15s ease, background .15s ease; }
.svc-check:hover { border-color: var(--gold); background: var(--gold-soft); }
.svc-check input { accent-color: var(--gold); width: auto; flex: none; }

/* ---------- Contact page ---------- */
.contact-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 0 0 2.6rem; }
.action-card {
  display: flex; align-items: center; gap: .9rem; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem;
  color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .15s ease, border-color .15s, box-shadow .15s;
}
.action-card:hover { transform: translateY(-3px); border-color: var(--gold-2); box-shadow: var(--shadow-md); color: var(--ink-strong); }
.action-ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--brand); flex: none; }
.action-card.wa .action-ic { background: #25d366; }
.action-ic svg { width: 23px; height: 23px; }
.action-ic .ic-stroke { fill: none; stroke: #fffcf5; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.action-ic .ic-fill { fill: #fffcf5; }
.action-meta { display: flex; flex-direction: column; min-width: 0; }
.action-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 800; }
.action-val { color: var(--ink-strong); font-weight: 700; font-size: 1rem; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.address-card { display: flex; gap: 1rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.4rem; margin-bottom: 1.4rem; box-shadow: var(--shadow-sm); }
.address-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); flex: none; }
.address-ic svg { width: 24px; height: 24px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.address-text { color: var(--ink); font-size: 1.02rem; line-height: 1.5; margin: .3rem 0 .6rem; }
.dir-link { color: var(--brand); font-weight: 700; font-size: .95rem; }
.dir-link:hover { color: var(--gold); }
.contact-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); font-weight: 800; }
.contact-list { list-style: none; margin-top: 1.6rem; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; flex-direction: column; gap: .15rem; }
.contact-list a, .contact-list span:not(.contact-label) { color: var(--ink-strong); font-size: 1.05rem; font-weight: 600; }
.contact-list a:hover { color: var(--gold); }

/* labelled map */
.map-section { line-height: 0; border-top: 1px solid var(--line); }
.map-wrap { position: relative; }
.map-embed { width: 100%; height: 440px; border: 0; display: block; filter: saturate(.9); }
:root[data-theme="dark"] .map-embed { filter: saturate(.8) brightness(.9); }
.map-label {
  position: absolute; top: 22px; left: 22px; z-index: 2; max-width: 320px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; box-shadow: var(--shadow-lg); line-height: 1.45;
}
.map-label strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink-strong); margin-bottom: .25rem; }
.map-label span { display: block; font-size: .9rem; color: var(--muted); margin-bottom: .6rem; }
.map-label a { font-weight: 700; font-size: .92rem; }

/* ---------- Pricing ---------- */
.remote-banner { max-width: 940px; margin: 0 auto 2.4rem; background: var(--bg-alt); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 12px; padding: 1rem 1.3rem; color: var(--ink); font-size: .97rem; line-height: 1.55; }
.remote-banner strong { color: var(--ink-strong); }
.price-section-title { max-width: 940px; margin: 2.8rem auto 1.2rem; font-size: 1.55rem; font-weight: 620; }
.price-section-title:first-of-type { margin-top: 0; }
.price-section-title .pst-sub { display: block; font-family: var(--font-body); font-weight: 700; font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold); margin-top: .35rem; }
.ptable-wrap { max-width: 940px; margin: 0 auto; overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.ptable { width: 100%; border-collapse: collapse; min-width: 720px; background: var(--card); }
.ptable thead th { background: linear-gradient(170deg, var(--band), var(--band-2)); color: var(--band-ink); font-family: var(--font-display); font-weight: 620; font-size: 1rem; padding: 1.1rem 1rem; text-align: center; vertical-align: top; }
.ptable thead th span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .72rem; color: var(--band-muted); margin-top: .25rem; }
.ptable thead th.ptable-svc { text-align: left; }
.ptable tbody th { text-align: left; font-weight: 700; font-family: var(--font-body); font-size: .95rem; color: var(--ink-strong); padding: 1rem; border-top: 1px solid var(--line-soft); }
.ptable tbody td { text-align: center; font-family: var(--font-display); font-weight: 620; font-size: 1.05rem; color: var(--ink-strong); padding: 1rem; border-top: 1px solid var(--line-soft); }
.ptable tbody tr:nth-child(even) th, .ptable tbody tr:nth-child(even) td { background: var(--bg-alt); }
.ptable-unit { display: block; font-weight: 600; font-size: .74rem; color: var(--muted); }
.ptable-quote { font-family: var(--font-body) !important; font-size: .88rem !important; font-weight: 700 !important; color: var(--gold) !important; }
.ptable-span { font-family: var(--font-body); font-weight: 500; font-size: .92rem; color: var(--muted); text-align: left !important; }
.ptable-span strong { color: var(--ink-strong); font-weight: 800; }
.tag-mini { display: inline-block; font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); background: var(--gold-soft); border: 1px solid var(--gold-2); padding: .1rem .42rem; border-radius: 999px; margin-left: .4rem; vertical-align: middle; }
.ptable-hint { text-align: center; font-size: .82rem; color: var(--muted); margin-top: .9rem; }
.nr-list { max-width: 940px; margin: 0 auto; list-style: none; display: grid; gap: .8rem; }
.nr-list li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 1.05rem 1.4rem; box-shadow: var(--shadow-sm); transition: border-color .18s ease, transform .18s ease; }
.nr-list li:hover { border-color: var(--gold-2); transform: translateY(-2px); }
.nr-name { font-family: var(--font-display); font-weight: 620; color: var(--ink-strong); font-size: 1.05rem; }
.nr-basis { font-size: .86rem; color: var(--brand); font-weight: 700; background: var(--brand-soft); border: 1px solid var(--line); border-radius: 999px; padding: .32rem .85rem; }
.nr-note { max-width: 940px; margin: 1.3rem auto 0; text-align: center; color: var(--muted); font-size: .92rem; }
.tnc { max-width: 820px; }
.tnc h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); text-align: center; margin-bottom: 1.8rem; font-weight: 620; }
.tnc-list { display: grid; gap: 1.05rem; padding-left: 1.3rem; margin: 0; }
.tnc-list li { color: var(--ink); font-size: .97rem; line-height: 1.65; padding-left: .3rem; }
.tnc-list li::marker { color: var(--gold); font-weight: 700; }
.tnc-list strong { color: var(--ink-strong); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.4rem 0; font-family: var(--font-display); font-weight: 620; font-size: 1.12rem; color: var(--ink-strong); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-body); font-size: 1.5rem; line-height: 1; color: var(--gold); font-weight: 400; flex: none; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { color: var(--gold); }
.faq-answer { padding: 0 0 1.4rem; color: var(--muted); font-size: .98rem; line-height: 1.7; }

/* ---------- Quote page ---------- */
.quote-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.4rem; align-items: start; }
.quote-how h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 620; }
.qsteps { list-style: none; display: grid; gap: 1.4rem; margin-top: 1.8rem; }
.qstep { display: flex; gap: 1.1rem; align-items: flex-start; }
.qstep-num { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 2rem; color: var(--gold); line-height: 1.1; flex: none; min-width: 2.2rem; }
.qstep h3 { font-size: 1.06rem; margin-bottom: .2rem; font-weight: 620; }
.qstep p { color: var(--muted); font-size: .93rem; line-height: 1.55; }

/* ---------- Blog ---------- */
.blog-controls { max-width: 760px; margin: 0 auto 2.6rem; display: grid; gap: 1rem; }
.blog-search { display: flex; gap: .6rem; flex-wrap: wrap; }
.blog-search .btn { flex: none; }
.blog-search input {
  flex: 1; min-width: 160px; padding: .85rem 1.1rem; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--ink); background: var(--card); transition: border-color .15s, box-shadow .15s;
}
.blog-search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.blog-tags { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.blog-tags a { font-size: .78rem; font-weight: 700; letter-spacing: .04em; color: var(--ink); background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: .32rem .85rem; transition: border-color .15s, color .15s; }
.blog-tags a:hover { border-color: var(--gold); color: var(--gold); }
.blog-tags a.active { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
/* language filter */
.blog-langs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; align-items: center; }
.blog-langs-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-right: .2rem; }
.blog-langs a { font-size: .8rem; font-weight: 700; color: var(--ink); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .9rem; background: var(--card); transition: border-color .15s, color .15s, background .15s; }
.blog-langs a:hover { border-color: var(--gold); color: var(--gold); }
.blog-langs a.active { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }

/* draft preview banner */
.draft-banner {
  display: inline-block; margin: 0 auto 1.1rem; padding: .5rem 1.1rem; border-radius: 999px;
  background: rgba(160,57,44,.1); border: 1px solid rgba(160,57,44,.35); color: var(--err);
  font-size: .8rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}

/* share buttons */
.post-share { max-width: 720px; margin: 2.4rem auto 0; display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.post-share-label { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-right: .3rem; }
.share-btn {
  display: inline-flex; align-items: center; gap: .45rem; font-size: .86rem; font-weight: 700;
  color: var(--ink-strong); background: var(--card); border: 1px solid var(--line);
  border-radius: 9px; padding: .5rem .9rem; transition: border-color .15s, transform .15s, color .15s;
}
.share-btn:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold); }
.share-btn svg { width: 16px; height: 16px; fill: currentColor; flex: none; }
.share-btn svg.ic-stroke { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* related posts */
.related { max-width: 720px; margin: 3rem auto 0; }
.related-title { font-size: 1.3rem; font-weight: 620; margin-bottom: 1.2rem; }
.related-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-grid .post-card { padding: 1.2rem; }
.related-grid .post-card h3 { font-size: 1rem; line-height: 1.3; font-weight: 620; }
.related-grid .post-card h3 a { color: var(--ink-strong); }
.related-grid .post-card h3 a:hover { color: var(--gold); }

.blog-grid { grid-template-columns: repeat(3, 1fr); }
.post-card { display: flex; flex-direction: column; gap: .6rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-2); }
.post-card h2, .post-card h3 { font-size: 1.25rem; font-weight: 620; line-height: 1.25; }
.post-card h2 a, .post-card h3 a { color: var(--ink-strong); }
.post-card h2 a:hover, .post-card h3 a:hover { color: var(--gold); }
.post-card p { color: var(--muted); font-size: .95rem; }
.post-meta { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.lang-badge {
  font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-soft); border: 1px solid var(--line);
  padding: .16rem .5rem; border-radius: 999px; white-space: nowrap;
}
.post-more { margin-top: auto; padding-top: .6rem; font-weight: 700; font-size: .9rem; color: var(--brand); }
.post-more:hover { color: var(--gold); }
.blog-empty { text-align: center; color: var(--muted); padding: 3rem 0; }
.pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 3rem; }
.pagination a, .pagination span { min-width: 40px; text-align: center; padding: .5rem .8rem; border: 1px solid var(--line); border-radius: 9px; font-weight: 700; font-size: .9rem; color: var(--ink); background: var(--card); }
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }

/* single post */
.post-hero { padding: 3.8rem 0 2.6rem; }
.post-hero .post-meta { justify-content: center; margin-bottom: 1.2rem; }
.post-hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 620; text-align: center; max-width: 800px; margin: 0 auto; }
.post-body { max-width: 720px; margin: 0 auto; font-size: 1.06rem; line-height: 1.8; }
.post-body > * + * { margin-top: 1.2rem; }
.post-body h2 { font-size: 1.7rem; margin-top: 2.4rem; font-weight: 620; }
.post-body h3 { font-size: 1.3rem; margin-top: 2rem; font-weight: 620; }
.post-body a { text-decoration: underline; text-decoration-color: var(--gold-2); text-underline-offset: 3px; }
.post-body ul, .post-body ol { padding-left: 1.4rem; }
.post-body li + li { margin-top: .4rem; }
.post-body li::marker { color: var(--gold); }
.post-body blockquote { border-left: 3px solid var(--gold); padding: .4rem 0 .4rem 1.2rem; color: var(--muted); font-style: italic; }
.post-body code { font-family: ui-monospace, "Cascadia Mono", Consolas, monospace; font-size: .9em; background: var(--bg-alt); border: 1px solid var(--line-soft); border-radius: 6px; padding: .1em .4em; }
.post-body pre { background: var(--bg-alt); border: 1px solid var(--line-soft); border-radius: 12px; padding: 1.1rem 1.3rem; overflow-x: auto; }
.post-body pre code { background: none; border: 0; padding: 0; }
.post-body img { border-radius: 12px; border: 1px solid var(--line); }
.post-body table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.post-body th, .post-body td { border: 1px solid var(--line); padding: .6rem .8rem; text-align: left; }
.post-body th { background: var(--bg-alt); font-weight: 700; }
.post-body hr { border: 0; border-top: 1px solid var(--line); margin: 2.2rem 0; }
.post-footer { max-width: 720px; margin: 3rem auto 0; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.post-cta { max-width: 720px; margin: 2.6rem auto 0; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.8rem; display: flex; justify-content: space-between; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.post-cta p { font-family: var(--font-display); font-weight: 620; font-size: 1.15rem; color: var(--ink-strong); }

/* ---------- Tools ---------- */
.tools-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; max-width: 1020px; margin: 0 auto; align-items: start; }
.tool-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.9rem; box-shadow: var(--shadow-sm); }
.tool-card > h2 { font-size: 1.45rem; font-weight: 620; margin-bottom: .35rem; }
.tool-desc { color: var(--muted); font-size: .93rem; margin-bottom: 1.3rem; }
.tool-form { display: grid; gap: .9rem; }
.tool-form label { display: grid; gap: .3rem; font-weight: 700; font-size: .88rem; color: var(--ink-strong); }
.tool-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.tool-result { margin-top: 1.2rem; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-alt); padding: 1.2rem 1.3rem; }
.tool-result[hidden] { display: none; }
.tool-result .tr-big { font-family: var(--font-display); font-weight: 620; font-size: 1.9rem; color: var(--ink-strong); line-height: 1.15; }
.tool-result .tr-label { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: .3rem; }
.tool-result .tr-note { font-size: .86rem; color: var(--muted); margin-top: .5rem; line-height: 1.5; }
.tool-result table { width: 100%; border-collapse: collapse; font-size: .9rem; margin-top: .8rem; }
.tool-result td, .tool-result th { padding: .45rem 0; border-top: 1px solid var(--line-soft); text-align: left; }
.tool-result td:last-child, .tool-result th:last-child { text-align: right; font-weight: 700; color: var(--ink-strong); }
.tool-result tr:first-child td, .tool-result tr:first-child th { border-top: 0; }
.tool-result .tr-flag-ok { color: var(--ok); font-weight: 800; }
.tool-result .tr-flag-warn { color: var(--err); font-weight: 800; }
.tool-cta { margin-top: 1rem; }
.tool-disclaimer { font-size: .78rem; color: var(--muted); margin-top: 1.1rem; line-height: 1.5; }
.deadline-list { list-style: none; display: grid; gap: .6rem; margin-top: .8rem; }
.deadline-list li { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; border-top: 1px solid var(--line-soft); padding-top: .6rem; font-size: .92rem; }
.deadline-list li:first-child { border-top: 0; padding-top: 0; }
.deadline-list .dl-date { font-family: var(--font-display); font-weight: 620; color: var(--gold); white-space: nowrap; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37,211,102,.45); transition: transform .15s ease, box-shadow .15s ease; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(37,211,102,.55); }
.wa-float svg { width: 29px; height: 29px; fill: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, var(--band), var(--band-2)); color: var(--band-muted); padding: 3rem 0 2.6rem; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: .6rem; }
.footer-logo { width: 38px; height: 38px; object-fit: contain; background: #fff; border-radius: 50%; padding: 5px; box-shadow: 0 0 0 1.5px var(--gold-2); }
.site-footer .brand-name { color: var(--band-ink); }
.site-footer .brand-name span { color: var(--gold-2); }
.footer-reg { font-size: .86rem; font-weight: 600; color: var(--band-ink); opacity: .85; }
.footer-addr { font-size: .86rem; max-width: 460px; }
.footer-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: var(--band-ink); font-size: .93rem; opacity: .85; }
.footer-nav a:hover { color: var(--gold-2); opacity: 1; }
.footer-copy { font-size: .84rem; opacity: .75; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ledger, .chip, .hero-text .pill, .hero-text h1, .hero-text .lead, .hero-actions, .hero-trust, .hero-art { animation: none; opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services-grid, .news-grid, .steps-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 3.6rem 24px 4rem; gap: 2rem; }
  .hero-text .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-trust li { padding: 0 1.4rem; }
  .hero-art { order: -1; min-height: 340px; }
  .about-inner, .contact-inner, .quote-inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .about-art { order: -1; }
  .about-points { justify-content: center; }
  .about-text { text-align: center; }
  .tools-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-list.open { max-height: 560px; box-shadow: var(--shadow-lg); }
  .nav-list li { width: 100%; text-align: center; }
  .nav-list li a { display: block; padding: 1rem; border-top: 1px solid var(--line-soft); }
  .nav-cta { border-radius: 0 !important; }
  .brand-tag { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .services-grid, .news-grid, .steps-grid, .why-grid, .promise-grid, .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .contact-actions { grid-template-columns: 1fr; }
  .svc-checks { grid-template-columns: 1fr; }
  .tool-row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .map-label { position: static; max-width: none; border-radius: 0; box-shadow: none; border-left: 0; border-right: 0; }
  .map-embed { height: 340px; }
  .hero-trust { gap: 1rem 0; }
  .hero-trust li { padding: 0 1.1rem; }
  .hero-trust strong { font-size: 1.6rem; }
  .chip { font-size: .76rem; padding: .45rem .65rem; }
  .chip-1 { right: 0; top: 20%; }
  .chip-2 { left: 0; top: 64%; }
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 27px; height: 27px; }
}
