:root {
  --pink:#E8186D;
  --dark:#08080a;
  --cream:#f7f3ed;
  --text:#171717;
  --muted:#686870;
  --border:#e5dfd7;
  --gold:#b8860b;
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; max-width:100%; }
body {
  margin:0;
  overflow-x:hidden;
  max-width:100%;
  font-family:"DM Sans", Arial, sans-serif;
  color:var(--text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
}
a { color:inherit; }
.promo {
  background:#0a0a0c;
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  min-height:40px;
  padding:8px 16px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  border-bottom:1px solid rgba(255,255,255,.08);
  width:100%;
  max-width:100%;
  box-sizing:border-box;
  text-align:center;
}
.promo span { color:var(--pink); }
.header {
  height:72px;
  background:#09090b;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 38px;
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.logo {
  font-family:"Playfair Display", serif;
  font-size:34px;
  font-weight:800;
  letter-spacing:-1px;
  text-decoration:none;
}
.logo span { color:var(--pink); }
.header-actions {
  display:flex;
  align-items:center;
  gap:14px;
}
.phone {
  text-decoration:none;
  opacity:.78;
  font-weight:800;
}
.nav-cta {
  background:var(--pink);
  color:#fff;
  padding:14px 24px;
  border-radius:9px;
  font-weight:900;
  text-decoration:none;
}
.hero {
  min-height:calc(100svh - 112px);
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#111;
}
.hero img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:contrast(1.08) saturate(1.04);
}
.hero::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.58) 43%,rgba(0,0,0,.20)),
    linear-gradient(0deg,rgba(0,0,0,.76),rgba(0,0,0,.10) 50%,rgba(0,0,0,.32));
}
.hero-content {
  position:relative;
  z-index:2;
  color:#fff;
  max-width:780px;
  padding:64px 38px;
}
.badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(0,0,0,.30);
  padding:10px 16px;
  border-radius:999px;
  backdrop-filter:blur(7px);
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:24px;
}
.badge b { color:#ffd66b; }
h1 {
  font-family:"Playfair Display", serif;
  font-size:clamp(48px,7.3vw,88px);
  line-height:.98;
  letter-spacing:-2px;
  margin:0 0 22px;
}
.pink { color:var(--pink); }
.hero-sub {
  font-size:21px;
  line-height:1.55;
  color:rgba(255,255,255,.86);
  max-width:650px;
  margin:0 0 24px;
}
.hero-points {
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin:22px 0 28px;
}
.point {
  display:flex;
  gap:8px;
  align-items:flex-start;
  color:#fff;
  font-size:15px;
  font-weight:900;
}
.check {
  display:inline-flex;
  width:22px;
  height:22px;
  border-radius:50%;
  border:2px solid var(--pink);
  color:var(--pink);
  align-items:center;
  justify-content:center;
  font-size:14px;
  flex:0 0 auto;
}
.actions {
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:260px;
  padding:17px 28px;
  border-radius:9px;
  text-decoration:none;
  font-weight:900;
  font-size:16px;
}
.primary {
  background:var(--pink);
  color:#fff;
  box-shadow:0 18px 38px rgba(232,24,109,.32);
}
.secondary {
  background:rgba(255,255,255,.04);
  border:1.5px solid rgba(255,255,255,.55);
  color:#fff;
}
.promo-note {
  margin-top:18px;
  line-height:1.45;
  font-size:15px;
}
.promo-note b { color:#ffd66b; }
.trust-strip {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  background:var(--cream);
  border-bottom:1px solid var(--border);
}
.trust-item {
  text-align:center;
  padding:26px 16px;
  border-right:1px solid var(--border);
}
.trust-item:last-child { border-right:0; }
.trust-item b {
  display:block;
  font-size:20px;
  margin-bottom:5px;
}
.trust-item span { color:var(--muted); }
.section {
  padding:76px 38px;
}
.wrap {
  max-width:1180px;
  margin:0 auto;
}
.eyebrow {
  color:var(--pink);
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:12px;
}
h2 {
  font-family:"Playfair Display", serif;
  font-size:clamp(42px,5.8vw,70px);
  line-height:1.02;
  letter-spacing:-1.2px;
  margin:0 0 18px;
}
.lead {
  color:var(--muted);
  font-size:21px;
  line-height:1.68;
  max-width:820px;
  margin:0 0 34px;
}
.reviews { background:var(--cream); }
.review-top {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:28px;
}
.rating {
  text-align:right;
  font-weight:900;
}
.stars {
  color:var(--gold);
  letter-spacing:3px;
  font-size:22px;
  margin-bottom:5px;
}
.review-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.review-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  box-shadow:0 16px 38px rgba(0,0,0,.06);
}
.review-card p {
  margin:16px 0 0;
  font-size:20px;
  line-height:1.5;
}
.options-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.option {
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px;
  background:#fff;
}
.icon {
  color:var(--pink);
  font-size:32px;
  margin-bottom:16px;
}
.option h3 {
  font-family:"Playfair Display", serif;
  font-size:30px;
  margin:0 0 10px;
}
.option p {
  margin:0;
  color:var(--muted);
  line-height:1.55;
  font-size:17px;
}
.dark {
  background:#09090b;
  color:#fff;
}
.install-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}
.install-img {
  width:100%;
  border-radius:18px;
  box-shadow:0 22px 60px rgba(0,0,0,.42);
}
.dark .lead { color:rgba(255,255,255,.72); }
.bullets {
  display:grid;
  gap:14px;
  margin-top:28px;
}
.bullet {
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:13px;
  padding:17px 18px;
  font-weight:900;
  font-size:18px;
}
.bullet::before {
  content:"✓";
  color:var(--pink);
  margin-right:12px;
}
.gallery {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:20px;
}
.stack {
  display:grid;
  gap:20px;
}
.tile {
  position:relative;
  min-height:270px;
  border-radius:18px;
  overflow:hidden;
  background:#ddd;
  box-shadow:0 16px 36px rgba(0,0,0,.10);
}
.tile.big { min-height:560px; }
.tile img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.tile::after {
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:45%;
  background:linear-gradient(transparent,rgba(0,0,0,.76));
}
.caption {
  position:absolute;
  left:22px;
  bottom:20px;
  z-index:2;
  color:#fff;
  font-size:24px;
  font-weight:900;
}
.form-section {
  background:#09090b;
  color:#fff;
  text-align:center;
}
.form-card {
  max-width:620px;
  margin:34px auto 0;
  background:#fff;
  color:#111;
  border-radius:22px;
  padding:34px;
  text-align:left;
  box-shadow:0 22px 58px rgba(0,0,0,.34);
}
label {
  display:block;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:900;
  color:#777;
  margin:0 0 7px;
}
input, select {
  width:100%;
  padding:17px 16px;
  border:1.5px solid #ddd;
  border-radius:10px;
  font-size:18px;
  margin:0 0 18px;
  font-family:"DM Sans", Arial, sans-serif;
}
.submit {
  width:100%;
  border:0;
  background:var(--pink);
  color:#fff;
  padding:18px;
  border-radius:10px;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
}
.form-note {
  color:#777;
  text-align:center;
  margin-top:13px;
  font-size:13px;
}
.footer {
  background:#050505;
  color:rgba(255,255,255,.35);
  text-align:center;
  padding:24px;
  font-size:13px;
}
@media(max-width:820px) {
  .promo {
    justify-content:center;
    overflow:hidden;
    white-space:nowrap;
    width:100%;
    max-width:100%;
    text-overflow:ellipsis;
    font-size:11px;
    min-height:36px;
  }
  .header {
    height:68px;
    padding:0 18px;
  }
  .logo { font-size:28px; }
  .phone { display:none; }
  .nav-cta {
    padding:13px 18px;
    border-radius:9px;
  }
  .hero {
    min-height:calc(100svh - 104px);
    align-items:flex-end;
  }
  .hero img { object-position:center top; }
  .hero::before {
    background:linear-gradient(180deg,rgba(0,0,0,.20),rgba(0,0,0,.35) 38%,rgba(0,0,0,.90));
  }
  .hero-content {
    padding:38px 22px 42px;
    text-align:center;
    max-width:none;
  }
  .badge {
    font-size:11px;
    padding:9px 12px;
    margin-bottom:18px;
  }
  h1 {
    font-size:clamp(42px,12.8vw,60px);
    letter-spacing:-1.3px;
    margin-bottom:16px;
  }
  .hero-sub {
    font-size:18px;
    margin:0 auto 20px;
  }
  .hero-points {
    display:grid;
    grid-template-columns:1fr;
    max-width:330px;
    margin:18px auto 22px;
    gap:8px;
    text-align:left;
  }
  .actions {
    display:grid;
    gap:12px;
  }
  .btn {
    width:100%;
    min-width:0;
    padding:17px 16px;
  }
  .promo-note { font-size:14px; }
  .trust-strip { grid-template-columns:1fr; }
  .trust-item {
    border-right:0;
    border-bottom:1px solid var(--border);
    padding:22px 16px;
  }
  .section { padding:58px 20px; }
  h2 { font-size:46px; }
  .lead { font-size:19px; }
  .review-top { display:block; }
  .rating {
    text-align:left;
    margin-top:16px;
  }
  .review-grid,
  .options-grid,
  .install-grid,
  .gallery {
    grid-template-columns:1fr;
  }
  .tile.big,
  .tile {
    min-height:350px;
  }
  .caption { font-size:22px; }
  .form-card {
    padding:24px 20px;
    border-radius:20px;
  }
}
.form-message{
  margin-top:14px;
  text-align:center;
  font-weight:800;
  font-size:14px;
}
.form-message.success{color:#198754;}
.form-message.error{color:#d63384;}
