﻿:root {
  --blue: #18b9ee;
  --blue-dark: #073b73;
  --navy: #061b33;
  --navy-2: #0a294d;
  --graphite: #17222c;
  --muted: #5d6b78;
  --line: rgba(13, 42, 71, 0.12);
  --soft: #f3f7fb;
  --white: #ffffff;
  --fire: #d45a36;
  --green: #128177;
  --shadow: 0 22px 60px rgba(5, 25, 48, 0.14);
  --container: min(1160px, calc(100vw - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--graphite);
  background: #fff;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.7; }
.container { width: var(--container); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--blue-dark) 58%, #0b6f9d 100%);
  color: #fff;
}
.topbar-content {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
}
.header-rotator { display: flex; gap: 0.5rem; align-items: center; min-width: 0; }
.rotator-label { color: rgba(255,255,255,0.72); }
.rotating-word { color: #fff; animation: wordPulse .55s ease; }
.topbar-contact { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; flex-wrap: wrap; }
.navbar { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; }
.brand-logo { width: 120px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 1rem; font-size: 0.9rem; font-weight: 700; }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; padding: .75rem 1rem; font: inherit; font-weight: 700; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0.95rem 1.25rem;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.button-small { padding: .75rem 1rem; }
.button-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); box-shadow: none; }
.button-light { background: #fff; color: var(--navy); }
.button-fire { background: var(--fire); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.62rem 0.9rem;
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.eyebrow-brand { background: var(--blue-dark); }
.eyebrow-services { background: var(--blue-dark); }
.eyebrow-fire { background: var(--fire); }
.eyebrow-process { background: #31566f; }
.eyebrow-why { background: var(--green); }
.eyebrow-references { background: #174f89; }
.eyebrow-partners { background: #334b67; }
.eyebrow-reviews { background: #735c2b; }
.eyebrow-shop { background: #1f6d77; }
.eyebrow-faq { background: #33435a; }
.eyebrow-cta { background: rgba(255,255,255,.18); }
.eyebrow-contact { background: var(--blue-dark); }

.hero {
  min-height: calc(100vh - 140px);
  padding: 4.8rem 0 3.5rem;
  color: #fff;
  background:
    linear-gradient(rgba(6, 27, 51, 0.92), rgba(6, 27, 51, 0.88)),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    var(--navy);
  background-size: auto, 46px 46px, 46px 46px, auto;
}
.hero-grid { display: grid; grid-template-columns: 1fr 0.88fr; gap: 3rem; align-items: center; }
.hero h1 { margin: 1rem 0; font-size: 4.35rem; line-height: 1.04; max-width: 13.5ch; }
.hero p { max-width: 66ch; color: rgba(255,255,255,.78); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0; }
.proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; max-width: 720px; }
.proof-grid span { padding: .85rem 1rem; border-left: 3px solid var(--blue); background: rgba(255,255,255,.08); font-weight: 700; }
.hero-media { position: relative; min-height: 520px; overflow: hidden; box-shadow: var(--shadow); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(6,27,51,.78)); }
.hero-badge { position: absolute; left: 1rem; bottom: 1rem; z-index: 1; padding: .8rem 1rem; color: #fff; background: rgba(24,185,238,.92); font-weight: 800; }

.section { padding: 5rem 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading-wide { max-width: 980px; }
.section-heading h2 { margin: 1rem 0 0; font-size: 2.15rem; line-height: 1.18; }
.section-heading p { color: var(--muted); max-width: 78ch; margin-top: 1rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { padding: 1.45rem; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 36px rgba(5,25,48,.07); transition: transform .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(24,185,238,.65); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 1rem; color: var(--blue); font-size: 1.55rem; font-weight: 800; border: 1px solid rgba(24,185,238,.36); }
.service-card h3 { margin: 0 0 .65rem; font-size: 1.05rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.fire-section { background: linear-gradient(135deg, #071a2f 0%, #0a294d 72%, #3c1c19 100%); color: #fff; }
.fire-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 2rem; align-items: center; }
.fire-copy p { color: rgba(255,255,255,.76); }
.check-list { display: grid; gap: .75rem; padding: 0; margin: 1.4rem 0 1.8rem; list-style: none; }
.check-list li { padding-left: 1.65rem; position: relative; color: rgba(255,255,255,.88); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55rem; width: 9px; height: 9px; background: var(--fire); }
.fire-media { position: relative; min-height: 460px; overflow: hidden; box-shadow: var(--shadow); }
.fire-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.fire-media span { position: absolute; right: 1rem; top: 1rem; padding: .65rem .85rem; background: var(--fire); color: #fff; font-weight: 800; }

.process-line { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; }
.process-line article { position: relative; padding: 1.25rem; border-top: 3px solid var(--blue); background: var(--soft); }
.process-line span { color: var(--blue-dark); font-weight: 800; }
.process-line h3 { font-size: 1rem; margin: .7rem 0 .5rem; }
.process-line p { color: var(--muted); font-size: .9rem; margin: 0; }

.why-section { background: #fff; }
.why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2rem; align-items: start; }
.why-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.why-cards article { padding: 1.25rem; background: var(--soft); border: 1px solid var(--line); }
.why-cards article:last-child { grid-column: span 2; }
.why-cards span { color: var(--blue-dark); font-size: 1.5rem; font-weight: 800; }
.why-cards h3 { margin: .7rem 0 .5rem; }
.why-cards p { margin: 0; color: var(--muted); }

.gallery-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin: -0.8rem 0 1.2rem; }
.gallery-tags span { padding: .55rem .75rem; background: #fff; border: 1px solid var(--line); color: var(--blue-dark); font-weight: 700; font-size: .86rem; }
.work-gallery { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }
.work-card { position: relative; min-height: 230px; border: 0; padding: 0; overflow: hidden; background: var(--navy); cursor: pointer; box-shadow: var(--shadow); }
.work-card-large { grid-row: span 2; min-height: 476px; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.work-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(4,24,52,.86)); }
.work-card span { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1; color: #fff; font-size: 1.05rem; font-weight: 800; text-align: left; }
.work-card small { display: block; margin-top: .25rem; font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.75); }
.work-card:hover img { transform: scale(1.04); }
.gallery-more { border: 0; padding: .9rem 1.1rem; background: var(--blue-dark); color: #fff; font: inherit; font-weight: 800; cursor: pointer; }

.partners-marquee { display: flex; overflow: hidden; gap: 0; padding: .4rem 0; mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); }
.partners-track { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; min-width: 100%; animation: partnerScroll 26s linear infinite; }
.partner-logo { min-width: 170px; height: 82px; display: flex; align-items: center; justify-content: center; padding: 1rem 1.25rem; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.partner-logo img { max-width: 138px; max-height: 40px; width: auto; height: auto; object-fit: contain; }
.partner-logo-viessmann { margin-left: .9rem; }
.partner-logo img.logo-viessmann { transform: scale(1.08); }

.reviews-section { background: #f9fbfd; }
.reviews-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; align-items: start; }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.review-cards article { padding: 1.3rem; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 34px rgba(5,25,48,.06); }
.review-cards div { color: #d59b23; font-weight: 800; }
.review-cards p { color: var(--muted); }
.review-cards strong { color: var(--blue-dark); font-size: .9rem; }

.shop-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 2rem; align-items: start; }
.shop-card, .contact-card, .contact-form { padding: 1.5rem; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.shop-card { background: linear-gradient(180deg, #fff, #f4fbff); }
.shop-logo { max-width: 210px; height: auto; margin-bottom: 1.2rem; }
.shop-card h3 { margin-top: 0; }
.shop-card a, .contact-card a { color: var(--blue-dark); font-weight: 700; }

.faq-section { background: var(--soft); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 2rem; align-items: start; }
.faq-list { display: grid; gap: .75rem; }
details { background: #fff; border: 1px solid var(--line); padding: 1rem 1.1rem; }
summary { cursor: pointer; font-weight: 800; color: var(--navy); }
details p { color: var(--muted); margin-bottom: 0; }

.cta-band { background: linear-gradient(135deg, var(--blue-dark), var(--navy)); color: #fff; }
.cta-content { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-content p { color: rgba(255,255,255,.72); max-width: 70ch; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 1.25rem; align-items: start; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: grid; gap: .45rem; font-weight: 700; }
.contact-form textarea, .contact-form label:nth-child(6), .contact-form label:nth-child(7), .contact-form .consent, .form-note, .contact-form button { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: .9rem 1rem; border: 1px solid rgba(7,24,47,.16); font: inherit; background: #fff; }
.consent { grid-template-columns: auto 1fr !important; align-items: center; font-weight: 500 !important; }
.consent input { width: auto; }
.form-note { margin: 0; color: var(--muted); font-size: .9rem; }

.gallery-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.gallery-modal.open { display: flex; }
.gallery-modal-backdrop { position: absolute; inset: 0; background: rgba(4,16,31,.88); backdrop-filter: blur(10px); }
.gallery-modal-panel { position: relative; width: min(1120px, 100%); max-height: min(90vh, 850px); display: grid; grid-template-columns: 64px 1fr 64px; grid-template-rows: minmax(0, 1fr) auto; gap: 1rem; align-items: center; }
.gallery-stage { grid-column: 2; margin: 0; color: #fff; }
.gallery-stage img { width: 100%; max-height: 72vh; object-fit: contain; background: #061b33; box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.gallery-stage figcaption { margin-top: .8rem; text-align: center; font-weight: 800; }
.gallery-close, .gallery-nav { border: 0; background: rgba(255,255,255,.12); color: #fff; cursor: pointer; }
.gallery-close { position: absolute; top: -.8rem; right: 0; width: 44px; height: 44px; font-size: 2rem; z-index: 2; }
.gallery-nav { width: 54px; height: 72px; font-size: 3rem; }
.gallery-prev { grid-column: 1; }
.gallery-next { grid-column: 3; }
.gallery-thumbs { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(12, 1fr); gap: .45rem; }
.gallery-thumb { height: 56px; border: 2px solid transparent; padding: 0; background: transparent; cursor: pointer; opacity: .65; }
.gallery-thumb.active { border-color: var(--blue); opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.mobile-cta { display: none; }
.site-footer { padding: 1.5rem 0 2rem; border-top: 1px solid var(--line); }
.footer-content { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--muted); }

@keyframes wordPulse { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes partnerScroll { from { transform: translateX(0); } to { transform: translateX(calc(-100% - 1rem)); } }

@media (max-width: 1040px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 1rem; right: 1rem; padding: 1rem; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .fire-grid, .why-grid, .reviews-grid, .shop-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .review-cards { grid-template-columns: repeat(2, 1fr); }
  .process-line { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { padding-bottom: 64px; }
  .topbar-content { justify-content: center; flex-wrap: wrap; padding: .55rem 0; }
  .header-rotator { width: 100%; justify-content: center; }
  .topbar-contact { justify-content: center; font-size: .78rem; }
  .navbar { min-height: 82px; }
  .brand-logo { width: 92px; }
  .hero { min-height: auto; padding: 3rem 0; }
  .hero h1 { font-size: 2.65rem; max-width: none; }
  .hero-media { min-height: 340px; }
  .proof-grid, .services-grid, .why-cards, .review-cards, .contact-form { grid-template-columns: 1fr; }
  .why-cards article:last-child { grid-column: auto; }
  .work-gallery { grid-template-columns: 1fr; }
  .work-card, .work-card-large { grid-row: auto; min-height: 260px; }
  .partners-marquee { mask-image: none; }
  .cta-content, .footer-content { flex-direction: column; align-items: flex-start; }
  .gallery-modal { padding: .8rem; }
  .gallery-modal-panel { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .gallery-stage { grid-column: 1 / -1; grid-row: 1; }
  .gallery-prev, .gallery-next { grid-row: 2; width: 100%; height: 48px; }
  .gallery-prev { grid-column: 1; }
  .gallery-next { grid-column: 2; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: grid; grid-template-columns: 1fr 1fr; }
  .mobile-cta a { padding: 1rem; text-align: center; color: #fff; background: var(--navy); font-weight: 800; }
  .mobile-cta a:last-child { background: var(--blue); }
}




/* Refinements after content review */
.hero h1 {
  font-size: 3.72rem;
  line-height: 1.06;
  max-width: 15.5ch;
}

.hero-actions {
  margin-bottom: 1.45rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 760px;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.proof-item {
  padding: 1rem 1rem 1rem 0;
  display: grid;
  gap: 0.35rem;
  border-right: 1px solid rgba(255,255,255,.16);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.proof-item strong {
  color: rgba(255,255,255,.92);
  font-size: 0.9rem;
  line-height: 1.35;
}

.intro-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(24,185,238,.06) 0 1px, transparent 1px),
    linear-gradient(rgba(24,185,238,.05) 0 1px, transparent 1px);
  background-size: 34px 34px;
}

.services-grid {
  gap: 1.15rem;
}

.service-card {
  position: relative;
  min-height: 245px;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid rgba(7, 59, 115, 0.10);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--card-accent, var(--blue));
}

.service-icon {
  width: 52px;
  height: 52px;
  border: 0;
  background: color-mix(in srgb, var(--card-accent, var(--blue)) 13%, white);
  color: var(--card-accent, var(--blue));
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-water { --card-accent: #1488cc; }
.service-floor { --card-accent: #13a886; }
.service-pump { --card-accent: #e05d35; }
.service-cooling { --card-accent: #20aee8; }
.service-vent { --card-accent: #7a6ed8; }
.service-control { --card-accent: #f0a02b; }

.fire-grid,
.why-grid,
.shop-grid,
.faq-grid,
.contact-grid {
  gap: 2.5rem;
}

.process-line article:nth-child(even) {
  background: #fff;
  box-shadow: 0 12px 34px rgba(5,25,48,.06);
}

.why-section {
  background:
    linear-gradient(135deg, #ffffff 0%, #f5f9fc 100%);
}

.why-cards article {
  background: #fff;
  box-shadow: 0 12px 34px rgba(5,25,48,.06);
}

.work-gallery {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.work-card,
.work-card-large {
  grid-row: auto;
  min-height: 255px;
}

.reviews-section {
  background:
    linear-gradient(180deg, #f9fbfd 0%, #ffffff 100%);
}

.shop-card {
  border-left: 5px solid var(--blue);
}

.faq-section {
  background:
    linear-gradient(90deg, rgba(7,59,115,.04), rgba(24,185,238,.08));
}

@media (max-width: 1040px) {
  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }
}

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

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.13);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .work-gallery {
    grid-template-columns: 1fr;
  }
}

/* Proof strip spacing polish */
.proof-strip {
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.proof-item {
  padding: 1.15rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.15);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.proof-item span {
  display: block;
  margin-bottom: 0.45rem;
}

.proof-item strong {
  display: block;
}

@media (max-width: 760px) {
  .proof-item,
  .proof-item:first-child,
  .proof-item:last-child {
    padding: 1rem 0;
  }
}

/* Keep anchor targets visible below the sticky header */
section[id] {
  scroll-margin-top: 150px;
}

@media (max-width: 760px) {
  section[id] {
    scroll-margin-top: 120px;
  }
}

/* Review cards four-column polish */
.review-cards {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1040px) {
  .review-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .review-cards {
    grid-template-columns: 1fr;
  }
}

/* Why slider redesign */
.why-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #061b33 0%, #0a3156 54%, #eef7fc 54%, #ffffff 100%);
  color: var(--graphite);
}

.why-slider-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: stretch;
}

.why-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.why-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,27,51,.08), rgba(6,27,51,.82));
}

.why-visual-card {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  padding: 1.2rem;
  background: rgba(255,255,255,.94);
  border-left: 5px solid var(--blue);
}

.why-visual-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.why-visual-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.35;
}

.why-slider {
  position: relative;
  min-height: 520px;
  padding: 2.2rem;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.why-slider .section-heading {
  margin-bottom: 1.4rem;
}

.why-slider .section-heading h2 {
  max-width: 16ch;
}

.why-slide {
  display: none;
  flex: 1;
  align-content: center;
  animation: whyFade .45s ease;
}

.why-slide.active {
  display: grid;
}

.why-number {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.why-slide-icon {
  width: 68px;
  height: 68px;
  margin: 1.2rem 0 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9f8fe;
  color: var(--blue-dark);
  font-size: 2rem;
  font-weight: 800;
}

.why-slide h3 {
  margin: 0 0 0.8rem;
  font-size: 2rem;
  line-height: 1.12;
}

.why-slide p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.why-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.why-dot {
  width: 38px;
  height: 5px;
  border: 0;
  padding: 0;
  background: rgba(7,59,115,.18);
  cursor: pointer;
}

.why-dot.active {
  width: 62px;
  background: var(--blue);
}

@keyframes whyFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
  .why-section {
    background: linear-gradient(180deg, #061b33 0%, #0a3156 46%, #eef7fc 46%, #ffffff 100%);
  }

  .why-slider-layout {
    grid-template-columns: 1fr;
  }

  .why-visual,
  .why-slider {
    min-height: auto;
  }

  .why-visual {
    height: 380px;
  }
}

@media (max-width: 760px) {
  .why-slider {
    padding: 1.35rem;
  }

  .why-slide h3 {
    font-size: 1.55rem;
  }

  .why-controls {
    flex-wrap: wrap;
  }
}

/* Top contact refinement */
.topbar {
  background: linear-gradient(90deg, #06284d 0%, #0b5f8c 100%);
}

.topbar-content {
  min-height: 58px;
}

.topbar-contact {
  gap: 0;
  align-items: stretch;
}

.top-contact-item {
  position: relative;
  display: grid;
  gap: 0.14rem;
  padding: 0.55rem 1rem 0.55rem 2.05rem;
  min-width: 185px;
  color: #fff;
}

.top-contact-item::before {
  content: "☎";
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 0.95rem;
}

.top-contact-mail::before {
  content: "✉";
}

.top-contact-item + .top-contact-item {
  border-left: 1px solid rgba(255,255,255,.18);
}

.top-contact-item span {
  color: rgba(255,255,255,.66);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.top-contact-item strong {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
}

@media (max-width: 1040px) {
  .topbar-content {
    align-items: stretch;
  }

  .topbar-contact {
    width: 100%;
    justify-content: center;
  }

  .top-contact-item {
    min-width: auto;
  }
}

@media (max-width: 760px) {
  .topbar-content {
    min-height: auto;
  }

  .topbar-contact {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .top-contact-item {
    padding: 0.5rem 0.8rem 0.5rem 2rem;
    border-left: 0 !important;
    border-top: 1px solid rgba(255,255,255,.14);
  }
}

/* Why heading separated refinement */
.why-section-heading {
  margin-bottom: 2rem;
}

.why-section-heading h2 {
  margin: 1rem 0 0;
  max-width: 13ch;
  font-size: 2.85rem;
  line-height: 1.08;
}

.why-slider-layout {
  align-items: stretch;
}

.why-slider {
  min-height: 420px;
  justify-content: center;
}

.why-slider .section-heading {
  display: none;
}

.why-slide {
  align-content: center;
}

.why-slide h3 {
  margin-top: 0.8rem;
  font-size: 2.35rem;
}

.why-slide p {
  font-size: 1.12rem;
}

.why-number {
  width: fit-content;
  padding: 0.45rem 0.7rem;
  background: #e9f8fe;
  color: var(--blue-dark);
}

.why-slide-icon {
  display: none !important;
}

.why-visual {
  min-height: 420px;
}

.why-visual img,
.hero-media img {
  object-position: center;
}

.hero-media img {
  object-position: 42% center;
}

@media (max-width: 960px) {
  .why-section-heading h2 {
    max-width: 100%;
    font-size: 2.25rem;
  }
}

@media (max-width: 760px) {
  .why-section-heading h2 {
    font-size: 1.85rem;
  }
}

/* Section heading and reviews refresh */
.eyebrow {
  padding: 0.72rem 1.05rem;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.eyebrow-reviews {
  background: linear-gradient(135deg, var(--blue-dark), #1184bd);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 2.6rem;
}

.section-heading-wide {
  max-width: 1080px;
}

.section-heading h2 {
  font-size: 2.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-heading p {
  font-size: 1.05rem;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #061b33 0%, #0a294d 48%, #eef7fc 48%, #ffffff 100%);
}

.reviews-section .reviews-grid {
  grid-template-columns: 0.62fr 1.38fr;
  align-items: center;
}

.reviews-section .section-heading {
  color: #fff;
  margin-bottom: 0;
}

.reviews-section .section-heading p {
  color: rgba(255,255,255,.72);
}

.review-featured-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(3, auto);
  gap: 1rem;
}

.review-card {
  position: relative;
  padding: 1.35rem 1.45rem 1.3rem;
  border: 0;
  background: rgba(255,255,255,.96);
  box-shadow: 0 20px 55px rgba(5,25,48,.12);
}

.review-card::before {
  content: "“";
  position: absolute;
  right: 1rem;
  top: -0.35rem;
  color: rgba(24,185,238,.16);
  font-size: 5rem;
  line-height: 1;
  font-weight: 800;
}

.review-main {
  grid-row: 1 / span 3;
  padding: 2rem;
  background: #fff;
  border-left: 6px solid var(--blue);
}

.review-main p {
  font-size: 1.28rem;
  line-height: 1.65;
}

.review-card .stars,
.review-cards div {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.review-card p {
  position: relative;
  z-index: 1;
  color: #435363;
  margin: 0.8rem 0 1rem;
}

.review-card strong {
  color: var(--navy);
  font-size: 0.95rem;
}

@media (max-width: 1040px) {
  .section-heading h2 {
    font-size: 2.3rem;
  }

  .reviews-section .reviews-grid,
  .review-featured-layout {
    grid-template-columns: 1fr;
  }

  .reviews-section .section-heading {
    margin-bottom: 2rem;
  }

  .review-main {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .section-heading h2 {
    font-size: 1.85rem;
  }

  .review-main p {
    font-size: 1.05rem;
  }
}

/* Navigation and UI polish */
.site-header {
  box-shadow: 0 12px 34px rgba(5, 25, 48, 0.06);
}

.navbar {
  min-height: 104px;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: 112px;
  display: block;
}

.nav-links {
  flex: 1;
  justify-content: flex-end;
  gap: 0.25rem;
  font-size: 0.88rem;
  line-height: 1;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.72rem;
  color: var(--navy);
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.34rem;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:not(.button):hover,
.nav-links a:not(.button):focus-visible {
  color: var(--blue-dark);
  background: rgba(24, 185, 238, 0.08);
}

.nav-links a:not(.button):hover::after,
.nav-links a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-links .button-small {
  flex: 0 0 auto;
  margin-left: 0.75rem;
  min-height: 48px;
  padding: 0 1.15rem;
  box-shadow: 0 14px 30px rgba(24, 185, 238, 0.24);
}

section[id] {
  scroll-margin-top: 172px;
}

.section {
  padding: 5.4rem 0;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading h2 {
  max-width: 18ch;
}

.section-heading-wide h2,
.reviews-section .section-heading h2,
.contact .section-heading h2 {
  max-width: none;
}

.section-heading p {
  line-height: 1.75;
}

.service-card,
.process-step,
.shop-card,
.contact-card,
.contact-form,
.faq-list details {
  border-color: rgba(8, 44, 78, 0.12);
}

.service-card:hover {
  box-shadow: 0 22px 48px rgba(5, 25, 48, 0.11);
}

.review-featured-layout {
  gap: 1.15rem;
}

.review-card {
  min-width: 0;
}

.partners-marquee {
  margin-top: 0.5rem;
}

@media (max-width: 1220px) {
  .navbar {
    gap: 1.1rem;
  }

  .brand-logo {
    width: 104px;
  }

  .nav-links {
    font-size: 0.82rem;
    gap: 0.12rem;
  }

  .nav-links a {
    padding: 0 0.52rem;
  }

  .nav-links a:not(.button)::after {
    left: 0.52rem;
    right: 0.52rem;
  }

  .nav-links .button-small {
    margin-left: 0.45rem;
    padding: 0 0.95rem;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% - 0.75rem);
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 5;
  }

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

  .nav-links a {
    justify-content: center;
    min-height: 48px;
  }

  .nav-links .button-small {
    margin-left: 0;
  }

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

@media (max-width: 760px) {
  section[id] {
    scroll-margin-top: 132px;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }
}

/* Final spacing pass */
.header-rotator {
  min-width: 260px;
}

.top-contact-item + .top-contact-item {
  margin-left: 0.35rem;
}

.nav-links a:not(.button) + a:not(.button) {
  margin-left: 0.08rem;
}

.nav-links a:not(.button) {
  border: 1px solid transparent;
}

.nav-links a:not(.button):hover,
.nav-links a:not(.button):focus-visible {
  border-color: rgba(24, 185, 238, 0.18);
}

.hero-actions .button,
.cta .button,
.contact-form button {
  letter-spacing: -0.01em;
}

.eyebrow {
  box-shadow: 0 10px 24px rgba(5, 25, 48, 0.08);
}

.process-step strong,
.service-card h3,
.review-card strong {
  letter-spacing: -0.01em;
}

.work-card img,
.hero-media img,
.why-visual img {
  filter: saturate(1.03) contrast(1.02);
}

@media (min-width: 1101px) {
  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .header-rotator {
    min-width: 0;
  }
}

.nav-links .button-small,
.nav-links .button-small:visited {
  color: #fff;
}

.nav-links .button-small:hover,
.nav-links .button-small:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

/* Remove heavy diagonal backgrounds and improve readability */
.why-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(24, 185, 238, 0.10), transparent 32%),
    linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%) !important;
  color: var(--navy);
}

.why-section-heading {
  position: relative;
  margin-bottom: 2.35rem;
}

.why-section-heading h2 {
  color: var(--navy);
  max-width: 17ch;
  text-shadow: none;
}

.why-slider-layout {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: stretch;
}

.why-visual {
  min-height: 440px;
  box-shadow: 0 24px 60px rgba(5, 25, 48, 0.14);
}

.why-visual::after {
  background: linear-gradient(180deg, transparent 35%, rgba(6, 27, 51, 0.64));
}

.why-visual-card {
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  width: auto;
  background: rgba(255, 255, 255, 0.94);
  border-left: 4px solid var(--blue);
  box-shadow: 0 18px 42px rgba(5, 25, 48, 0.18);
}

.why-slider {
  min-height: 440px;
  background: #ffffff;
  border: 1px solid rgba(8, 44, 78, 0.10);
  box-shadow: 0 24px 60px rgba(5, 25, 48, 0.10);
}

.why-slide h3 {
  color: var(--navy);
}

.why-slide p {
  color: #506173;
}

.why-number {
  background: #e8f7fd;
  color: var(--blue-dark);
}

.why-dots button {
  background: #cdd9e4;
}

.why-dots button.active {
  background: var(--blue);
}

/* Cleaner, more readable references */
.reviews-section {
  background:
    radial-gradient(circle at 86% 10%, rgba(24, 185, 238, 0.11), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%) !important;
  overflow: hidden;
}

.reviews-section .reviews-grid {
  grid-template-columns: 0.48fr 1.52fr;
  gap: 2.25rem;
  align-items: stretch;
}

.reviews-section .section-heading {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
  padding: 2.2rem;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid rgba(8, 44, 78, 0.10);
  border-left: 6px solid var(--blue);
  box-shadow: 0 22px 55px rgba(5, 25, 48, 0.08);
}

.reviews-section .section-heading p {
  color: #5b6d7f;
}

.review-featured-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 1.15rem;
}

.review-card,
.review-main {
  grid-row: auto;
  min-height: 230px;
  padding: 1.55rem;
  border: 1px solid rgba(8, 44, 78, 0.10);
  border-left: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(247,252,255,0.98));
  box-shadow: 0 18px 46px rgba(5, 25, 48, 0.09);
}

.review-main {
  border-top: 4px solid var(--blue);
}

.review-card::before {
  top: 0.55rem;
  right: 1rem;
  color: rgba(24, 185, 238, 0.18);
  font-size: 4.2rem;
}

.review-main p,
.review-card p {
  font-size: 1rem;
  line-height: 1.62;
  color: #33465a;
}

.review-card .stars,
.review-cards div {
  color: var(--blue);
}

@media (max-width: 1040px) {
  .why-slider-layout,
  .reviews-section .reviews-grid,
  .review-featured-layout {
    grid-template-columns: 1fr;
  }

  .why-section-heading h2 {
    max-width: 100%;
  }

  .reviews-section .section-heading {
    padding: 1.7rem;
  }
}

@media (max-width: 760px) {
  .why-visual,
  .why-slider {
    min-height: auto;
  }

  .why-visual {
    height: 320px;
  }

  .review-card,
  .review-main {
    min-height: auto;
  }
}

/* Shop map */
.shop-section .section-heading {
  max-width: none;
}

.shop-map {
  position: relative;
  margin-top: 2rem;
  padding: 0.7rem;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(24,185,238,.85), rgba(7,59,115,.22)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 22px 55px rgba(5, 25, 48, 0.10);
}

.shop-map::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  width: 58px;
  height: 4px;
  background: var(--blue);
  z-index: 1;
}

.shop-map iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
  filter: grayscale(0.18) contrast(1.03) saturate(0.95);
}

.shop-map-link {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  display: inline-flex;
  align-items: center;
  padding: 0.78rem 1rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(5, 25, 48, 0.22);
}

.shop-map-link:hover,
.shop-map-link:focus-visible {
  background: var(--blue-dark);
  color: #fff;
}

@media (max-width: 760px) {
  .shop-map iframe {
    min-height: 250px;
  }

  .shop-map-link {
    position: static;
    justify-content: center;
    margin-top: 0.65rem;
    width: 100%;
  }
}

/* Hero proof strip with three items */
.proof-strip {
  grid-template-columns: repeat(3, 1fr);
  max-width: 640px;
}

@media (max-width: 1040px) {
  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-item:nth-child(2) {
    border-right: 1px solid rgba(255,255,255,.15);
  }
}

@media (max-width: 760px) {
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }
}

/* Reviews heading width fix */
.reviews-section .reviews-grid {
  grid-template-columns: minmax(380px, 0.72fr) minmax(0, 1.28fr);
}

.reviews-section .section-heading h2 {
  max-width: 11ch;
  font-size: clamp(2.35rem, 3.4vw, 3.2rem);
  line-height: 1.08;
}

.reviews-section .section-heading p {
  max-width: 34ch;
}

@media (max-width: 1040px) {
  .reviews-section .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-section .section-heading h2 {
    max-width: none;
  }
}

/* Shop section balance */
.shop-grid {
  align-items: start;
}

.shop-section .section-heading h2 {
  max-width: 14ch;
}

.shop-section .section-heading p {
  max-width: 62ch;
}

.shop-map {
  max-width: 620px;
  margin-top: 1.65rem;
}

.shop-map iframe {
  min-height: 220px;
  height: 220px;
}

.shop-card {
  align-self: start;
  margin-top: 0;
}

@media (max-width: 1040px) {
  .shop-map {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .shop-map iframe {
    min-height: 220px;
    height: 220px;
  }
}

/* Custom file upload */
.contact-form .file-upload {
  grid-column: 1 / -1;
}

.file-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-upload-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 58px;
  padding: 0.55rem;
  border: 1px solid rgba(7,24,47,.16);
  background: #f8fbfd;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.file-upload:hover .file-upload-box,
.file-upload input[type="file"]:focus-visible + .file-upload-box {
  border-color: rgba(24,185,238,.75);
  background: #fff;
  box-shadow: 0 12px 28px rgba(5,25,48,.08);
}

.file-upload-button {
  flex: 0 0 auto;
  padding: 0.78rem 1rem;
  background: var(--blue-dark);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.file-upload-name {
  min-width: 0;
  color: #536679;
  font-weight: 600;
  font-size: 0.92rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .file-upload-box {
    align-items: stretch;
    flex-direction: column;
  }

  .file-upload-button {
    text-align: center;
  }

  .file-upload-name {
    white-space: normal;
  }
}

/* Services title line break fix */
.services-title {
  max-width: 24ch !important;
  font-size: clamp(2.15rem, 3.4vw, 2.95rem) !important;
}

@media (max-width: 760px) {
  .services-title {
    max-width: none !important;
  }
}

/* Blueprint background for process section */
.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(24,185,238,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,185,238,.055) 1px, transparent 1px),
    radial-gradient(circle at 88% 18%, rgba(24,185,238,.12), transparent 24%),
    #ffffff;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(24,185,238,.22);
}

.process-section::before {
  width: 180px;
  height: 180px;
  right: -70px;
  top: 70px;
  transform: rotate(45deg);
}

.process-section::after {
  width: 240px;
  height: 1px;
  left: 0;
  bottom: 76px;
  border-width: 1px 0 0;
}

.process-inner {
  position: relative;
  z-index: 1;
}

.process-line article {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
}

/* Contact form row layout refinement */
.contact-form label:has(select),
.contact-form label:has(textarea) {
  grid-column: 1 / -1;
}

/* Mobile header simplification */
@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .topbar-content {
    display: grid;
    gap: 0.65rem;
    padding: 0.8rem 0;
  }

  .topbar-contact {
    display: block;
  }

  .top-contact-item:not(.top-contact-mail) {
    display: none;
  }

  .top-contact-mail {
    display: grid;
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3.05rem;
    border-top: 1px solid rgba(255,255,255,.16);
  }

  .top-contact-mail::before {
    left: 1rem;
  }

  .navbar {
    min-height: 116px;
  }

  .brand-logo {
    width: 110px;
  }
}

/* Footer author credit */
.site-footer {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9fc 100%);
}

.footer-credit-wrap {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(8, 44, 78, 0.10);
}

.site-credit {
  width: fit-content;
  margin: 0;
  padding: 0.75rem 0.95rem;
  color: #536679;
  background: #ffffff;
  border: 1px solid rgba(8, 44, 78, 0.10);
  border-left: 4px solid var(--blue);
  box-shadow: 0 14px 34px rgba(5, 25, 48, 0.06);
  font-size: 0.88rem;
  line-height: 1.55;
}

.site-credit a {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.site-credit a:hover,
.site-credit a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .site-credit {
    width: 100%;
  }
}

/* Footer credit inline refinement */
.footer-text {
  display: grid;
  gap: 0.35rem;
}

.footer-text p {
  margin: 0;
}

.footer-credit-wrap {
  display: none;
}

.site-credit {
  width: auto;
  padding: 0;
  color: #6a7b8d;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 0.84rem;
  line-height: 1.45;
}

.site-credit a {
  color: var(--blue-dark);
  font-weight: 800;
}

/* Footer credit color and back-to-top icon */
.site-credit {
  color: #0f7fa8;
  font-weight: 700;
}

.site-credit a {
  color: var(--navy);
  border-bottom: 2px solid rgba(24,185,238,.35);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--blue-dark);
  font-weight: 800;
}

.back-to-top span {
  display: inline-grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  background: var(--blue);
  color: #fff;
  line-height: 1;
}

.back-to-top:hover span,
.back-to-top:focus-visible span {
  background: var(--navy);
}

/* Footer credit stronger distinction */
.footer-text > p:first-child {
  color: #425468;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-credit {
  color: #8a98a8;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-credit a {
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  border-bottom: 1px solid rgba(24,185,238,.55);
  text-transform: none;
}

/* Why section updated boiler-room crop */
.why-visual img {
  object-position: 50% 38%;
}

@media (max-width: 760px) {
  .why-visual img {
    object-position: 50% 35%;
  }
}

/* Fototermika service card */
.service-solar { --card-accent: #d98a13; }

/* Nine selected reference photos */
.work-gallery-nine {
  grid-template-columns: repeat(3, 1fr);
}

.work-gallery-nine .work-card {
  min-height: 250px;
}

@media (max-width: 900px) {
  .work-gallery-nine {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .work-gallery-nine {
    grid-template-columns: 1fr;
  }
}

/* Stabilize Why slider height to prevent mobile layout jumps */
.why-slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 440px;
}

.why-slide {
  min-height: 210px;
}

@media (max-width: 1040px) {
  .why-slider {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .why-slider {
    min-height: 330px !important;
  }

  .why-slide {
    min-height: 190px;
    align-content: center;
  }
}
