/* ============================================================
   A-Leco Management Kft. — patkanyirtasbudapest.hu
   Vizuális rendszer: Modernist (Archivo, 2px vonalak, 0 lekerekítés)
   meleg, homokos palettával.
   ============================================================ */

:root {
  --color-bg: #fdf8f0;
  --color-surface: #f5ebdc;
  --color-text: #33291f;
  --color-divider: color-mix(in srgb, #7a6a55 45%, transparent);

  --color-neutral-100: #fdf9f2;
  --color-neutral-200: #f3e9d9;
  --color-neutral-300: #e3d8c4;
  --color-neutral-400: #c2b49c;
  --color-neutral-500: #a3947b;
  --color-neutral-600: #7f7059;
  --color-neutral-700: #61543f;
  --color-neutral-800: #4a4031;
  --color-neutral-900: #352c21;

  --color-accent: #c53a13;
  --color-accent-100: #fdefe8;
  --color-accent-200: #fbdccf;
  --color-accent-300: #f7b79c;
  --color-accent-400: #ff9166;
  --color-accent-500: #f2623a;
  --color-accent-600: #a02f0e;
  --color-accent-700: #8a2a0c;
  --color-accent-800: #74260d;

  --page: #faf7f2;
  --olive: #eceee2;
  --olive-deep: #3f4530;
  --olive-line: #4c5139;
  --brown-hero: #3a2c22;
  --brown-sos: #4c3a2b;
  --brown-card: #422f22;
  --brown-deep: #33291f;
  --brick: #8f3c1e;
  --cream: #fdf9f3;
  --cream-soft: #d9d0c4;

  --font-heading: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1280px;
  --gutter: clamp(18px, 4vw, 40px);
  --section-y: clamp(56px, 8vw, 104px);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--page);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

img { display: block; max-width: 100%; }
figure { margin: 0; }

a { color: var(--color-accent-700); text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.grayscale { filter: saturate(1.06) contrast(1.02) brightness(1.05) sepia(.1) hue-rotate(-6deg); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--color-accent);
  color: var(--cream);
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { left: 0; color: var(--cream); }

/* --- Reveal animáció --- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s cubic-bezier(.2, .7, .3, 1), transform .5s cubic-bezier(.2, .7, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================================
   GOMBOK
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  line-height: 1.2;
  padding: 16px 24px;
  border: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
}
.btn__icon { flex-shrink: 0; display: block; }

.btn--accent {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--cream);
}
.btn--accent:hover {
  background: var(--color-accent-600);
  border-color: var(--color-accent-600);
  color: var(--cream);
}

.btn--accent-light:hover {
  background: var(--color-accent-400);
  border-color: var(--color-accent-400);
  color: #2a2521;
}

.btn--outline {
  background: transparent;
  border-color: var(--olive-line);
  color: var(--olive-deep);
}
.btn--outline:hover {
  background: var(--olive-line);
  color: #f7eddd;
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(245, 236, 224, .45);
  color: var(--cream);
}
.btn--outline-light:hover {
  border-color: var(--cream);
  background: rgba(245, 236, 224, .08);
  color: var(--cream);
}

.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--color-accent-700);
}
.btn--ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }

.btn--header {
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 11px 16px;
  gap: 8px;
}

.btn--lg { font-size: 16px; padding: 18px 26px; }
.btn--block { width: 100%; }

.btn--uppercase { text-transform: uppercase; letter-spacing: .03em; }

/* ============================================================
   FEJLÉC
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(245, 236, 224, .94);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--color-divider);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
}

.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo__img { height: 52px; width: auto; max-width: none; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.main-nav a {
  color: var(--color-text);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { border-bottom-color: var(--color-accent); color: var(--color-text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid var(--color-text);
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-text);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--brown-hero);
  color: #f7eddd;
}

.hero__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: stretch;
}

.hero__body {
  padding: clamp(36px, 6vw, 84px) var(--gutter) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__kicker {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-accent-400);
}

.hero__title {
  color: var(--cream);
  font-size: clamp(32px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 15ch;
}

.hero__rule {
  width: 72px;
  height: 4px;
  background: var(--color-accent);
  margin: 0 0 24px;
}

.hero__lead {
  color: var(--cream-soft);
  font-size: 17px;
  line-height: 1.6;
  max-width: 52ch;
  margin: 0 0 28px;
}

.hero__lead--mobile {
  font-size: 15px;
  line-height: 1.55;
  max-width: 40ch;
  margin: 0 0 22px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px 28px;
  padding: 24px 0 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(245, 236, 224, .22);
}

.hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e6e3e2;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}

.hero__points li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  background: var(--color-accent);
}

.hero__media {
  position: relative;
  min-height: 380px;
  border-left: 2px solid rgba(247, 237, 221, .3);
  overflow: hidden;

  width: calc(100% + max(0px, (100vw - var(--wrap)) / 2));
  margin-right: calc(-1 * max(0px, (100vw - var(--wrap)) / 2));
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(58, 44, 34, .72) 0%,
    rgba(58, 44, 34, .16) 44%,
    rgba(120, 70, 30, .04) 100%
  );
}

/* ============================================================
   BIZALMI SÁV
   ============================================================ */

.trust {
  background: var(--color-neutral-200);
  border-bottom: 2px solid var(--color-divider);
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 28px;
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
}
.trust__item { padding-right: 20px; }
.trust__item + .trust__item {
  padding-left: 28px;
  border-left: 1px solid var(--color-divider);
}
.trust__item h3 {
  font-size: 17px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.trust__item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-neutral-700);
}

/* ============================================================
   SZEKCIÓ-ALAPOK
   ============================================================ */

.section {
  background: var(--color-bg);
  border-bottom: 2px solid var(--color-divider);
}
.section--olive { background: var(--olive); }
.section--sand { background: var(--color-surface); }

.section__inner {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.sec-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 14px;
}
.sec-head__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 92px);
  line-height: .8;
  letter-spacing: -0.04em;
  color: var(--color-neutral-300);
}
.section--olive .sec-head__num { color: var(--color-neutral-400); }
.section--sand .sec-head__num { color: var(--color-neutral-400); }

