:root {
  --navy: #08233d;
  --deep: #0b3558;
  --blue: #116db0;
  --pool: #25a7d8;
  --aqua: #bfefff;
  --ink: #102033;
  --muted: #667788;
  --line: #d9e6ef;
  --soft: #f4f9fc;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 35, 61, 0.18);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(1160px, calc(100% - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(8, 35, 61, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--pool));
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(17, 109, 176, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(244, 249, 252, 0.9);
}

.main-nav a {
  border-radius: 999px;
  padding: 9px 15px;
  color: #23374b;
  font-weight: 700;
  font-size: 0.92rem;
}

.main-nav a:hover {
  background: var(--white);
  color: var(--blue);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--pool));
  box-shadow: 0 16px 32px rgba(17, 109, 176, 0.3);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1160px) / 2)) 72px;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 23, 38, 0.9), rgba(5, 23, 38, 0.55) 48%, rgba(5, 23, 38, 0.22)),
    linear-gradient(0deg, rgba(5, 23, 38, 0.72), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #169fd0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ee9ff;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 750;
}

.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 72px;
  z-index: 2;
  width: min(330px, calc(100% - 48px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: #a9ecff;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.hero-panel strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.hero-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.section-pad {
  padding: 94px max(24px, calc((100vw - 1160px) / 2));
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.quick-services {
  background: var(--white);
}

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

.quick-grid article,
.service-card,
.contact-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
  box-shadow: 0 12px 40px rgba(8, 35, 61, 0.07);
}

.quick-grid i,
.service-card i,
.contact-grid i {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 14px;
  color: var(--blue);
  background: #e8f7fd;
}

.quick-grid p,
.service-card p,
.contact-grid span,
.about-content p,
.why-copy p,
.site-footer p {
  color: var(--muted);
}

.why {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.why-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: calc(var(--radius) + 8px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 35, 61, 0.96), rgba(11, 53, 88, 0.92)),
    radial-gradient(circle at 88% 12%, rgba(37, 167, 216, 0.45), transparent 34%);
  box-shadow: var(--shadow);
}

.why-card h2,
.why-card .why-copy p {
  color: var(--white);
}

