:root {
  --bg: #050507;
  --panel: #101014;
  --panel-2: #17171d;
  --text: #f8f7f2;
  --muted: #b8b7c4;
  --line: rgba(255, 255, 255, 0.13);
  --gold: #ffbd2e;
  --orange: #ff6b21;
  --cyan: #17d8ff;
  --pink: #ff2fb3;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(23, 216, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(255, 47, 179, 0.16), transparent 28rem),
    linear-gradient(180deg, #050507 0%, #09090d 44%, #050507 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.top-strip {
  background: #000;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.top-strip .wrap,
.nav .wrap,
.section .wrap,
.footer .wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}

.top-strip a {
  color: var(--text);
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 7, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav .wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 94px;
  height: 94px;
  flex: 0 0 94px;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  filter:
    drop-shadow(0 0 7px rgba(255, 189, 46, 0.72))
    drop-shadow(0 0 12px rgba(23, 216, 255, 0.24))
    drop-shadow(0 0 16px rgba(255, 44, 203, 0.18));
}

.brand > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #050507;
  border-radius: var(--radius);
  box-shadow: 0 0 24px rgba(255, 189, 46, 0.35), 0 0 22px rgba(23, 216, 255, 0.18);
  font-weight: 950;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 11px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.93rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: var(--radius);
  min-width: 58px;
  min-height: 44px;
  padding: 0 10px;
  font-size: 0.84rem;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: #08080a;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 0 28px rgba(255, 107, 33, 0.22);
}

.btn.secondary {
  color: var(--text);
  border-color: rgba(23, 216, 255, 0.55);
  background: rgba(23, 216, 255, 0.08);
}

.btn.ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 189, 46, 0.18), transparent 28rem),
    radial-gradient(circle at 18% 20%, rgba(23, 216, 255, 0.11), transparent 24rem),
    linear-gradient(135deg, #050507 0%, #101014 52%, #050507 100%);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--pink), var(--cyan));
  box-shadow: 0 0 28px rgba(255, 47, 179, 0.55);
}

.hero .wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 72px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  display: block;
  width: min(330px, 72vw);
  height: auto;
  margin: 0 0 20px;
  filter:
    drop-shadow(0 0 12px rgba(255, 189, 46, 0.65))
    drop-shadow(0 0 22px rgba(23, 216, 255, 0.2))
    drop-shadow(0 0 26px rgba(255, 44, 203, 0.18));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

h3 {
  font-size: 1.28rem;
}

.lead {
  max-width: 690px;
  color: #e7e5ef;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin: 20px 0 0;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
  max-width: 830px;
}

.trust-item,
.card,
.contact-card,
.notice,
.form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 16px;
}

.trust-item strong {
  display: block;
  color: var(--text);
  font-size: 1.05rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 82px 0;
}

.section.tight {
  padding: 56px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--gold), var(--cyan), var(--pink));
}

.card p,
.contact-card p,
.notice p {
  color: var(--muted);
  margin: 10px 0 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 189, 46, 0.72);
  background: rgba(255, 189, 46, 0.1);
}

.social-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 14px;
  color: #fff;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-link.facebook .social-icon {
  background: #1877f2;
  box-shadow: 0 0 18px rgba(24, 119, 242, 0.42);
}

.social-link.yelp .social-icon {
  background: #d32323;
  box-shadow: 0 0 18px rgba(211, 35, 35, 0.42);
}

.social-link.youtube .social-icon {
  background: #ff0033;
  box-shadow: 0 0 18px rgba(255, 0, 51, 0.42);
}

.social-link.instagram .social-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  box-shadow: 0 0 18px rgba(221, 42, 123, 0.42);
}

.service-list,
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li,
.check-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px 14px 42px;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  min-height: 54px;
}

.service-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 21px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 32px;
}

.category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  font-weight: 850;
  font-size: 0.9rem;
}

.category-nav a:hover {
  border-color: rgba(255, 189, 46, 0.68);
  background: rgba(255, 189, 46, 0.1);
}

.gallery-category {
  padding: 34px 0 18px;
  border-top: 1px solid var(--line);
}

.gallery-category:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.gallery-category-head {
  margin-bottom: 18px;
}

.gallery-category-head p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
}

