:root {
  --black: #0d0d0d;
  --ink: #1a1a1a;
  --gray: #6b6b6b;
  --line: #e4e4e4;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --accent: #0d0d0d;
  --t2-black: #000000;
  --t2-pink: #ff1b8d;
  --t2-lime: #bfff00;
  --t2-soft: #f0f0f0;
  --t2-turquoise: #20cdff;
  --bento-radius: 20px;
  --sheet-radius: clamp(20px, 4vw, 36px);
  --sheet-tail: var(--sheet-radius);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body.landing-mebel {
  background: var(--t2-black);
}

.container {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide { max-width: 1080px; }

.muted { color: var(--gray); }

/* --- Promo bar (T2-style) --- */
.promo-bar {
  background: var(--t2-pink);
  color: #fff;
  padding: 12px 0;
}
.promo-bar-inner { text-align: center; }
.promo-bar-link {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.promo-bar-link:hover { text-decoration: underline; }

/* Mebel landing: layered sheets (T2-style) */
.landing-mebel main {
  background: var(--t2-black);
}
.landing-mebel .topbar-dark {
  padding-bottom: 0;
  background: var(--t2-black);
  position: relative;
  z-index: 898;
}

/* Intro stack: pink scrolls up, hides under black hero, then leaves with the block */
.landing-mebel .mebel-intro {
  position: relative;
  background: var(--t2-black);
}

/* Pink strip + background tail under black hero (text stays in place) */
.landing-mebel .promo-bar--mebel {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--t2-pink);
  border-radius: var(--sheet-radius) var(--sheet-radius) 0 0;
  padding: 14px 0 18px;
  box-shadow: none;
  overflow: visible;
}
.landing-mebel .promo-bar--mebel::after {
  content: "";
  display: block;
  height: var(--sheet-tail);
  background: var(--t2-pink);
}
.landing-mebel .promo-bar-inner {
  min-height: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Black hero covers pink on scroll; tail extends under white section below */
.landing-mebel .mebel-intro .hero-dark {
  position: relative;
  z-index: 901;
  margin-top: calc(-1 * var(--sheet-tail));
  padding-top: calc(32px + var(--sheet-tail));
  padding-bottom: 56px;
  border-radius: var(--sheet-radius) var(--sheet-radius) 0 0;
  background: var(--t2-black);
  overflow: visible;
}
.landing-mebel .hero-dark::after {
  content: "";
  display: block;
  height: var(--sheet-tail);
  background: var(--t2-black);
  margin-bottom: calc(-1 * var(--sheet-tail));
}

/* Stacked content sheets: bg tail behind next block, text offset by padding-top */
.landing-mebel .sheet {
  border-top: none;
  overflow: visible;
}
.landing-mebel .sheet-top {
  border-radius: var(--sheet-radius) var(--sheet-radius) 0 0;
  position: relative;
  margin-top: calc(-1 * var(--sheet-tail));
  padding-top: calc(var(--sheet-pad, 48px) + var(--sheet-tail));
}
.landing-mebel .sheet > .container,
.landing-mebel .sheet > .container-wide {
  position: relative;
  z-index: 1;
}

.landing-mebel .section-why-compact.sheet-top {
  background: var(--bg);
  --sheet-pad: 48px;
  z-index: 902;
}
.landing-mebel .section-team {
  background: #fff;
  padding: 8px 0 40px;
  border-top: none;
  z-index: 902;
}
.landing-mebel .section-bento.sheet {
  background: var(--bg);
  padding: 48px 0 56px;
  margin-top: 0;
  border-radius: 0;
  z-index: 903;
}
.landing-mebel .section-bento.sheet::after {
  content: "";
  display: block;
  height: var(--sheet-tail);
  background: var(--bg);
  margin-bottom: calc(-1 * var(--sheet-tail));
}
.landing-mebel .section-portfolio.sheet {
  background: var(--t2-black);
  --portfolio-gutter: 16px;
  padding: calc(48px + var(--sheet-tail)) 0 calc(var(--portfolio-gutter) + var(--sheet-tail));
  margin-top: calc(-1 * var(--sheet-tail));
  border-radius: var(--sheet-radius) var(--sheet-radius) 0 0;
  z-index: 904;
}
.landing-mebel .section-portfolio.sheet::after {
  content: "";
  display: block;
  height: var(--sheet-tail);
  background: var(--t2-black);
  margin-bottom: calc(-1 * var(--sheet-tail));
}
.landing-mebel .sheet-soft {
  background: var(--bg-soft);
}
.landing-mebel .section-check.sheet-top {
  --sheet-pad: 48px;
  z-index: 904;
}
.landing-mebel .section-check.sheet::after {
  content: "";
  display: block;
  height: var(--sheet-tail);
  background: var(--bg-soft);
  margin-bottom: calc(-1 * var(--sheet-tail));
}
.landing-mebel .section-form.sheet-top {
  --sheet-pad: 48px;
  z-index: 905;
  border-top: none;
}

@media (max-width: 560px) {
  .promo-bar-link { font-size: 12px; }
  .landing-mebel .promo-bar--mebel { padding: 12px 0 20px; }
}

/* --- Topbar / brand --- */
.topbar {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 22px;
  color: var(--black);
}
.brand-sm { font-size: 16px; opacity: 0.7; }
.topbar-inner { display: flex; align-items: center; }
.brand-logo { display: inline-flex; align-items: center; text-decoration: none; color: inherit; }
.brand-logo img { display: block; height: 32px; width: auto; max-width: min(100%, 280px); }
.brand-logo-video .brand-logo-video-el {
  display: block;
  height: 72px;
  width: auto;
  max-width: min(100%, 320px);
  object-fit: contain;
}
.topbar-dark {
  background: var(--t2-black);
  border-bottom: none;
  padding: 20px 0 24px;
}
@media (max-width: 560px) {
  .brand-logo img { height: 24px; max-width: min(100%, 220px); }
  .brand-logo-video .brand-logo-video-el { height: 52px; max-width: min(100%, 260px); }
  .topbar-dark { padding: 16px 0 20px; }
}

/* --- Hero --- */
.hero {
  padding: 64px 0 48px;
  background: var(--bg);
}
.hero-dark {
  background: var(--t2-black);
  padding: 32px 0 56px;
  border-top: none;
}
.hero-success { padding: 96px 0; }
.hero-title {
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--black);
}
.hero-title-light { color: #fff; }
.hero-sub {
  font-size: clamp(17px, 2.6vw, 21px);
  color: var(--gray);
  max-width: 620px;
  margin: 0 0 28px;
}
.hero-sub-light { color: rgba(255, 255, 255, .72); }
.hero-package {
  max-width: 620px;
  margin: 0 0 28px;
}
.hero-package-title {
  margin: 0 0 10px;
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}
.hero-package-text {
  margin: 0;
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.5;
  color: rgba(255, 255, 255, .72);
}

/* --- Sections --- */
.section { padding: 40px 0; border-top: 1px solid var(--line); }
.section-check { background: var(--bg-soft); }
.section-title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  margin: 0 0 20px;
}
.lead-text { font-size: 18px; line-height: 1.6; margin: 0 0 10px; }
.section-lead {
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 14px;
  color: var(--black);
}
.section-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray);
  margin: -8px 0 28px;
  max-width: 720px;
}
.section-title-upper {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}
.section-why-compact { padding-top: 48px; }
.section-team {
  background: #fff;
  padding: 8px 0 40px;
  border-top: none;
}
.team-photo {
  margin: 0 0 28px;
  border-radius: var(--bento-radius);
  overflow: hidden;
}
.team-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.team-about-lead {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.team-about-text {
  margin: 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray);
}
.beru-system-plaque {
  margin: 0 0 28px;
  padding: 28px 28px 32px;
  border-radius: 24px;
  background: var(--t2-turquoise);
  color: #fff;
  transition: background-color .28s ease, color .28s ease;
}
.beru-system-plaque:has(.tile-toggle-input:not(:checked)) {
  background: var(--t2-soft);
  color: var(--black);
}
.beru-system-plaque-lead {
  margin: 0 0 22px;
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 800;
  line-height: 1.35;
  transition: color .28s ease;
}
.beru-system-plaque-control {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.beru-system-toggle {
  flex-shrink: 0;
  margin-top: 2px;
}
.beru-system-plaque:has(.tile-toggle-input:checked) .tile-toggle-track {
  background: rgba(255, 255, 255, .38);
}
.beru-system-plaque:has(.tile-toggle-input:checked) .tile-toggle-input:checked + .tile-toggle-track {
  background: #fff;
}
.beru-system-plaque:has(.tile-toggle-input:not(:checked)) .tile-toggle-track {
  background: #c8c8c8;
}
.beru-system-plaque .tile-toggle-thumb {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
  transition: background-color .28s ease;
}
.beru-system-plaque:has(.tile-toggle-input:checked) .tile-toggle-input:checked + .tile-toggle-track .tile-toggle-thumb {
  background: var(--t2-turquoise);
}
.beru-system-state {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  transition: color .28s ease;
}
.beru-system-note {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  transition: color .28s ease;
}
.beru-system-plaque:has(.tile-toggle-input:not(:checked)) .beru-system-note {
  color: var(--gray);
}
.section-bento {
  background: var(--bg);
  padding: 48px 0 56px;
  border-top: none;
}
.section-cta { margin-top: 32px; text-align: center; }

/* --- Bento grid (T2-style) --- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.bento-tile {
  grid-column: span 4;
  border-radius: var(--bento-radius);
  padding: 22px 24px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .18s ease, box-shadow .18s ease;
}
.bento-tile--span-3 { grid-column: span 3; }
.bento-tile--span-4 { grid-column: span 4; }
.bento-tile--span-8 { grid-column: span 8; }
.bento-hero { margin: 8px 0 28px; }
.bento-hero .bento-tile { min-height: 120px; justify-content: flex-start; }

/* Hero offer cards — T2-style white plaques on black */
.bento-hero-cards {
  gap: 8px;
}
.bento-hero-cards .bento-tile--card {
  border-radius: 24px;
  padding: 26px 22px;
  min-height: 0;
  box-shadow: none;
}
.bento-hero-cards .bento-tile-heading {
  text-transform: none;
  font-size: clamp(22px, 2.88vw, 26px);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0;
}
.bento-hero-cards .bento-tile-text {
  font-size: 14px;
  line-height: 1.4;
  opacity: 1;
  color: var(--ink);
}

/* Offer cards: price badge + text + toggle */
.bento-tile--offer {
  position: relative;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding-top: 26px;
  min-height: 185px;
  transition: background .2s ease, opacity .2s ease;
}
.bento-tile--offer:has(.tile-toggle-input:not(:checked)) {
  background: #e8e8e8;
  opacity: .82;
}
.bento-tile--offer:has(.tile-toggle-input:not(:checked)) .bento-tile-heading,
.bento-tile--offer:has(.tile-toggle-input:not(:checked)) .bento-tile-text {
  color: rgba(0, 0, 0, .42);
}
.bento-tile--offer:has(.tile-toggle-input:not(:checked)) .tile-price-badge {
  background: #cfcfcf;
  color: rgba(0, 0, 0, .55);
}
.bento-tile--offer:has(.tile-toggle-input:not(:checked)) .tile-price-old::after {
  background: rgba(0, 0, 0, .28);
}
.tile-price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  background: var(--t2-lime);
  border-radius: 10px;
  font-weight: 800;
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1;
  color: var(--black);
  white-space: nowrap;
}
.tile-price-old {
  position: relative;
  display: inline-block;
  opacity: .92;
}
.tile-price-old::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 52%;
  height: 2px;
  background: var(--t2-pink);
  transform: rotate(-14deg);
  border-radius: 1px;
}
.tile-price-new {
  font-weight: 800;
}
.bento-tile--offer .bento-tile-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 0;
}
.bento-tile--offer .bento-tile-heading {
  padding-right: 112px;
}
.bento-tile--offer .bento-tile-text {
  margin: 0;
  padding-right: 52px;
}
.bento-tile--offer .tile-toggle {
  position: absolute;
  right: 22px;
  bottom: 26px;
  z-index: 3;
}
.tile-toggle {
  flex-shrink: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  position: relative;
}
.tile-toggle-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.tile-toggle:has(.tile-toggle-input:focus-visible) .tile-toggle-track {
  outline: 2px solid #0077ff;
  outline-offset: 2px;
}
.tile-toggle-track {
  display: block;
  width: 51px;
  height: 31px;
  border-radius: 999px;
  background: #ccc;
  position: relative;
  transition: background .15s ease;
}
.tile-toggle-input:checked + .tile-toggle-track {
  background: #0077ff;
}
.tile-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .22);
  transition: transform .15s ease;
  pointer-events: none;
}
.tile-toggle-input:checked + .tile-toggle-track .tile-toggle-thumb {
  transform: translateX(20px);
}

