/* ==========================================================================
   Rágcsálóirtó – patkanyirtok.hu
   Design system: tokens → base → layout → components → sections → utilities
   Breakpoints (mobile-first): 600px, 900px, 1200px
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Colour */
  --c-ink: #0f1b22;
  --c-ink-soft: #3d4b54;
  --c-muted: #5b6770;
  --c-paper: #f7f6f2;
  --c-paper-2: #eeebe3;
  --c-white: #ffffff;
  --c-line: #d9d4c7;
  --c-line-soft: #e6e2d8;

  --c-brand: #0f3a34;
  --c-brand-2: #164c45;
  --c-brand-deep: #0a2925;
  --c-on-brand: #eef3f1;
  --c-on-brand-muted: #a9c2bc;
  --c-on-brand-line: rgba(238, 243, 241, 0.16);

  --c-accent: #c4420f;
  --c-accent-hover: #a5360a;
  --c-accent-soft: #fbeae1;
  --c-ok: #2a7a57;
  --c-warn: #b7791f;

  /* Typography */
  --font-display: "Archivo", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Public Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --fs-xs: 0.8125rem;   /* 13 */
  --fs-sm: 0.9375rem;   /* 15 */
  --fs-base: 1.0625rem; /* 17 */
  --fs-lg: 1.1875rem;   /* 19 */
  --fs-h4: 1.125rem;
  --fs-h3: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
  --fs-h2: clamp(1.85rem, 1.3rem + 2.2vw, 2.9rem);
  --fs-h1: clamp(2.15rem, 1.4rem + 3vw, 3.75rem);
  --fs-stat: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);

  --lh-tight: 1.08;
  --lh-snug: 1.25;
  --lh-body: 1.62;

  /* Spacing scale (4px base) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;

  --section-y: clamp(3.5rem, 2.2rem + 5.5vw, 7rem);
  --gutter: clamp(1rem, 0.6rem + 2vw, 2rem);
  --container: 75rem;
  --measure: 36rem;

  --radius-sm: 4px;
  --radius: 8px;
  --header-h: 64px;
  --callbar-h: 72px;

  --shadow-sm: 0 1px 2px rgba(15, 27, 34, 0.06), 0 2px 8px rgba(15, 27, 34, 0.06);
  --shadow-lg: 0 20px 50px -20px rgba(15, 27, 34, 0.35);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (min-width: 900px) {
  :root { --header-h: 76px; }
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--c-ink);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); line-height: 1.1; font-weight: 800; }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); font-weight: 700; }
h4 { font-size: var(--fs-h4); line-height: var(--lh-snug); font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0; }
p + p { margin-top: var(--s-4); }

ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }

strong { font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: var(--s-4);
  top: -100px;
  z-index: 200;
  padding: var(--s-3) var(--s-4);
  background: var(--c-ink);
  color: var(--c-white);
  font-weight: 700;
  border-radius: var(--radius-sm);
}
.skip-link:focus { top: var(--s-3); }


.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- 3. Layout ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--alt { background: var(--c-paper-2); }
.section--white { background: var(--c-white); }
.section--dark { background: var(--c-brand); color: var(--c-on-brand); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--c-white); }

.split {
  display: grid;
  gap: var(--s-6);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5.5rem); }
  .split--wide-text { grid-template-columns: 1.1fr 0.9fr; }
  .split--wide-media { grid-template-columns: 1.15fr 0.85fr; }
  .split--top { align-items: start; }
  .split--reverse > :first-child { order: 2; }
}

/* Section heading block */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: currentColor;
}
.section--dark .eyebrow { color: #f0a37f; }

.lead {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--c-ink-soft);
  max-width: var(--measure);
}
.section--dark .lead { color: var(--c-on-brand-muted); }

