/* =========================================================================
   Hunters Licens — main stylesheet
   Palette: charcoal ink + warm cream + ember orange
   Type: Space Grotesk (display) / Manrope (text)
   ========================================================================= */

:root {
    --ink: #15181d;
    --ink-2: #1d222a;
    --ink-3: #2a313b;
    --paper: #f7f3ec;
    --paper-2: #ffffff;
    --ember: #d97642;
    --ember-dark: #bd5f2e;
    --ember-soft: rgba(217, 118, 66, 0.12);
    --sage: #7c8a6f;
    --muted: #8a8578;
    --muted-2: #b7b2a6;
    --line: #e6ded1;
    --line-dark: rgba(255, 255, 255, 0.1);
    --text: #23262b;
    --text-inv: #f4f1ea;

    --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-text: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius: 4px;
    --radius-lg: 14px;
    --wrap: 1200px;
    --shadow: 0 18px 50px -24px rgba(20, 22, 26, 0.35);
    --shadow-sm: 0 8px 24px -14px rgba(20, 22, 26, 0.4);
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-text);
    color: var(--text);
    background: var(--paper);
    line-height: 1.65;
    font-size: 1.02rem;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ember-dark); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--ember); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.hl-icon { width: 24px; height: 24px; }
.ico { width: 17px; height: 17px; flex: none; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    padding: 14px 26px;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--ember); color: #fff; }
.btn--primary:hover { background: var(--ember-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.btn--light { background: transparent; color: var(--text-inv); border-color: rgba(255,255,255,0.28); }
.btn--light:hover { background: rgba(255,255,255,0.08); color: #fff; transform: translateY(-2px); }

/* ---------- Topbar ---------- */
.topbar {
    background: var(--ink);
    color: var(--muted-2);
    font-size: 0.8rem;
    border-bottom: 1px solid var(--line-dark);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar__note { display: inline-flex; align-items: center; gap: 8px; }
.topbar__note .ico { color: var(--ember); }
.topbar__link { color: var(--muted-2); }
.topbar__link:hover { color: #fff; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(21, 24, 29, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-dark);
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 12px 30px -20px rgba(0,0,0,0.6); }
.site-header__inner { display: flex; align-items: center; gap: 28px; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; }
.brand__mark { width: 34px; height: 34px; }
.brand__logo { height: 42px; width: auto; display: block; }
.brand--footer .brand__logo { height: 44px; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; letter-spacing: -0.01em; color: #fff; }
.brand__accent { color: var(--ember); }
.brand:hover .brand__name { color: #fff; }

.nav { margin-left: auto; }
.nav__list { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav__list a {
    display: block;
    padding: 10px 16px;
    color: var(--muted-2);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius);
}
.nav__list a:hover, .nav__list .current-menu-item > a, .nav__list .current_page_item > a { color: #fff; background: rgba(255,255,255,0.06); }
.nav__cta { margin-left: 6px; }

.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: #fff; transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }

/* ---------- Section scaffolding ---------- */
.section { padding: 96px 0; }
.section--ink { background: var(--ink); color: var(--text-inv); }
.section--paper2 { background: var(--paper-2); }
.section--tight { padding: 76px 0; }
.site-main > section[id] { scroll-margin-top: 88px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ember-dark);
    margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--ember); }
.section--ink .eyebrow { color: var(--ember); }

.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.is-center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }
.section--ink .section-head h2 { color: #fff; }
.section--ink .section-head p { color: var(--muted-2); }
.accent { color: var(--ember); }

/* ---------- Reveal (only hidden when JS is active, so content never vanishes) ---------- */
.hl-js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); will-change: opacity, transform; }
.hl-js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .hl-js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: var(--ink);
    color: var(--text-inv);
    overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; }
.hero__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(18,20,24,0.96) 0%, rgba(18,20,24,0.82) 42%, rgba(18,20,24,0.35) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 118px 0 108px; max-width: 660px; }
.hero__tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 15px 7px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    font-size: 0.8rem; letter-spacing: 0.02em;
    color: var(--muted-2);
    margin-bottom: 26px;
}
.hero__tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 0 4px var(--ember-soft); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); color: #fff; }
.hero h1 em { font-style: italic; font-family: var(--font-display); color: var(--ember); font-weight: 400; }
.hero__lead { margin-top: 26px; font-size: 1.18rem; color: var(--muted-2); max-width: 560px; }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { margin-top: 56px; display: flex; flex-wrap: wrap; gap: 40px; }
.hero__stat .n { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; }
.hero__stat .l { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--muted-2); text-transform: uppercase; }

