/* ── Reset ── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
h1, h2, h3, h4, p, ul, blockquote, figure { margin: 0; padding: 0; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: color .2s ease, border-color .2s ease, background .2s ease; }
img { display: block; max-width: 100%; }
button, input, textarea { font-family: inherit; }
button { cursor: pointer; }
blockquote { quotes: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ── Tokens ──
   Warm cream ground, graphite for dark sections, a single gold accent
   (#C9973E) reserved for CTAs, numerals, icons and brand mark — per the
   LIGHTNING design handoff (Aug 2026 redesign). */
:root {
  --bg: #F7F3EC;
  --surface: #FFFDF9;
  --surface-warm: #EFE6D6;
  --ink: #1B1E2A;
  --ink-soft: rgba(21,24,34,.94);
  --ink-media: #2A2E3C;

  --text: #1F1F1F;
  --text-2: #2B2B2B;
  --text-muted: #58524A;

  --on-dark: #E8E4DA;
  --on-dark-muted: #C3BFB6;
  --on-dark-faint: #8A8578;

  --gold: #C9973E;
  --gold-hover: #D6A94F;
  --gold-ink: #A97B2A;

  --line: rgba(31,31,31,.08);
  --line-soft: rgba(31,31,31,.07);
  --line-strong: rgba(31,31,31,.22);
  --line-dark: rgba(255,255,255,.12);
  --line-dark-soft: rgba(255,255,255,.18);
  --line-gold: rgba(201,151,62,.35);

  --placeholder-bg: #E1D8C6;
  --placeholder-bg-dark: #E7E0D2;
  --logo-tile-bg: rgba(31,31,31,.05);

  --radius-sm: 3px;
  --radius-md: 4px;
  --shadow-lg: 0 24px 60px rgba(20,22,30,.35);

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-script: 'Cormorant Garamond', serif;

  --container: 1300px;
  --pad: clamp(20px, 4vw, 32px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
section { position: relative; }

/* ── Placeholder media (no real photo supplied yet) ── */
.ph {
  background: var(--placeholder-bg);
  background-image: repeating-linear-gradient(135deg, rgba(27,30,42,.08) 0 7px, transparent 7px 14px);
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
}
.ph--dark { background: var(--placeholder-bg-dark); }
.ph__label {
  position: absolute; inset: auto 0 0 0; text-align: center;
  font: 600 9.5px/1.4 var(--font-display); letter-spacing: .06em; text-transform: uppercase;
  color: rgba(27,30,42,.55); background: rgba(255,255,255,.55);
  padding: 5px 6px;
}

/* ── Buttons & links ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .09em;
  padding: 16px 24px; border-radius: var(--radius-sm); border: none; white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-hover); }
.btn-outline { border: 1px solid var(--line-strong); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-ink); }
.btn-outline-gold { border: 1px solid var(--gold); color: var(--gold-ink); background: transparent; font-size: 12px; padding: 11px 20px; }
.btn-outline-gold:hover { background: rgba(201,151,62,.08); }
.btn-outline-gold-dark { border: 1px solid var(--gold); color: var(--gold); background: transparent; font-size: 12px; padding: 12px 20px; }
.btn-outline-gold-dark:hover { background: rgba(201,151,62,.1); }
.btn-sm { padding: 13px 22px; font-size: 12.5px; }

.eyebrow { font-family: var(--font-display); font-size: 12.5px; font-weight: 600; letter-spacing: .18em; color: var(--gold); }

.rule-heading { display: flex; align-items: center; gap: 22px; margin-bottom: 34px; }
.rule-heading::before, .rule-heading::after { content: ""; flex: 1; height: 1px; background: var(--line-gold); }
.rule-heading h2 { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: .12em; white-space: nowrap; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50; background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 14px clamp(12px, 2vw, 40px); flex-wrap: wrap;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark {
  width: 48px; height: 48px; background: var(--surface); border: 1px solid rgba(31,31,31,.14);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.brand__mark svg { display: block; }
.brand__word { display: flex; flex-direction: column; gap: 3px; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: .26em; line-height: 1; }
.brand__motto-row { display: flex; align-items: center; gap: 8px; }
.brand__motto-line { flex: 1; height: 1px; background: rgba(201,151,62,.5); }
.brand__motto { font-family: var(--font-script); font-size: 11px; letter-spacing: .18em; color: var(--gold); white-space: nowrap; }

.main-nav {
  display: flex; align-items: center; gap: clamp(10px, 1.5vw, 26px); justify-content: center;
  flex: 1 0 340px; font-family: var(--font-display); font-size: clamp(10px, .95vw, 11.5px);
  font-weight: 600; letter-spacing: .08em; white-space: nowrap;
}
.main-nav a { color: var(--text-2); }
.main-nav a:hover, .main-nav a.is-active { color: var(--gold); }

.header-contact { display: flex; align-items: center; gap: clamp(10px, 1.4vw, 22px); flex: none; margin-left: auto; }
.header-phone { display: flex; align-items: center; gap: 9px; font-size: clamp(11px, 1.05vw, 13.5px); font-weight: 600; color: var(--text); white-space: nowrap; }
.header-phone svg { flex: none; }

.burger { display: none; flex: none; width: 34px; height: 34px; border: none; background: none; padding: 0; margin-left: auto; position: relative; }
.burger span { position: absolute; left: 6px; right: 6px; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease, top .25s ease; }
.burger span:nth-child(1) { top: 11px; }
.burger span:nth-child(2) { top: 16px; }
.burger span:nth-child(3) { top: 21px; }
.burger.is-open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 60; background: var(--ink); color: var(--on-dark);
  display: flex; flex-direction: column; padding: 90px 32px 32px;
  transform: translateY(-100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu__close {
  position: absolute; top: 28px; right: 24px; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark); border-radius: 50%; background: none;
  color: var(--on-dark); padding: 0;
}
.mobile-menu__close:hover { border-color: var(--gold); color: var(--gold); }
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: .04em; margin-bottom: 40px; }
.mobile-menu nav a { padding: 14px 0; border-bottom: 1px solid var(--line-dark); color: var(--on-dark); }
.mobile-menu__contact { display: flex; flex-direction: column; gap: 18px; margin-top: auto; }
.mobile-menu__phone { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; color: var(--on-dark); }

/* ── Hero ── */
.hero { padding: 40px 0 44px; }
.hero__inner { position: relative; padding: 56px 0 0; }
.hero__media {
  position: absolute; top: 0; right: calc(var(--pad) * -1); bottom: 0; left: 52%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%);
  pointer-events: none;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(360px, 1fr) 290px; gap: 40px; align-items: center; }
.hero__content { padding-top: 8px; }
.hero__content .eyebrow { display: block; margin-bottom: 22px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.16; max-width: 15em; letter-spacing: -.005em; margin: 0 0 34px; text-wrap: balance;
}
.hero h1 .accent { color: var(--gold-ink); }
.hero__points { display: flex; gap: 30px; flex-wrap: wrap; margin-bottom: 38px; }
.hero__point { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--text-2); }
.hero__point svg { flex: none; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__ctas .btn-gold { padding: 16px 24px; font-size: 12px; }
.hero__ctas .btn-outline { padding: 16px 26px; font-size: 12px; display: flex; align-items: center; gap: 14px; }

.hero__badge { align-self: flex-start; margin-top: 4px; }
.hero__badge-card { background: var(--ink-soft); color: #fff; padding: 32px 28px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.hero__badge-num { font-family: var(--font-display); font-weight: 800; font-size: 44px; color: var(--gold); line-height: 1; }
.hero__badge-cap { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .06em; line-height: 1.5; margin: 8px 0 22px; color: var(--on-dark); }
.hero__badge-list { display: flex; flex-direction: column; gap: 13px; font-size: 12.5px; line-height: 1.45; color: var(--on-dark-muted); }
.hero__badge-list li { display: flex; gap: 9px; }
.hero__badge-list li::before { content: "◆"; color: var(--gold); }

/* ── Stats strip ── */
.stats { margin-top: 46px; }
.stats__row { background: var(--ink); display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); padding: 34px 0; }
.stat { display: flex; align-items: center; gap: 16px; padding: 10px 28px; border-left: 1px solid var(--line-dark); }
.stat:first-child { border-left: none; }
.stat svg { flex: none; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: 25px; color: var(--gold); line-height: 1.1; }
.stat__num small { font-size: 14px; font-weight: 600; white-space: nowrap; }
.stat__cap { font-size: 12.5px; color: var(--on-dark-muted); line-height: 1.4; margin-top: 4px; }

/* ── Services ── */
.services { padding-top: 66px; }
.services__grid { background: var(--surface); display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); }
.service { padding: 30px 26px; display: flex; flex-direction: column; gap: 16px; border-left: 1px solid var(--line-soft); }
.service:first-child { border-left: none; }
.service__title { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .06em; }
.service__desc { font-size: 13.5px; line-height: 1.55; color: var(--text-muted); }