.prose { max-width: var(--measure); color: var(--c-ink-soft); }
.prose strong { color: var(--c-ink); }
h2 + .lead, h2 + .prose { margin-top: var(--s-4); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.section-head h2 + .lead { margin-top: var(--s-4); }

.section-head--row {
  max-width: none;
  display: grid;
  gap: var(--s-4);
}
@media (min-width: 900px) {
  .section-head--row { grid-template-columns: 1fr 1fr; align-items: end; gap: var(--s-8); }
}

/* ---------- 4. Components ---------- */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--call {
  background: var(--c-accent);
  color: var(--c-white);
  box-shadow: 0 8px 20px -10px rgba(196, 66, 15, 0.8);
}
.btn--call:hover { background: var(--c-accent-hover); }

.btn--xl {
  min-height: 64px;
  padding: 0.75rem 1.75rem 0.75rem 1.4rem;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.btn--xl .icon { width: 1.6rem; height: 1.6rem; }
.btn__stack { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.btn__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.btn--outline {
  border-color: var(--c-ink);
  color: var(--c-ink);
  background: transparent;
}
.btn--outline:hover { background: var(--c-ink); color: var(--c-white); }

.btn--light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--c-white);
  background: transparent;
}
.btn--light:hover { background: var(--c-white); color: var(--c-brand); border-color: var(--c-white); }

.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3) var(--s-4); }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  min-height: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-ink);
  text-decoration: none;
  border-bottom: 2px solid var(--c-accent);
  line-height: 1.2;
  padding-top: 2px;
}
.link-arrow .icon { transition: transform 0.18s var(--ease); }
.link-arrow:hover .icon { transform: translateX(3px); }
.section--dark .link-arrow { color: var(--c-white); }

/* Check list */
.checks { display: grid; gap: var(--s-3); }
.checks li {
  position: relative;
  padding-left: 1.9rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--c-ok) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 70% no-repeat;
}
.section--dark .checks li::before { background-color: #3f9b73; }

/* Dash list (neutral) */
.dashes { display: grid; gap: var(--s-3); }
.dashes li { position: relative; padding-left: 1.5rem; }
.dashes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 0.75rem;
  height: 2px;
  background: var(--c-accent);
}

/* Figure */
.figure { margin: 0; }
.figure img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--c-paper-2);
}
.figure figcaption {
  margin-top: var(--s-3);
  font-size: var(--fs-sm);
  color: var(--c-muted);
}
.ratio-3x2 img { aspect-ratio: 3 / 2; }
.ratio-4x5 img { aspect-ratio: 4 / 5; }
.ratio-1x1 img { aspect-ratio: 1 / 1; }
.ratio-wide img { aspect-ratio: 16 / 7; }

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 242, 0.94);
  border-bottom: 1px solid var(--c-line-soft);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  margin-right: auto;
  text-decoration: none;
  color: var(--c-ink);
  min-width: 0;
}
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}
.brand__sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted);
  white-space: nowrap;
}
@media (max-width: 459px) {
  .site-header .brand__sub { display: none; }
}
@media (min-width: 900px) {
  .brand__mark { width: 46px; height: 46px; }
  .brand__name { font-size: 1.25rem; }
}

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: clamp(0.75rem, 1.6vw, 1.75rem); }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-ink-soft);
  text-decoration: none;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--c-ink); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }

.header-call { padding-inline: 0.9rem; min-height: 44px; font-size: 0.95rem; }
.header-call__num { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--c-ink);
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.menu-toggle .icon { width: 26px; height: 26px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (min-width: 640px) {
  .header-call__num { display: inline; }
  .header-call__short { display: none; }
}

@media (min-width: 1024px) {
  .nav { display: block; }
  .menu-toggle { display: none; }
  .header-call { padding-inline: 1.1rem; }
}

/* Mobile menu panel */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 49;
  display: flex;
  flex-direction: column;
  padding: var(--s-4) var(--gutter) var(--s-6);
  background: var(--c-paper);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s linear 0.2s;
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.mobile-nav__list li { border-bottom: 1px solid var(--c-line); }
.mobile-nav__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-ink);
  text-decoration: none;
}
.mobile-nav__list a[aria-current="page"] { color: var(--c-accent); }
.mobile-nav__cta { margin-top: var(--s-6); display: grid; gap: var(--s-3); }
.mobile-nav__cta .btn { width: 100%; }
.mobile-nav__note { font-size: var(--fs-sm); color: var(--c-muted); text-align: center; }
@media (min-width: 1024px) { .mobile-nav { display: none; } }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(1.75rem, 1rem + 4vw, 5rem);
  padding-bottom: clamp(2.5rem, 1.5rem + 4vw, 5.5rem);
  background:
    linear-gradient(180deg, var(--c-paper) 0%, var(--c-paper) 70%, var(--c-paper-2) 100%);
}
.hero__grid { display: grid; gap: var(--s-6); align-items: center; }
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: clamp(2.5rem, 5vw, 5rem); }
}

.hero__area {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--c-brand-2);
}
.hero__area .icon { color: var(--c-accent); }

