:root {
  --ink: #0b0d10;
  --muted: #69727d;
  --line: #dfe4ea;
  --paper: #f5f7f9;
  --white: #ffffff;
  --orange: #ff5a16;
  --orange-dark: #da3e00;
  --gold: #ffb21d;
  --green: #12845f;
  --blue: #182f48;
  --steel: #eef2f5;
  --charcoal: #11151b;
  --shadow: 0 24px 80px rgba(8, 10, 13, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 12px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 330px, rgba(255, 255, 255, 0.74) 390px, rgba(11, 13, 16, 0.94) 560px, rgba(11, 13, 16, 0.96) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  line-height: 1.05;
  text-decoration: none;
}

.brand-logo {
  width: clamp(220px, 21vw, 330px);
  height: auto;
  max-height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--orange-dark);
}

.nav-phone {
  padding: 10px 14px;
  color: var(--ink) !important;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(255, 90, 22, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: end;
  padding: 150px clamp(18px, 5vw, 72px) 54px;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 32%, rgba(255, 90, 22, 0.34), rgba(255, 90, 22, 0) 28%),
    linear-gradient(90deg, rgba(8, 10, 13, 0.94) 0%, rgba(8, 10, 13, 0.62) 45%, rgba(8, 10, 13, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 10, 13, 0.86) 0%, rgba(8, 10, 13, 0) 48%),
    url("../images/basketball-hoop-driveway.jpg") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(900px, 100%);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.85rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.footer-links,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 16px 34px rgba(244, 121, 32, 0.32);
}

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.button.outline {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.light-actions {
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.hero-proof span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-weight: 700;
}

.hero-product-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 54px;
  width: min(360px, calc(100% - 36px));
  padding: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-product-panel span {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-product-panel strong {
  display: block;
  margin-top: 8px;
  line-height: 1.2;
  font-size: 1.25rem;
}

.hero-product-panel a {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.intro-section,
.split-band,
.area-strip,
.cta-band,
.page-hero,
.contact-layout {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: var(--white);
}

.intro-premium {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f7f9 100%);
}

.intro-media {
  position: relative;
}

.intro-media::before {
  content: "PRO INSTALL";
  position: absolute;
  z-index: 1;
  left: 18px;
  top: 18px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.intro-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-copy p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.12rem;
}

.intro-section > p,
.page-hero > p,
.page-hero div > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 1.12rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px) clamp(64px, 9vw, 112px);
  background:
    linear-gradient(180deg, var(--paper), #ffffff);
}

.service-card,
.city-feature-grid article,
.estimate-form,
.stat-stack div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card {
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(8, 10, 13, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(8, 10, 13, 0.18);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f8fafc;
}

.service-card div {
  padding: 22px;
}

.service-card p,
.detail-row p,
.city-feature-grid p,
.gallery-grid figcaption,
.site-footer p {
  color: var(--muted);
}

.service-card a,
.text-link,
.detail-row a {
  display: inline-block;
  margin-top: 16px;
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 10, 13, 0.9), rgba(21, 25, 31, 0.82)),
    url("../images/finished-basketball-court.jpg") center / cover;
}

.split-copy p {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.split-copy a {
  color: #ffd48f;
  font-weight: 800;
}

.stat-stack {
  display: grid;
  gap: 12px;
}

.stat-stack div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  color: var(--ink);
}

.stat-stack strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.area-strip {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 90, 22, 0.88), rgba(17, 21, 27, 0.94)),
    url("../images/north-atlanta-service-area.jpg") center / cover;
}

.area-strip h2 {
  max-width: 1120px;
}

.area-strip .section-kicker,
.area-strip .text-link {
  color: var(--white);
}

.review-section,
.faq-section,
.content-band {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.review-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 78px);
}

.review-grid {
  display: grid;
  gap: 16px;
}

blockquote {
  margin: 0;
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff, #f7f9fb);
  border: 1px solid var(--line);
  border-radius: 8px;
}