.sec-head__kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-accent-700);
}

.sec-title {
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.sec-title--tight { max-width: 20ch; }
.sec-title--wide { max-width: 24ch; }

.sec-lead {
  margin: 0 0 44px;
  color: var(--color-neutral-700);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 64ch;
}

.split {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

/* ============================================================
   SÜRGŐSSÉGI SÁV
   ============================================================ */

.urgency {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
.urgency h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0 0 16px;
  max-width: 18ch;
}
.urgency p {
  margin: 0;
  color: var(--color-neutral-700);
  font-size: 16px;
  line-height: 1.65;
  max-width: 62ch;
}
.urgency__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.urgency__actions .btn { padding: 18px 24px; }

/* ============================================================
   JELEK
   ============================================================ */

.signs__split { grid-template-columns: 1.05fr .95fr; }

.signs__list { border-top: 2px solid var(--color-divider); }

.sign-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-divider);
}
.sign-card:last-child { border-bottom-width: 2px; }
.sign-card__num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-accent);
  line-height: 1.2;
}
.sign-card h3 {
  font-size: 19px;
  margin: 0 0 6px;
  letter-spacing: -0.012em;
}
.sign-card p {
  margin: 0;
  color: var(--color-neutral-700);
  font-size: 15px;
  line-height: 1.6;
}

.signs__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--color-neutral-400);
}
.signs__media figure { position: relative; }
.signs__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.signs__media figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--brick);
  color: #fdf1e7;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 12px;
  margin: 0;
}

/* ============================================================
   SZOLGÁLTATÁS-SZEKCIÓK
   ============================================================ */

.service__split { grid-template-columns: .82fr 1.18fr; }
.service__split--rev { grid-template-columns: 1.18fr .82fr; }