.why-card .why-copy p {
  opacity: 0.86;
  font-size: 1.08rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: -18px auto 0;
  width: min(920px, calc(100% - 40px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 18px 48px rgba(8, 35, 61, 0.12);
}

.stat-strip div {
  padding: 24px;
  background: var(--white);
}

.stat-strip strong,
.stat-strip span {
  display: block;
}

.stat-strip strong {
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.stat-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  min-height: 580px;
  border-radius: calc(var(--radius) + 12px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  max-width: 620px;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}

.check-list i {
  width: 25px;
  height: 25px;
  padding: 5px;
  border-radius: 50%;
  color: var(--white);
  background: var(--pool);
}

.services {
  background: var(--soft);
}

.service-card {
  min-height: 238px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(8, 35, 61, 0.12);
}

.service-card h3 {
  margin-top: 18px;
}

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

.masonry-gallery {
  columns: 3 260px;
  column-gap: 18px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #dcebf4;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(8, 35, 61, 0.12);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: var(--ratio, 4 / 5);
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-placeholder {
  display: grid;
  min-height: 250px;
  place-items: center;
  padding: 28px;
  color: var(--deep);
  background:
    linear-gradient(135deg, rgba(17, 109, 176, 0.18), rgba(37, 167, 216, 0.22)),
    #eaf8fc;
}

.gallery-placeholder span {
  max-width: 240px;
  text-align: center;
  font-weight: 850;
}

.contact {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: calc(var(--radius) + 8px);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel h2,
.contact-panel p {
  color: var(--white);
}

.contact-panel p {
  opacity: 0.85;
}

.contact-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
}

.contact-grid span {
  font-weight: 800;
}

.contact-grid strong {
  color: var(--navy);
  font-size: 1.06rem;
  word-break: break-word;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 44px max(24px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  background: #071d31;
  color: var(--white);
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer p {
  max-width: 600px;
  margin: 16px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(5, 23, 38, 0.86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.assistant-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--pool));
  box-shadow: 0 18px 44px rgba(8, 35, 61, 0.32);
  font-weight: 850;
  cursor: pointer;
}

.assistant {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  justify-content: flex-end;
  padding: 22px;
  background: rgba(5, 23, 38, 0.38);
}

.assistant.is-open {
  display: flex;
}

.assistant-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(5, 23, 38, 0.32);
}

.assistant-card header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.assistant-card header strong,
.assistant-card header span {
  display: block;
}

.assistant-card header span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.assistant-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.assistant-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 380px;
  padding: 18px;
  overflow-y: auto;
  background: #f7fbfd;
}

.message {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.95rem;
}

.message.bot {
  align-self: flex-start;
  color: #19324b;
  background: var(--white);
  border: 1px solid var(--line);
}

.message.user {
  align-self: flex-end;
  color: var(--white);
  background: var(--blue);
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.quick-replies button,
.assistant-copy {
  border: 1px solid #c6dbe8;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--deep);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.assistant-form {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.assistant-form input {
  min-width: 0;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  outline: none;
}

.assistant-form input:focus {
  border-color: var(--pool);
  box-shadow: 0 0 0 4px rgba(37, 167, 216, 0.13);
}

.assistant-form button {
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    border-radius: 26px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    border-radius: 18px;
  }

  .site-header.is-open .header-cta {
    grid-column: 1 / -1;
    display: inline-flex;
  }

  .hero {
    min-height: 880px;
  }

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

  .quick-grid,
  .service-grid,
  .contact-grid,
  .why-card,
  .about,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 400px;
  }
}

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

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 790px;
    padding-top: 128px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .section-pad {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .stat-strip,
  .check-list {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions,
  .trust-row {
    flex-direction: column;
    align-items: stretch;
  }

  .assistant {
    padding: 10px;
  }

  .assistant-card {
    max-height: calc(100vh - 20px);
  }

  .assistant-fab span {
    display: none;
  }
}

/* Readability polish after visual rebuild */
h1,
h2,
.service-card h3,
.hero-panel strong,
.stat-strip strong {
  font-family: "Arial Narrow", "Helvetica Neue Condensed Black", Impact, Haettenschweiler, sans-serif;
  font-weight: 800;
  transform: scaleX(0.94);
  transform-origin: left center;
}

h1 {
  font-size: clamp(3.85rem, 9.1vw, 8.15rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.3rem, 4.45vw, 5.15rem);
  line-height: 0.99;
}

.service-card h3 {
  font-size: clamp(1.8rem, 2.95vw, 3.55rem);
  line-height: 0.98;
}

.why .stat-strip {
  overflow: hidden;
  background: rgba(2, 10, 16, 0.72);
}

.why .stat-strip div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(3, 16, 24, 0.72);
  color: #fff;
}

.why .stat-strip strong {
  color: #fff;
}

.why .stat-strip span {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.9rem, 14.8vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2rem, 10.8vw, 3.28rem);
  }

  .why .stat-strip div {
    min-height: 118px;
  }
}

/* Visual rebuild: photo-led contractor brand */
:root {
  --navy: #071824;
  --deep: #0c2738;
  --blue: #0c6f9d;
  --pool: #18a7d1;
  --aqua: #8be4ff;
  --ink: #f7fbff;
  --muted: #9fb2bf;
  --line: rgba(255, 255, 255, 0.15);
  --soft: #f3f6f2;
  --white: #ffffff;
  --cream: #edf0e9;
  --gold: #e6b94f;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
  --radius: 16px;
}

body {
  color: #10202b;
  background:
    radial-gradient(circle at 85% 10%, rgba(24, 167, 209, 0.16), transparent 32rem),
    linear-gradient(180deg, #06131d 0%, #071824 42%, #0b1d29 100%);
  font-family: "Arial", "Helvetica Neue", system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(255, 255, 255, 0.05) 48% 50%, transparent 51% 100%),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.07), transparent 18rem);
  background-size: 70px 70px, auto;
}

.site-header {
  top: 0;
  width: 100%;
  max-width: none;
  left: 0;
  grid-template-columns: auto 1fr auto;
  padding: 18px max(24px, calc((100vw - 1180px) / 2));
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: linear-gradient(180deg, rgba(3, 13, 20, 0.82), rgba(3, 13, 20, 0.34));
  box-shadow: none;
  transform: none;
  backdrop-filter: blur(16px);
}