.bento-tile--white { background: #fff; color: var(--black); }
.bento-tile--soft { background: var(--t2-soft); color: var(--black); }
.bento-tile--risk-photo {
  container-type: inline-size;
  position: relative;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
  background-image: var(--tile-bg);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  justify-content: flex-start;
  align-items: flex-start;
  aspect-ratio: 1024 / 478;
  min-height: 0;
}
.bento-tile--risk-photo .bento-tile-text-strong {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 8.5cqw 7.75cqw;
  max-width: 58%;
  line-height: 1.25;
  font-size: 6.2cqw;
  font-weight: 700;
}
.bento-tile--accent-pink { background: var(--t2-pink); color: #fff; }
.bento-tile--accent-lime { background: var(--t2-lime); color: var(--black); }
.bento-tile-heading {
  margin: 0 0 8px;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.bento-tile-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  opacity: .88;
}
.bento-tile--accent-pink .bento-tile-text,
.bento-tile--accent-lime .bento-tile-text { opacity: 1; }
.bento-tile-text-strong { font-weight: 700; font-size: 16px; opacity: 1; }
.bento-tile-link {
  margin-top: 12px;
  font-weight: 800;
  font-size: 15px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.bento-tile-link:hover { text-decoration: underline; }
.bento-tile--photo {
  position: relative;
  padding: 0;
  min-height: 220px;
  overflow: hidden;
  background: #ccc var(--tile-bg) center / cover no-repeat;
  color: #fff;
  justify-content: flex-end;
}
.bento-tile--photo .bento-tile-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .82) 100%);
  opacity: 0;
  transition: opacity .2s ease;
}
.bento-tile--photo .bento-tile-heading,
.bento-tile--photo .bento-tile-text { color: #fff; opacity: 1; }
.bento-tile-label {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .bento-tile:not(.bento-tile--photo):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  }
  .bento-hero-cards .bento-tile--card:hover {
    transform: none;
    box-shadow: none;
  }
  .bento-tile--photo:hover .bento-tile-content { opacity: 1; }
}
@media (max-width: 900px) {
  .bento-tile--span-3,
  .bento-tile--span-4,
  .bento-tile--span-8 { grid-column: span 6; }
}
@media (max-width: 768px) {
  .bento-tile--span-3,
  .bento-tile--span-4,
  .bento-tile--span-8 { grid-column: span 12; }
  .bento-tile--photo .bento-tile-content { display: none; }
  .bento-tile-label {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 16px 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .85) 100%);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .bento-hero .bento-tile { grid-column: span 12; min-height: auto; }
}
@media (max-width: 480px) {
  .section-cta .btn { width: 100%; }
}