.hero h1 { max-width: 20ch; }
.hero h1 em {
  font-style: normal;
  color: var(--c-brand-2);
}
.hero__lead {
  margin-top: var(--s-4);
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--c-ink-soft);
  max-width: 34rem;
}
.hero__cta { margin-top: var(--s-5); display: grid; gap: var(--s-3); justify-items: start; }
.hero__cta .btn--xl { width: 100%; }
.hero__callnote { font-size: var(--fs-sm); color: var(--c-muted); }
.hero__callnote strong { color: var(--c-ink); }
@media (min-width: 600px) {
  .hero__cta .btn--xl { width: auto; }
}

.hero__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-4);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1.35;
}
.hero__trust li { display: flex; gap: var(--s-2); align-items: flex-start; }
.hero__trust .icon { color: var(--c-ok); margin-top: 1px; width: 1.1rem; height: 1.1rem; stroke-width: 2.6; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 55% 50%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) {
  .hero__media img { aspect-ratio: 4 / 4.4; }
}

.person-chip {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-3);
  padding: var(--s-3);
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: var(--fs-sm);
  line-height: 1.35;
}
.person-chip img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  object-position: 50% 20%;
  box-shadow: none;
  aspect-ratio: 1;
}
.person-chip strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.person-chip span { color: var(--c-muted); }
@media (min-width: 900px) {
  .person-chip {
    position: absolute;
    left: calc(var(--s-5) * -1);
    bottom: var(--s-5);
    margin: 0;
    max-width: 19rem;
    box-shadow: var(--shadow-lg);
  }
}

.footnote { margin-top: var(--s-4); font-size: var(--fs-xs); color: var(--c-muted); }

/* Page hero (sub pages) */
.hero--page h1 { max-width: 18ch; }

/* ---------- 7. Fact strip ---------- */
.facts {
  background: var(--c-brand);
  color: var(--c-on-brand);
}
.facts__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.facts__item {
  padding: var(--s-5) var(--s-4);
  border-bottom: 1px solid var(--c-on-brand-line);
}
.facts__item:nth-child(odd) { border-right: 1px solid var(--c-on-brand-line); padding-left: 0; }
.facts__item:nth-last-child(-n + 2) { border-bottom: 0; }
.facts__value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  font-weight: 800;
  line-height: 1.1;
  color: var(--c-white);
  letter-spacing: -0.02em;
}
.facts__label { display: block; margin-top: var(--s-1); font-size: var(--fs-sm); color: var(--c-on-brand-muted); line-height: 1.4; }
@media (min-width: 900px) {
  .facts__list { grid-template-columns: repeat(4, 1fr); }
  .facts__item,
  .facts__item:nth-child(odd) { padding: var(--s-6) var(--s-5); border-bottom: 0; border-right: 1px solid var(--c-on-brand-line); }
  .facts__item:first-child { padding-left: 0; }
  .facts__item:last-child { border-right: 0; }
}

/* ---------- 8. Identify (rat vs mouse) ---------- */
.compare { display: grid; gap: var(--s-7); }
@media (min-width: 900px) {
  .compare { grid-template-columns: 1fr 1fr; gap: 0; }
  .compare__col { padding-inline: clamp(1.5rem, 3vw, 3rem); }
  .compare__col:first-child { padding-left: 0; border-right: 1px solid var(--c-line); }
  .compare__col:last-child { padding-right: 0; }
}
.compare__col h3 { margin-top: var(--s-5); display: flex; align-items: baseline; gap: var(--s-3); }
.compare__tag {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.compare__intro { margin-top: var(--s-3); color: var(--c-ink-soft); }
.compare__col .dashes { margin-top: var(--s-4); }
.compare__where {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line);
  font-size: var(--fs-sm);
  color: var(--c-ink-soft);
}
.compare__where strong { color: var(--c-ink); }
.compare__col .link-arrow { margin-top: var(--s-5); }


/* Inline CTA band (after problem sections) */
.cta-band {
  display: grid;
  gap: var(--s-4);
  align-items: center;
  margin-top: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  background: var(--c-white);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--radius-sm);
}
.cta-band h3 { font-size: clamp(1.2rem, 1rem + 0.8vw, 1.5rem); }
.cta-band p { margin-top: var(--s-2); color: var(--c-ink-soft); }
@media (min-width: 900px) {
  .cta-band { grid-template-columns: 1fr auto; gap: var(--s-7); }
}