.service__media { border: 2px solid var(--color-text); }
.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.service__body p {
  color: var(--color-neutral-700);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 64ch;
}

.callout {
  border-left: 4px solid var(--color-accent);
  padding: 4px 0 4px 20px;
  margin: 0 0 28px;
}
.callout p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--color-neutral-800);
  max-width: none;
}
.callout strong {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-text);
}

.dash-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid var(--color-divider);
}
.dash-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-divider);
  color: var(--color-neutral-800);
  font-size: 15px;
  line-height: 1.55;
}
.dash-list li::before {
  content: "—";
  flex-shrink: 0;
  color: var(--color-accent);
  font-weight: 800;
}

.note-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--page);
  border: 1px solid var(--color-divider);
  padding: 16px;
  margin: 0 0 28px;
}
.note-box img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}
.note-box p {
  margin: 0;
  color: var(--color-neutral-700);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: none;
}

.price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--brick);
  color: #fdf1e7;
  padding: 14px 20px;
  margin: 0 0 24px;
}
.price-chip strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.price-chip span { font-size: 13.5px; color: #cfc6b9; }

.price-chip--outline {
  background: transparent;
  border: 2px solid var(--color-accent);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.action-row .btn { padding: 15px 22px; }
.action-row__note {
  color: var(--color-neutral-600);
  font-size: 13.5px;
}

/* --- Kutyás / görényes panel --- */

.panel-dark {
  margin-top: clamp(44px, 6vw, 80px);
  background: var(--olive-deep);
  color: #f2f0e2;
  padding: clamp(28px, 4vw, 56px);
}
.panel-dark__tag {
  display: inline-block;
  background: var(--color-accent);
  color: var(--cream);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 20px;
}
.panel-dark h3 {
  color: var(--cream);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0 0 20px;
  max-width: 20ch;
}
.panel-dark > p {
  margin: 0 0 32px;
  color: var(--cream-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 72ch;
}
.panel-dark .action-row__note { color: #b5aa9c; }

.three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: rgba(245, 236, 224, .3);
  margin: 0 0 32px;
}
.three-up img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.info-strip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-top: 1px solid rgba(245, 236, 224, .25);
  border-bottom: 1px solid rgba(245, 236, 224, .25);
  padding: 20px 0;
  margin: 0 0 28px;
}
.info-strip__mark {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--color-accent);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
}
.info-strip p {
  margin: 0;
  color: var(--cream-soft);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 74ch;
}

/* ============================================================
   FOLYAMAT
   ============================================================ */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid var(--color-text);
}
.steps li {
  padding: 28px 24px;
  border-right: 1px solid var(--color-divider);
}
.steps li:first-child { padding-left: 0; }
.steps li:last-child { padding-right: 0; border-right: 0; }
.steps__num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #8d9068;
  margin-bottom: 16px;
}
.steps li:first-child .steps__num { color: var(--color-accent); }
.steps h3 {
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -0.012em;
}
.steps p {
  margin: 0;
  color: var(--color-neutral-700);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================================================
   ÁRAK
   ============================================================ */

.price-table { border-top: 2px solid var(--color-text); }

.price-head,
.price-row {
  display: grid;
  grid-template-columns: 1.05fr 1.55fr .55fr;
  gap: 24px;
}

.price-head {
  padding: 14px 0;
  border-bottom: 2px solid var(--color-text);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
}
.price-head > :last-child { text-align: right; }

.price-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--color-divider);
  align-items: baseline;
}
.price-row:last-child { border-bottom: 2px solid var(--color-text); }

.price-row__name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16.5px;
  letter-spacing: -0.012em;
}
.price-row__sub {
  font-size: 13px;
  color: var(--color-neutral-700);
  margin-top: 3px;
}
.price-row__desc {
  color: var(--color-neutral-700);
  font-size: 14.5px;
  line-height: 1.6;
}
.price-row__value {
  text-align: right;
  white-space: nowrap;
}
.price-row__value strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.015em;
}
.price-row__value span {
  display: block;
  font-size: 12px;
  color: var(--color-neutral-600);
}

