:root {
  --bg: #091018;
  --bg-soft: #0d151d;
  --bg-panel: rgba(15, 24, 33, 0.88);
  --surface: #101923;
  --surface-alt: #15212d;
  --surface-warm: #1b2833;
  --text: #edf3f7;
  --muted: #9aabb8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #d5903f;
  --accent-soft: rgba(213, 144, 63, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(213, 144, 63, 0.1), transparent 20%),
    radial-gradient(circle at left 20%, rgba(53, 91, 120, 0.18), transparent 26%),
    linear-gradient(180deg, #071019 0%, #0a131b 52%, #091018 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 90%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

main,
footer,
header {
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

#services,
#choose,
#story,
#areas,
#gallery,
#faq,
#contact {
  scroll-margin-top: 110px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(22px);
  background: rgba(8, 14, 21, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header-scrolled {
  background: rgba(7, 13, 19, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem 1.5rem;
  min-height: 5.4rem;
  padding: 0.45rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
  justify-self: start;
}

.logo-shell {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(58px, 5vw, 78px);
  height: clamp(58px, 5vw, 78px);
  padding: 0.28rem;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(226, 232, 238, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.logo-shell-footer {
  width: 90px;
  height: 90px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  image-rendering: -webkit-optimize-contrast;
  transform: scale(1.045);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong,
.eyebrow,
h1,
h2,
h3,
.value-number,
.panel-label,
.phone-pill,
.text-link {
  font-family: "Avenir Next Condensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  letter-spacing: 0.04em;
}

.brand-copy strong {
  font-size: 1.04rem;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 0.14rem;
  font-size: 0.85rem;
  line-height: 1.18;
  color: rgba(237, 243, 247, 0.62);
}

.site-nav {
  width: 100%;
  max-width: 500px;
  justify-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.5vw, 1.45rem);
  font-size: 0.96rem;
  color: rgba(237, 243, 247, 0.8);
}

.nav-links a {
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.9rem;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
  font-size: 0.95rem;
}

.phone-link-light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), #eea24e);
  color: #101923;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(213, 144, 63, 0.16);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 40px rgba(213, 144, 63, 0.22);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.header-cta .button {
  min-height: 2.85rem;
  padding: 0 1.15rem;
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hero-section {
  padding: 3.4rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #c3d1da;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

h1,
h2,
h3 {
  margin: 0;
  text-transform: uppercase;
  line-height: 1;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.92;
}

h2 {
  max-width: 21ch;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.1;
}

.hero-subheadline,
.section-heading > p:last-child,
.value-card p,
.service-copy p,
.benefit-card p,
.story-copy p,
.faq-card p,
.contact-copy p,
.footer-brand p,
.footer-column span,
.footer-column a {
  color: var(--muted);
  line-height: 1.72;
}

.hero-subheadline {
  max-width: 55ch;
  margin: 1.15rem 0 0;
  font-size: 1.08rem;
  color: rgba(237, 243, 247, 0.84);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li,
.area-chip,
.hero-notes span {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.hero-list li {
  padding: 0.9rem 1rem;
  font-weight: 800;
  text-align: center;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.hero-notes span {
  padding: 0.65rem 0.9rem;
  color: rgba(237, 243, 247, 0.82);
  font-size: 0.92rem;
}

.hero-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 26, 36, 0.82), rgba(10, 17, 24, 0.92));
  box-shadow: var(--shadow);
}

.hero-card,
.value-card,
.service-card,
.benefit-card,
.story-media,
.story-copy,
.gallery-card,
.faq-card,
.contact-card,
.footer-brand,
.footer-column {
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card::after,
.service-card::after,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 10, 15, 0.22) 100%);
}

.hero-card img {
  aspect-ratio: 4 / 4;
  transition: transform 360ms ease;
}

.hero-card-large {
  grid-column: span 2;
}

.hero-card-large img {
  aspect-ratio: 16 / 9;
}

.image-crop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-crop-condensers {
  object-position: center;
}

.image-crop-yard {
  object-position: center;
}

.image-crop-minisplit {
  object-position: center;
}

.image-crop-furnace {
  object-position: center;
}

.image-crop-mechanical {
  object-position: center;
}

.value-strip {
  padding-bottom: 1.5rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(17, 27, 37, 0.94), rgba(12, 20, 27, 0.94));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.value-card:hover,
.service-card:hover,
.benefit-card:hover,
.gallery-card:hover,
.faq-card:hover,
.story-copy:hover,
.story-media:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-card:hover img,
.service-card:hover img,
.gallery-card:hover img,
.story-media:hover img {
  transform: scale(1.03);
}

.value-number {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent);
  font-size: 1.18rem;
  font-weight: 800;
}

.value-card h3 {
  max-width: none;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading .eyebrow {
  position: relative;
  display: inline-block;
  padding-bottom: 0.55rem;
}

.section-heading .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 76px;
  height: 2px;
  background: var(--accent);
}

.section-heading > p:last-child {
  margin-top: 1rem;
}

.services-section,
.areas-section,
.faq-section {
  background: linear-gradient(180deg, rgba(11, 18, 26, 0.86), rgba(9, 16, 24, 0.98));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(20, 30, 40, 0.98), rgba(14, 22, 30, 0.98));
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.service-card-wide {
  grid-column: span 6;
}

.service-image {
  aspect-ratio: 16 / 11;
}

.service-copy,
.gallery-copy,
.faq-card,
.benefit-card,
.story-copy {
  padding: 1.45rem;
}

.panel-label {
  margin: 0 0 0.95rem;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-copy h3,
.benefit-card h3,
.gallery-copy h3,
.faq-card h3,
.story-copy h2,
.footer-brand h3 {
  color: var(--text);
}

.service-copy p {
  margin-top: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: #dcb07c;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link::after {
  content: "->";
  font-size: 0.9em;
}

.choose-section {
  background: linear-gradient(180deg, #0c141c, #101a23);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(213, 144, 63, 0.34);
  color: var(--accent);
}

.benefit-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-section {
  background: linear-gradient(180deg, #0a1219, #0d171f);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.2rem;
  align-items: stretch;
}

.story-media,
.story-copy {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-media {
  background: rgba(255, 255, 255, 0.04);
}

.story-image {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 360ms ease;
}

.story-copy {
  background: linear-gradient(180deg, rgba(18, 28, 37, 0.95), rgba(13, 21, 28, 0.95));
}

.story-copy h2 {
  max-width: 18ch;
}

.story-copy p {
  margin-top: 1rem;
}

.areas-shell {
  display: grid;
  gap: 1.5rem;
}

.section-heading-tight {
  margin-bottom: 0;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.area-chip {
  padding: 0.95rem 1.15rem;
  font-weight: 800;
}

.gallery-section {
  background: linear-gradient(180deg, #0b141c, #0e1821);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  position: relative;
  grid-column: span 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.gallery-card img {
  aspect-ratio: 1 / 1;
  transition: transform 360ms ease;
}

.gallery-card-feature {
  grid-column: span 6;
}

.gallery-card-feature img {
  aspect-ratio: 16 / 10;
}

.gallery-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding-top: 2.75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 10, 14, 0.92) 46%);
}

.gallery-copy h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.faq-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.faq-card h3 {
  margin-bottom: 0.8rem;
}

.contact-section {
  padding-top: 0;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #14222c, #1d2f3c);
}

.contact-copy p {
  max-width: 58ch;
  margin-top: 1rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.site-footer {
  padding: 2rem 0 5.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #081018;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-brand,
.footer-column {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand h3 {
  margin-bottom: 0.75rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-column a:hover {
  color: #ffffff;
}

.mobile-callbar {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #eea24e);
  color: #101923;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .service-card-wide {
    grid-column: span 1;
  }

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

  .gallery-card,
  .gallery-card-feature {
    grid-column: span 1;
  }

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

@media (max-width: 980px) {
  .topbar,
  .contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .value-grid,
  .benefits-grid,
  .story-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-nav,
  .header-cta {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    gap: 1rem;
    min-height: auto;
    padding: 0.8rem 0;
  }

  .header-cta {
    gap: 0.75rem;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.15rem;
  }

  .hero-collage,
  .services-grid,
  .gallery-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-large {
    grid-column: span 1;
  }

  .hero-card img,
  .hero-card-large img,
  .gallery-card img,
  .gallery-card-feature img {
    aspect-ratio: 16 / 11;
  }

  .gallery-card,
  .gallery-card-feature,
  .service-card,
  .service-card-wide {
    grid-column: span 1;
  }

  .hero-list {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .button,
  .phone-pill,
  .phone-link-light {
    width: 100%;
  }

  .mobile-callbar {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