blockquote p {
  color: #2c3642;
  font-size: 1.05rem;
}

cite {
  display: block;
  margin-top: 16px;
  color: var(--orange-dark);
  font-style: normal;
  font-weight: 800;
}

.faq-section h2,
.content-band h2 {
  max-width: 900px;
  margin-bottom: 24px;
}

details {
  max-width: 980px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
}

details p {
  max-width: 820px;
  margin-top: 10px;
  color: var(--muted);
}

.page-hero {
  display: grid;
  gap: 20px;
  background: var(--white);
}

.page-hero h1 {
  max-width: 760px;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.landing-hero h1 {
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.85rem);
}

.landing-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.12rem;
}

.landing-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.content-band > p {
  max-width: 920px;
  color: var(--muted);
  font-size: 1.12rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.mini-grid article {
  padding: 22px;
  background: var(--steel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.page-hero.compact {
  max-width: 1120px;
}

.area-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
}

.area-hero img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.area-hero h1 {
  max-width: 680px;
}

.service-detail-list {
  display: grid;
  gap: 0;
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--steel);
}

.detail-row:nth-child(even) {
  background: var(--white);
}

.detail-row.reverse img {
  order: 2;
}

.detail-row img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-row p {
  margin-top: 16px;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #33404e;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
}

.city-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px) clamp(64px, 9vw, 112px);
  background: var(--white);
}

.city-feature-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(8, 10, 13, 0.07);
}

.city-feature-grid h2 {
  font-size: 1.35rem;
}

.city-feature-grid p {
  color: var(--muted);
}

.city-cloud-section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background: var(--steel);
}

.city-cloud-section h2 {
  max-width: 760px;
  margin-bottom: 24px;
}

.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-cloud span {
  padding: 8px 12px;
  color: #26313d;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
}

.city-details {
  max-width: none;
  margin-top: 18px;
  padding: 0;
  border: 0;
}

.city-details summary {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  list-style: none;
}

.city-details summary::-webkit-details-marker {
  display: none;
}

.city-details[open] summary {
  margin-bottom: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px) clamp(64px, 9vw, 112px);
  background: var(--white);
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.gallery-grid figcaption {
  padding: 14px 16px;
  font-weight: 800;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--ink);
}

.cta-band h2 {
  max-width: 860px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.7fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
  min-height: calc(100vh - 84px);
  background:
    linear-gradient(90deg, rgba(251, 252, 253, 0.98), rgba(251, 252, 253, 0.88)),
    url("../images/basketball-hoop-driveway.jpg") center / cover;
}

.contact-copy h1 {
  font-size: clamp(2rem, 3.8vw, 3.85rem);
}

.contact-copy > p {
  max-width: 720px;
  margin-top: 20px;
}

.contact-methods {
  margin-top: 28px;
}

.contact-methods a {
  min-width: min(100%, 310px);
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(21, 25, 31, 0.08);
}

.contact-methods span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-methods strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.estimate-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  color: #303946;
  font-weight: 800;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-check input {
  width: auto;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f7f9fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #10141a;
}

.footer-links {
  align-items: center;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .intro-section,
  .split-band,
  .area-hero,
  .contact-layout,
  .landing-hero,
  .review-section {
    grid-template-columns: 1fr;
  }

  .hero-product-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }

  .detail-row,
  .detail-row.reverse {
    grid-template-columns: 1fr;
  }

  .detail-row.reverse img {
    order: 0;
  }

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand-logo {
    width: min(240px, 58vw);
    max-height: 58px;
  }

  .hero {
    min-height: 700px;
    padding-top: 96px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.45rem, 8vw, 2.35rem);
  }

  .service-grid,
  .gallery-grid,
  .city-feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof span,
  .button {
    width: 100%;
  }

  .stat-stack div {
    grid-template-columns: 44px 1fr;
  }
}