/* --- Screen 2: risks --- */
.section-why { background: var(--bg); }
.risk-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.risk-list li {
  font-size: 18px;
  padding-left: 28px;
  position: relative;
}
.risk-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
}

/* --- Screen 3: case tiles --- */
.section-cases { background: var(--bg-soft); }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #ddd;
}
.case-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(13, 13, 13, .58);
  opacity: 0;
  transition: opacity .2s ease;
}
.case-card:hover .case-card-overlay,
.case-card:focus-within .case-card-overlay { opacity: 1; }
.case-card-title {
  color: #fff;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}
.case-card-label {
  display: none;
}
@media (max-width: 768px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .case-card-overlay { display: none; }
  .case-card-label {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 12px 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .78) 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
  }
}
@media (max-width: 480px) {
  .case-grid { grid-template-columns: 1fr; }
  .section-cta .btn { width: 100%; }
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  font-size: 18px;
  padding-left: 28px;
  position: relative;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 10px;
  background: var(--black);
  border-radius: 50%;
}
.final-text { font-size: clamp(20px, 3.4vw, 26px); font-weight: 600; margin: 0 0 8px; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: opacity .15s ease, background .15s ease;
}
.btn-primary { background: var(--black); color: #fff; }
.btn-primary:hover { opacity: .88; }
.btn-lime {
  background: var(--t2-lime);
  color: var(--black);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 14px;
  padding: 16px 28px;
}
.btn-lime:hover { filter: brightness(1.05); opacity: 1; }
.btn-secondary { background: #fff; color: var(--black); border-color: var(--black); }
.hero-cta { margin-top: 6px; }
.hero-cta--desktop .hero-cta-note { color: rgba(255, 255, 255, .88); }
.sticky-cta { display: none; }
.sticky-cta-panel {
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .18);
}
.sticky-cta .hero-cta-note {
  margin: 10px 0 0;
  color: rgba(0, 0, 0, .55);
  font-size: 13px;
}
@media (max-width: 768px) {
  .hero-cta--desktop { display: none; }
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: var(--bottom-ui-offset, 0px);
    z-index: 950;
  }
  .landing-mebel {
    padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px) + var(--bottom-ui-offset, 0px));
  }
  .landing-mebel .mebel-intro .hero-dark { padding-bottom: 32px; }
}
.btn-hero { margin-top: 0; }
.btn-hero-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  border-radius: 20px;
  padding: 18px 22px;
  font-size: clamp(16px, 2.6vw, 20px);
  line-height: 1.1;
}
.btn-hero-label { flex-shrink: 0; }
.btn-hero-price {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-hero-price-new { font-weight: 800; }
.btn-hero-price-old[hidden] { display: none; }
.hero-cta-note {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.45;
}
.btn-block { width: 100%; }
.btn-link {
  background: none;
  border: none;
  color: var(--ink);
  padding: 4px 8px;
  text-decoration: underline;
  font-size: 14px;
}

/* --- Form --- */
.section-form { background: var(--bg-soft); border-top: 1px solid var(--line); }
.form { display: grid; gap: 16px; max-width: 520px; }
.field { display: grid; gap: 6px; }
.field-label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: 2px solid var(--black); border-color: var(--black); }

