@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
  --ink: #101820;
  --ink-strong: #071018;
  --ink-soft: #566576;
  --surface: #f4f7f6;
  --surface-strong: #e8eef0;
  --card: #ffffff;
  --line: rgba(16, 24, 32, 0.13);
  --line-strong: rgba(16, 24, 32, 0.24);
  --teal: #08756f;
  --teal-dark: #063f45;
  --sun: #f4b42a;
  --sun-soft: #fff0c7;
  --danger: #b42318;
  --header-height: 78px;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(7, 16, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: Inter, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(244, 180, 42, 0.48);
  outline-offset: 2px;
}

::selection {
  color: var(--ink-strong);
  background: rgba(244, 180, 42, 0.36);
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px max(24px, 5vw);
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 16, 24, 0.72), rgba(7, 16, 24, 0));
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 12px 34px rgba(7, 16, 24, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: #fff;
}

.site-header.is-scrolled .brand img,
body.menu-open .brand img {
  border-color: var(--line);
}

.brand span {
  display: grid;
  line-height: 1.12;
}

.brand strong {
  font-family: Sora, Inter, sans-serif;
  font-size: 1.03rem;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
  font-weight: 800;
}

.site-header.is-scrolled .brand small,
body.menu-open .brand small {
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav button,
.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
  background: transparent;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.site-header.is-scrolled .site-nav button,
.site-header.is-scrolled .site-nav a,
body.menu-open .site-nav button,
body.menu-open .site-nav a {
  color: var(--ink-soft);
}

.site-nav button:hover,
.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.site-header.is-scrolled .site-nav button:hover,
.site-header.is-scrolled .site-nav a:hover,
body.menu-open .site-nav button:hover,
body.menu-open .site-nav a:hover {
  color: var(--ink-strong);
  background: rgba(8, 117, 111, 0.1);
}

.site-nav .nav-call {
  color: #251a04;
  background: var(--sun);
}

.site-nav .nav-call:hover,
.site-header.is-scrolled .site-nav .nav-call:hover,
body.menu-open .site-nav .nav-call:hover {
  color: #251a04;
  background: #ffd266;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .nav-toggle,
body.menu-open .nav-toggle {
  border-color: var(--line);
  background: #fff;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  display: block;
  margin: 0;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-toggle span:first-child {
  transform: translate(-50%, -5px);
}

.nav-toggle span:last-child {
  transform: translate(-50%, 5px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #071018;
}

.hero-media,
.hero-gallery,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.04);
  transform-origin: center;
  transition: transform 80ms linear;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 12, 18, 0.88), rgba(5, 12, 18, 0.58) 44%, rgba(5, 12, 18, 0.1)),
    linear-gradient(180deg, rgba(5, 12, 18, 0.18), rgba(5, 12, 18, 0.58));
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 900ms ease, transform 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 80px) 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 330px);
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.hero-copy-block {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  letter-spacing: 0;
  font-size: 0.74rem;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  font-size: 5.25rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  width: min(710px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-actions,
.contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

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

.primary-action,
.secondary-action,
.text-action {
  min-height: 50px;
  border-radius: 999px;
  padding: 0 22px;
  border: 0;
  font-weight: 900;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, color 140ms ease;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #251a04;
  background: var(--sun);
  box-shadow: 0 18px 36px rgba(244, 180, 42, 0.26);
}

.primary-action:hover {
  transform: translateY(-2px);
  background: #ffd266;
}

.secondary-action {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.secondary-action:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.text-action {
  min-height: 42px;
  margin-top: 12px;
  padding: 0;
  color: var(--sun);
  background: transparent;
  box-shadow: none;
}

.text-action:hover {
  color: #fff;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.hero-proof span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.83rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-dots {
  position: absolute;
  right: max(24px, 5vw);
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: width 180ms ease, background 180ms ease;
}

.hero-dots span.is-active {
  width: 28px;
  background: var(--sun);
}

.section,
.project-mosaic,
.showcase-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading h2,
.installation-content h2,
.contact-copy h2 {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  color: var(--ink-strong);
  font-size: 3.15rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.intro-panel p,
.showcase-step p,
.contact-copy p,
.step-list span {
  color: var(--ink-soft);
  line-height: 1.65;
}

.intro-section {
  padding-top: 82px;
}

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

.intro-panel,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.intro-panel {
  padding: 24px;
}

.intro-panel h3,
.showcase-step h3,
.area-list-wrap h3 {
  margin: 0 0 10px;
  color: var(--ink-strong);
  font-size: 1.16rem;
  line-height: 1.18;
}

.intro-panel p,
.showcase-step p,
.contact-copy p {
  margin: 0;
}

.scroll-showcase {
  padding: 84px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(232, 241, 237, 0.92)),
    #eef4f1;
}

.showcase-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 40px;
  align-items: start;
}

.showcase-visual {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  height: min(720px, calc(100svh - var(--header-height) - 36px));
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #071018;
  box-shadow: var(--shadow);
}

.showcase-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(24px) scale(1.04);
  transition: opacity 520ms ease, transform 900ms ease;
}

.showcase-image.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.showcase-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 16, 24, 0), rgba(7, 16, 24, 0.72));
}

.showcase-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}

.showcase-caption span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #251a04;
  background: var(--sun);
  font-weight: 900;
}

.showcase-caption strong {
  text-align: right;
  font-size: 1rem;
}

.showcase-copy {
  padding-top: 4px;
}

.showcase-copy .section-heading {
  margin-bottom: 18px;
}

.showcase-copy .section-heading h2 {
  font-size: 2.7rem;
}

.showcase-steps {
  display: grid;
  gap: 12px;
}