.price-row--highlight {
  padding: 24px 16px;
  margin: 0 -16px;
  background: var(--color-accent-100);
  border-left: 4px solid var(--color-accent);
}
.price-row--highlight .price-row__desc { color: var(--color-neutral-800); }
.price-row--highlight .price-row__value strong {
  font-size: 22px;
  color: var(--color-accent-700);
}
.price-row--highlight .price-row__value span { color: var(--color-neutral-700); }

.price-notes {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 72ch;
}
.price-notes li {
  display: flex;
  gap: 10px;
  color: var(--color-neutral-700);
  font-size: 14.5px;
  line-height: 1.6;
}
.price-notes li::before {
  content: "·";
  color: var(--color-accent);
  font-weight: 800;
  flex-shrink: 0;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ============================================================
   SOS
   ============================================================ */

.sos {
  background: var(--brown-sos);
  color: #f7eddd;
  border-bottom: 2px solid var(--brown-deep);
}
.sos .sec-head__num { color: rgba(245, 236, 224, .22); }
.sos .sec-head__kicker { color: var(--color-accent-400); }
.sos .sec-title { color: var(--cream); }
.sos .sec-lead { color: var(--cream-soft); }

.sos__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: rgba(245, 236, 224, .28);
}
.sos__card {
  background: var(--brown-card);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}
.sos__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--color-accent);
  margin: 0 0 14px;
}
.sos__card h3 {
  color: var(--cream);
  font-size: 21px;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.sos__card p {
  margin: 0 0 26px;
  color: var(--cream-soft);
  font-size: 15px;
  line-height: 1.65;
}
.sos__card .btn { margin-top: auto; padding: 15px 22px; }

.sos__footnote {
  margin: 26px 0 0;
  color: #b5aa9c;
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 64ch;
}

/* ============================================================
   TÁRSASHÁZ
   ============================================================ */

.tarsashaz__split { grid-template-columns: 1fr 1fr; }

.tarsashaz__lead {
  margin: 0 0 22px;
  color: var(--color-neutral-700);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 56ch;
}
.tarsashaz__note {
  margin: 0;
  color: var(--color-neutral-700);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 56ch;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.chip-list li {
  border: 2px solid var(--color-text);
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
}

.rate-list { border-top: 2px solid var(--color-text); }
.rate-list > div {
  padding: 26px 0;
  border-bottom: 1px solid var(--color-divider);
}
.rate-list > div:last-child { border-bottom: 2px solid var(--color-text); }
.rate-list h3 {
  font-size: 21px;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.rate-list p {
  margin: 0;
  color: var(--color-neutral-700);
  font-size: 15.5px;
  line-height: 1.65;
}
.rate-list strong {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-accent-700);
  font-size: 17px;
}

/* ============================================================
   GARANCIA
   ============================================================ */

.garancia__split { grid-template-columns: 1fr 1fr; }

.garancia__statement {
  border-left: 4px solid var(--color-accent);
  padding: 4px 0 4px 22px;
}
.garancia__statement p {
  margin: 0 0 16px;
  color: var(--color-neutral-800);
  font-size: 16.5px;
  line-height: 1.7;
}
.garancia__statement p:last-child { margin-bottom: 0; }

.assure {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid var(--color-text);
}
.assure > div { padding: 22px 20px 22px 0; }
.assure > div:nth-child(odd) { border-right: 1px solid var(--color-divider); }
.assure > div:nth-child(even) { padding: 22px 0 22px 20px; }
.assure > div:nth-child(1),
.assure > div:nth-child(2) { border-bottom: 1px solid var(--color-divider); }
.assure h3 {
  font-size: 17px;
  margin: 0 0 6px;
  letter-spacing: -0.012em;
}
.assure p {
  margin: 0;
  color: var(--color-neutral-700);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================================================
   EGYÉB KÁRTEVŐ SÁV
   ============================================================ */

.other-pest {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(32px, 4vw, 52px);
}
.other-pest h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 8px;
}
.other-pest p {
  margin: 0;
  color: var(--color-neutral-700);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 56ch;
}
.other-pest .btn { white-space: nowrap; }

/* ============================================================
   GYIK
   ============================================================ */

.faq {
  max-width: 900px;
  border-top: 2px solid var(--color-text);
}
.faq details { border-bottom: 1px solid var(--color-divider); }
.faq details:last-child { border-bottom: 2px solid var(--color-text); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.012em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--color-accent);
  font-size: 22px;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--color-neutral-700);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 70ch;
}