.brand {
  color: #fff;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  background: #f7fbff;
  color: #071824;
  box-shadow: none;
}

.brand small {
  color: rgba(255, 255, 255, 0.66);
}

.main-nav {
  gap: 22px;
  padding: 0;
  background: transparent;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  padding: 8px 0;
  border-radius: 0;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-nav a:hover {
  background: transparent;
  color: #fff;
}

.header-cta,
.btn {
  border-radius: 4px;
  min-height: 52px;
  letter-spacing: 0.01em;
}

.header-cta,
.btn-primary {
  color: #071824;
  background: var(--gold);
  box-shadow: 0 18px 38px rgba(230, 185, 79, 0.22);
}

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

.nav-toggle {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  min-height: 100vh;
  align-items: end;
  padding-top: 160px;
  padding-bottom: 74px;
  isolation: isolate;
}

.hero-media img {
  animation: heroDrift 18s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.03);
  transform-origin: center;
}

@keyframes heroDrift {
  from { transform: scale(1.02); }
  to { transform: scale(1.1) translate3d(1.5%, -1%, 0); }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 9, 14, 0.94), rgba(0, 18, 27, 0.72) 44%, rgba(0, 18, 27, 0.24)),
    linear-gradient(0deg, rgba(3, 15, 22, 0.92), transparent 48%);
}

.hero-content {
  max-width: 900px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.14em;
}

.hero .eyebrow {
  color: var(--gold);
}

h1 {
  max-width: 980px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.4rem, 10.5vw, 9.4rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  color: #f7fbff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  color: inherit;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 1.6vw, 1.26rem);
}