.showcase-step {
  min-height: 188px;
  display: grid;
  align-content: center;
  padding: 22px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(7, 16, 24, 0.06);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.showcase-step.is-active {
  border-color: rgba(8, 117, 111, 0.28);
  background: #fff;
  transform: translateX(6px);
  box-shadow: 0 18px 42px rgba(7, 16, 24, 0.1);
}

.showcase-step span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
}

.installation-section {
  position: relative;
  min-height: 900px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #071018;
}

.installation-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.installation-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 24, 0.06), rgba(7, 16, 24, 0.82)),
    linear-gradient(90deg, rgba(7, 16, 24, 0.86), rgba(7, 16, 24, 0.48) 50%, rgba(7, 16, 24, 0.16));
}

.installation-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.installation-content h2 {
  max-width: 820px;
  color: #fff;
}

.step-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  counter-reset: steps;
}

.step-list li {
  position: relative;
  min-height: 132px;
  padding: 20px 20px 20px 66px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  counter-increment: steps;
}

.step-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 900;
}

.step-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1rem;
}

.step-list span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
}

.project-mosaic {
  padding: 96px 0;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 12px;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #071018;
}

.mosaic-large {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms ease, filter 620ms ease;
}

.mosaic-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: 44px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.contact-copy > p {
  max-width: 620px;
  margin-top: 16px;
}

.contact-details {
  margin-top: 22px;
}

.contact-details a,
.site-footer a.social-link {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fff;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.contact-details span {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: var(--sun-soft);
}

.social-link svg {
  width: 21px;
  height: 21px;
}

.yelp-link img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.area-list-wrap {
  margin-top: 30px;
}

.area-list-wrap h3 {
  margin-bottom: 12px;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.area-grid span {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 11px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: 24px;
}

.contact-preference {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
}

.contact-preference label {
  position: relative;
  display: block;
}

.contact-preference input {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-preference span {
  min-height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 900;
}

.contact-preference input:checked + span {
  color: var(--ink-strong);
  background: #fff;
  box-shadow: 0 8px 18px rgba(7, 16, 24, 0.12);
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 900;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.lead-form input {
  min-height: 48px;
  padding: 0 12px;
}

.lead-form textarea {
  min-height: 108px;
  padding: 12px;
  resize: vertical;
}

.lead-form input:hover,
.lead-form textarea:hover {
  border-color: rgba(8, 117, 111, 0.55);
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 117, 111, 0.15);
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
  line-height: 1.45;
}

.form-status.is-error {
  color: var(--danger);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 28px max(24px, 5vw);
  color: rgba(255, 255, 255, 0.84);
  background: #071018;
}

.site-footer div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer div:first-child img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
}

.site-footer p,
.site-footer small {
  margin: 0;
}

.site-footer p {
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer div:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer a.social-link {
  border-color: rgba(255, 255, 255, 0.16);
}

.site-footer a.social-link:hover {
  background: var(--sun);
  color: #251a04;
}

.site-footer .yelp-link:hover {
  background: #fff;
}

.site-footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.6);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 4.3rem;
  }

  .section-heading h2,
  .installation-content h2,
  .contact-copy h2 {
    font-size: 2.75rem;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav button,
  .site-nav a {
    padding: 0 10px;
    font-size: 0.82rem;
  }

}

@media (max-width: 940px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    padding: 10px 18px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 12px auto 12px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav button,
  .site-nav a {
    min-height: 46px;
    border-radius: var(--radius);
    color: var(--ink-soft);
    font-size: 0.92rem;
  }

  .site-nav .nav-call {
    color: #251a04;
    background: var(--sun);
  }

  .site-header.is-scrolled .site-nav .nav-call,
  body.menu-open .site-nav .nav-call {
    color: #251a04;
    background: var(--sun);
  }

  .hero-inner,
  .showcase-inner,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    justify-content: flex-start;
  }

  .showcase-visual {
    position: relative;
    top: auto;
    height: 520px;
    min-height: 0;
  }

  .showcase-step {
    min-height: 0;
  }

  .intro-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

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

@media (max-width: 640px) {
  .section,
  .installation-content,
  .project-mosaic,
  .showcase-inner,
  .hero-inner {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(5, 12, 18, 0.22), rgba(5, 12, 18, 0.46) 34%, rgba(5, 12, 18, 0.74)),
      linear-gradient(90deg, rgba(5, 12, 18, 0.34), rgba(5, 12, 18, 0.12) 54%, rgba(5, 12, 18, 0.22));
  }

  .hero-inner {
    padding: calc(var(--header-height) + 52px) 0 58px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
  }

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

  .primary-action,
  .secondary-action {
    min-height: 48px;
    padding: 0 18px;
  }

  .hero-proof {
    display: none;
  }

  .hero-dots {
    bottom: 18px;
  }

  .section-heading h2,
  .installation-content h2,
  .contact-copy h2 {
    font-size: 2.05rem;
  }

  .section,
  .scroll-showcase,
  .project-mosaic {
    padding: 68px 0;
  }

  .installation-content {
    padding: 68px 0;
  }

  .installation-section {
    min-height: 0;
  }

  .showcase-visual {
    height: 390px;
  }

  .showcase-step {
    padding: 22px;
  }

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

  .mosaic-grid {
    grid-auto-rows: 245px;
  }

  .mosaic-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .lead-form {
    padding: 20px;
  }

  .contact-preference {
    border-radius: var(--radius);
  }

  .contact-preference span {
    border-radius: 6px;
    font-size: 0.8rem;
  }

  .step-list li {
    min-height: 0;
    padding: 18px 18px 18px 58px;
  }

  .step-list li::before {
    top: 18px;
    left: 18px;
  }

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