:root {
  --bg: #070707;
  --text: #f5f1e8;
  --muted: #bdb6a8;
  --gold: #d6b36a;
  --gold2: #f0d9a0;
  --line: rgba(255, 255, 255, .09);
  --r: 24px;
  --shadow: 0 18px 60px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #050505, #101010);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
  color: var(--muted);
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}
.header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, .94);
  backdrop-filter: blur(16px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 48px; height: 48px; border-radius: 12px; }
.brand strong { display: block; font-size: 18px; line-height: 1.05; }
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu { display: flex; align-items: center; gap: 18px; }
.menu > a { white-space: nowrap; font-size: 15px; font-weight: 800; }
.menu > a:hover,
.menu > a.active { color: var(--gold2); }
.menu .cta,
.menu .cta.active,
.menu .cta:hover {
  padding: 11px 17px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #111;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.lang-switch {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  margin-left: 2px;
  padding: 5px;
  border: 1px solid rgba(214, 179, 106, .30);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
}
.lang-switch::before {
  content: "🌐";
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  font-size: 13px;
  opacity: .9;
}
.lang-switch a {
  display: inline-flex;
  min-width: 46px;
  align-items: center;
  justify-content: center;
  padding: 9px 11px;
  border-radius: 999px;
  color: #f2e6c9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
}
.lang-switch a:hover { background: rgba(214, 179, 106, .12); }
.lang-switch a.active {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #111;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 90px 0 72px;
  background: #080808;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, .97) 0%, rgba(4, 4, 4, .78) 43%, rgba(4, 4, 4, .28) 76%, rgba(4, 4, 4, .48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .48)),
    url("assets/pesuvennad-logo.png") center 41% / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -160px;
  top: -130px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(214, 179, 106, .14);
  filter: blur(90px);
}
.hero-grid { display: block; }
.hero-grid > div:first-child {
  width: min(650px, 100%);
  padding: 34px;
  border: 1px solid rgba(214, 179, 106, .16);
  border-radius: var(--r);
  background: rgba(6, 6, 6, .54);
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
}
.hero-bg-card { display: none; }
.page-hero {
  padding: 74px 0 44px;
  background: radial-gradient(circle at 70% 10%, rgba(214, 179, 106, .12), transparent 32%);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0 0 16px; line-height: 1.08; }