/* ---------- Marquee / trust strip ---------- */
.trust { background: var(--ink-2); border-top: 1px solid var(--line-dark); }
.trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; padding: 24px 0; }
.trust__item { display: flex; align-items: center; gap: 11px; color: var(--muted-2); font-family: var(--font-display); font-weight: 500; font-size: 0.92rem; }
.trust__item .hl-icon { color: var(--ember); width: 22px; height: 22px; }

/* ---------- Services grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
    position: relative;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    overflow: hidden;
}
.card::before {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--ember); transform: scaleY(0); transform-origin: top; transition: transform 0.3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleY(1); }
.card__icon {
    width: 54px; height: 54px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--ember-soft); color: var(--ember-dark);
    margin-bottom: 22px;
}
.card__icon .hl-icon { width: 26px; height: 26px; }
.card h3 { font-size: 1.32rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card__tag { display: inline-block; margin-top: 16px; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember-dark); font-weight: 600; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split__badge {
    position: absolute; left: -22px; bottom: -22px;
    background: var(--ink); color: #fff; padding: 20px 24px; border-radius: 12px;
    box-shadow: var(--shadow); max-width: 220px;
}
.split__badge .n { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--ember); }
.split__badge .l { font-size: 0.86rem; color: var(--muted-2); }
.split__body p { color: var(--muted); margin-top: 16px; }
.split--ink .split__body p { color: var(--muted-2); }

.feature-list { list-style: none; margin-top: 30px; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 16px; }
.feature-list .fi {
    width: 40px; height: 40px; flex: none; border-radius: 10px;
    display: grid; place-items: center; background: var(--ember-soft); color: var(--ember-dark);
}
.feature-list .fi .hl-icon { width: 20px; height: 20px; }
.feature-list h4 { font-size: 1.06rem; margin-bottom: 2px; }
.feature-list p { margin: 0; font-size: 0.95rem; color: var(--muted); }
.split--ink .feature-list h4 { color: #fff; }
.split--ink .feature-list p { color: var(--muted-2); }
.split--ink .feature-list .fi { background: rgba(217,118,66,0.18); color: var(--ember); }

/* ---------- Licence chips ---------- */
.chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.chip {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-2);
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.chip:hover { border-color: var(--ember); transform: translateY(-4px); }
.chip__ico { width: 44px; height: 44px; flex: none; border-radius: 10px; display: grid; place-items: center; background: var(--ink); color: var(--ember); }
.chip__ico .hl-icon { width: 22px; height: 22px; }
.chip h3 { font-size: 1.12rem; margin-bottom: 4px; }
.chip p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Process timeline ---------- */
.timeline { display: grid; gap: 0; max-width: 860px; margin: 0 auto; }
.step { display: grid; grid-template-columns: 92px 1fr; gap: 28px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.section--ink .step { border-color: var(--line-dark); }
.step__num {
    font-family: var(--font-display); font-weight: 700; font-size: 2.2rem;
    color: var(--ember); line-height: 1;
    position: relative;
}
.step__phase { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.section--ink .step h3 { color: #fff; }
.step > div > p { color: var(--muted); }
.section--ink .step > div > p { color: var(--muted-2); }
.step__items { list-style: none; margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.step__items li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: var(--muted); }
.section--ink .step__items li { color: var(--muted-2); }
.step__items .hl-icon { width: 17px; height: 17px; color: var(--ember); flex: none; margin-top: 3px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%); color: #fff; text-align: center; padding: 84px 0; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; }
.cta-band p { color: var(--muted-2); max-width: 540px; margin: 16px auto 32px; }
.cta-band .btn--primary { padding: 16px 34px; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--ink); color: #fff; padding: 92px 0 82px; position: relative; }
.page-hero::after { content:""; position:absolute; left:0; right:0; bottom:0; height:1px; background: var(--line-dark); }
.page-hero .eyebrow { color: var(--ember); }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); color: #fff; max-width: 780px; }
.page-hero p { color: var(--muted-2); max-width: 620px; margin-top: 20px; font-size: 1.12rem; }
.page-hero p.disclaimer-note { font-size: 0.92rem; margin-top: 16px; padding-left: 14px; border-left: 2px solid var(--ember); }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team__card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.team__card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team__avatar { width: 66px; height: 66px; border-radius: 50%; background: var(--ink); color: var(--ember); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin-bottom: 18px; }
.team__card h3 { font-size: 1.2rem; }
.team__role { color: var(--ember-dark); font-weight: 600; font-size: 0.88rem; margin: 4px 0 12px; }
.team__card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .n { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: var(--ember); }
.stat .l { color: var(--muted-2); font-size: 0.92rem; letter-spacing: 0.03em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.form-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: 1.8rem; }
.form-card > p { color: var(--muted); margin: 8px 0 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: 0.88rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
    width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius);
    font-family: var(--font-text); font-size: 0.98rem; background: var(--paper); color: var(--text);
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ember); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }

.contact-aside { display: grid; gap: 16px; }
.info-card { display: flex; gap: 16px; padding: 22px 24px; background: var(--ink); color: #fff; border-radius: var(--radius-lg); }
.info-card .hl-icon { color: var(--ember); width: 24px; height: 24px; flex: none; }
.info-card h4 { font-size: 1rem; margin-bottom: 3px; color:#fff; }
.info-card p, .info-card a { color: var(--muted-2); font-size: 0.95rem; }
.info-card a:hover { color: #fff; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-2); overflow: hidden; }
.faq__q {
    width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
    padding: 22px 24px; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__q::after { content: "+"; font-size: 1.5rem; color: var(--ember); transition: transform 0.3s var(--ease); line-height: 1; }
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: var(--muted); }
.faq__item.is-open .faq__a { max-height: 320px; }

/* ---------- Policy pages ---------- */
.policy { padding: 70px 0 96px; background: var(--paper); }
.policy__wrap { max-width: 800px; margin: 0 auto; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 52px 56px; box-shadow: var(--shadow-sm); }
.policy__wrap h2 { font-size: 1.5rem; margin: 34px 0 12px; }
.policy__wrap h2:first-child { margin-top: 0; }
.policy__wrap p, .policy__wrap li { color: var(--text); }
.policy__wrap p { margin-bottom: 14px; }
.policy__wrap ul { margin: 0 0 16px 20px; }
.policy__wrap li { margin-bottom: 6px; }
.policy__updated { color: var(--muted); font-size: 0.9rem; margin-top: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--muted-2); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid var(--line-dark); }
.footer-brand p { margin-top: 16px; font-size: 0.95rem; max-width: 320px; }
.brand--footer { margin-bottom: 4px; }
.footer-col h4 { color: #fff; font-size: 0.98rem; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--muted-2); font-size: 0.94rem; }
.footer-col a:hover { color: var(--ember); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.94rem; margin-bottom: 12px; }
.footer-contact .ico { color: var(--ember); margin-top: 3px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 24px; font-size: 0.85rem; }
.footer-legal { display: flex; gap: 20px; align-items: center; }
.footer-legal a { color: var(--muted-2); }
.footer-legal a:hover { color: var(--ember); }
.footer-legal__btn { background: none; border: 0; padding: 0; cursor: pointer; color: var(--muted-2); font: inherit; font-size: 0.85rem; }
.footer-legal__btn:hover { color: var(--ember); }
.footer-legal-line { display: block; margin-top: 6px; color: var(--muted-2); }
.footer-legal-line a { color: var(--muted-2); text-decoration: underline; }
.footer-legal-line a:hover { color: var(--ember); }

/* ---------- Policy tables + inline cookie trigger ---------- */
.policy__table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: 0.95rem; }
.policy__table th, .policy__table td { text-align: left; vertical-align: top; padding: 12px 14px; border: 1px solid var(--line); }
.policy__table th { background: var(--paper); font-family: var(--font-display); color: var(--ink); }
.policy__table td:last-child { white-space: nowrap; }
.link-like { background: none; border: 0; padding: 0; margin: 0; font: inherit; color: var(--ember-dark); cursor: pointer; text-decoration: underline; }
.link-like:hover { color: var(--ember); }

/* ---------- Cookie consent ---------- */
.hl-consent { display: none; }
.hl-consent.is-visible { display: block; }
.hl-consent__banner {
    position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 1000;
    max-width: 560px; margin-left: auto;
    background: var(--paper-2); color: var(--text);
    border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); padding: 24px 26px;
}
.hl-consent.is-modal .hl-consent__banner { display: none; }
.hl-consent__title { font-size: 1.2rem; margin-bottom: 8px; }
.hl-consent__text { font-size: 0.94rem; color: var(--text); margin-bottom: 18px; }
.hl-consent__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.hl-consent__actions .btn { padding: 11px 20px; font-size: 0.85rem; }

.hl-consent__modal { display: none; position: fixed; inset: 0; z-index: 1001; align-items: center; justify-content: center; padding: 24px; }
.hl-consent.is-modal .hl-consent__modal { display: flex; }
.hl-consent__overlay { position: absolute; inset: 0; background: rgba(20, 22, 26, 0.55); }
.hl-consent__modal-inner {
    position: relative; z-index: 1; width: min(560px, 100%);
    max-height: 88vh; overflow-y: auto;
    background: var(--paper-2); border-radius: var(--radius-lg);
    box-shadow: var(--shadow); padding: 28px 30px;
}
.hl-consent__modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hl-consent__modal-head h2 { font-size: 1.35rem; }
.hl-consent__close { background: none; border: 0; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--muted); }
.hl-consent__close:hover { color: var(--ink); }
.hl-consent__cats { display: grid; gap: 4px; margin-bottom: 22px; }
.hl-consent__cat { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); }
.hl-consent__cat:last-child { border-bottom: 0; }
.hl-consent__cat-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hl-consent__cat-name { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.hl-consent__cat-desc { display: block; margin-top: 4px; font-size: 0.9rem; color: var(--muted); }
.hl-consent__cat input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--ember); flex: none; cursor: pointer; }
.hl-consent__cat input[disabled] { cursor: not-allowed; opacity: 0.6; }
.hl-consent__actions--modal { justify-content: space-between; }

