/* Belly Dance Constanta — site.css v2 (tema luminoasa, paleta site-ului original) */

/* ---------- Fonturi (self-hosted) ---------- */
@font-face {
  font-family: 'Yantramanav';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/yantramanav-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Yantramanav';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/yantramanav-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Yantramanav';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/yantramanav-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/dancing-script-700.woff2') format('woff2');
}

/* ---------- Variabile (paleta designului original) ---------- */
:root {
  --bg: #ffffff;
  --bg-2: #f8f5f2;
  --surface: #ffffff;
  --line: #ececec;
  --line-2: rgba(56, 58, 87, 0.14);
  --text: #383a57;
  --heading: #3b3d60;
  --muted: #707070;
  --brand: #ff3051;
  --brand-dark: #d31a4f;
  --wa: #25d366;
  --wa-dark: #1eb856;
  --radius: 14px;
  --radius-s: 9px;
  --font-body: 'Yantramanav', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --font-script: 'Dancing Script', cursive;
  --container: 1160px;
  --header-h: 72px;
}

/* ---------- Reset minimal ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--brand); color: #fff; }
::placeholder { color: #9aa; }

/* ---------- Utilitare ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; position: relative; overflow: hidden; }
.section--tight { padding: 56px 0; position: relative; overflow: hidden; }
.section--alt { background: var(--bg-2); }
.center { text-align: center; }

/* Banda rosie (ca vechiul bg_red) */
.section--red {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
}
.section--red .h-display, .section--red .lead, .section--red .eyebrow { color: #fff; }
.section--red .lead { opacity: 0.92; }
.section--red .h-display::after { background: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.h-display {
  color: var(--heading);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}
h1.h-display { font-size: clamp(2rem, 4.6vw, 3.2rem); }
h2.h-display { font-size: clamp(1.55rem, 3vw, 2.1rem); }
/* Bara rosie sub titluri — semnatura vechiului design */
.h-display::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: var(--brand);
  margin-top: 14px;
  border-radius: 2px;
}
.center .h-display::after { margin-left: auto; margin-right: auto; }
.lead { color: var(--muted); font-size: 1.05rem; max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 44px; }
.section-head .lead { margin-top: 14px; }

/* Filigran vertical — semnatura vechiului design (title_shadow) */
.title-shadow {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: clamp(54px, 7.5vw, 88px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 48, 82, 0.09);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}
.title-shadow--left { right: auto; left: 6px; }
.section--red .title-shadow, .site-footer .title-shadow { color: rgba(255, 255, 255, 0.10); }
.section > .container { position: relative; z-index: 1; }

/* ---------- Butoane ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.2;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn--brand { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; box-shadow: 0 8px 22px rgba(255, 48, 81, 0.3); }
.btn--brand:hover { box-shadow: 0 12px 28px rgba(255, 48, 81, 0.42); }
.btn--wa { background: linear-gradient(135deg, var(--wa), var(--wa-dark)); color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, 0.26); }
.btn--wa:hover { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.38); }
.btn--ghost { border: 1.5px solid var(--line-2); color: var(--heading); background: #fff; }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.section--red .btn--ghost { background: transparent; border-color: rgba(255, 255, 255, 0.65); color: #fff; }
.section--red .btn--ghost:hover { background: #fff; color: var(--brand); border-color: #fff; }
.section--red .btn--brand { background: #fff; color: var(--brand); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__in {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: var(--header-h);
}
.site-logo { flex: none; }
.site-logo img { width: 190px; height: 44px; }
.site-nav { flex: 1; }
.site-nav ul { display: flex; gap: 2px; align-items: center; }
.site-nav a {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.site-nav a:hover { color: var(--brand); }
.site-nav a[aria-current="page"] { color: var(--brand); }
.header-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--heading); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 76px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 400px at 88% 0%, rgba(255, 48, 81, 0.07), transparent 62%),
    radial-gradient(560px 360px at 0% 100%, rgba(56, 58, 87, 0.05), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero__tagline { font-family: var(--font-script); font-size: 1.7rem; color: var(--brand); margin-top: 16px; }
.hero__text .lead { margin-top: 14px; }
.hero__cta { margin-top: 28px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.hero__chips li {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--heading);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--bg-2);
}
.hero__media { position: relative; }
.hero__media picture, .hero__media img { border-radius: var(--radius); box-shadow: 0 22px 50px rgba(56, 58, 87, 0.18); }
.hero__media::after {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid rgba(255, 48, 81, 0.30);
  border-radius: var(--radius);
  pointer-events: none;
}
.hero--simple { padding: 56px 0 48px; }
.hero--simple .lead { margin-top: 14px; }
.hero--simple .hero__cta { margin-top: 24px; }

/* ---------- Carduri servicii ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(56, 58, 87, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(255, 48, 81, 0.4); box-shadow: 0 18px 38px rgba(56, 58, 87, 0.14); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__title { color: var(--heading); font-weight: 700; font-size: 1.12rem; text-transform: uppercase; letter-spacing: 0.03em; }
.card__text { color: var(--muted); font-size: 14.5px; flex: 1; }
.card__link { color: var(--brand); font-weight: 500; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.card__link::after { content: '→'; transition: transform 0.15s ease; }
.card:hover .card__link::after { transform: translateX(4px); }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a {
  position: relative;
  display: block;
  border-radius: var(--radius-s);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(56, 58, 87, 0.08);
}
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery a picture { width: 100%; height: 100%; }
.gallery a:hover img { transform: scale(1.06); }
.gallery a::after {
  content: '+';
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 48, 81, 0.9);
  color: #fff;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery a:hover::after { opacity: 1; }
.gallery-more { margin-top: 32px; }

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(94vw, 1100px);
  width: auto;
}
.lightbox::backdrop { background: rgba(20, 12, 18, 0.92); }
.lightbox img {
  max-width: min(94vw, 1100px);
  max-height: 86vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-s);
}
.lightbox__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  color: #ddd;
  font-size: 14px;
}
.lightbox__btns { display: flex; gap: 8px; }
.lightbox__btns button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  display: grid;
  place-items: center;
}
.lightbox__btns button:hover { border-color: var(--brand); background: var(--brand); }

/* ---------- Feature rows ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-row + .feature-row { margin-top: 64px; }
.feature-row__media picture, .feature-row__media img { border-radius: var(--radius); box-shadow: 0 16px 40px rgba(56, 58, 87, 0.14); }
.feature-row--flip .feature-row__media { order: 2; }
.feature-row h3 { color: var(--heading); font-weight: 700; font-size: 1.45rem; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 10px; }
.feature-row p { color: var(--muted); margin-bottom: 20px; }

/* ---------- De ce noi ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 6px 16px rgba(56, 58, 87, 0.05);
}
.why-item h3 { color: var(--heading); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }
.why-item h3::before { content: ''; display: block; width: 34px; height: 3px; background: var(--brand); border-radius: 2px; margin-bottom: 14px; }
.why-item p { color: var(--muted); font-size: 14.5px; }

/* ---------- Pasi rezervare ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  box-shadow: 0 6px 16px rgba(56, 58, 87, 0.05);
}
.step__num {
  font-family: var(--font-script);
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(255, 48, 81, 0.45);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { color: var(--heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- Banda CTA pret (rosie, ca vechiul design) ---------- */
.price-cta {
  background: linear-gradient(120deg, var(--brand), var(--brand-dark));
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  box-shadow: 0 18px 40px rgba(255, 48, 81, 0.28);
}
.price-cta h2 { font-weight: 700; font-size: 1.6rem; text-transform: uppercase; letter-spacing: 0.03em; }
.price-cta p { color: rgba(255, 255, 255, 0.92); margin-top: 6px; max-width: 560px; }
.price-cta .btn--ghost { background: transparent; border-color: rgba(255, 255, 255, 0.65); color: #fff; }
.price-cta .btn--ghost:hover { background: #fff; color: var(--brand); border-color: #fff; }
.price-cta .btn--brand { background: #fff; color: var(--brand); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 0 22px;
  box-shadow: 0 4px 12px rgba(56, 58, 87, 0.05);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 500;
  color: var(--heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--brand); font-size: 22px; flex: none; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 18px; font-size: 15px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 18px 20px;
  box-shadow: 0 4px 12px rgba(56, 58, 87, 0.05);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
a.contact-card:hover { border-color: var(--brand); transform: translateX(4px); }
.contact-card__icon {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.contact-card__icon svg { width: 21px; height: 21px; }
.contact-card--wa .contact-card__icon { background: rgba(37, 211, 102, 0.1); border-color: rgba(37, 211, 102, 0.35); }
.contact-card--wa .contact-card__icon svg { fill: var(--wa-dark); }
.contact-card--tel .contact-card__icon { background: rgba(255, 48, 81, 0.08); border-color: rgba(255, 48, 81, 0.3); }
.contact-card--tel .contact-card__icon svg { fill: var(--brand); }
.contact-card--mail .contact-card__icon svg, .contact-card--map .contact-card__icon svg { fill: var(--heading); }
.contact-card b { display: block; font-size: 15.5px; color: var(--heading); }
.contact-card span { display: block; color: var(--muted); font-size: 13.5px; margin-top: 2px; }

/* Formular */
.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 10px 28px rgba(56, 58, 87, 0.08);
}
.form-panel h3 { color: var(--heading); font-size: 1.25rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 6px; }
.form-panel > p { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 500; color: var(--heading); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  color: var(--text);
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 48, 81, 0.12);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23707070' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--muted); }
.form-alert {
  grid-column: 1 / -1;
  border-radius: var(--radius-s);
  padding: 14px 16px;
  font-size: 14.5px;
  margin-bottom: 4px;
}
.form-alert--ok { background: rgba(37, 211, 102, 0.1); border: 1px solid rgba(37, 211, 102, 0.4); color: #157a3d; }
.form-alert--err { background: rgba(255, 48, 81, 0.08); border: 1px solid rgba(255, 48, 81, 0.35); color: var(--brand-dark); }

/* ---------- Butoane flotante ---------- */
.float-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-contact a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(56, 58, 87, 0.3);
  transition: transform 0.15s ease;
}
.float-contact a:hover { transform: scale(1.08); }
.float-contact svg { width: 26px; height: 26px; fill: #fff; }
.float-contact__wa { background: var(--wa); }
.float-contact__tel { background: var(--brand); }

/* ---------- Footer (navy inchis — puntea dintre stiluri) ---------- */
.site-footer { background: #33354f; color: #e7e5ef; padding: 64px 0 0; margin-top: 20px; position: relative; overflow: hidden; }
.site-footer__grid { display: grid; grid-template-columns: 1.2fr 0.9fr 1fr; gap: 44px; padding-bottom: 44px; position: relative; z-index: 1; }
.site-footer__about p { color: #b9b7cb; font-size: 14.5px; margin: 18px 0; max-width: 340px; }
.site-footer h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #ff8098; margin-bottom: 18px; }
.site-footer__links li { margin-bottom: 10px; }
.site-footer__links a { color: #b9b7cb; font-size: 15px; transition: color 0.15s ease; }
.site-footer__links a:hover { color: #fff; }
.site-footer__contact li { display: flex; gap: 10px; align-items: baseline; color: #b9b7cb; font-size: 15px; margin-bottom: 12px; }
.site-footer__contact a:hover { color: #fff; }
.site-footer .btn--ghost { background: transparent; border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.site-footer .btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: #a3a1b8;
  font-size: 13.5px;
  position: relative;
  z-index: 1;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(56, 58, 87, 0.12);
    padding: 12px 22px 20px;
  }
  .nav-open .site-nav { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav a { padding: 12px 10px; font-size: 16px; }
  .nav-toggle { display: flex; }
  .header-cta .btn--tel-text { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 480px; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row--flip .feature-row__media { order: 0; }
  .why-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .title-shadow { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .cards { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .price-cta { padding: 30px 24px; }
  .site-logo img { width: 160px; height: 37px; }
  body { font-size: 16px; }
}
