:root{
  --bg: #0b0f14;
  --panel: #101826;
  --panel2:#0f172a;
  --text:#e6edf6;
  --muted:#a6b3c2;
  --brand:#e11d48;
  --line: rgba(255,255,255,.10);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color:var(--text);
  background:linear-gradient(180deg, #070a0f 0%, #0b0f14 100%); }
a{ color:inherit; text-decoration:none; }
.container{ width:min(1100px, 92%); margin:0 auto; }

.topbar{
  background:#070a0f;
  border-bottom:1px solid var(--line);
  font-size:14px;
}
.topbar__inner{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 0;
  gap:12px;
}
.topbar__right{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.dot{ opacity:.6; }

.header{
  background:rgba(11,15,20,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 0;
  gap:16px;
}
.header__inner--center{
  flex-direction:column;
  text-align:center;
}
.logo{
  width:min(320px, 80vw);
  height:auto;
  display:block;
}
.brandtext{ margin-top:6px; }
.brandname{ font-weight:900; font-size:22px; letter-spacing:.2px; }
.brandtag{ color:var(--muted); font-size:13px; margin-top:2px; }
.header__cta{ display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin-top:10px; }

.btn{
  display:inline-flex; justify-content:center; align-items:center;
  padding:12px 16px;
  border-radius:12px;
  background:var(--brand);
  color:white;
  font-weight:800;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.btn:hover{ filter:brightness(1.05); }
.btn--ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
}
.btn--full{ width:100%; }

.hero{ padding:42px 0 28px; }
.hero__inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:start;
}
.hero h1{ font-size:40px; margin:0 0 10px; line-height:1.08; }
.hero p{ color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px; }

.hero__badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
.badge{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
}

.hero__card{
  background:linear-gradient(180deg, rgba(225,29,72,.12), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.hero__card h3{ margin:0 0 6px; }

.section{ padding:46px 0; }
.section--alt{ background:rgba(255,255,255,.03); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section__head{ margin-bottom:16px; }
.section__head h2{ margin:0 0 6px; font-size:28px; }
.section__head p{ margin:0; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color:var(--muted); }

.pricing{
  display:grid;
  grid-template-columns: 1fr .9fr;
  gap:16px;
  align-items:start;
}
.pricing__box{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}
.price-table{
  width:100%;
  border-collapse:collapse;
  margin-top:12px;
  overflow:hidden;
  border-radius:14px;
}
.price-table th, .price-table td{
  border:1px solid rgba(255,255,255,.12);
  padding:12px;
  text-align:center;
}
.price-table th{
  background:rgba(255,255,255,.04);
}
.pricing__highlights{ display:grid; gap:10px; margin:14px 0; }
.highlight{
  padding:12px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.03);
}
.pricing__note{
  border:1px dashed rgba(255,255,255,.20);
  border-radius:18px;
  padding:18px;
  background:rgba(0,0,0,.12);
}
.pricing__note h4{ margin:0 0 6px; }
.pricing__note p{ margin:0 0 14px; }

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.gallery__item{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.gallery__item img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.contact__cards{ display:grid; gap:12px; margin:14px 0 8px; }
.contact__card{
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  background:rgba(255,255,255,.03);
}
.contact__label{ color:var(--muted); font-size:13px; }
.contact__value{ font-weight:900; margin-top:4px; }

.contact__form{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background:rgba(255,255,255,.03);
}

.form{ display:grid; gap:10px; margin-top:10px; }
label{ display:grid; gap:6px; font-size:14px; color:var(--text); }
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.20);
  color:var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(225,29,72,.55);
  box-shadow: 0 0 0 4px rgba(225,29,72,.18);
}

.footer{
  padding:22px 0;
  border-top:1px solid var(--line);
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:12px;
}
.muted{ color:var(--muted); }
.small{ font-size:13px; }
.hidden{ display:none; }

@media (max-width: 900px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .hero h1{ font-size:34px; }
  .gallery__item img{ height:220px; }
}


/* Town SEO cards */
.towns{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}
.town{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background:rgba(255,255,255,.03);
}
.town h3{ margin:0 0 8px; }
.town p{ margin:0; color:var(--muted); line-height:1.6; }

/* Reviews */
.reviews{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:stretch;
}
.reviews__card{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background:rgba(255,255,255,.03);
}
.reviews__embed{
  border:1px dashed rgba(255,255,255,.22);
  border-radius:18px;
  padding:18px;
  background:rgba(0,0,0,.10);
}
.embed-placeholder{
  height:100%;
  min-height:160px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  gap:8px;
}

/* Mobile sticky call bar */
.sticky-call{
  position:fixed;
  left:0; right:0; bottom:0;
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  background:rgba(7,10,15,.92);
  border-top:1px solid var(--line);
  backdrop-filter: blur(10px);
  display:none;
  z-index:999;
}
.sticky-call__btn{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  background:var(--brand);
  color:#fff;
  font-weight:900;
  box-shadow: var(--shadow);
}

/* Show sticky call bar on mobile */
@media (max-width: 900px){
  .towns{ grid-template-columns: 1fr; }
  .reviews{ grid-template-columns: 1fr; }
  .sticky-call{ display:block; }
  /* add bottom spacing so footer isn't covered */
  body{ padding-bottom: 74px; }
}