/* ── Complex questions ── */
.tricky { margin-top: 26px; }
.tricky__panel { background: var(--surface-warm); padding: 40px clamp(20px, 4vw, 44px); }
.tricky__panel .rule-heading { margin-bottom: 34px; }
.tricky__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 36px; align-items: center; }
.tricky__list { display: flex; flex-direction: column; gap: 20px; }
.tricky__list li { display: flex; gap: 13px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; }
.tricky__list svg { flex: none; margin-top: 1px; }
.tricky__media { height: 210px; }
.tricky__media img { width: 100%; height: 100%; object-fit: cover; }

/* ── Trust row: logos / reviews / partners ── */
.trust-row { margin-top: 46px; }
.trust-row__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 22px; }
.trust-panel { background: var(--surface); padding: 28px; }
.trust-panel h3 { font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: .09em; margin: 0 0 24px; }

.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 14px; align-items: center; }
.logo-tile { height: 34px; display: flex; align-items: center; justify-content: center; }
.logo-tile img { max-height: 100%; max-width: 100%; object-fit: contain; }
.trust-panel .btn-outline-gold { margin-top: 24px; }

.review-panel { display: flex; flex-direction: column; }
.review-panel h3 { margin-bottom: 20px; }
.review-slot { display: flex; flex-direction: column; flex: 1; }
.review-stars { color: var(--gold); letter-spacing: .18em; font-size: 13px; margin-bottom: 14px; }
.review-quote { font-size: 14px; line-height: 1.65; margin: 0 0 22px; color: var(--text-2); }
.review-who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.review-who img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; }
.review-who__name { font-size: 13px; font-weight: 700; }
.review-who__role { font-size: 12.5px; color: var(--text-muted); margin-top: 3px; }
.review-nav { display: flex; gap: 8px; margin-left: auto; }
.review-nav button { width: 30px; height: 30px; border: 1px solid var(--line-strong); background: none; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 12px; border-radius: 0; }
.review-nav button:hover, .review-nav button:focus-visible { border-color: var(--gold); color: var(--gold); }

