/* Solutions by LG — brand palette: teal, light cyan accent, cream, charcoal */

:root {
  --color-brand-teal: #2a7e84;
  --color-teal-light: #4aa0a6;
  --color-teal-deep: #1f656a;
  --color-cream: #f7f5f0;
  --color-cream-dark: #ebe8e1;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-text-soft: #5c5c5c;
  --color-text-muted: #5a5a5a;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.06);
  --shadow-md: 0 8px 28px rgb(42 126 132 / 0.1);
  --shadow-btn: 0 4px 14px rgb(42 126 132 / 0.32);
  --shadow-btn-hover: 0 8px 22px rgb(42 126 132 / 0.42);
  --color-section-teal: rgb(220 240 241 / 0.55);
  --radius: 14px;
  --radius-pill: 100px;
  --max-width: 72rem;
  --space: clamp(1rem, 4vw, 2rem);
  /* Hero features strip (mockup) */
  --color-features-bar-bg: #fdfbf4;
  --color-features-icon-teal: #1f7a8c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  /* Cream base + soft light wash + fine paper grain (SVG noise tile) */
  background-color: var(--color-cream);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256' viewBox='0 0 256 256'%3E%3Cfilter id='grain' x='-20%25' y='-20%25' width='140%25' height='140%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.72'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 120% 80% at 10% 0%, rgb(247 245 240 / 0.92) 0%, transparent 48%),
    radial-gradient(ellipse 100% 60% at 90% 100%, rgb(74 160 166 / 0.07) 0%, transparent 52%),
    linear-gradient(180deg, var(--color-cream) 0%, #ebe8e1 100%);
  background-size:
    180px 180px,
    auto,
    auto,
    auto;
  background-blend-mode: soft-light, normal, normal, normal;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--color-text);
  background: transparent;
}

@media (max-width: 639px) {
  body {
    padding-bottom: 4.25rem;
  }
}

/* Slightly stronger weight for long reading text */
.intro__text,
.hero__lede,
.section__copy p,
.areas__text,
.testimonial-card__quote,
.site-footer__brand,
.site-footer__contact,
.site-footer__legal {
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

picture {
  display: block;
}

a {
  color: var(--color-brand-teal);
}

a:hover {
  color: var(--color-teal-light);
}

:focus-visible {
  outline: 3px solid var(--color-teal-light);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--color-brand-teal);
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: var(--space);
  top: var(--space);
}

.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;
}

.nowrap {
  white-space: nowrap;
}

.text-brand {
  color: var(--color-brand-teal);
  font-weight: 500;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Let page paper texture read through slightly */
  background: rgb(247 245 240 / 0.9);
  backdrop-filter: blur(14px) saturate(1.05);
  border-bottom: 1px solid rgb(42 126 132 / 0.1);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem var(--space) 1.1rem;
}

.site-header__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}

.site-logo img {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: contain;
}

@media (min-width: 640px) {
  .site-logo img {
    width: 4.75rem;
    height: 4.75rem;
  }
}

.site-header__titles {
  min-width: 0;
}

.site-header__name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.5vw, 1.65rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.site-header__tagline {
  margin: 0.2rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-brand-teal);
  text-align: center;
}

.site-nav {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgb(42 126 132 / 0.12);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  justify-content: flex-start;
}