h1 { max-width: 14ch; font-size: clamp(42px, 6vw, 72px); letter-spacing: -.05em; }
.page-hero h1 { max-width: 17ch; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.035em; }
h3 { font-size: 24px; }
.lead, .muted, p.card-text { color: var(--muted); }
.lead { max-width: 65ch; font-size: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
}
.btn-primary,
.float {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #111;
  text-shadow: none;
}
.btn-line {
  border-color: rgba(214, 179, 106, .35);
  background: rgba(255, 255, 255, .02);
  color: #f3e7c9;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-full { width: 100%; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stats div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
}
.stats strong { display: block; color: var(--gold2); font-size: 22px; }
.stats span { display: block; color: var(--muted); font-size: 14px; }
.section { padding: 88px 0; }
.dark { background: linear-gradient(180deg, #0b0b0b, #070707); }
.soft { background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .012)); }
.section-head { max-width: 840px; margin-bottom: 38px; }
.center { margin-inline: auto; text-align: center; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.card,
.service-card,
.price-card,
.calc-card,
.booking-form,
.contact-panel,
.faq details,
.gallery-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  box-shadow: var(--shadow);
}
.card { padding: 26px; }
.num {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  background: rgba(214, 179, 106, .12);
  color: var(--gold2);
  font-weight: 900;
}
.services { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.service-card { grid-column: span 2; padding: 28px; }
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) {
  grid-column: 4 / span 2;
  border-color: rgba(214, 179, 106, .38);
  background: linear-gradient(180deg, rgba(214, 179, 106, .08), rgba(255, 255, 255, .01));
}
.service-no {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(214, 179, 106, .12);
  color: var(--gold2);
  font-size: 18px;
  font-weight: 900;
}
ul { padding-left: 18px; color: #efe6d3; }
li { margin: 8px 0; }

.prices { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.price-card { display: flex; flex-direction: column; padding: 22px; }
.tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214, 179, 106, .12);
  color: var(--gold2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price strong { color: #fff; font-size: 38px; letter-spacing: -.05em; }
.price-card .btn { margin-top: auto; }
.featured {
  border-color: rgba(214, 179, 106, .4);
  background: linear-gradient(180deg, rgba(214, 179, 106, .08), rgba(255, 255, 255, .01));
}
.extras {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .015);
}
.chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.chips span {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  line-height: 1.35;
  text-align: center;
}

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.calc-card, .booking-form { padding: 30px; }
.field { position: relative; display: grid; gap: 9px; margin-bottom: 18px; }
.field label { color: #f4ebd5; font-size: 15px; font-weight: 800; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 66px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 17px;
  outline: none;
  background: #0f0f0f;
  color: #fff;
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
}
.field textarea { min-height: 134px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(214, 179, 106, .55);
  box-shadow: 0 0 0 4px rgba(214, 179, 106, .1);
}
.checks { display: grid; gap: 12px; margin: 6px 0 18px; }
.checks p { margin-bottom: 0; color: #f7edda; font-weight: 900; }
.checks label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  background: #0d0d0d;
}
.checks strong { color: var(--gold2); }
.checks input { accent-color: var(--gold); }
.total,
.summary,
.contact-panel {
  padding: 18px 20px;
  border: 1px solid rgba(214, 179, 106, .18);
  border-radius: 18px;
  background: rgba(214, 179, 106, .09);
}
.total span,
.contact-panel > span {
  display: block;
  color: var(--gold2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.total strong { display: block; margin-top: 8px; font-size: 48px; letter-spacing: -.05em; }
.total small, .summary { color: #ece4d0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.suggestions {
  position: absolute;
  z-index: 30;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  max-height: 260px;
  overflow: auto;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background: #0f0f0f;
  box-shadow: var(--shadow);
}
.suggestion {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.suggestion:hover { background: rgba(214, 179, 106, .12); }
.honeypot { position: absolute !important; left: -9999px; opacity: 0; }
.consent-wrap { margin: 18px 0 22px; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: #f4ebd5;
  font-size: 15px;
  font-weight: 700;
}
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--gold); }
.form-invalid {
  border-radius: 18px;
  outline: 3px solid rgba(255, 85, 85, .6);
  box-shadow: 0 0 0 5px rgba(255, 85, 85, .11);
}
.form-error {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 105, 105, .45);
  border-radius: 16px;
  background: rgba(145, 25, 25, .22);
  color: #ffe1e1;
  font-weight: 800;
}
.form-error[hidden] { display: none; }
.booking-form button[type="submit"] {
  min-height: 70px;
  color: #111;
  font-size: 21px;
  font-weight: 900;
}
.contact-panel .contact-email,
.contact-panel strong {
  display: block;
  margin: 8px 0 12px;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.16;
}
.contact-panel .contact-text,
.contact-panel small {
  display: block;
  clear: both;
  max-width: 62ch;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.55;
}
.note {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 179, 106, .18);
  border-radius: 16px;
  background: rgba(214, 179, 106, .08);
  color: #ece4d0;
}

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-card { padding: 26px; }
.placeholder {
  display: grid;
  height: 180px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  background: radial-gradient(circle at 40% 25%, rgba(214, 179, 106, .18), transparent 35%), linear-gradient(135deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
  color: var(--gold2);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq details { padding: 20px; }
.faq summary { cursor: pointer; font-weight: 900; }

.footer { padding: 34px 0 48px; border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr auto;
  align-items: start;
  gap: 32px;
  color: var(--muted);
}
.footer-brand { display: flex; gap: 12px; }
.footer img { width: 54px; height: 54px; flex: 0 0 auto; border-radius: 14px; }
.footer strong { display: block; margin-bottom: 7px; color: #fff; }
.footer span, .footer a { display: block; overflow-wrap: anywhere; color: var(--muted); line-height: 1.45; }
.copyright strong { white-space: nowrap; }
.float {
  position: fixed;
  z-index: 35;
  right: 18px;
  bottom: 18px;
  padding: 15px 20px;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
  font-weight: 900;
}
.reveal { opacity: 0; transform: translateY(22px); transition: .7s; }
.reveal.show { opacity: 1; transform: none; }

@media (max-width: 1200px) {
  .prices { grid-template-columns: repeat(2, 1fr); }
  .prices .featured { grid-column: 1 / -1; }
}

@media (max-width: 1100px) {
  .two, .grid3, .footer-grid, .extras, .gallery { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: auto; }
}

@media (max-width: 930px) {
  .nav { gap: 10px; }
  .menu-toggle { display: block; margin-left: auto; }
  .menu {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #0b0b0b;
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .menu > a { padding: 8px 10px; }
  .menu .cta { text-align: center; }
  .lang-switch { align-self: flex-start; margin: 6px 0 0; }
}

@media (max-width: 820px) {
  .topbar .container { flex-direction: column; gap: 2px; }
  .stats, .form-row, .chips, .prices, .faq { grid-template-columns: 1fr; }
  .hero {
    min-height: 660px;
    padding: 70px 0;
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(4, 4, 4, .52) 0%, rgba(4, 4, 4, .72) 44%, rgba(4, 4, 4, .96) 100%),
      url("assets/pesuvennad-logo.png") center top / cover no-repeat;
  }
  .hero-grid > div:first-child { padding: 25px; }
  .float { right: 16px; left: 16px; text-align: center; }
  .footer { padding-bottom: 105px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand img { width: 42px; height: 42px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 10px; }
  .section { padding: 72px 0; }
  .card, .service-card, .price-card, .calc-card, .booking-form, .gallery-card { padding: 20px; }
  .hero { min-height: 700px; }
  .hero-grid > div:first-child { padding: 22px; }
  .total strong { font-size: 40px; }
  .checks label { grid-template-columns: auto 1fr; }
  .checks strong { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