.trust-row {
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-row span {
  padding: 14px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.trust-row span:last-child {
  border-right: 0;
}

.hero-panel {
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 74px;
  width: min(330px, calc(100% - 48px));
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 15, 22, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel span,
.hero-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-panel strong {
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.55rem;
  line-height: 0.95;
  text-transform: uppercase;
}

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

.quick-services {
  position: relative;
  color: #fff;
  background:
    linear-gradient(180deg, #071824 0%, #0d2838 100%);
}

.section-heading {
  max-width: 920px;
}

.section-heading p,
.why-copy,
.about-content p,
.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.quick-grid {
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.quick-grid article {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    #071824;
  box-shadow: none;
  color: #fff;
}

.quick-grid article i {
  color: var(--gold);
  background: transparent;
}

.why {
  color: #fff;
  background:
    linear-gradient(rgba(5, 17, 25, 0.86), rgba(5, 17, 25, 0.9)),
    url("./assets/gallery/rr-pools-inground-night-lighting-01.jpeg") center / cover fixed;
}

.why-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 86px);
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.why-card h2 {
  max-width: 760px;
}

.why-copy {
  align-self: end;
  padding-left: 30px;
  border-left: 3px solid var(--gold);
  font-size: 1.1rem;
}

.stat-strip {
  margin-top: 70px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.stat-strip div {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-strip strong {
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  letter-spacing: 0;
}

.stat-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.about {
  position: relative;
  grid-template-columns: 0.88fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  color: #10202b;
  background: var(--cream);
}

.about h2 {
  color: #071824;
}

.about-image {
  border-radius: 0;
  box-shadow: 24px 24px 0 #071824;
}

.about-image img {
  min-height: 620px;
  object-fit: cover;
}

.about-content {
  padding: clamp(26px, 4vw, 58px) 0;
}

.about-content p {
  color: #384956;
  font-size: 1.08rem;
}

.check-list {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #071824;
}

.check-list li {
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #10202b;
}

.check-list i {
  color: #0c6f9d;
}

.services {
  color: #fff;
  background: #071824;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.service-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(3, 13, 20, 0.12), rgba(3, 13, 20, 0.88)),
    var(--service-image) center / cover;
  box-shadow: none;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: inherit;
  transition: transform 650ms ease, filter 650ms ease;
}

.service-card:hover::before {
  transform: scale(1.08);
  filter: saturate(1.14);
}

.service-card i {
  width: 46px;
  height: 46px;
  margin-bottom: auto;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.34);
}

.service-card h3 {
  max-width: 520px;
  margin-top: 120px;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 3.5vw, 4.2rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.service-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.work {
  color: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(24, 167, 209, 0.18), transparent 28rem),
    #0b1b26;
}

.masonry-gallery {
  columns: 3 260px;
  column-gap: 18px;
  margin-top: 50px;
}

.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  border: 0;
  border-radius: 0;
  background: #071824;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.gallery-item img {
  transition: transform 520ms ease, filter 520ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.14) contrast(1.04);
}

.contact {
  color: #fff;
  background:
    linear-gradient(rgba(3, 13, 20, 0.82), rgba(3, 13, 20, 0.9)),
    url("./assets/gallery/rr-pools-above-ground-liner-water-01.jpeg") center / cover;
}

.contact-panel {
  border: 0;
  border-radius: 0;
  padding: clamp(36px, 6vw, 74px);
  background: rgba(3, 13, 20, 0.78);
  box-shadow: var(--shadow);
}

.contact-grid {
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.contact-grid article {
  border: 0;
  border-radius: 0;
  background: rgba(3, 13, 20, 0.76);
  color: #fff;
  box-shadow: none;
}

.contact-grid article span {
  color: rgba(255, 255, 255, 0.62);
}

.contact-grid article strong {
  color: #fff;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #030d14;
}

.site-footer .brand-mark {
  background: var(--gold);
}

.assistant-fab {
  border-radius: 4px;
  color: #071824;
  background: var(--gold);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}

.assistant-card {
  border-radius: 8px;
  background: #071824;
  color: #fff;
}

.assistant-header,
.assistant-form {
  border-color: rgba(255, 255, 255, 0.12);
}

.assistant-subtitle,
.assistant-note {
  color: rgba(255, 255, 255, 0.62);
}

.assistant-input,
.assistant-form input {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.message.bot {
  color: #10202b;
  background: #fff;
}

.message.user {
  color: #071824;
  background: var(--gold);
}

.quick-reply,
.assistant-form button {
  color: #071824;
  background: var(--gold);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 14px 18px;
  }

  .main-nav {
    top: 82px;
    left: 18px;
    right: 18px;
    border-radius: 0;
    background: rgba(3, 13, 20, 0.96);
  }

  .main-nav a {
    color: #fff;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 880px;
    padding-top: 126px;
  }

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

  .why-card,
  .about,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    box-shadow: 14px 14px 0 #071824;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(3.5rem, 18vw, 5rem);
  }

  h2 {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .hero-actions,
  .contact-actions,
  .trust-row {
    align-items: stretch;
  }

  .trust-row span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .service-card {
    min-height: 360px;
    padding: 24px;
  }

  .contact-panel {
    padding: 30px 22px;
  }
}

/* Final headline tuning */
h1,
h2,
.service-card h3,
.hero-panel strong,
.stat-strip strong {
  font-family: "Arial Narrow", "Helvetica Neue Condensed Black", Impact, Haettenschweiler, sans-serif;
  font-weight: 800;
  transform: scaleX(0.94);
  transform-origin: left center;
}

h1 {
  font-size: clamp(3.85rem, 9.1vw, 8.15rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.3rem, 4.45vw, 5.15rem);
  line-height: 0.99;
}

.service-card h3 {
  font-size: clamp(1.8rem, 2.95vw, 3.55rem);
  line-height: 0.98;
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.9rem, 14.8vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2rem, 10.8vw, 3.28rem);
  }
}

/* Final heading balance: bold, but less smashed */
h1,
h2,
.service-card h3,
.hero-panel strong,
.stat-strip strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  transform: scaleX(0.96);
  transform-origin: left center;
}

h1 {
  font-size: clamp(3.75rem, 8.8vw, 7.85rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.25rem, 4.25vw, 4.95rem);
  line-height: 1.03;
}

.service-card h3 {
  font-size: clamp(1.78rem, 2.85vw, 3.35rem);
  line-height: 1.02;
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.85rem, 14.2vw, 4rem);
  }

  h2 {
    font-size: clamp(1.95rem, 10.2vw, 3.12rem);
  }
}

/* Contact grid cleanup */
.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(3, 13, 20, 0.72);
}

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

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