/* ============================================================
   AJÁNLATKÉRÉS
   ============================================================ */

.quote__split {
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(32px, 4vw, 64px);
}

.quote__intro p {
  margin: 0 0 28px;
  color: var(--color-neutral-700);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 46ch;
}

.quote__call {
  background: var(--olive-deep);
  color: #f2f0e2;
  padding: 28px;
}
.quote__call-kicker {
  margin: 0 0 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent-400);
}
.quote__call-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.025em;
  color: var(--cream);
  text-decoration: none;
  margin-bottom: 10px;
}
.quote__call-number:hover { color: var(--color-accent-400); }
.quote__call-hours {
  margin: 0;
  font-size: 13.5px;
  color: #cfc6b9;
}

.quote-form {
  background: #fffdf8;
  border: 2px solid var(--olive-line);
  padding: clamp(22px, 3vw, 40px);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.field .req { color: var(--color-accent); }

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  padding: 14px;
  border: 2px solid var(--color-neutral-400);
  border-radius: 0;
  background: #fbf5ea;
  color: var(--color-text);
  min-height: 50px;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--color-accent);
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}
.field [aria-invalid="true"] { border-color: var(--color-accent); }

.field-error {
  color: var(--color-accent-700);
  font-size: 12.5px;
  font-weight: 600;
  min-height: 1.1em;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-consent {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--color-divider);
  padding-top: 18px;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--color-accent);
}
.form-consent label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-neutral-800);
  flex: 1;
  min-width: 200px;
}
.form-consent a {
  color: var(--color-accent-700);
  font-weight: 700;
  text-decoration: underline;
}
.form-consent .field-error { width: 100%; }

.form-submit-wrap { grid-column: 1 / -1; }
.form-submit-wrap .btn {
  width: 100%;
  font-size: 16px;
  padding: 18px 24px;
  min-height: 56px;
}
.form-status {
  font-size: 14px;
  font-weight: 700;
  min-height: 1.2em;
  margin: 14px 0 0;
  color: var(--color-text);
}
.form-status[data-state="error"] { color: var(--color-accent-700); }

/* ============================================================
   ZÁRÓ SÁV
   ============================================================ */

.closing {
  background: var(--color-accent);
  color: var(--cream);
}
.closing__inner {
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(52px, 7vw, 92px);
}
.closing h2 {
  color: var(--cream);
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 16ch;
}
.closing p {
  margin: 0 0 32px;
  color: #fdf3ef;
  font-size: 17px;
  line-height: 1.6;
  max-width: 56ch;
}
.closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn--on-accent {
  background: var(--cream);
  border-color: #fff;
  color: var(--color-accent-700);
}
.btn--on-accent:hover {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--cream);
}
.btn--on-accent-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .6);
  color: var(--cream);
}
.btn--on-accent-outline:hover {
  border-color: var(--cream);
  background: rgba(255, 255, 255, .14);
  color: var(--cream);
}

/* ============================================================
   LÁBLÉC
   ============================================================ */