/* ---------- Language switcher ---------- */
.lang-switch { position: relative; }
.lang-switch__toggle {
    display: inline-flex; align-items: center; gap: 7px;
    background: transparent; border: 1.5px solid var(--line); color: var(--ink);
    font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
    padding: 9px 12px; border-radius: var(--radius); cursor: pointer;
    transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-switch__toggle:hover { border-color: var(--ink); }
.lang-switch__toggle .ico { color: var(--ember); }
.lang-switch__current { color: rgba(255, 255, 255, 1); }
.lang-switch__menu {
    position: absolute; top: calc(100% + 8px); right: 0; z-index: 80;
    min-width: 190px; list-style: none; margin: 0; padding: 6px;
    background: var(--paper-2); border: 1px solid var(--line);
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.lang-switch.is-open .lang-switch__menu { opacity: 1; visibility: visible; transform: none; }
.lang-switch__menu a {
    display: flex; align-items: baseline; gap: 10px;
    padding: 9px 12px; border-radius: var(--radius); color: var(--text); font-size: 0.92rem;
}
.lang-switch__menu a:hover { background: var(--ember-soft); color: var(--ink); }
.lang-switch__menu a.is-active { background: var(--ember-soft); color: var(--ink); font-weight: 600; }
.lang-switch__code { font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; color: var(--muted); min-width: 24px; }
.lang-switch__menu a.is-active .lang-switch__code { color: var(--ember-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .section { padding: 84px 0; }
    .section--tight { padding: 64px 0; }
    .section-head { margin-bottom: 42px; }
    .cards, .chips, .team { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 44px; }
    .split__media { order: -1; }
    .split__media img { max-height: 420px; width: 100%; object-fit: cover; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
    .hero__inner { padding: 96px 0 84px; }
}

@media (max-width: 720px) {
    .section { padding: 60px 0; }
    .section--tight { padding: 52px 0; }
    .section-head { margin-bottom: 34px; }
    .page-hero { padding: 64px 0 52px; }
    .cta-band { padding: 64px 0; }
    .hero__inner { padding: 72px 0 64px; }
    .hero__stats { gap: 26px; margin-top: 40px; }
    .form-card { padding: 28px 22px; }
    .nav__cta { display: none; }
    .nav {
        position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
        background: var(--ink-2); margin: 0; padding: 92px 26px 26px;
        transform: translateX(100%); transition: transform 0.32s var(--ease);
        border-left: 1px solid var(--line-dark); z-index: 90;
    }
    body.nav-open .nav { transform: none; }
    .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
    .nav__list a { padding: 14px 16px; font-size: 1.05rem; }
    .nav-toggle { display: flex; margin-left: auto; z-index: 95; }
    body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .cards, .chips, .team, .field-row, .step__items { grid-template-columns: 1fr; }
    .step { grid-template-columns: 60px 1fr; gap: 18px; }
    .footer-grid { grid-template-columns: 1fr; }
    .topbar__note { display: none; }
    .topbar__inner { justify-content: center; }
    .policy__wrap { padding: 32px 22px; }
    .policy__table, .policy__table thead, .policy__table tbody, .policy__table tr, .policy__table td { display: block; }
    .policy__table thead { display: none; }
    .policy__table td { border: 0; border-bottom: 1px solid var(--line); padding: 8px 0; white-space: normal !important; }
    .policy__table tr { padding: 12px 0; border-bottom: 1px solid var(--line); }
    .hl-consent__banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
    .hl-consent__actions .btn { flex: 1 1 auto; justify-content: center; }
    .split__badge { position: static; margin-top: 16px; max-width: none; }
    .wrap { padding: 0 18px; }
    .hero h1 { font-size: clamp(2.3rem, 8vw, 3rem); }
}
