:root {
  --ink: #17211c;
  --muted: #66736d;
  --line: #d8e2dd;
  --paper: #f6f8f6;
  --white: #ffffff;
  --blue: #24715a;
  --cyan: #8fd4c0;
  --green: #24715a;
  --violet: #a76f38;
  --shadow: 0 24px 80px rgba(23, 33, 28, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

body.modal-open {
  position: fixed;
  top: var(--modal-scroll-lock-top, 0);
  right: 0;
  left: 0;
  width: 100%;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 225, 232, 0.8);
  border-radius: var(--radius);
  box-shadow: 0 14px 50px rgba(23, 33, 28, 0.1);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 74px;
  height: 42px;
  background: linear-gradient(135deg, var(--ink), var(--green));
  mask: url("assets/good-attic-logo-cropped.png") center / contain no-repeat;
  -webkit-mask: url("assets/good-attic-logo-cropped.png") center / contain no-repeat;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.nav-dropdown__button {
  color: #3d4655;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav a:hover,
.nav-dropdown__button:hover {
  color: var(--blue);
}

.nav-dropdown {
  position: relative;
}

.phone-dropdown {
  position: relative;
}

.mobile-header-phone {
  display: none;
}

.mobile-header-actions {
  display: contents;
}

.nav-dropdown__button {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 0;
}

.nav-dropdown__button::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  min-width: 180px;
  padding: 10px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown__menu a {
  padding: 11px 12px;
  border-radius: var(--radius);
}

.nav-dropdown__menu a:hover {
  background: #e9f2ee;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.primary {
  background: linear-gradient(135deg, var(--ink), var(--green));
  box-shadow: 0 10px 24px rgba(36, 113, 90, 0.22);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.inspection-panel .button.primary,
.service-showcase__cta.button.primary {
  background: linear-gradient(135deg, #3b6c59, #5fb593);
  box-shadow: 0 12px 28px rgba(95, 181, 147, 0.26);
}

.nav-cta {
  background: linear-gradient(135deg, var(--ink), var(--green));
  box-shadow: 0 10px 24px rgba(36, 113, 90, 0.22);
}

.nav .nav-cta--phone {
  gap: 8px;
  min-width: 140px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--green));
  box-shadow: 0 10px 24px rgba(36, 113, 90, 0.22);
}

.nav .nav-cta--phone::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav .nav-cta--phone:hover {
  color: var(--white);
  background: linear-gradient(135deg, #24302b, #2d8267);
}

.mobile-phone-button {
  min-width: 104px;
  min-height: 40px;
  padding: 0 8px;
  font-size: 11px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--green));
  box-shadow: 0 10px 24px rgba(36, 113, 90, 0.22);
}

.mobile-phone-button::after {
  display: none;
}

.phone-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: max-content;
  min-width: 166px;
  padding: 10px;
  pointer-events: none;
  background: rgba(18, 44, 37, 0.82);
  border: 1px solid rgba(143, 212, 192, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(23, 33, 28, 0.24);
  opacity: 0;
  backdrop-filter: blur(16px);
  transform: translate(-50%, 8px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.phone-dropdown.is-open .phone-dropdown__menu {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.phone-dropdown__menu a {
  min-height: 40px;
  padding: 10px 14px;
  color: var(--white);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius);
}

.phone-dropdown__menu a:hover {
  color: var(--white);
  background: rgba(143, 212, 192, 0.22);
}

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

.button.light {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  min-height: 79vh;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
  padding: 122px max(24px, calc((100vw - 1180px) / 2)) 4px;
  overflow: hidden;
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
}

.hero-review-banner {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 12px;
  color: #25332c;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(216, 226, 221, 0.88);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(23, 33, 28, 0.1);
  backdrop-filter: blur(16px);
}

.hero-review-banner__google {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: transparent;
  font-size: 16px;
  font-weight: 950;
  background: conic-gradient(from -45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  border-radius: 50%;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-review-banner__stars {
  color: #fbbc05;
  letter-spacing: 0;
}

.hero-review-banner__count {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.hero-review-banner__volume {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-display {
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.hero-text,
.section-heading > p:not(.eyebrow),
.story p,
.feature-card p,
.info-tile p,
.audience-panel p,
.contact-info p,
.footer p,
.modal-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: grid;
  width: min(100%, 340px);
  min-width: 0;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions .button {
  width: 100%;
}

.hero-actions__secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-device {
  display: grid;
  min-height: 640px;
  place-items: center;
  background:
    linear-gradient(rgba(23, 33, 28, 0.1), rgba(23, 33, 28, 0.58)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1100&q=80") center / cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-service-carousel {
  position: relative;
  width: min(100%, 560px);
  max-width: 100%;
  margin-top: 32px;
  padding: 0 42px;
  overflow: visible;
}

.hero-service-window {
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.hero-service-window::-webkit-scrollbar {
  display: none;
}

.hero-service-track {
  display: flex;
  width: max-content;
  gap: 12px;
  justify-content: flex-start;
  padding: 2px 0;
}

.hero-service-card {
  position: relative;
  display: flex;
  min-height: 108px;
  width: 144px;
  min-width: 144px;
  align-items: end;
  justify-content: start;
  padding: 12px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background: rgba(23, 33, 28, 0.84);
  border: 3px solid rgba(143, 212, 192, 0.86);
  border-radius: var(--radius);
  box-shadow:
    0 18px 34px rgba(23, 33, 28, 0.16),
    0 0 0 1px rgba(36, 113, 90, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 0 28px rgba(143, 212, 192, 0.14);
  backdrop-filter: blur(14px);
  scroll-snap-align: start;
  transition: border-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.hero-service-card:hover {
  color: var(--white);
  border-color: rgba(166, 238, 218, 0.98);
  transform: translateY(-2px);
}

.hero-service-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(12, 19, 16, 0.05) 0%, rgba(12, 19, 16, 0.7) 100%),
    linear-gradient(90deg, rgba(12, 19, 16, 0.5), rgba(12, 19, 16, 0.08));
}

.hero-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: inherit;
}

.hero-service-card span {
  position: relative;
  z-index: 2;
  max-width: 92%;
  font-size: 16px;
  font-weight: 950;
  line-height: 0.98;
  text-align: left;
}

.hero-service-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 950;
  background: rgba(18, 44, 37, 0.74);
  border: 1px solid rgba(143, 212, 192, 0.48);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(23, 33, 28, 0.18);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
}

.hero-service-arrow--prev {
  left: 4px;
}

.hero-service-arrow--next {
  right: 4px;
}

.attic-card {
  align-items: end;
  justify-items: start;
  align-content: end;
  gap: 14px;
  padding: 28px;
}

.inspection-panel {
  width: min(620px, 100%);
  padding: 28px;
  color: var(--white);
  background: rgba(23, 33, 28, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.inspection-lead {
  width: min(620px, 100%);
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  line-height: 1.02;
  text-wrap: balance;
}

.inspection-lead--module {
  display: none;
  color: var(--ink);
  align-self: end;
  margin: 0 0 8px;
}

@media (min-width: 981px) {
  .hero {
    align-items: start;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-service-carousel {
    margin-bottom: 28px;
  }

  .hero-device.attic-card {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin-top: 70px;
  }

  .hero:not(.hero--city) .attic-card--desktop {
    align-self: stretch;
    min-height: 0;
    margin-bottom: 56px;
  }

  .attic-card--desktop {
    display: grid;
  }

  .attic-health-section--mobile {
    display: none;
  }

  .hero--market .review-widget,
  .hero--city .review-widget {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-self: stretch;
    width: 100%;
    margin-top: 14px;
  }
}

.panel-kicker {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.score-ring {
  position: relative;
  --score: 0%;
  display: grid;
  width: 172px;
  height: 172px;
  place-items: center;
  align-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  background: conic-gradient(var(--cyan) var(--score), rgba(143, 212, 192, 0.24) 0);
  border-radius: 50%;
}

.score-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.score-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.score-row .score-ring {
  width: 154px;
  height: 154px;
  margin-bottom: 0;
}

.score-ring--before {
  background: conic-gradient(var(--violet) var(--score), rgba(167, 111, 56, 0.22) 0);
  transform: scaleX(-1);
}

.score-ring--after {
  transform: scaleX(-1);
}

.score-ring::before {
  position: absolute;
  inset: 12px;
  content: "";
  background: rgba(23, 33, 28, 0.92);
  border-radius: 50%;
}

.score-ring strong {
  position: relative;
  z-index: 1;
  font-size: 58px;
  line-height: 0.9;
}

.score-ring span {
  position: relative;
  z-index: 1;
  color: #cfe4dc;
  font-size: 13px;
  font-weight: 800;
}

.score-ring--before strong,
.score-ring--before span,
.score-ring--after strong,
.score-ring--after span {
  transform: scaleX(-1);
}

.inspection-list {
  display: grid;
  gap: 10px;
  margin-bottom: 0;
}

.inspection-list p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: #edf7f3;
  font-size: 14px;
  line-height: 1.35;
}

.inspection-list span {
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
}

.inspection-list--before span {
  background: var(--violet);
}

.phone-shell {
  width: min(330px, 72vw);
  padding: 20px;
  background: #101722;
  border: 10px solid #273142;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  margin-bottom: 18px;
}

.phone-top span {
  width: 72px;
  height: 8px;
  background: #3d4655;
  border-radius: 99px;
}

.market-card,
.feed-item {
  padding: 18px;
  margin-bottom: 14px;
  color: var(--white);
  background: #202b3a;
  border: 1px solid #334056;
  border-radius: var(--radius);
}

.market-card {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.market-card strong {
  color: var(--cyan);
  font-size: 44px;
}

.chart-lines {
  display: flex;
  height: 150px;
  gap: 12px;
  align-items: end;
  padding: 18px;
  margin-bottom: 14px;
  background: #151d29;
  border-radius: var(--radius);
}

.chart-lines i {
  flex: 1;
  height: 60%;
  background: linear-gradient(var(--cyan), var(--blue));
  border-radius: 99px 99px 0 0;
}

.chart-lines i:nth-child(2) { height: 35%; }
.chart-lines i:nth-child(3) { height: 82%; }
.chart-lines i:nth-child(4) { height: 48%; }
.chart-lines i:nth-child(5) { height: 70%; }

.feed-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.feed-item p {
  margin: 0;
  color: #d5dde8;
  font-size: 14px;
  line-height: 1.45;
}

.avatar {
  width: 34px;
  height: 34px;
  background: var(--green);
  border-radius: 50%;
}

.avatar.alt {
  background: var(--violet);
}

.media-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  grid-template-areas: "caption widget";
  gap: 48px;
  align-items: center;
  min-height: 320px;
  padding: 40px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(36, 113, 90, 0.1), rgba(23, 33, 28, 0)),
    var(--paper);
}

.media-caption {
  grid-area: caption;
  position: static;
  display: block;
  text-align: left;
}

.media-caption p {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(34px, 6vw, 88px);
  font-weight: 850;
  line-height: 0.98;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(135deg, var(--ink), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
}

.review-widget {
  grid-area: widget;
  justify-self: end;
  width: min(380px, 100%);
  padding: 22px;
  color: var(--white);
  background: rgba(23, 33, 28, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero--market .review-widget,
.hero--city .review-widget {
  justify-self: stretch;
  width: 100%;
}

.review-widget__header {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.review-widget__header h2 {
  margin: 0;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
}

.review-widget__rating {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
  color: #dcebe5;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.review-widget__rating strong {
  color: var(--cyan);
  font-size: 22px;
  line-height: 1;
}

.review-widget__rating .stars {
  font-size: 15px;
}

.google-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--white);
  border-radius: var(--radius);
}

.google-mark span {
  color: transparent;
  font-size: 26px;
  font-weight: 900;
  background: conic-gradient(from -45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  -webkit-background-clip: text;
  background-clip: text;
}

.review-score {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  margin-bottom: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.review-score strong {
  color: var(--cyan);
  font-size: 54px;
  line-height: 0.9;
}

.review-score p {
  margin: 8px 0 0;
  color: #dcebe5;
  font-size: 14px;
  line-height: 1.45;
}

.stars {
  color: #fbbc05;
  font-size: 18px;
  letter-spacing: 0;
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-list p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: #edf7f3;
  font-size: 14px;
  line-height: 1.35;
}

.review-list span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--cyan);
  border-radius: 50%;
}

.review-widget__shell {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.review-widget__stack {
  display: grid;
  gap: 14px;
}

.review-widget__shell strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.15;
}

.review-widget__shell p {
  margin: 0;
  color: #dcebe5;
  font-size: 14px;
  line-height: 1.5;
}

.attic-health-section {
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 40px;
  background: var(--paper);
}

.attic-health-section .attic-card {
  max-width: 1180px;
  margin: 0 auto;
}

.attic-card--desktop {
  display: none;
}

@media (min-width: 981px) {
  .attic-card--desktop {
    display: grid;
  }

  .attic-health-section--mobile {
    display: none;
  }
}

.review-widget__shell .page-card-link__cta,
.review-excerpt-mini .page-card-link__cta {
  justify-self: start;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.review-excerpt-list {
  display: grid;
  gap: 12px;
}

.review-excerpt-mini {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.review-copy {
  display: grid;
  gap: 8px;
}

.review-copy.is-collapsible:not(.is-expanded) [data-review-copy] {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.review-copy.is-expanded [data-review-copy] {
  display: block;
  overflow: visible;
}

.review-toggle {
  width: fit-content;
  padding: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.review-stars {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #f5cc64;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.review-stars span {
  line-height: 1;
}

.review-excerpt-mini__quote {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  line-height: 1.55;
}

.review-excerpt-mini__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  color: #dcebe5;
  font-size: 12px;
}

.review-excerpt-mini__meta strong {
  color: var(--white);
  font-size: 13px;
}

.review-carousel {
  overflow-x: auto;
  padding-bottom: 4px;
}

.review-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 12px;
}

.review-carousel__card {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.review-carousel__card--cta {
  align-content: start;
  background:
    linear-gradient(180deg, rgba(143, 212, 192, 0.12), rgba(23, 33, 28, 0.08)),
    rgba(255, 255, 255, 0.08);
}

.review-carousel__card--cta h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.05;
}

.review-carousel__card--cta p:not(.panel-kicker) {
  margin: 0;
  color: #dcebe5;
  font-size: 14px;
  line-height: 1.5;
}

.review-carousel__card--cta .page-card-link__cta {
  justify-self: start;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.review-carousel--mobile {
  display: none;
}

.review-carousel__quote {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  line-height: 1.55;
}

.review-carousel__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  color: #dcebe5;
  font-size: 12px;
}

.review-carousel__meta strong {
  color: var(--white);
  font-size: 13px;
}

.proof-queue-card--review {
  align-content: start;
}

.proof-review__quote {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.attic-map.section {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(460px, 1fr);
  gap: 34px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 70px;
  background:
    radial-gradient(circle at 78% 28%, rgba(36, 113, 90, 0.13), transparent 32%),
    radial-gradient(circle at 28% 82%, rgba(143, 212, 192, 0.15), transparent 28%),
    var(--paper);
}

.attic-map__copy {
  max-width: 620px;
}

.attic-map__copy h2 {
  font-size: clamp(36px, 4.2vw, 56px);
}

.attic-map__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.attic-map__cta {
  width: fit-content;
  margin-top: 26px;
}

.attic-map__cta--mobile {
  display: none;
}

.attic-map .house-illustration {
  width: min(100%, 790px);
}

.service-showcase {
  padding-top: 12px;
  padding-bottom: 30px;
}

.service-showcase__label {
  margin: 0 0 18px;
}

.service-showcase__stage {
  position: relative;
  min-height: 680px;
  padding: 32px 32px 106px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(143, 212, 192, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(18, 29, 24, 0.96), rgba(23, 33, 28, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(23, 33, 28, 0.18);
}

.service-showcase__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 280ms ease, transform 280ms ease;
}

.service-showcase__slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 19, 16, 0.8) 0%, rgba(12, 19, 16, 0.46) 34%, rgba(12, 19, 16, 0.08) 64%, rgba(12, 19, 16, 0.18) 100%),
    linear-gradient(0deg, rgba(12, 19, 16, 0.82) 0%, rgba(12, 19, 16, 0.18) 30%, rgba(12, 19, 16, 0) 50%);
}

.service-showcase__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.service-showcase__slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-showcase__overlay {
  position: absolute;
  z-index: 2;
  left: 40px;
  bottom: 104px;
  width: min(470px, calc(100% - 88px));
  padding: 28px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 24px 72px rgba(8, 14, 12, 0.24);
  backdrop-filter: blur(16px);
}

.service-showcase__overlay h3 {
  margin: 10px 0 14px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}

.service-showcase__overlay p:not(.panel-kicker) {
  margin: 0 0 20px;
  color: rgba(244, 248, 246, 0.86);
  font-size: 17px;
  line-height: 1.55;
}

.service-showcase__cta {
  position: absolute;
  bottom: 42px;
  left: 40px;
  z-index: 3;
  min-width: 150px;
}

.service-showcase__mobile-cta {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav a.is-active {
  color: var(--blue);
}

.page-main {
  padding-top: 88px;
}

.page-hero {
  padding-top: 46px;
  padding-bottom: 44px;
}

.page-hero--services {
  padding-top: 34px;
  padding-bottom: 70px;
}

.page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 40px;
  align-items: start;
}

.page-hero--services .page-hero__layout {
  align-items: center;
}

.page-hero__copy {
  max-width: 760px;
  opacity: 1;
  transform: none;
}

.page-hero__copy h1 {
  color: var(--ink);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.95;
}

.page-hero__card {
  opacity: 1;
  transform: none;
}

.page-hero--services .page-hero__card {
  background:
    linear-gradient(145deg, rgba(23, 33, 28, 0.95), rgba(18, 44, 37, 0.9)),
    linear-gradient(135deg, rgba(143, 212, 192, 0.2), rgba(36, 113, 90, 0.08));
  border-color: rgba(143, 212, 192, 0.28);
}

.page-intro,
.section-subcopy {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.section-subcopy {
  margin-top: 0;
}

.section-subcopy--light {
  max-width: 620px;
  color: rgba(244, 248, 246, 0.82);
}

.page-hero__actions,
.cta-strip__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero__actions {
  margin-top: 30px;
}

.page-hero__card h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--white);
}

.page-hero__card p:not(.panel-kicker) {
  color: #dcebe5;
  font-size: 16px;
  line-height: 1.55;
}

.page-chip-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.page-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: #42514a;
  font-size: 14px;
  font-weight: 700;
}

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

.breadcrumbs a:hover {
  color: var(--blue);
}

.breadcrumbs__sep {
  color: #9aa8a2;
}

.page-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.page-card-link__kicker {
  margin: 0 0 10px;
}

.page-card-link__media {
  display: block;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  overflow: hidden;
  background: rgba(23, 33, 28, 0.06);
  border: 1px solid rgba(23, 33, 28, 0.08);
  border-radius: var(--radius);
}

.page-card-link__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-card-link h3 {
  color: var(--ink);
}

.page-card-link:hover h3 {
  color: var(--blue);
}

.page-card-link__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.page-card-link__cta::after {
  margin-left: 8px;
  content: "→";
}

.evidence-card {
  cursor: default;
}

.evidence-card .page-card-link__cta {
  color: var(--muted);
}

.evidence-card .page-card-link__cta::after {
  content: "";
  margin-left: 0;
}

.before-after-proof-card__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.before-after-proof-card__panel {
  margin: 0;
  display: grid;
  gap: 8px;
}

.before-after-proof-card__label {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(36, 113, 90, 0.08);
  border: 1px solid rgba(36, 113, 90, 0.16);
  border-radius: 999px;
}

.before-after-proof-card__image {
  border-radius: var(--radius);
}

.proof-queue-card {
  display: grid;
  align-content: start;
}

.proof-status {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  align-items: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(36, 113, 90, 0.1);
  border: 1px solid rgba(36, 113, 90, 0.18);
  border-radius: 999px;
}

.proof-meta-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.proof-meta-list span {
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  background: rgba(244, 247, 245, 0.94);
  border: 1px solid rgba(216, 226, 221, 0.9);
  border-radius: 999px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(23, 33, 28, 0.06);
}

.faq-item summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.4;
  list-style: none;
}

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

.faq-item[open] {
  background: linear-gradient(145deg, rgba(36, 113, 90, 0.08), rgba(255, 255, 255, 0.92));
  border-color: rgba(36, 113, 90, 0.2);
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.review-proof-section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.review-widget--page {
  justify-self: start;
}

.home-hub-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 780px;
  margin-top: 28px;
}

.home-hub-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 226, 221, 0.92);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(23, 33, 28, 0.08);
  backdrop-filter: blur(16px);
}

.home-hub-chip:hover {
  color: var(--blue);
  border-color: rgba(36, 113, 90, 0.22);
}

@media (max-width: 980px) {
  .page-main {
    padding-top: 82px;
  }

  .page-hero {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .page-hero__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero__actions,
  .cta-strip__actions {
    width: 100%;
  }

  .page-hero__actions .button,
  .cta-strip__actions .button {
    width: 100%;
  }

  .home-hub-links {
    margin-top: 18px;
  }
}

.service-showcase__control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(8, 14, 12, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.service-showcase__control:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%) scale(1.04);
}

.service-showcase__control--prev {
  left: 18px;
}

.service-showcase__control--next {
  right: 18px;
}

.service-showcase__rail {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: stretch;
  padding: 8px;
  width: fit-content;
  max-width: calc(100% - 44px);
  overflow-x: auto;
  background: rgba(12, 19, 16, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
  transform: translateX(-50%);
}

.service-showcase__rail::-webkit-scrollbar {
  display: none;
}

.service-thumb {
  display: grid;
  width: 112px;
  min-width: 112px;
  gap: 6px;
  padding: 6px;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, color 180ms ease;
}

.service-thumb:hover {
  transform: translateY(-2px);
}

.service-thumb.is-active {
  color: var(--white);
  background: rgba(143, 212, 192, 0.14);
  border-color: rgba(143, 212, 192, 0.48);
}

.service-thumb img {
  width: 100%;
  height: 56px;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.service-thumb span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.house-3d {
  position: relative;
  min-height: 520px;
  perspective: 900px;
  overflow: visible;
}

.house-3d__shadow {
  position: absolute;
  right: 9%;
  bottom: 46px;
  width: 78%;
  height: 42px;
  background: radial-gradient(ellipse, rgba(23, 33, 28, 0.16), transparent 68%);
  transform: rotateX(58deg);
}

.house-3d__body {
  position: absolute;
  right: 10%;
  bottom: 86px;
  width: 76%;
  height: 245px;
  overflow: hidden;
  background: linear-gradient(145deg, #fbfcfb, #dfe8e4);
  border: 1px solid rgba(23, 33, 28, 0.12);
  box-shadow: 0 30px 60px rgba(23, 33, 28, 0.13);
  transform: rotateY(-7deg) rotateX(1deg);
  transform-origin: center;
  clip-path: polygon(0 18%, 50% 0, 100% 18%, 100% 100%, 0 100%);
}

.house-3d__body::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(23, 33, 28, 0.07) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 71%, rgba(23, 33, 28, 0.08) 72%, transparent 73%);
}

.house-3d__room {
  position: absolute;
  bottom: 34px;
  width: 26%;
  height: 96px;
  background: linear-gradient(145deg, rgba(36, 113, 90, 0.08), rgba(255, 255, 255, 0.45));
  border: 1px solid rgba(23, 33, 28, 0.1);
  border-radius: var(--radius);
}

.room-left {
  left: 12%;
}

.room-right {
  right: 12%;
}

.house-3d__floor {
  position: absolute;
  right: 10%;
  bottom: 30px;
  left: 10%;
  height: 12px;
  background: #b8a889;
  border-radius: 999px;
}

.house-3d__attic {
  position: absolute;
  z-index: 3;
  right: 14%;
  bottom: 326px;
  width: 68%;
  height: 176px;
  transform: rotateY(-7deg) rotateX(1deg);
  transform-origin: center;
  overflow: visible;
}

.house-3d__attic::before {
  position: absolute;
  z-index: 1;
  inset: 20px 34px 0;
  content: "";
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(231, 241, 236, 0.96));
  border: 1px solid rgba(23, 33, 28, 0.12);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.house-3d__roof {
  position: absolute;
  z-index: 2;
  bottom: 315px;
  height: 24px;
  background: linear-gradient(135deg, #354238, #18211c);
  opacity: 0.78;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(23, 33, 28, 0.14);
  transform-origin: center;
  pointer-events: none;
}

.roof-left {
  right: 47%;
  width: 34%;
  transform: rotate(-28deg);
}

.roof-right {
  right: 17%;
  width: 34%;
  transform: rotate(28deg);
}

.attic-beam {
  position: absolute;
  bottom: 34px;
  left: 50%;
  z-index: 2;
  width: 3px;
  height: 116px;
  background: rgba(86, 62, 37, 0.28);
  transform-origin: bottom;
}

.beam-one {
  transform: rotate(35deg);
}

.beam-two {
  transform: rotate(-35deg);
}

.insulation {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  width: 36%;
  height: 30px;
  background:
    repeating-linear-gradient(90deg, rgba(143, 212, 192, 0.78) 0 13px, rgba(36, 113, 90, 0.45) 14px 18px);
  border-radius: 999px;
  opacity: 0.9;
}

.insulation-left {
  left: 15%;
  transform: rotate(-3deg);
}

.insulation-right {
  right: 15%;
  transform: rotate(3deg);
}

.vent {
  position: absolute;
  z-index: 2;
  top: 78px;
  width: 30px;
  height: 18px;
  background: repeating-linear-gradient(90deg, #26352d 0 3px, #8fd4c0 4px 6px);
  border-radius: 4px;
  opacity: 0.8;
}

.vent-left {
  left: 21%;
  transform: rotate(-30deg);
}

.vent-right {
  right: 21%;
  transform: rotate(30deg);
}

.hotspot {
  position: absolute;
  z-index: 8;
  width: 26px;
  height: 26px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.hotspot:hover,
.hotspot:focus-visible,
.hotspot.is-active {
  z-index: 20;
}

.hotspot > span:first-child {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--green);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(36, 113, 90, 0.18), 0 12px 26px rgba(23, 33, 28, 0.22);
  animation: hotspotPulse 2.2s ease-in-out infinite;
}

.hotspot-card {
  position: absolute;
  z-index: 21;
  inset: auto;
  left: var(--bubble-left, 50%);
  top: var(--bubble-top, auto);
  right: var(--bubble-right, auto);
  bottom: var(--bubble-bottom, 50px);
  display: grid;
  width: 250px;
  height: auto;
  gap: 7px;
  padding: 14px 16px;
  color: var(--white);
  text-align: left;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(23, 33, 28, 0.22);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translate(var(--bubble-x, -50%), var(--bubble-y, 10px));
  transition: opacity 180ms ease, transform 180ms ease;
  animation: none;
}

.hotspot-card::after {
  content: none;
}

.hotspot-card strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.15;
}

.hotspot-card small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.35;
}

.hotspot:hover .hotspot-card,
.hotspot:focus-visible .hotspot-card,
.hotspot.is-active .hotspot-card {
  opacity: 1;
  transform: translate(var(--bubble-x, -50%), 0);
}

.hotspot--insulation {
  --bubble-left: auto;
  --bubble-right: 22px;
  --bubble-x: 0;
  --pointer-left: calc(100% - 22px);
  left: 28%;
  bottom: 42px;
}

.hotspot--air {
  --bubble-bottom: 54px;
  left: 49%;
  bottom: 82px;
}

.hotspot--sanitize {
  --bubble-left: auto;
  --bubble-right: 20px;
  --bubble-x: 0;
  --bubble-bottom: auto;
  --bubble-top: 48px;
  --bubble-y: -10px;
  --pointer-left: calc(100% - 24px);
  --pointer-bottom: auto;
  left: 38%;
  bottom: 58px;
}

.hotspot--sanitize .hotspot-card::after {
  top: -7px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hotspot--ventilation {
  --bubble-left: 20px;
  --bubble-x: 0;
  --pointer-left: 24px;
  right: 25%;
  top: 82px;
}

@keyframes hotspotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(36, 113, 90, 0.18), 0 12px 26px rgba(23, 33, 28, 0.22);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(36, 113, 90, 0.08), 0 12px 26px rgba(23, 33, 28, 0.22);
  }
}

.story-blocks {
  padding: 110px max(24px, calc((100vw - 1180px) / 2)) 36px;
}

.story {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 90px;
}

.story.reverse {
  grid-template-columns: 1fr 0.9fr;
}

.story.reverse img {
  order: -1;
}

.story-blocks .story:last-child {
  margin-bottom: 0;
}

.story-blocks + .split-section {
  padding-top: 42px;
}

.story img,
.creator-sticky img,
.person-card img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story img.image-transparent {
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.story img.image-pest-damage {
  width: 86%;
  margin: -34px auto -44px;
}

.section {
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
}

.section.page-hero {
  padding-top: 46px;
  padding-bottom: 58px;
}

.section.page-hero--services {
  padding-top: 34px;
  padding-bottom: 46px;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.feature-grid,
.tile-grid,
.audience-panels,
.people-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-carousel-shell {
  position: relative;
  display: grid;
  align-items: center;
}

.process-carousel-window {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 78px 24px 0;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.process-carousel-window::-webkit-scrollbar {
  display: none;
}

.feature-grid.process-carousel {
  display: flex;
  gap: 18px;
}

.process-carousel .feature-card {
  flex: 0 0 calc((100% - 116px) / 3);
  min-width: 0;
  min-height: 250px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46));
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(32, 58, 48, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.process-card-button {
  margin-top: 16px;
}

.carousel-control {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--mint));
  border: 0;
  border-radius: 99px;
  box-shadow: 0 16px 34px rgba(31, 111, 82, 0.26);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.carousel-control:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(31, 111, 82, 0.32);
}

.carousel-control:disabled {
  cursor: default;
  opacity: 0.28;
  transform: none;
  box-shadow: none;
}

.carousel-control--prev {
  left: -20px;
}

.carousel-control--next {
  right: -20px;
}

.feature-card,
.info-tile,
.audience-panel,
.person-card,
.contact-form {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card-icon {
  display: grid;
  width: fit-content;
  min-width: 72px;
  height: 48px;
  padding: 0 14px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  background: transparent;
  border: 1px solid rgba(36, 113, 90, 0.35);
  border-radius: var(--radius);
}

.quote-section {
  padding: 120px 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(23, 33, 28, 0.88), rgba(23, 33, 28, 0.88)),
    url("https://images.unsplash.com/photo-1600566753376-12c8ab7fb75b?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.quote-section blockquote {
  max-width: 1040px;
  margin: 0 auto 24px;
  font-size: clamp(34px, 6vw, 82px);
  font-weight: 850;
  line-height: 1.02;
}

.quote-section p {
  color: #b9c4d2;
  font-size: 18px;
}

.split-section {
  background: linear-gradient(180deg, #edf5f1, #f6f8f6);
}

.tile-grid {
  grid-template-columns: repeat(4, 1fr);
}

.cta-strip {
  display: flex;
  min-height: 420px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 72px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 33, 28, 0.92), rgba(23, 33, 28, 0.22)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.cta-strip h2 {
  max-width: 760px;
}

.creators {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 60px;
  align-items: start;
}

.creator-sticky {
  position: sticky;
  top: 120px;
}

.creator-list {
  display: grid;
  gap: 18px;
}

.venture-section {
  background: #e7f1ec;
}

.audience-panels {
  grid-template-columns: repeat(2, 1fr);
}

.audience-panel {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.trust-form-button {
  width: fit-content;
}

.about {
  background: var(--white);
}

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

.person-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: center;
  background: var(--paper);
}

.person-card img {
  aspect-ratio: 0.85 / 1;
}

.proof-grid .person-card {
  grid-template-columns: 132px 1fr;
}

.proof-number {
  display: grid;
  min-height: 132px;
  padding: 0 10px;
  place-items: center;
  color: var(--white);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 900;
  background: var(--ink);
  border-radius: var(--radius);
}

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

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label,
.modal-form {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-form span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  background: #f4f7fa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

input[type="date"] {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  inline-size: 100%;
  max-inline-size: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--green) 50%), linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
}

.form-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.form-three {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.8fr;
  gap: 16px;
  min-width: 0;
}

.form-three label:nth-child(2) select {
  text-transform: uppercase;
}

.form-section-title {
  margin: 12px 0 2px;
  color: var(--ink);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 950;
  letter-spacing: 0;
}

.project-picker {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
  padding: 18px 12px 12px;
  margin: 0;
  background: rgba(36, 113, 90, 0.04);
  border: 1px solid rgba(36, 113, 90, 0.2);
  border-radius: var(--radius);
}

.project-picker__title {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0;
}

.modal-content .project-picker__title {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 950;
  line-height: 1.1;
}

.project-picker__hint {
  grid-column: 1 / -1;
  margin: -2px 0 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.project-option {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 92px;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(23, 33, 28, 0.86);
  border: 3px solid rgba(143, 212, 192, 0.58);
  border-radius: var(--radius);
  box-shadow:
    0 14px 28px rgba(23, 33, 28, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 22px rgba(143, 212, 192, 0.12);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.project-option:hover {
  transform: translateY(-2px);
  border-color: rgba(166, 238, 218, 0.9);
  box-shadow: 0 16px 34px rgba(23, 33, 28, 0.1);
}

.project-option:has(input:checked) {
  background: rgba(23, 33, 28, 0.9);
  border-color: #a6f6df;
  box-shadow:
    0 18px 38px rgba(36, 113, 90, 0.18),
    0 0 0 2px rgba(166, 246, 223, 0.62),
    0 0 24px rgba(126, 236, 204, 0.72),
    inset 0 0 24px rgba(143, 212, 192, 0.28);
}

.project-option:has(input:checked) .project-option__label {
  color: #a6f6df !important;
  text-shadow: 0 0 14px rgba(166, 246, 223, 0.52);
}

.project-option input {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
}

.project-option input:focus-visible + .project-option__image {
  outline: 3px solid rgba(143, 212, 192, 0.82);
  outline-offset: 3px;
}

.project-option__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(246, 248, 246, 0.9), rgba(214, 229, 222, 0.75));
  border: 0;
  border-radius: calc(var(--radius) - 3px);
}

.project-option__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(12, 19, 16, 0.08) 0%, rgba(12, 19, 16, 0.92) 100%),
    linear-gradient(90deg, rgba(12, 19, 16, 0.72), rgba(12, 19, 16, 0.16));
}

.project-option__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-option--other .project-option__image {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ink), var(--green));
}

.project-option--other .project-option__image img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.project-option__label {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 92%;
  overflow-wrap: normal;
  word-break: normal;
  color: #ffffff !important;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 950;
  line-height: 0.95;
  text-align: left;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.78);
}

.form-consent {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  background: rgba(36, 113, 90, 0.04);
  border: 1px solid rgba(36, 113, 90, 0.18);
  border-radius: var(--radius);
}

.form-consent input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.contact-form .form-consent span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}

.contact-note {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer {
  display: grid;
  gap: 10px;
  padding: 44px 24px 60px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
}

.footer-links a {
  color: var(--green);
  font-weight: 700;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  visibility: hidden;
  overflow: hidden;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transition: opacity 220ms ease, visibility 220ms ease;
  overscroll-behavior: none;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 18, 0.72);
  opacity: 0;
  transition: opacity 260ms ease;
}

.modal.is-open .modal-backdrop {
  opacity: 1;
}

.modal-panel {
  position: relative;
  display: grid;
  width: min(1040px, 100%);
  max-width: 100%;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 280ms ease, transform 280ms ease;
  overscroll-behavior: contain;
}

.modal.is-open .modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.modal-visual {
  display: none;
  min-height: 420px;
  place-items: center;
  background:
    linear-gradient(rgba(23, 33, 28, 0.08), rgba(23, 33, 28, 0.22)),
    url("https://images.unsplash.com/photo-1600566752355-35792bedcfea?auto=format&fit=crop&w=900&q=80") center / cover;
}

.mini-phone {
  width: 220px;
  min-height: 320px;
  padding: 22px;
  color: var(--white);
  background: var(--ink);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.attic-mini {
  width: 250px;
  border-radius: var(--radius);
  background: rgba(23, 33, 28, 0.9);
  backdrop-filter: blur(14px);
}

.mini-phone > span:not(.mini-logo) {
  display: block;
  width: 80px;
  height: 8px;
  margin: 0 auto 50px;
  background: #344156;
  border-radius: 99px;
}

.mini-logo {
  display: block;
  width: 170px;
  height: 86px;
  margin: 0 0 32px;
  background: linear-gradient(135deg, var(--ink), var(--green));
  mask: url("assets/good-attic-logo-cropped.png") center / contain no-repeat;
  -webkit-mask: url("assets/good-attic-logo-cropped.png") center / contain no-repeat;
}

.mini-phone strong {
  display: block;
  font-size: 42px;
  line-height: 0.95;
}

.modal-content {
  min-width: 0;
  padding: 44px 54px 44px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal-progress {
  position: sticky;
  top: 0;
  z-index: 3;
  display: block;
  height: 7px;
  margin: -18px 0 24px;
  overflow: hidden;
  background: rgba(36, 113, 90, 0.12);
  border: 1px solid rgba(36, 113, 90, 0.18);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(23, 33, 28, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.modal-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--ink), #2d8a6c, var(--cyan));
  border-radius: inherit;
  box-shadow: 0 0 18px rgba(143, 212, 192, 0.48);
  transform: scaleX(var(--modal-progress, 0.25));
  transform-origin: left center;
  transition: transform 220ms ease;
}

.modal-form {
  grid-template-columns: 1fr auto;
  margin-top: 26px;
}

.modal-form.contact-form {
  grid-template-columns: 1fr;
  min-width: 0;
  max-height: min(66vh, 680px);
  padding-right: 6px;
  overflow: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.modal-form.contact-form .button {
  width: 100%;
}

.project-picker--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-picker--compact .project-option {
  min-height: 96px;
  padding: 10px;
}

.project-picker--compact .project-option__label {
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1;
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    gap: 6px;
    justify-content: space-between;
    padding-inline: 9px;
  }

  .brand {
    flex: 0 0 auto;
    gap: 6px;
    font-size: 14px;
    min-width: 0;
  }

  .brand-mark {
    width: 52px;
    height: 30px;
  }

  .brand span:last-child {
    display: inline;
    white-space: nowrap;
  }

  .menu-toggle {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .mobile-header-actions {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: auto;
  }

  .mobile-header-phone {
    z-index: 2;
    display: block;
    margin-left: 0;
  }

  .nav > .phone-dropdown {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 88px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .nav-dropdown__button {
    justify-content: space-between;
    width: 100%;
    min-height: 28px;
    text-align: left;
  }

  .nav .phone-dropdown {
    width: 100%;
  }

  .nav .nav-cta--phone {
    width: 100%;
    justify-content: center;
  }

  .nav-dropdown__menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 8px;
    margin-top: 10px;
    pointer-events: auto;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }

  .nav .phone-dropdown__menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    pointer-events: auto;
    opacity: 1;
    transform: none;
  }

  .nav .phone-dropdown.is-open .phone-dropdown__menu {
    display: grid;
  }

  .mobile-header-phone .phone-dropdown__menu {
    right: 0;
    left: auto;
    min-width: 118px;
    transform: translateY(8px) scale(0.98);
  }

  .mobile-header-phone.is-open .phone-dropdown__menu {
    transform: translateY(0) scale(1);
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    transform: none;
  }

  .hero,
  .media-band,
  .attic-map.section,
  .story,
  .story.reverse,
  .creators,
  .contact,
  .modal-panel {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 98px;
  }

  .hero--market,
  .hero--city {
    min-height: 0;
    align-items: start;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .media-caption {
    display: block;
  }

  .media-band {
    grid-template-areas:
      "widget"
      "caption";
    padding-right: 16px;
    padding-left: 16px;
    overflow-x: hidden;
  }

  .media-band .review-widget {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .media-band > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .review-widget__stack--desktop,
  .review-excerpt-list--desktop,
  .review-widget__shell--desktop-city {
    display: none;
  }

  .review-carousel--mobile {
    display: block;
  }

  .media-caption p {
    max-width: none;
    font-size: clamp(28px, 8vw, 44px);
  }

  .attic-health-section {
    padding: 0 16px 22px;
    overflow-x: hidden;
  }

  .attic-health-section .attic-card,
  .attic-health-section .hero-device,
  .attic-health-section .inspection-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-actions {
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .hero-service-carousel {
    width: min(100%, 352px);
    margin-top: 34px;
    margin-bottom: 38px;
    padding: 0;
    margin-inline: auto;
    overflow: visible;
  }

  .hero-service-window {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .hero-service-window::-webkit-scrollbar {
    display: none;
  }

  .hero-service-track {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    gap: 8px;
    padding: 2px 0;
  }

  .hero-service-card {
    width: 106px;
    min-width: 106px;
    min-height: 106px;
    padding: 8px;
    border-width: 4px;
  }

  .hero-service-card span {
    font-size: 13.5px;
    line-height: 1.04;
  }

  .hero-service-arrow {
    display: grid;
    width: 34px;
    height: 34px;
    background: rgba(18, 44, 37, 0.82);
    border-color: rgba(143, 212, 192, 0.64);
    box-shadow:
      0 14px 28px rgba(23, 33, 28, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }

  .hero-service-arrow--prev {
    left: -24px;
  }

  .hero-service-arrow--next {
    right: -24px;
  }

  .story.reverse img {
    order: 0;
  }

  .feature-grid,
  .tile-grid,
  .audience-panels,
  .people-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-carousel .feature-card {
    flex-basis: calc((100% - 98px) / 2);
  }

  .creator-sticky {
    position: static;
  }

  .house-3d {
    min-height: 520px;
  }
}

@media (max-width: 1120px) {
  .attic-map.section {
    grid-template-columns: 1fr;
    padding-top: 36px;
    padding-bottom: 58px;
  }

  .attic-map__copy {
    max-width: 760px;
  }

  .service-showcase__stage {
    min-height: 620px;
  }

  .service-showcase__overlay {
    width: min(430px, calc(100% - 88px));
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    gap: 32px;
  }

  .hero-device {
    min-height: 470px;
  }

  .attic-map__copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .attic-map__cta {
    display: none;
    width: min(100%, 340px);
    margin-top: 24px;
  }

  .attic-map__cta--mobile {
    display: flex;
    width: min(100%, 340px);
    margin: 12px auto 0;
  }

  .service-showcase {
    padding-top: 22px;
    padding-bottom: 28px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .service-showcase__label {
    margin-bottom: 14px;
  }

  .service-showcase__stage {
    min-height: 610px;
    padding: 18px 14px 136px;
  }

  .service-showcase__slide::after {
    background:
      linear-gradient(0deg, rgba(12, 19, 16, 0.9) 0%, rgba(12, 19, 16, 0.18) 42%, rgba(12, 19, 16, 0.04) 100%);
  }

  .service-showcase__overlay {
    right: 18px;
    bottom: 132px;
    left: 18px;
    width: auto;
    padding: 20px 18px;
  }

  .service-showcase__overlay h3 {
    font-size: 28px;
  }

  .service-showcase__overlay p:not(.panel-kicker) {
    font-size: 15px;
  }

  .service-showcase__cta {
    display: none;
    right: 18px;
    bottom: 92px;
    left: 18px;
    width: auto;
  }

  .service-showcase__mobile-cta {
    display: flex;
    width: min(100%, 320px);
    margin: 16px auto 0;
  }

  .service-showcase__control {
    top: auto;
    bottom: 92px;
    width: 40px;
    height: 40px;
    transform: none;
  }

  .service-showcase__control:hover {
    transform: none;
  }

  .before-after-proof-card__media {
    grid-template-columns: 1fr;
  }

  .service-showcase__control--prev {
    left: 18px;
  }

  .service-showcase__control--next {
    right: 18px;
  }

  .service-showcase__rail {
    bottom: 14px;
    left: 50%;
    padding: 8px;
    max-width: calc(100% - 16px);
  }

  .service-thumb {
    width: 112px;
    min-width: 112px;
    gap: 6px;
    padding: 6px;
  }

  .service-thumb img {
    height: 56px;
  }

  .service-thumb span {
    font-size: 11px;
  }

  .house-3d {
    min-height: 430px;
    margin-inline: -14px;
  }

  .house-3d__body {
    right: 4%;
    width: 88%;
    height: 210px;
  }

  .house-3d__attic {
    right: 7%;
    bottom: 280px;
    width: 82%;
    height: 160px;
  }

  .house-3d__roof {
    bottom: 264px;
  }

  .roof-left {
    right: 45%;
    width: 42%;
  }

  .roof-right {
    right: 4%;
    width: 45%;
  }

  .hotspot-card {
    --bubble-left: 50%;
    --bubble-right: auto;
    --bubble-x: -50%;
    --bubble-top: auto;
    --bubble-bottom: 46px;
    --pointer-left: 50%;
    --pointer-bottom: -7px;
    width: min(226px, 74vw);
  }

  .hotspot--sanitize .hotspot-card::after {
    top: auto;
    bottom: -7px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hotspot--ventilation {
    right: 18%;
  }

  .feature-grid,
  .tile-grid,
  .audience-panels,
  .people-grid,
  .person-card,
  .proof-grid .person-card,
  .modal-form {
    grid-template-columns: 1fr;
  }

  .form-two > *,
  .form-three > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .project-picker,
  .project-picker--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 20px 14px 14px;
  }

  .project-option {
    min-height: 82px;
  }

  .project-option__label {
    font-size: 15px;
    line-height: 0.98;
  }

  .project-picker--compact .project-option__label {
    font-size: clamp(13px, 3.45vw, 15px);
  }

  .project-picker--compact .project-option {
    min-height: 94px;
    padding: 8px;
  }

  .process-carousel-window {
    padding: 4px 54px 22px 0;
  }

  .process-carousel .feature-card {
    flex-basis: calc(100% - 72px);
  }

  .carousel-control {
    width: 36px;
    height: 36px;
  }

  .carousel-control--prev {
    left: -12px;
  }

  .carousel-control--next {
    right: -12px;
  }

  .media-band {
    min-height: 0;
    height: auto;
  }

  .story-blocks,
  .media-band,
  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .media-band {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .service-showcase.section {
    padding-top: 4px;
    padding-bottom: 28px;
  }

  .cta-strip {
    display: grid;
    min-height: 520px;
  }

  .modal-content {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 36px);
    padding: 44px 20px 28px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
  }

  .modal-progress {
    margin: -20px 0 26px;
  }

  .modal {
    width: 100%;
    max-width: 100vw;
    padding: 18px 14px;
    overflow: hidden;
  }

  .modal-panel {
    width: min(100%, 680px);
    max-width: calc(100vw - 28px);
    max-height: calc(100dvh - 36px);
    overflow: hidden;
    border: 1px solid rgba(36, 113, 90, 0.18);
    border-radius: 18px;
    box-shadow: 0 22px 70px rgba(15, 22, 18, 0.3);
  }

  .modal-visual {
    display: none;
  }

  .modal-form.contact-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    max-height: none;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .modal-close {
    top: 12px;
    right: 12px;
  }

  .form-section-title {
    margin-top: 16px;
    margin-bottom: 6px;
  }
}

@media (max-width: 430px) {
  .modal {
    padding: 12px;
  }

  .modal-panel {
    max-width: calc(100vw - 24px);
  }

  .modal-content {
    padding: 40px 16px 22px;
  }

  .modal-progress {
    margin: -18px 0 22px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .modal-form.contact-form {
    justify-self: center;
  }

  .project-picker,
  .project-picker--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px 12px 12px;
  }

  .project-option,
  .project-picker--compact .project-option {
    min-height: 102px;
  }

  .project-option__label,
  .project-picker--compact .project-option__label {
    font-size: 14px;
    line-height: 0.98;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .contact-form .form-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-form .form-three {
    grid-template-columns: minmax(0, 1.2fr) minmax(72px, 0.72fr) minmax(78px, 0.82fr);
    gap: 8px;
  }

  .contact-form label {
    min-width: 0;
  }

  .contact-form span {
    font-size: 12px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 48px;
    padding: 12px 10px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 110px;
    padding-top: 12px;
  }

  .modal-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .modal-form.contact-form {
    justify-items: stretch;
  }
}

/* Image-based attic diagram overrides */
.house-3d {
  position: relative;
  min-height: 0;
  overflow: visible;
  perspective: none;
  isolation: isolate;
  animation: houseFloat 5.5s ease-in-out infinite;
}

.house-3d::before {
  content: none;
}

.house-3d::after {
  position: absolute;
  right: 8%;
  bottom: -5%;
  left: 10%;
  z-index: -2;
  height: 54px;
  content: "";
  background: radial-gradient(ellipse, rgba(23, 33, 28, 0.18), transparent 70%);
  filter: blur(8px);
  transform: scaleX(0.86);
}

.house-illustration {
  width: min(100%, 900px);
  margin-inline: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 30px 48px rgba(23, 33, 28, 0.16));
}

.house-logo-roof {
  position: absolute;
  top: 13%;
  left: 13%;
  z-index: 7;
  width: 76%;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(135deg, var(--ink), var(--green));
  filter: drop-shadow(0 16px 24px rgba(23, 33, 28, 0.18));
  mask: url("assets/good-attic-logo-cropped.png") center / contain no-repeat;
  -webkit-mask: url("assets/good-attic-logo-cropped.png") center / contain no-repeat;
}

.hotspot-exit-hint {
  display: none;
}

@keyframes houseFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hotspot--insulation {
  --bubble-left: auto;
  --bubble-right: 22px;
  --bubble-x: 0;
  --bubble-bottom: 48px;
  --pointer-left: calc(100% - 22px);
  left: 51%;
  top: 36%;
  bottom: auto;
}

.hotspot--insulation-depth {
  --bubble-left: 20px;
  --bubble-x: 0;
  --bubble-bottom: 48px;
  --pointer-left: 24px;
  left: 57%;
  top: 54%;
  bottom: auto;
}

.hotspot--insulation-edge {
  --bubble-left: 20px;
  --bubble-x: 0;
  --bubble-bottom: 48px;
  --pointer-left: 24px;
  left: 31%;
  top: 54%;
  bottom: auto;
}

.hotspot--air {
  --bubble-bottom: 48px;
  left: 43%;
  top: 54%;
  bottom: auto;
}

.hotspot--sanitize {
  --bubble-left: auto;
  --bubble-right: 20px;
  --bubble-x: 0;
  --bubble-bottom: auto;
  --bubble-top: 48px;
  --bubble-y: -10px;
  --pointer-left: calc(100% - 24px);
  --pointer-bottom: auto;
  left: 62%;
  top: 48%;
  bottom: auto;
}

.hotspot--ventilation {
  --bubble-left: 20px;
  --bubble-x: 0;
  --bubble-bottom: 48px;
  --pointer-left: 24px;
  left: 76%;
  right: auto;
  top: 34%;
}

@media (max-width: 640px) {
  .house-3d {
    position: relative;
    left: -8px;
    width: min(100%, 360px);
    min-height: 0;
    margin-inline: auto;
  }

  .house-illustration {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .house-logo-roof {
    top: 13%;
    left: 8.4%;
    width: 86%;
    height: 42%;
  }

  .hotspot-exit-hint {
    display: block;
    min-height: 24px;
    margin: 12px 0 0;
    color: rgba(23, 33, 28, 0.58);
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 160ms ease;
  }

  .attic-map.has-active-hotspot .hotspot-exit-hint {
    visibility: visible;
    opacity: 1;
  }

  .hotspot--insulation {
    left: 49%;
    top: 28%;
  }

  .hotspot--insulation-depth {
    left: 50%;
    top: 47%;
  }

  .hotspot--insulation-edge {
    left: 24%;
    top: 42%;
  }

  .hotspot--air {
    left: 31%;
    top: 56%;
  }

  .hotspot--sanitize {
    left: 61%;
    top: 47%;
  }

  .hotspot--ventilation {
    left: 78%;
    top: 38%;
  }
}