.site-footer {
  background: var(--brown-deep);
  color: #d6c9b3;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: 32px;
}
.logo--footer {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--cream);
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.site-footer__col p {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.site-footer__col p:last-child { margin-bottom: 0; }
.site-footer h3 {
  color: var(--cream);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.site-footer a {
  color: #cfc6b9;
  text-decoration: none;
}
.site-footer a:hover { color: var(--cream); }
.site-footer__col:nth-child(2) a { color: #f5ece0; }
.site-footer__col:nth-child(2) a:hover { color: var(--color-accent-400); }

.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #cfc6b9;
  cursor: pointer;
  text-align: left;
}
.footer-link-btn:hover { color: var(--cream); }

.site-footer__bottom {
  padding-top: 20px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(245, 236, 224, .18);
}
.site-footer__bottom p {
  margin: 0;
  font-size: 12.5px;
}

/* ============================================================
   MOBIL RAGADÓS CTA
   ============================================================ */

.mobile-cta-spacer {
  display: none;
  background: var(--brown-deep);
  height: calc(70px + env(safe-area-inset-bottom));
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  gap: 2px;
  background: var(--brown-deep);
  border-top: 2px solid var(--brown-deep);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-sticky-cta .btn {
  flex: 1;
  justify-content: center;
  border: 0;
  font-size: 14.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 17px 10px;
  min-height: 56px;
}
.mobile-sticky-cta .btn--primary {
  background: var(--olive-deep);
  color: #f7eddd;
}
.mobile-sticky-cta .btn--accent {
  background: var(--color-accent);
  color: var(--cream);
}

/* ============================================================
   COOKIE BANNER ÉS MODAL
   ============================================================ */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px var(--gutter);
  background: var(--color-surface);
  border-top: 2px solid var(--color-text);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text { flex: 1; min-width: 280px; }
.cookie-banner__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 6px;
}
.cookie-banner__text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-neutral-800);
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner__actions .btn {
  font-size: 14px;
  padding: 12px 18px;
  justify-content: center;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: grid;
  place-items: center;
  padding: var(--gutter);
}
.cookie-modal[hidden] { display: none; }
.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--color-neutral-900) 55%, transparent);
}
.cookie-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  background: var(--color-bg);
  border: 2px solid var(--color-text);
  padding: clamp(22px, 3vw, 36px);
}
.cookie-modal__dialog h2 {
  font-size: 24px;
  margin: 0 0 10px;
}
.cookie-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-neutral-700);
  padding: 4px 8px;
}
.cookie-modal__close:hover { color: var(--color-accent); }
.cookie-modal__lead {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-neutral-700);
  margin: 0 0 20px;
}
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.cookie-modal__actions .btn {
  font-size: 14px;
  padding: 12px 18px;
  justify-content: center;
}

.cookie-category {
  border-top: 1px solid var(--color-divider);
  padding: 16px 0;
}
.cookie-category__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cookie-category__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  margin: 0 0 4px;
}
.cookie-category__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-neutral-700);
}

.switch {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  display: inline-block;
}
.switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.switch__track {
  position: absolute;
  inset: 0;
  background: var(--color-neutral-400);
  border: 2px solid var(--color-neutral-500);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.switch__track::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--cream);
  transition: transform .15s ease;
}
.switch input:checked + .switch__track {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.switch input:checked + .switch__track::before { transform: translateX(20px); }
.switch input:disabled + .switch__track { opacity: .55; cursor: not-allowed; }
.switch input:focus-visible + .switch__track {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================================
   ALOLDALAK (404, köszönjük, jogi oldalak)
   ============================================================ */

.state-page {
  background: var(--brown-hero);
  color: #f7eddd;
}
.state-page__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) var(--gutter);
}
.state-page__inner > * { max-width: 780px; }
.state-page__kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-accent-400);
}
.state-page h1 {
  color: var(--cream);
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.state-page p {
  color: var(--cream-soft);
  font-size: 16.5px;
  line-height: 1.65;
}
.state-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.state-page__legal {
  margin-top: 28px;
  font-size: 13.5px;
  color: #b5aa9c;
}
.state-page__legal a,
.state-page__legal .footer-link-btn { color: var(--color-accent-400); }
.state-page__legal a:hover,
.state-page__legal .footer-link-btn:hover { color: var(--cream); }
.state-page p a { color: var(--color-accent-400); }

.legal {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  max-width: 860px;
}
.legal h1 {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.05;
  margin: 0 0 24px;
}
.legal h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  margin: 40px 0 12px;
  padding-top: 20px;
  border-top: 2px solid var(--color-divider);
}
.legal h3 {
  font-size: 18px;
  margin: 24px 0 8px;
}
.legal p,
.legal li {
  color: var(--color-neutral-800);
  font-size: 15.5px;
  line-height: 1.7;
}
.legal ul,
.legal ol { padding-left: 20px; }
.legal li { margin-bottom: 8px; }