/* --- Form consent disclaimer --- */
.form-consent { font-size: 13px; line-height: 1.5; color: var(--gray); margin: 4px 0 0; }
.form-consent a { color: var(--ink); }

/* --- Booking modal --- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.booking-modal[hidden] { display: none; }
.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
}
.booking-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 24px);
  max-height: calc(100dvh - 24px);
  overflow: auto;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 28px 22px calc(24px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -12px 48px rgba(0, 0, 0, .28);
}
.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-modal-close:hover { opacity: .65; }
.booking-modal-title {
  margin: 0 48px 18px 0;
  font-size: clamp(20px, 4.5vw, 26px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.booking-modal-intro {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray);
}
.booking-modal-intro p { margin: 0; }
.booking-form { max-width: none; gap: 18px; }
.booking-time {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.booking-time-label {
  margin-bottom: 10px;
}
.time-options {
  display: grid;
  gap: 8px;
}
.time-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: background .2s ease, opacity .2s ease;
}
.time-option-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  transition: color .2s ease;
}
.time-option:not(:has(.tile-toggle-input:checked)) {
  background: #e8e8e8;
  opacity: .82;
}
.time-option:not(:has(.tile-toggle-input:checked)) .time-option-label {
  color: rgba(0, 0, 0, .42);
}
.booking-form .field input {
  background: #f3f3f3;
  border-color: transparent;
}
.booking-form .field input:focus {
  background: #fff;
}
.booking-form-submit {
  margin-top: 4px;
  border-radius: 16px;
  padding: 18px 24px;
}
.booking-form-consent {
  text-align: center;
}
body.booking-modal-open {
  overflow: hidden;
}
@media (min-width: 560px) {
  .booking-modal {
    align-items: center;
    padding: 24px;
  }
  .booking-modal-dialog {
    border-radius: 24px;
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    padding: 32px 28px 28px;
  }
}

/* --- Portfolio grid (Instagram-style) --- */
.section-portfolio {
  background: var(--t2-black);
  border-top: none;
  --portfolio-gutter: 16px;
}
.section-portfolio .container-wide {
  padding-left: var(--portfolio-gutter);
  padding-right: var(--portfolio-gutter);
}
.portfolio-profile {
  margin-bottom: 0;
}
.portfolio-profile-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: var(--portfolio-gutter);
}
.portfolio-profile-avatar {
  flex-shrink: 0;
}
.portfolio-profile-avatar-btn {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.portfolio-profile-avatar .story-ring {
  width: 88px;
}
.portfolio-profile-avatar-img {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--t2-black);
}
.story-ring--profile {
  background: conic-gradient(from 210deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75);
}
.story-ring--profile.is-viewed {
  background: #565656;
}
.portfolio-profile-meta {
  min-width: 0;
  flex: 1;
}
.portfolio-profile-name {
  margin: 0 0 8px;
  font-size: clamp(13px, 2.2vw, 15px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: #fff;
}
.portfolio-profile-bio {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .72);
}
.section-portfolio-dark .story-title {
  color: rgba(255, 255, 255, .88);
}
.section-portfolio .section-sub {
  margin-bottom: 24px;
}