.site-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--color-brand-teal);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  padding: 0.55rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--call {
  background: linear-gradient(180deg, var(--color-teal-light) 0%, var(--color-brand-teal) 55%, var(--color-teal-deep) 100%);
  color: #fff;
  border-color: var(--color-brand-teal);
  box-shadow: var(--shadow-btn);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8125rem;
  font-weight: 700;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.btn--call:hover {
  background: linear-gradient(180deg, #3d9196 0%, #267077 55%, #1a5458 100%);
  border-color: var(--color-teal-deep);
  color: #fff;
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
}

.btn__call-inner {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.btn--primary {
  background: linear-gradient(0deg, var(--color-teal-light) 0%, var(--color-brand-teal) 45%, var(--color-teal-deep) 100%);
  color: #fff;
  border-color: var(--color-brand-teal);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  background: linear-gradient(0deg, #3d9196 0%, #267077 45%, #1a5458 100%);
  border-color: var(--color-teal-deep);
  color: #fff;
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
}

.btn--secondary {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.875rem;
  text-align: center;
  background: transparent;
  color: var(--color-brand-teal);
  border-color: var(--color-brand-teal);
}

.btn--secondary:hover {
  background: rgb(74 160 166 / 0.12);
  color: var(--color-teal-deep);
  border-color: var(--color-teal-deep);
}

.btn--large {
  min-height: 3.15rem;
  padding: 0.75rem 1.85rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  display: grid;
  gap: 0;
  max-width: 100%;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1.08fr;
    align-items: start;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-bottom: 0;
    height: 30rem;
  }
}

.hero__content {
  padding: clamp(1.75rem, 5vw, 3rem) var(--space);
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
}

@media (min-width: 900px) {
  .hero__content {
    margin: 0;
    max-width: 32rem;
    margin-left: max(var(--space), calc((100vw - var(--max-width)) / 2 + var(--space)));
    padding-left: 0;
    padding-bottom: 0;
  }
}

.hero-heading {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 4.8vw, 2.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-heading__line {
  display: block;
  color: var(--color-text);
  max-width: max-content;
}

.hero-heading__accent {
  display: block;
  color: var(--color-teal-light);
  font-style: normal;
  padding-bottom: 0.45rem;
}

.hero-heading__border {
  display: block;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-teal-light), var(--color-brand-teal));
  margin-top: 0.5rem;
}

.hero__lede {
  margin: 0;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 36ch;
}

@media (min-width: 900px) {
  .hero__lede {
    max-width: 40ch;
  }
}

.hero__media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  isolation: isolate;
}

/* Blend photo into page: stronger / earlier fade on left + top-left + bottom-left; softer edge vignette */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background:
    /* Left edge — meets hero text column; fades sooner */
    linear-gradient(
      90deg,
      rgb(247 245 240) 0%,
      rgb(247 245 240 / 0.93) 6%,
      rgb(247 245 240 / 0.72) 14%,
      rgb(247 245 240 / 0.35) 28%,
      transparent 46%
    ),
    /* Top-left corner — extra lift (fades sooner than center) */
    radial-gradient(
      ellipse 95% 85% at 0% 0%,
      rgb(247 245 240 / 0.88) 0%,
      rgb(247 245 240 / 0.35) 38%,
      transparent 58%
    ),
    /* Bottom-left corner — same */
    radial-gradient(
      ellipse 95% 85% at 0% 100%,
      rgb(247 245 240 / 0.88) 0%,
      rgb(247 245 240 / 0.35) 38%,
      transparent 58%
    ),
    /* Top edge (full width) */
    linear-gradient(180deg, rgb(247 245 240 / 0.5) 0%, transparent 20%),
    /* Bottom edge */
    linear-gradient(0deg, rgb(247 245 240 / 0.45) 0%, transparent 18%),
    /* Right edge — light tie-in */
    linear-gradient(270deg, rgb(247 245 240 / 0.28) 0%, transparent 14%),
    /* Edge vignette: fade stays near the border so the middle reads clearly */
    radial-gradient(
      ellipse 108% 102% at 50% 50%,
      transparent 48%,
      rgb(247 245 240 / 0.18) 78%,
      rgb(247 245 240 / 0.32) 100%
    ),
    /* Light center wash — subtle; corners (above) still fade sooner */
    radial-gradient(
      ellipse 58% 52% at 50% 50%,
      rgb(247 245 240 / 0.07) 0%,
      transparent 58%
    );
}

@media (min-width: 900px) {
  .hero__media {
    margin: 0 0 2.5rem 0;
    min-height: 420px;
    align-self: stretch;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.hero__media picture,
.hero__media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .hero__media img {
    position: absolute;
    inset: 0;
    height: 100%;
  }
}

/* Features bar — directly under hero (icon left, copy right) */
.features-bar {
  background: var(--color-features-bar-bg);
  padding: clamp(1.35rem, 3.5vw, 2rem) var(--space);
  border-top: 1px solid rgb(31 122 140 / 0.07);
}

.features-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.features-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1.15rem, 3vw, 1.5rem);
}

@media (min-width: 768px) {
  .features-bar__list {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(1.25rem, 4vw, 2.5rem);
  }
}

.features-bar__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
  padding: 1.15rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid rgb(42 126 132 / 0.12);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (hover: hover) {
  .features-bar__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgb(42 126 132 / 0.15);
  }
}

@media (min-width: 768px) {
  .features-bar__item {
    flex: 1 1 0;
    min-width: 0;
  }
}