.pricing__table-wrap { overflow-x: auto; }
.pricing__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.pricing__table th {
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
  padding: 12px 10px;
  border-bottom: 2px solid var(--color-text);
}
.pricing__table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--color-divider);
  color: var(--color-neutral-800);
}

/* ============================================================
   RESPONZÍV
   ============================================================ */

@media (min-width: 961px) {
  .mobile-sticky-cta,
  .mobile-cta-spacer,
  .m-only { display: none !important; }
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    border-top: 2px solid var(--color-divider);
    background: var(--page);
    text-transform: none;
    letter-spacing: 0;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    padding: 16px var(--gutter);
    border-bottom: 1px solid var(--color-divider);
    border-top: 0;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
  }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a:hover { border-bottom-color: var(--color-divider); color: var(--color-accent); }

  .site-header { position: sticky; }
  .site-header__inner { position: relative; }
  .nav-toggle { display: inline-flex; }
  .d-only { display: none !important; }

  .mobile-sticky-cta { display: flex; }
  .mobile-cta-spacer { display: block; }
}

@media (max-width: 860px) {
  .split,
  .hero__grid,
  .signs__split,
  .service__split,
  .service__split--rev,
  .tarsashaz__split,
  .garancia__split,
  .quote__split,
  .urgency,
  .other-pest,
  .sos__grid,
  .three-up,
  .form-grid,
  .trust__row,
  .steps,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .service__split--rev .service__media { order: -1; }

  .hero__media {
    min-height: 210px;
    border-left: 0;
    border-top: 2px solid rgba(247, 237, 221, .3);
  }

  .trust__item,
  .trust__item + .trust__item {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
    border-top: 1px solid var(--color-divider);
    padding-top: 18px;
    margin-top: 18px;
  }
  .trust__item:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }

  .steps li {
    border-right: 0;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-divider);
  }
  .steps li:last-child { border-bottom: 0; }

  .price-head { display: none; }
  .price-row {
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding: 18px 0;
    margin: 0;
  }
  .price-row__value { text-align: left; }
  .price-row--highlight {
    background: #fbe3d4;
    padding: 18px 0 18px 14px;
  }

  .assure {
    grid-template-columns: 1fr;
    border-top: 0;
  }
  .assure > div,
  .assure > div:nth-child(even) {
    padding: 0 0 0 44px;
    border: 0;
    margin-bottom: 24px;
    position: relative;
  }
  .assure > div:last-child { margin-bottom: 0; }
  .assure > div::before {
    content: attr(data-n);
    position: absolute;
    left: 0;
    top: 1px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .04em;
    color: var(--brick);
  }
  .assure > div::after {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    bottom: 2px;
    width: 2px;
    background: var(--color-divider);
  }
  .assure h3 { font-size: 19px; margin-bottom: 7px; }
  .assure p { font-size: 15.5px; max-width: 34ch; }

  .panel-dark { margin-top: 32px; }

  .other-pest .btn { justify-self: start; }
}

@media (max-width: 560px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; min-width: 120px; }
  .cookie-modal__actions .btn { flex: 1; min-width: 130px; }
  .hero__actions .btn,
  .price-actions .btn,
  .closing__actions .btn { flex: 1; justify-content: center; min-width: 200px; }
}