/* --- Stories rail (Instagram-style) --- */
.stories-rail-wrap {
  margin-bottom: var(--portfolio-gutter, 16px);
}
.stories-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.stories-rail::-webkit-scrollbar { display: none; }
.story-item {
  flex: 0 0 calc((100% - 48px) / 4.25);
  width: auto;
  min-width: 0;
  max-width: 68px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.story-ring {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 2.5px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: conic-gradient(from 210deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75);
  transition: background .25s ease;
}
@media (max-width: 768px) {
  .story-item {
    max-width: none;
  }
}
@media (min-width: 769px) {
  .story-item {
    flex: 0 0 68px;
    max-width: 68px;
  }
}
.story-title {
  display: block;
  width: 100%;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.story-ring.is-viewed {
  background: #565656;
}
.story-thumb {
  position: absolute;
  inset: 2.5px;
  display: block;
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--t2-black);
  background: #262626;
}
.stories-modal {
  position: fixed;
  inset: 0;
  z-index: 920;
  display: flex;
  flex-direction: column;
}
.stories-modal[hidden] { display: none; }
.stories-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .94);
}
.stories-modal-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding:
    calc(8px + env(safe-area-inset-top, 0px))
    0
    calc(112px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 769px) {
  .stories-modal-shell {
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }
}
.stories-modal-close {
  position: absolute;
  top: calc(8px + env(safe-area-inset-top, 0px));
  right: 12px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.stories-modal-close:hover { background: rgba(255, 255, 255, .2); }
.stories-progress {
  flex-shrink: 0;
  height: 2px;
  margin: 0 16px 12px;
  background: rgba(255, 255, 255, .35);
  border-radius: 999px;
  overflow: hidden;
}
.stories-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: inherit;
  transform-origin: left center;
  transition: none;
}
.stories-player-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.stories-player {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  background: #000;
  border-radius: 8px;
}
.stories-unmute {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stories-unmute:hover { background: rgba(255, 255, 255, .28); }
.stories-unmute[hidden] { display: none; }
.stories-player-title {
  flex-shrink: 0;
  margin: 12px 20px 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}
body.stories-modal-open {
  overflow: hidden;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.portfolio-grid-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.portfolio-grid-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease, opacity .2s ease;
}
.portfolio-grid-item:hover img {
  transform: scale(1.03);
  opacity: .92;
}
.portfolio-grid-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .45));
  pointer-events: none;
}
.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 920;
  display: flex;
  flex-direction: column;
}
.portfolio-modal[hidden] { display: none; }
.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .92);
}
.portfolio-modal-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding:
    calc(12px + env(safe-area-inset-top, 0px))
    0
    calc(112px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 769px) {
  .portfolio-modal-shell {
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }
}
.portfolio-modal-close {
  position: absolute;
  top: calc(8px + env(safe-area-inset-top, 0px));
  right: 12px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.portfolio-modal-close:hover { background: rgba(255, 255, 255, .2); }
.portfolio-carousel-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
}
.portfolio-carousel {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.portfolio-carousel::-webkit-scrollbar { display: none; }
.portfolio-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}
.portfolio-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.portfolio-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-nav:hover { background: rgba(255, 255, 255, .24); }
.portfolio-nav-prev { left: 8px; }
.portfolio-nav-next { right: 8px; }
@media (max-width: 768px) {
  .portfolio-nav { display: none; }
}
.portfolio-modal-meta {
  flex-shrink: 0;
  padding: 14px 20px 0;
  color: #fff;
  text-align: center;
}
.portfolio-counter {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: .72;
}
.portfolio-caption {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  opacity: .92;
}
body.portfolio-modal-open {
  overflow: hidden;
}

