:root {
  --bg: #101114;
  --panel: #18191f;
  --panel-soft: #20222a;
  --text: #f6f3ee;
  --muted: #c7c0b7;
  --line: rgba(255, 255, 255, 0.12);
  --purple: #7c3aed;
  --gold: #f2c14e;
  --green: #42b883;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(16, 17, 20, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  width: 170px;
  height: 116px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(124, 58, 237, 0.28));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--text); }

.phone-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--gold);
  color: #17130a;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(242, 193, 78, 0.22);
  white-space: nowrap;
}
.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.button.text-button {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.24);
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 193, 78, 0.16), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(124, 58, 237, 0.28), transparent 32%),
    linear-gradient(135deg, #101114 0%, #17131f 48%, #22163c 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--bg), rgba(16, 17, 20, 0));
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  right: min(7vw, 92px);
  top: 126px;
  width: min(42vw, 500px);
  aspect-ratio: 1.18;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.42), rgba(242, 193, 78, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  clip-path: polygon(10% 18%, 76% 18%, 91% 40%, 91% 78%, 10% 78%);
  opacity: 0.72;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 118px;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}
.hero p {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 14px;
}
.hero-proof span,
.area-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.quick-book {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #14151a;
}
.quick-book-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  color: var(--muted);
}
.quick-book strong { color: var(--gold); white-space: nowrap; }
.quick-book a {
  padding: 9px 13px;
  border-radius: 8px;
  background: rgba(242, 193, 78, 0.14);
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.section {
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}
.section-tight {
  padding-top: 54px;
  padding-bottom: 54px;
  background: #111217;
}
.container,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}
.section-heading h2,
.area-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-heading p,
.area-panel p,
.booking-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.trust-grid,
.steps-grid,
.included-grid,
.faq-grid,
.expect-grid,
.pricing-grid,
.work-gallery {
  display: grid;
  gap: 16px;
}
.trust-grid,
.steps-grid,
.pricing-grid { grid-template-columns: repeat(4, 1fr); }
.included-grid,
.faq-grid,
.expect-grid,
.work-gallery { grid-template-columns: repeat(2, 1fr); }

.trust-card,
.step-card,
.included-card,
.expect-card,
.faq-item,
.price-card,
.booking-form,
.booking-card,
.area-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}
.trust-card,
.step-card,
.included-card,
.expect-card,
.faq-item,
.price-card { padding: 22px; }

.icon,
.check-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(124, 58, 237, 0.18);
  color: #d9c5ff;
  font-weight: 900;
}
.check-icon {
  width: 34px;
  height: 34px;
  margin: 0;
  background: rgba(66, 184, 131, 0.16);
  color: var(--green);
}
.trust-card strong,
.step-card strong,
.expect-card strong,
.included-card strong,
.faq-item summary {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}
.expect-card strong { font-size: 19px; }
.trust-card span,
.step-card span,
.expect-card span,
.included-card span,
.faq-item p,
.price-card p,
.fine-print { color: var(--muted); }
.included-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}
.included-card span,
.expect-card span,
.faq-item p { display: block; margin: 8px 0 0; }

.work-photo-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.work-photo-card img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  background: #0f1014;
}
.work-photo-card figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: 15px;
}
.work-photo-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 17px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 193, 78, 0.56);
  background: var(--panel-soft);
}
.price-card.featured { border-color: rgba(242, 193, 78, 0.7); }
.badge {
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(242, 193, 78, 0.14);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price {
  margin: 0;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}
.price small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}
.price-card h3 {
  margin: 18px 0 8px;
  color: #efe8ff;
  font-size: 20px;
  line-height: 1.2;
}
.price-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
}
.price-card li { display: flex; gap: 8px; margin-top: 10px; }
.price-card li::before {
  content: "OK";
  color: var(--green);
  font-weight: 900;
}
.fine-print {
  margin: 28px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}
.booking-split { align-items: start; }
.booking-form,
.booking-card { padding: 24px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f1014;
  color: var(--text);
  font: inherit;
  outline: none;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 193, 78, 0.16);
}
.booking-form textarea { min-height: 112px; resize: vertical; }
.booking-form .full { grid-column: 1 / -1; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.booking-form button.button { border: 0; cursor: pointer; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 14px; }

.faq-item { padding: 0; }
.faq-item summary { cursor: pointer; padding: 22px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}
.faq-item[open] summary::after { content: "-"; }
.faq-item p { padding: 0 22px 22px; }

.area-panel {
  padding: 30px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.24), rgba(242, 193, 78, 0.08));
}
.area-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.area-list span { color: var(--text); font-weight: 800; font-size: 14px; }
.booking-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 15px;
}
.booking-list li { margin-top: 9px; }
.booking-list strong { color: var(--text); }

.footer {
  padding: 30px 0;
  color: var(--muted);
  background: #0b0c0f;
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero { min-height: 640px; }
  .hero::before { width: 340px; right: -92px; top: 160px; opacity: 0.34; }
  .trust-grid,
  .steps-grid,
  .included-grid,
  .faq-grid,
  .expect-grid,
  .work-gallery,
  .pricing-grid,
  .split { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .nav { width: min(100% - 28px, 1120px); }
  .brand-mark { width: 124px; height: 86px; }
  .phone-link { min-height: 42px; padding: 0 13px; font-size: 14px; }
  .hero-inner,
  .container,
  .footer-inner { width: min(100% - 28px, 1120px); }
  .hero { min-height: auto; }
  .hero-inner { padding: 82px 0 94px; }
  .hero p { font-size: 17px; }
  .hero-actions,
  .quick-book-inner { flex-direction: column; align-items: stretch; }
  .section { padding: 58px 0; }
  .trust-grid,
  .steps-grid,
  .included-grid,
  .faq-grid,
  .expect-grid,
  .work-gallery,
  .pricing-grid,
  .split { grid-template-columns: 1fr; }
  .work-photo-card img { height: 360px; }
  .price-card { min-height: auto; }
}