/* ---------- 9. Services list ---------- */
.services { display: grid; gap: var(--s-6); }
@media (min-width: 900px) {
  .services { grid-template-columns: 0.8fr 1.2fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
  .services__intro { position: sticky; top: calc(var(--header-h) + 2rem); }
}
.services__intro .btn { margin-top: var(--s-5); }

.svc-list { border-top: 2px solid var(--c-ink); }
.svc {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: var(--s-1) var(--s-4);
  padding-block: var(--s-5);
  border-bottom: 1px solid var(--c-line);
}
.svc__num {
  grid-row: span 3;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--c-accent);
  padding-top: 0.35rem;
}
.svc h3 { font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.75rem); }
.svc p { color: var(--c-ink-soft); max-width: 34rem; }
.svc .link-arrow { justify-self: start; margin-top: var(--s-2); }
.svc--primary h3::after {
  content: "Fő szolgáltatás";
  display: inline-block;
  margin-left: var(--s-3);
  padding: 0.15rem 0.5rem;
  vertical-align: middle;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
}

.venues {
  margin-top: var(--s-7);
}
.venues__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-5);
  margin-top: var(--s-4);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-ink);
}
.venues__list li { display: inline-flex; align-items: center; gap: var(--s-2); }
.venues__list li::before { content: ""; width: 6px; height: 6px; background: var(--c-accent); border-radius: 50%; }

/* ---------- 10. Risk / phases ---------- */
.phases { display: grid; gap: 0; counter-reset: phase; }
.phase {
  position: relative;
  padding: 0 0 var(--s-5) 2.5rem;
}
.phase::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.6rem;
  bottom: -0.3rem;
  width: 2px;
  background: var(--c-line);
}
.phase:last-child::before { display: none; }
.phase::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 3px solid var(--c-paper-2);
  box-shadow: 0 0 0 2px var(--phase-c, var(--c-muted));
  background: var(--phase-c, var(--c-muted));
}
.phase--1 { --phase-c: #7c8a92; }
.phase--2 { --phase-c: var(--c-warn); }
.phase--3 { --phase-c: var(--c-accent); }
.phase h3 { font-size: 1.05rem; }
.phase p { margin-top: var(--s-1); color: var(--c-ink-soft); font-size: var(--fs-sm); }
.phase__tag {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--phase-c);
}

.risks { display: grid; gap: var(--s-5); margin-top: var(--s-7); }
@media (min-width: 900px) { .risks { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); } }
.risk { padding-top: var(--s-4); border-top: 2px solid var(--c-ink); }
.risk p { margin-top: var(--s-2); color: var(--c-ink-soft); font-size: var(--fs-sm); }
.risk .dashes { margin-top: var(--s-3); font-size: var(--fs-sm); gap: var(--s-2); }

/* ---------- 11. Process ---------- */
.steps { display: grid; gap: var(--s-6); counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); } }
.step { padding-top: var(--s-5); border-top: 1px solid var(--c-on-brand-line); }
.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 2rem + 2.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: #f0a37f;
  letter-spacing: -0.04em;
}
.step__kicker {
  display: block;
  margin-top: var(--s-4);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-on-brand-muted);
}
.step h3 { margin-top: var(--s-1); }
.step p { margin-top: var(--s-3); color: var(--c-on-brand-muted); }
.step .checks { margin-top: var(--s-4); font-size: var(--fs-sm); color: var(--c-on-brand); gap: var(--s-2); }

.deliver {
  display: grid;
  gap: var(--s-5);
  margin-top: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-on-brand-line);
  align-items: center;
}
.deliver__list { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); color: var(--c-white); font-weight: 600; }
.deliver__list li { display: inline-flex; align-items: center; gap: var(--s-2); }
.deliver__list .icon { color: #f0a37f; }
.deliver__title { font-family: var(--font-display); font-weight: 700; color: var(--c-on-brand-muted); font-size: var(--fs-sm); letter-spacing: 0.1em; text-transform: uppercase; }
@media (min-width: 900px) { .deliver { grid-template-columns: auto 1fr auto; gap: var(--s-6); } }

/* ---------- 12. Detail blocks (rat / mouse) ---------- */
.detail h2 { margin-top: 0; }
.detail .prose { margin-top: var(--s-4); }
.detail__sub {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line);
}
.detail__sub h3 { font-size: var(--fs-h4); margin-bottom: var(--s-3); }
.detail .btn-row { margin-top: var(--s-6); }