/* --- Footer --- */
.footer { padding: 30px 0; border-top: 1px solid var(--line); }
.footer-legal { background: var(--bg-soft); padding: 40px 0 24px; }
.footer-legal-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.footer-col p { margin: 0 0 6px; font-size: 14px; color: var(--gray); }
.footer-col a { color: var(--ink); text-decoration: none; font-size: 14px; }
.footer-col a:hover { text-decoration: underline; }
.footer-col-links { display: grid; gap: 8px; align-content: start; }
.footer-muted { color: var(--gray); font-size: 14px; }
.footer-col-brand .brand-sm { display: inline-block; margin-bottom: 8px; }
.footer-logo { display: inline-block; margin-bottom: 14px; }
.footer-logo img { display: block; height: 28px; width: auto; max-width: 240px; opacity: .85; }
.footer-trademark { margin: 0; font-size: 12px; line-height: 1.55; max-width: 320px; }
.footer-copy { margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line); }
@media (max-width: 640px) {
  .footer-legal-inner { grid-template-columns: 1fr; gap: 20px; }
}

/* --- Cookie bar --- */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--black);
  color: #fff;
  z-index: 940;
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .18);
}
.cookie-bar-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.cookie-bar-text { margin: 0; font-size: 14px; line-height: 1.5; }
.cookie-bar-text a { color: #fff; text-decoration: underline; }
.cookie-bar-btn { white-space: nowrap; flex-shrink: 0; background: #fff; color: var(--black); }
.cookie-bar-btn:hover { opacity: .9; }
@media (max-width: 560px) {
  .cookie-bar-inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .cookie-bar-btn { width: 100%; }
}

/* --- Legal pages (/privacy, /consent) --- */
.legal-page { border-top: none; }
.legal-container { max-width: 760px; }
.legal-title { font-size: clamp(24px, 4vw, 34px); font-weight: 800; margin: 0 0 24px; color: var(--black); }
.legal-h2 { font-size: clamp(18px, 3vw, 22px); font-weight: 700; margin: 28px 0 12px; }
.legal-page p { font-size: 15px; line-height: 1.7; margin: 0 0 12px; }
.legal-list { padding-left: 22px; margin: 0 0 12px; }
.legal-list li { font-size: 15px; line-height: 1.7; margin-bottom: 8px; }
.legal-list ul { margin: 8px 0; }
.legal-page a { color: var(--ink); }
.legal-back { margin-top: 32px; }
.legal-back a { font-weight: 600; text-decoration: none; }

/* --- Admin --- */
.admin { background: var(--bg-soft); }
.admin-nav { background: var(--black); color: #fff; }
.admin-nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; }
.admin-nav-links a { color: #fff; text-decoration: none; margin-right: 18px; font-weight: 600; font-size: 15px; }
.admin-nav-links a:hover { text-decoration: underline; }
.admin-nav-logout .btn-link { color: #fff; }
.admin-main { padding: 28px 20px 60px; max-width: 1080px; }
.admin-notice {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
}
.admin-notice code { font-size: 12px; }
.admin-notice--ok {
  background: #ecfdf3;
  border: 1px solid #86efac;
  color: #166534;
}
.admin-notice--warn {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
}
.admin-main-narrow { max-width: 640px; }
.admin-title { font-size: 26px; font-weight: 800; margin: 0 0 20px; }
.admin-subtitle { font-size: 20px; font-weight: 700; margin: 28px 0 12px; }
.admin-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.admin-breadcrumb { margin-bottom: 12px; }
.admin-breadcrumb a { color: var(--gray); text-decoration: none; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; margin-bottom: 20px; }

.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.admin-login-card { width: 100%; max-width: 360px; }

.admin-error { background: #fdecec; color: #b00020; padding: 10px 12px; border-radius: 8px; margin: 0 0 14px; font-size: 14px; }
.admin-success { background: #e7f6ec; color: #11804a; padding: 10px 12px; border-radius: 8px; margin: 0 0 14px; font-size: 14px; }

.admin-content-lead { margin: -8px 0 20px; font-size: 15px; }
.admin-content-hint { margin: -6px 0 16px; font-size: 14px; }
.admin-content-current { margin: 0 0 12px; font-size: 13px; }
.admin-content-block { scroll-margin-top: 16px; }
.admin-content-block-highlight { box-shadow: 0 0 0 2px var(--accent, #0aa); }
.admin-content-list { display: grid; gap: 18px; margin-bottom: 18px; }
.admin-content-row { padding: 14px 0; border-bottom: 1px solid var(--line); }
.admin-content-row-form { display: grid; gap: 12px; max-width: 520px; }
.admin-content-row-highlight { background: #f4fbf6; margin: 0 -14px; padding: 14px; border-radius: 10px; border: 1px solid #bce4cc; }
.admin-content-row:last-child { border-bottom: none; }
.admin-content-row-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.admin-content-posts { display: grid; gap: 22px; margin-bottom: 18px; }
.admin-content-post { padding: 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-soft); }
.admin-content-post-title { margin: 0 0 12px; font-size: 16px; font-weight: 700; }
.admin-content-cover-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.admin-content-cover-item { display: grid; gap: 6px; justify-items: center; font-size: 12px; color: var(--gray); }
.admin-content-cover-select { display: grid; gap: 6px; justify-items: center; cursor: pointer; }
.admin-content-cover-select input { margin: 0; }
.admin-content-delete-label { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; color: #b42318; font-size: 12px; }
.admin-content-delete-label input { margin: 0; }
.admin-content-thumb { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); background: #fff; }
.admin-content-thumb-round { border-radius: 50%; width: 44px; height: 44px; }
.admin-content-flash { position: sticky; top: 0; z-index: 5; }
.admin-content-hint-tight { margin: -4px 0 10px; font-size: 13px; }

.admin-content-saved { margin: 0 0 14px; padding: 12px 14px; background: #f4fbf6; border: 1px solid #bce4cc; border-radius: 10px; font-size: 14px; }
.admin-content-saved p { margin: 0 0 8px; }
.admin-content-saved p:last-child { margin-bottom: 0; }
.admin-content-saved-inline { margin: 0 0 6px; font-size: 13px; color: #11804a; font-weight: 600; }
.admin-content-path { font-size: 12px; }
.admin-content-video-preview { display: block; width: 100%; max-width: 320px; margin-top: 10px; border-radius: 10px; background: #000; }
.admin-content-video-preview-sm { max-width: 220px; }
.admin-content-saved-compact { margin: 0; padding: 10px 12px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 10px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; display: grid; gap: 6px; }
.stat-num { font-size: 30px; font-weight: 800; color: var(--black); }
.stat-label { font-size: 13px; color: var(--gray); }

.admin-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.admin-table th, .admin-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); font-size: 14px; vertical-align: top; }
.admin-table th { background: var(--bg-soft); font-weight: 700; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table code { background: var(--bg-soft); padding: 2px 6px; border-radius: 6px; }
.row-actions { white-space: nowrap; }
.row-actions .inline { display: inline; }
.qr-link { margin-left: 8px; }

.badge { display: inline-block; padding: 3px 9px; border-radius: 20px; font-size: 12px; font-weight: 600; background: var(--bg-soft); border: 1px solid var(--line); }
.badge-ok { background: #e7f6ec; color: #11804a; border-color: #bce4cc; }
.badge-off { background: #fbe9e9; color: #b00020; border-color: #f0c9c9; }

.admin-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.admin-filters select { padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; background: #fff; }

.lead-dl { display: grid; grid-template-columns: 180px 1fr; gap: 10px 16px; margin: 0; }
.lead-dl dt { font-weight: 600; color: var(--gray); font-size: 14px; }
.lead-dl dd { margin: 0; font-size: 15px; }

@media (max-width: 560px) {
  .lead-dl { grid-template-columns: 1fr; gap: 4px 0; }
  .lead-dl dd { margin-bottom: 10px; }
  .admin-table { display: block; overflow-x: auto; }
}

/* Honeypot — скрыто от людей, видно ботам */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.turnstile-field { margin-top: 4px; }