.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.partner-card { border: 1px solid var(--line); padding: 18px 13px; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.partner-card__name { display: block; width: 100%; font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: 0; white-space: nowrap; padding-bottom: 10px; margin-bottom: 2px; border-bottom: 2px solid var(--gold); }
.partner-card__desc { font-size: 13px; line-height: 1.5; color: var(--text-muted); }
.partner-card a { display: inline-block; white-space: nowrap; font-size: 10px; letter-spacing: -.01em; font-weight: 600; margin-top: auto; color: var(--gold-ink); }
.partner-card a:hover { color: var(--gold); }

/* ── Team ── */
.team { padding-top: 22px; }
.team__grid { background: var(--surface); display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.team__intro { padding: 30px 28px; display: flex; flex-direction: column; }
.team__intro h2 { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: .1em; margin: 0 0 18px; }
.team__intro p { font-size: 14px; line-height: 1.6; color: var(--text-2); margin: 0 0 26px; }
.team__intro .btn-outline-gold { margin-top: auto; align-self: flex-start; }
.team-card { display: grid; grid-template-columns: 180px 1fr; border-left: 1px solid var(--line-soft); }
.team-card__media { overflow: hidden; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.team-card__body { padding: 26px 20px; }
.team-card__name { font-family: var(--font-display); font-size: 19px; font-weight: 700; }
.team-card__role { font-size: 14px; color: var(--gold); margin: 8px 0 14px; }
.team-card__exp { font-size: 14px; line-height: 1.55; color: var(--text-muted); }

/* ── FAQ ── */
.faq { margin-top: 22px; }
.faq__panel { background: var(--ink); color: #fff; padding: 44px clamp(24px, 3vw, 48px); display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start; }
.faq__intro { flex: 0 1 320px; }
.faq__intro h2 { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: .11em; margin: 0 0 18px; }
.faq__intro p { font-size: 14px; line-height: 1.65; color: var(--on-dark-muted); margin: 0 0 26px; max-width: 34ch; }
.faq__list { flex: 1 1 520px; min-width: 0; }
.faq-item { border-bottom: 1px solid var(--line-dark); padding: 20px 0; }
.faq-item summary { display: flex; align-items: flex-start; gap: 16px; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 14px; font-weight: 600; line-height: 1.45; color: #fff; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "◆"; color: var(--gold); font-size: 13px; margin-top: 2px; }
.faq-item p { margin: 14px 0 0 32px; font-size: 14px; line-height: 1.7; color: var(--on-dark-muted); max-width: 62ch; }
.faq__closing {
  flex: 1 1 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 8px; padding-top: 28px; border-top: 1px solid var(--line-dark); flex-wrap: wrap;
}
.faq__closing p { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1.5; color: #fff; }
.faq__closing .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .faq__closing { flex-direction: column; align-items: flex-start; }
}

/* ── Final CTA / contacts ── */
.contact { margin-top: 22px; padding-bottom: 40px; }
.contact__panel { background: var(--surface); border: 1px solid var(--line-gold); padding: clamp(24px, 4vw, 40px); display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; }
.contact__form-col h2 { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: .04em; margin: 0 0 10px; }
.contact__form-col > p { font-size: 14px; color: var(--text-muted); margin: 0 0 26px; }

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--text-2); }
.field .opt { font-weight: 500; color: var(--text-muted); text-transform: none; letter-spacing: 0; }
.field input, .field textarea {
  border: 1px solid var(--line-strong); background: var(--bg); padding: 13px 15px; font-size: 14px;
  color: var(--text); border-radius: var(--radius-sm); font-family: var(--font-body); resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.form-status { font-size: 12.5px; min-height: 18px; margin-top: 4px; }
.form-status--ok { color: #4B7A3E; }
.form-status--err { color: #B23A3A; }
.contact-form .btn { width: 100%; margin-top: 4px; }

.contact__info-col { border-left: 1px solid var(--line); padding-left: 40px; display: flex; flex-direction: column; gap: 26px; }
.contact__info-col .icon-tile { width: 48px; height: 48px; border: 1px solid var(--line-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__row { display: flex; align-items: center; gap: 16px; }
.contact__phone { font-size: 15px; font-weight: 700; }
.contact__phone a { color: inherit; text-decoration: none; }
.contact__phone a:hover { color: var(--gold-ink); }
.contact__phone + .contact__phone { margin-top: 4px; }
.contact__row--primary .contact__phone { font-size: 17px; }
.contact__hours { font-size: 12px; color: var(--text-muted); margin-top: 5px; }
.contact__note { font-size: 12.5px; color: var(--text-2); line-height: 1.5; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }

/* ── Footer ── */
.site-footer { margin-top: 26px; background: var(--ink); color: var(--on-dark); }
.site-footer .wrap { padding: 26px var(--pad); display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand__mark { width: 40px; height: 40px; background: var(--ink); border: 1px solid var(--line-dark-soft); display: flex; align-items: center; justify-content: center; flex: none; }
.footer-brand__name { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: .24em; line-height: 1; }
.footer-brand__motto { font-family: var(--font-script); font-size: 10px; letter-spacing: .16em; color: var(--gold); margin-top: 3px; }
.footer-copy { font-size: 12.5px; color: var(--on-dark-faint); }
.footer-nav { margin-left: auto; display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .09em; }
.footer-nav a { color: var(--on-dark); }
.footer-nav a:hover { color: var(--gold); }

/* ── Reveal on scroll (hero content/badge excluded — always visible immediately) ── */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* stagger — items in the same row/grid reveal one after another, not all at once */
.stats__row .stat:nth-child(1) { transition-delay: 0s; }
.stats__row .stat:nth-child(2) { transition-delay: .08s; }
.stats__row .stat:nth-child(3) { transition-delay: .16s; }
.stats__row .stat:nth-child(4) { transition-delay: .24s; }
.stats__row .stat:nth-child(5) { transition-delay: .32s; }

.services__grid .service:nth-child(1) { transition-delay: 0s; }
.services__grid .service:nth-child(2) { transition-delay: .07s; }
.services__grid .service:nth-child(3) { transition-delay: .14s; }
.services__grid .service:nth-child(4) { transition-delay: .21s; }
.services__grid .service:nth-child(5) { transition-delay: .28s; }
.services__grid .service:nth-child(6) { transition-delay: .35s; }

.team__grid .team-card:nth-child(1) { transition-delay: 0s; }
.team__grid .team-card:nth-child(2) { transition-delay: .12s; }

.partner-grid .partner-card:nth-child(1) { transition-delay: 0s; }
.partner-grid .partner-card:nth-child(2) { transition-delay: .1s; }
.partner-grid .partner-card:nth-child(3) { transition-delay: .2s; }

/* ── Responsive ── */
@media (max-width: 1040px) {
  .hero { padding-top: 20px; }
  .hero__inner { padding-top: 16px; }
  .hero h1 { font-size: 22px; }
  .hero__grid { grid-template-columns: 1fr; position: static; }
  .hero__media {
    position: static; mask-image: none; -webkit-mask-image: none;
    width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
    height: 520px; margin-bottom: 30px; border-radius: 0; overflow: hidden;
  }
  .hero__badge {
    order: -1; position: absolute; z-index: 3;
    top: calc(16px + 520px - 24px); transform: translateY(-100%);
    right: 20px; width: min(240px, 60%); margin: 0;
  }
  .hero__badge .hero__badge-card { padding: 22px 20px; }
  .contact__panel { grid-template-columns: 1fr; }
  .contact__info-col { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 26px; }
}

@media (max-width: 860px) {
  .main-nav, .header-contact { display: none; }
  .burger { display: block; }
  .field-row { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 640px) {
  .rule-heading h2 { font-size: 16px; letter-spacing: .08em; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card { grid-template-columns: 1fr; }
  .team-card__media { height: 380px; }
  .stat { padding: 10px 14px; gap: 10px; }
  .stats__row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(-n+2) { border-top: none; }
  .stat { border-top: 1px solid var(--line-dark); padding-top: 20px; padding-bottom: 6px; }
  .stat svg { width: 22px; height: 22px; }
  .stat__num { font-size: 18px; }
  .stat__num small { font-size: 11px; }
  .stat__cap { font-size: 11px; }
  .stat:last-child { grid-column: 1 / -1; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .footer-nav { order: 3; width: 100%; margin-left: 0; }
}

/* ── Floating call button ── */
.call-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.call-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.34); }
.call-fab::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(201,151,62,.55);
  animation: call-fab-pulse 2.4s ease-out infinite;
}
@media (prefers-reduced-motion: reduce) { .call-fab::before { animation: none; } }
@keyframes call-fab-pulse {
  0% { box-shadow: 0 0 0 0 rgba(201,151,62,.5); }
  70% { box-shadow: 0 0 0 16px rgba(201,151,62,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,151,62,0); }
}
@media (max-width: 640px) {
  .call-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}