.features-bar__icon {
  width: 3.5rem;
  height: 3.5rem;
  min-width: 3.5rem;
  border-radius: 50%;
  background: var(--color-features-icon-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.features-bar__icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.features-bar__item:nth-child(2) .features-bar__icon svg {
  width: 3.85rem;
  height: 3.85rem;
}

.features-bar__copy {
  min-width: 0;
  text-align: left;
}

.features-bar__title {
  margin: 0 0 0.2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.features-bar__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.55;
}

/* Sections */
.section {
  padding: clamp(2.5rem, 6vw, 4rem) var(--space);
}

.section--alt {
  background: var(--color-white);
  border-top: 1px solid rgb(42 126 132 / 0.1);
  border-bottom: 1px solid rgb(42 126 132 / 0.1);
}

#commercial {
  background: var(--color-section-teal);
  border-top: 1px solid rgb(42 126 132 / 0.08);
  border-bottom: 1px solid rgb(42 126 132 / 0.08);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__sub {
  margin: -0.5rem 0 1.75rem;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

.intro__text {
  margin: 0 auto;
  max-width: 52rem;
  font-size: clamp(1.125rem, 2.5vw, 1.3rem);
  text-align: center;
  color: var(--color-text-muted);
}

.section__grid {
  max-width: 44rem;
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.section h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  margin-top: 0.65rem;
  background: linear-gradient(90deg, var(--color-teal-light), var(--color-brand-teal));
}

.areas h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section__copy p {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

.h3 {
  margin: 1.5rem 0 0.65rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
}

.checklist {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

.checklist li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.checklist li::marker {
  color: var(--color-brand-teal);
}

/* Full-bleed divider */
.section-divider {
  margin: 0;
  position: relative;
  max-width: none;
  overflow: hidden;
}

.section-divider picture,
.section-divider img {
  width: 100%;
  display: block;
  aspect-ratio: 1136 / 1146;
  object-fit: cover;
  max-height: min(77vh, 560px);
}

.section-divider__caption {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 4vw, 2rem);
  transform: translateX(-50%);
  margin: 0;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 4px rgb(0 0 0 / 0.45);
  background: rgb(42 126 132 / 0.88);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  max-width: calc(100% - 2rem);
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.testimonial-card {
  margin: 0;
  padding: 1.35rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid rgb(42 126 132 / 0.14);
  box-shadow: var(--shadow-md);
}

.testimonial-card__name {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.3;
}

.testimonial-card__meta {
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stars {
  color: var(--color-teal-light);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.stars-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.testimonial-card__quote {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Areas CTA */
.areas {
  background: linear-gradient(160deg, rgb(220 240 241 / 0.65) 0%, var(--color-cream) 50%, rgb(235 232 225 / 0.7) 100%);
  border-top: 1px solid rgb(42 126 132 / 0.12);
  border-bottom: 1px solid rgb(74 160 166 / 0.18);
}

.areas__inner {
  text-align: center;
  max-width: 36rem;
}

.areas h2 {
  margin-bottom: 0.75rem;
}

.areas__text {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

/* Footer */
.site-footer {
  background: var(--color-brand-teal);
  color: #f7fbfb;
  padding: 2rem var(--space);
}

.site-footer a {
  color: #c8eef0;
  font-weight: 500;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.site-footer__contact {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
}

.site-footer__sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.site-footer__legal {
  margin: 0;
  font-size: 0.9375rem;
  opacity: 0.75;
}

@media (max-width: 639px) {
  .section {
    padding-top: 2rem;
  }
  .site-header__top {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header__brand {
    width: 100%;
  }

  .btn--call {
    width: 100%;
    min-height: 3rem;
    justify-content: center;
  }

  .site-nav ul {
    justify-content: flex-start;
    gap: 0.5rem 1rem;
  }
}

#residential-heading, #commercial-heading {
  margin-top: 2rem;
}

/* Mobile sticky call bar */
.mobile-call-bar {
  display: none;
}

@media (max-width: 639px) {
  .mobile-call-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    min-height: 3.25rem;
    padding: 0.65rem var(--space);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(0deg, var(--color-teal-light) 0%, var(--color-brand-teal) 45%, var(--color-teal-deep) 100%);
    border-top: 2px solid var(--color-teal-deep);
    box-shadow: 0 -4px 20px rgb(31 101 106 / 0.35);
  }

  .mobile-call-bar__icon {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
  }

  .site-footer {
    padding-bottom: 1.25rem;
  }
}