.gallery-cover {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) 1fr;
  gap: 24px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 189, 46, 0.12), transparent 38%),
    var(--panel);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.gallery-cover::-webkit-details-marker {
  display: none;
}

.gallery-cover::marker {
  content: "";
}

.gallery-cover:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 189, 46, 0.7);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.48), 0 0 24px rgba(255, 189, 46, 0.14);
}

.gallery-cover-image img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
}

.gallery-cover-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.gallery-cover-title {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.08;
}

.gallery-cover-text {
  display: block;
  max-width: 690px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.gallery-cover-action {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--gold);
  color: #160f02;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(255, 189, 46, 0.28);
}

.gallery-open,
.gallery-category[open] .gallery-closed {
  display: none;
}

.gallery-category[open] .gallery-open {
  display: inline;
}

.gallery-panel {
  margin-top: 18px;
}

.gallery-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item div {
  padding: 18px;
}

.gallery-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  padding: 94px 0 66px;
  background:
    radial-gradient(circle at 84% 15%, rgba(255, 107, 33, 0.16), transparent 25rem),
    radial-gradient(circle at 18% 20%, rgba(23, 216, 255, 0.1), transparent 22rem),
    linear-gradient(135deg, #050507 0%, #101014 58%, #050507 100%);
}

.page-hero .wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

.page-hero p {
  max-width: 720px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.estimate-page {
  padding-top: 54px;
}

.section .estimate-form-wrap {
  width: min(760px, calc(100% - 32px));
}

.contact-card,
.notice {
  padding: 24px;
}

.contact-card a {
  color: var(--text);
  font-weight: 900;
  text-decoration-color: rgba(23, 216, 255, 0.65);
}

.form-card {
  padding: 24px;
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.contact-icons-left {
  justify-content: flex-start;
  margin: 18px 0 0;
}

.action-icons {
  justify-content: flex-start;
  margin: 26px 0 0;
}

.icon-link {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.icon-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 189, 46, 0.68);
  background: rgba(255, 189, 46, 0.1);
}

.icon-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #08080b;
  color: var(--text);
  min-height: 48px;
  padding: 12px 13px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(23, 216, 255, 0.72);
  outline-offset: 2px;
}

.success {
  display: none;
  border: 1px solid rgba(23, 216, 255, 0.5);
  background: rgba(23, 216, 255, 0.08);
  color: var(--text);
  border-radius: var(--radius);
  padding: 16px;
  font-weight: 850;
}

.success.show {
  display: block;
}

.builder-note {
  margin-top: 16px;
  border: 1px dashed rgba(255, 189, 46, 0.65);
  background: rgba(255, 189, 46, 0.08);
  color: #fff5d6;
  border-radius: var(--radius);
  padding: 15px;
  font-size: 0.95rem;
}

.footer {
  padding: 46px 0 28px;
  border-top: 1px solid var(--line);
  background: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 26px;
}

.footer p,
.footer a {
  color: var(--muted);
}

.footer a {
  display: block;
  text-decoration: none;
  margin: 7px 0;
}

.footer .brand {
  display: inline-flex;
  margin: 0;
}

.footer .brand-logo {
  width: 150px;
  height: 150px;
  flex-basis: 150px;
}

.footer a:hover {
  color: var(--text);
}

.copyright {
  margin-top: 30px;
  color: #8f8d9a;
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #08080b;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px;
  }

  .hero {
    min-height: 720px;
    background:
      radial-gradient(circle at 78% 14%, rgba(255, 189, 46, 0.16), transparent 18rem),
      linear-gradient(180deg, #050507 0%, #101014 58%, #050507 100%);
  }

  .trust-row,
  .grid-3,
  .grid-2,
  .gallery-grid,
  .social-grid,
  .contact-grid,
  .footer-grid,
  .service-list,
  .check-list {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-cover {
    grid-template-columns: 1fr;
  }

  .gallery-cover-image img {
    min-height: 220px;
  }
}

@media (max-width: 520px) {
  .top-strip .wrap {
    display: none;
  }

  .nav .wrap {
    min-height: 78px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero .wrap {
    padding: 74px 0 58px;
  }

  .section {
    padding: 58px 0;
  }

  .btn {
    width: 100%;
  }
}