/* ---------- 13. About ---------- */
.about { display: grid; gap: var(--s-6); align-items: center; }
@media (min-width: 900px) { .about { grid-template-columns: 0.85fr 1.15fr; gap: clamp(3rem, 6vw, 6rem); } }
.about__photo { position: relative; margin: 0; }
.about__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: var(--radius);
}
.about__photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 2px solid var(--c-ink);
  font-family: var(--font-display);
  font-weight: 700;
}
.about__photo figcaption span { color: var(--c-muted); font-weight: 600; font-family: var(--font-body); font-size: var(--fs-sm); }
@media (max-width: 899px) { .about__photo { max-width: 26rem; } }
.about blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--c-ink);
}
.about .prose { margin-top: var(--s-5); }
.about .checks { margin-top: var(--s-5); }
.about .btn-row { margin-top: var(--s-6); }

/* ---------- 14. FAQ ---------- */
.faq { display: grid; gap: var(--s-6); }
@media (min-width: 900px) {
  .faq { grid-template-columns: 0.8fr 1.2fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
  .faq__intro { position: sticky; top: calc(var(--header-h) + 2rem); }
}
.faq__intro .btn { margin-top: var(--s-5); }
.faq__list { border-top: 2px solid var(--c-ink); }
.faq__item { border-bottom: 1px solid var(--c-line); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  min-height: 64px;
  padding-block: var(--s-4);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--c-line);
  background:
    linear-gradient(var(--c-ink), var(--c-ink)) center / 12px 2px no-repeat,
    linear-gradient(var(--c-ink), var(--c-ink)) center / 2px 12px no-repeat;
  transition: border-color 0.2s var(--ease);
}
.faq__item[open] summary::after {
  background:
    linear-gradient(var(--c-ink), var(--c-ink)) center / 12px 2px no-repeat;
}
.faq__item summary:hover::after { border-color: var(--c-ink); }
.faq__answer { padding-bottom: var(--s-5); color: var(--c-ink-soft); max-width: 40rem; }

/* ---------- 15. Final CTA / contact ---------- */
.final {
  position: relative;
  background: var(--c-brand-deep);
  color: var(--c-on-brand);
  overflow: hidden;
}
.final__grid { display: grid; gap: var(--s-7); }
@media (min-width: 900px) { .final__grid { grid-template-columns: 1.15fr 0.85fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; } }
.final h2 { color: var(--c-white); font-size: clamp(2rem, 1.3rem + 3vw, 3.5rem); }
.final .lead { margin-top: var(--s-4); }
.final__phone {
  display: inline-block;
  margin-top: var(--s-6);
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 3.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-white);
  text-decoration: none;
  border-bottom: 3px solid var(--c-accent);
  padding-bottom: 0.15em;
  white-space: nowrap;
}
.final__phone:hover { color: #f7c3a9; }
.final .btn-row { margin-top: var(--s-6); }
.final__note { margin-top: var(--s-4); font-size: var(--fs-sm); color: var(--c-on-brand-muted); }

.final__aside { display: grid; gap: var(--s-6); }
.final__block { padding-top: var(--s-4); border-top: 1px solid var(--c-on-brand-line); }
.final__block h3 { font-size: var(--fs-h4); color: var(--c-white); }
.final__block p, .final__block li { color: var(--c-on-brand-muted); font-size: var(--fs-sm); }
.final__block .checks { margin-top: var(--s-3); gap: var(--s-2); }
.final__block .checks li { color: var(--c-on-brand); }
.final__block a { color: var(--c-white); font-weight: 700; }

/* ---------- 16. Footer ---------- */
.site-footer {
  background: #07201d;
  color: var(--c-on-brand-muted);
  font-size: var(--fs-sm);
  padding-block: var(--s-7) var(--s-6);
}
.site-footer__grid { display: grid; gap: var(--s-6); }
@media (min-width: 900px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .brand { color: var(--c-white); }
.site-footer .brand__sub { color: var(--c-on-brand-muted); }
.site-footer__about { margin-top: var(--s-4); max-width: 26rem; }
.site-footer h2 {
  font-size: var(--fs-xs);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--s-3);
}
.site-footer ul { display: grid; gap: var(--s-1); }
.site-footer a { color: var(--c-on-brand); text-decoration: none; display: inline-flex; min-height: 32px; align-items: center; }
.site-footer a:hover { color: var(--c-white); text-decoration: underline; }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-on-brand-line);
  font-size: var(--fs-xs);
}
.linklike {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--c-on-brand);
  text-decoration: underline;
  cursor: pointer;
  min-height: 32px;
}

/* ---------- 17. Mobile call bar ---------- */
.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  gap: var(--s-3);
  align-items: center;
  padding: var(--s-3) var(--gutter) calc(var(--s-3) + env(safe-area-inset-bottom));
  background: rgba(247, 246, 242, 0.97);
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -8px 24px -12px rgba(15, 27, 34, 0.25);
  transform: translateY(110%);
  transition: transform 0.25s var(--ease);
}
.callbar.is-visible { transform: none; }
.callbar__text { flex: 1; min-width: 0; font-size: var(--fs-xs); line-height: 1.3; color: var(--c-muted); }
.callbar__text strong { display: block; font-family: var(--font-display); font-size: 0.95rem; color: var(--c-ink); }
.callbar .btn { flex: none; min-height: 50px; }
@media (max-width: 359px) { .callbar__text { display: none; } .callbar .btn { flex: 1; } }
@media (min-width: 900px) { .callbar { display: none; } }
@media (max-width: 899px) { body.has-callbar { padding-bottom: var(--callbar-h); } }

/* ---------- 18. Cookie consent ---------- */
.cc-banner {
  position: fixed;
  left: var(--s-3);
  right: var(--s-3);
  bottom: var(--s-3);
  z-index: 90;
  max-width: 44rem;
  margin-inline: auto;
  padding: var(--s-4);
  background: var(--c-white);
  color: var(--c-ink);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px -12px rgba(15, 27, 34, 0.35);
  font-size: var(--fs-sm);
  line-height: 1.5;
}
.cc-banner[hidden], .cc-modal[hidden] { display: none; }
.cc-banner__title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.cc-banner__text { margin-top: 2px; color: var(--c-ink-soft); font-size: 0.875rem; line-height: 1.45; }
.cc-banner__actions { display: flex; gap: var(--s-2); margin-top: var(--s-3); }
.cc-banner__actions .btn { min-height: 44px; padding: 0.5rem 0.6rem; font-size: 0.875rem; flex: 1 1 auto; }
@media (min-width: 400px) { .cc-banner__actions .btn { padding-inline: 0.9rem; font-size: 0.95rem; } }
@media (min-width: 720px) {
  .cc-banner { display: grid; grid-template-columns: 1fr auto; gap: var(--s-5); align-items: center; left: var(--s-5); right: var(--s-5); bottom: var(--s-5); }
  .cc-banner__actions { margin-top: 0; flex-wrap: nowrap; }
  .cc-banner__actions .btn { flex: none; }
}
.btn--dark { background: var(--c-ink); color: var(--c-white); }
.btn--dark:hover { background: var(--c-brand); }
.btn--quiet { background: transparent; color: var(--c-ink); border-color: var(--c-line); }
.btn--quiet:hover { border-color: var(--c-ink); }

.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--s-3);
}
@media (min-width: 600px) { .cc-modal { align-items: center; } }
.cc-backdrop { position: absolute; inset: 0; background: rgba(10, 20, 24, 0.6); }
.cc-dialog {
  position: relative;
  width: 100%;
  max-width: 34rem;
  max-height: calc(100vh - 1.5rem);
  overflow-y: auto;
  padding: var(--s-5);
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.cc-dialog__head { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--s-4); }
.cc-dialog__head h2 { font-size: 1.35rem; }
.cc-dialog__head p { margin-top: var(--s-1); font-size: var(--fs-sm); color: var(--c-ink-soft); }
.cc-close {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  margin: -8px -8px 0 0;
  border: 0; background: transparent; color: var(--c-ink);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.cc-rows { margin-top: var(--s-4); border-top: 1px solid var(--c-line); }
.cc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--c-line);
}
.cc-row__title { font-weight: 700; }
.cc-row__desc { font-size: var(--fs-sm); color: var(--c-muted); line-height: 1.45; }
.cc-always { flex: none; font-size: var(--fs-xs); font-weight: 700; color: var(--c-ok); }
.cc-toggle {
  flex: none;
  position: relative;
  width: 48px;
  height: 28px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #b9b3a3;
  background: #e2ded3;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.cc-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s var(--ease);
}
.cc-toggle[data-on="true"] { background: var(--c-ok); border-color: var(--c-ok); }
.cc-toggle[data-on="true"] .cc-knob { transform: translateX(20px); }
.cc-dialog__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: flex-end; margin-top: var(--s-5); }
.cc-dialog__actions .btn { min-height: 44px; }
.cc-dialog__foot { margin-top: var(--s-3); font-size: var(--fs-xs); color: var(--c-muted); }

/* ---------- 19. Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
