:root {
  --bg: #f5fbff;
  --bg-strong: #dff8f7;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --ink: #0d3752;
  --ink-soft: #3f6780;
  --line: rgba(18, 121, 176, 0.16);
  --blue: #00a8f0;
  --blue-deep: #0078c7;
  --blue-soft: #8fdcff;
  --green: #16c27a;
  --green-deep: #0b8d68;
  --mist: #e8f9ff;
  --shadow: 0 28px 70px rgba(0, 98, 167, 0.16);
  --radius: 40px;
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 36%, #f0fffb 100%);
}

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

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

.page-shell {
  overflow: clip;
}

.section-pad {
  padding: 5rem clamp(1.2rem, 4vw, 3rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(calc(100% - 1.6rem), var(--max));
  margin: 1rem auto 0;
  padding: 1rem 1.25rem;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand img {
  width: clamp(9rem, 15vw, 13rem);
  height: auto;
}

.brand span:last-child {
  display: grid;
}

.brand strong,
.brand small {
  line-height: 1;
}

.brand strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--blue-deep);
}

.brand small {
  margin-top: 0.25rem;
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.site-nav a:hover,
.mini-link:hover,
.site-footer a:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 0.7rem;
}

.mini-link {
  font-weight: 700;
  color: var(--ink-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.button-solid {
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff;
  box-shadow: 0 18px 38px rgba(11, 141, 104, 0.28);
}

.button-solid:hover {
  box-shadow: 0 22px 44px rgba(11, 141, 104, 0.35);
}

.button-outline {
  border: 1px solid rgba(0, 120, 199, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

.button-outline:hover {
  border-color: rgba(0, 168, 240, 0.38);
  background: rgba(255, 255, 255, 0.92);
}

.eyebrow {
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--blue-deep);
}

.hero {
  position: relative;
  width: 100%;
  min-height: auto;
  margin: 0;
  padding: 2rem 0 0;
  overflow: visible;
}

.hero h1,
.section-heading h2,
.showcase-copy h2,
.cta-copy h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(2.9rem, 4.1vw, 4.6rem);
  max-width: 11ch;
  color: #ffffff;
  line-height: 0.98;
  text-wrap: pretty;
}

.hero-lead,
.showcase-copy p,
.section-heading p,
.cta-copy p,
.process-grid p,
.stats-grid p,
.feature-grid p,
.testimonial-grid p {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.hero-lead {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.32rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.25rem 0;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 46rem;
}

.hero-facts article,
.stats-grid article,
.testimonial-grid article,
.process-grid article,
.contact-card,
.feature-grid article {
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-facts article {
  padding: 0 1rem 0 0;
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-facts article:last-child {
  border-right: 0;
}

.hero-facts strong,
.contact-card dt {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9beccc;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.hero-media {
  position: relative;
  min-height: 780px;
  width: 100%;
}

.hero-image {
  position: relative;
  margin: 0;
  min-height: 780px;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 38, 58, 0.58) 0%, rgba(7, 38, 58, 0.34) 34%, rgba(7, 38, 58, 0.12) 60%, rgba(7, 38, 58, 0.03) 100%),
    linear-gradient(180deg, rgba(7, 38, 58, 0.06) 0%, rgba(7, 38, 58, 0.16) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 780px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 3;
}

.hero-copy {
  width: min(calc(100% - 2.4rem), 1120px);
  margin: 0 auto;
  padding: 3rem 0 3.25rem;
}

.hero .eyebrow {
  color: #9fdcff;
  margin-bottom: 0.85rem;
}

.hero-copy > * {
  max-width: 40rem;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .hero-actions,
.hero-copy .hero-facts {
  margin-left: 0;
}

.hero-copy h1,
.hero-copy .hero-lead {
  text-shadow: 0 8px 30px rgba(7, 38, 58, 0.24);
}

.hero-outline {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 120, 199, 0.28);
}

.hero-outline:hover {
  background: linear-gradient(135deg, #0087d8, #21b8ff);
  box-shadow: 0 22px 44px rgba(0, 120, 199, 0.34);
}

.showcase-image img,
.mosaic-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-band {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 3.5rem;
}

.reviews-band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: -2;
  pointer-events: none;
}

.video-band {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: calc(100% + 5rem);
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.video-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 251, 255, 0.08) 0%, rgba(245, 251, 255, 0.18) 52%, rgba(255, 255, 255, 0.72) 88%, #ffffff 100%);
}

.video-band video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.9) brightness(1.06);
}

.reviews-intro {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
  max-width: none;
  justify-items: center;
  text-align: center;
}

.reviews-intro h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.reviews-link img {
  display: block;
  width: 10.5rem;
  height: auto;
  opacity: 0.9;
}

.reviews-link:hover img {
  opacity: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.reviews-grid article {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(13, 55, 82, 0.06);
}

.reviews-grid p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
}

.reviews-grid span {
  font-weight: 800;
  color: var(--blue-deep);
}

.reviews-supporting {
  max-width: 58rem;
  margin: 2.2rem auto 0;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(0, 168, 240, 0.18);
  text-align: center;
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.65;
  font-weight: 600;
  color: rgba(13, 55, 82, 0.78);
}

.split-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 4rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.split-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -8rem;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 34%, var(--bg) 100%);
  z-index: -2;
}

.showcase-image {
  position: relative;
  height: 36rem;
  overflow: hidden;
  border-radius: 2.5rem 8rem 2.5rem 8rem;
  box-shadow: var(--shadow);
}

.showcase-image::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1px solid rgba(0, 168, 240, 0.18);
  border-radius: 2.5rem 8rem 2.5rem 8rem;
  z-index: -1;
}

.showcase-copy h2,
.section-heading h2,
.cta-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  margin-bottom: 1rem;
}

.showcase-copy {
  max-width: 38rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 1rem;
  margin-top: 2.4rem;
}

.feature-grid article,
.stats-grid article,
.process-grid article,
.testimonial-grid article {
  padding: 1.1rem 0 0.4rem;
  border-radius: 0;
  border-top: 3px solid rgba(0, 168, 240, 0.2);
}

.feature-grid h3,
.stats-grid h3,
.process-grid h3 {
  margin: 0 0 0.7rem;
  font-size: 1.28rem;
}

.feature-grid p,
.stats-grid p,
.process-grid p,
.testimonial-grid p {
  margin: 0;
}

.section-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 2px solid rgba(0, 168, 240, 0.16);
}

.section-cta p {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.section-cta a {
  font-weight: 800;
  color: var(--green-deep);
}

.section-cta a:hover {
  color: var(--blue-deep);
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
  max-width: 60rem;
}

.section-heading.narrow {
  max-width: 40rem;
}

.gallery-strap {
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto;
  padding: 0 0 1.25rem;
}

.gallery-strap p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  color: rgba(13, 55, 82, 0.44);
  text-align: center;
}

.gallery-heading {
  margin: 0 auto 2rem;
  text-align: center;
  justify-items: center;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  min-height: 17rem;
  border-radius: 2.2rem;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-card:hover img {
  transform: scale(1.02);
}

.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 100%;
}

.gallery-card-wide {
  grid-column: span 2;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.about-copy {
  max-width: 42rem;
}

.about-copy h2 {
  margin: 0 0 1.15rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.about-copy p:not(.eyebrow) {
  margin: 0 0 1.15rem;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(22rem, 1fr) minmax(17rem, 0.75fr);
  gap: 1rem;
  min-height: 40rem;
}

.about-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.about-photo-large {
  grid-column: 1 / -1;
  border-radius: 2rem 4rem 2rem 4rem;
}

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

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 26rem;
  gap: 2rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.cta-copy {
  max-width: 48rem;
  padding-right: 3rem;
}

.contact-card {
  padding: 1.6rem;
  border-radius: 3rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
    linear-gradient(135deg, rgba(143, 220, 255, 0.24), rgba(22, 194, 122, 0.12));
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 120, 199, 0.14);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  padding: 1rem 1.1rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(63, 103, 128, 0.72);
}

.contact-form .button {
  width: 100%;
  margin-top: 0.35rem;
}

.site-footer {
  width: min(calc(100% - 2.4rem), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0 2.8rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.3;
  flex-wrap: wrap;
}

.site-footer strong {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.footer-brand,
.footer-contact,
.footer-social {
  display: flex;
  align-items: center;
}

.footer-brand {
  gap: 0.65rem;
  flex-wrap: wrap;
}

.footer-contact {
  gap: 0.85rem;
  font-weight: 600;
}

.footer-contact a {
  white-space: nowrap;
}

.footer-social {
  gap: 0.7rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(13, 55, 82, 0.48);
}

.footer-social a:hover {
  color: rgba(13, 55, 82, 0.8);
}

.footer-social svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.footer-credit {
  flex-basis: 100%;
  text-align: left;
  font-size: 11px;
  color: #707070;
}

.footer-credit a {
  color: #707070;
}

body.lightbox-open {
  overflow: hidden;
}

body.lightbox-open .page-shell {
  filter: blur(14px);
  transform: scale(1.01);
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.lightbox-shell {
  position: relative;
  z-index: 1;
  width: min(96vw, 1360px);
  display: grid;
  justify-items: center;
  grid-template-rows: auto auto auto auto;
  min-height: auto;
  padding-top: 1.25rem;
}

.lightbox-header {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.lightbox-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(13, 55, 82, 0.35);
}

.lightbox-title {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1;
}

.lightbox-stage {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}

.lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  max-width: min(94vw, 1240px);
  height: auto;
  display: grid;
  place-items: center;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(13, 55, 82, 0.12);
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(13, 55, 82, 0.92);
  font: inherit;
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
}

.lightbox-meta {
  margin-top: 0.35rem;
  padding-bottom: 0.4rem;
  font-size: 0.95rem;
  color: rgba(13, 55, 82, 0.46);
  text-align: center;
}

.lightbox-thumbs {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.55rem;
  flex-wrap: wrap;
}

.lightbox-thumb {
  width: 3.4rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  opacity: 0.42;
  cursor: pointer;
}

.lightbox-thumb.is-active {
  opacity: 1;
  border-color: rgba(13, 55, 82, 0.16);
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 1100px) {
  .hero,
  .split-showcase,
  .about-section,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    width: 100%;
  }

  .hero-media,
  .hero-image {
    min-height: 34rem;
  }

  .hero-image img {
    height: 34rem;
  }

  .hero-overlay {
    align-items: flex-end;
  }

  .hero-copy {
    padding-bottom: 2.25rem;
  }

  .split-showcase {
    gap: 2.5rem;
  }

  .showcase-image {
    height: 32rem;
  }

  .showcase-image::before {
    inset: 0.9rem -0.9rem -0.9rem 0.9rem;
  }

  .about-copy {
    max-width: 48rem;
  }

  .about-gallery {
    min-height: 30rem;
  }

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

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    max-width: 32rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 0.85rem 1rem;
  }

  .brand {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .brand img {
    width: 13rem;
  }

  .brand span:last-child {
    display: none;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 1rem;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    padding-right: 0;
  }

  .header-actions .button {
    min-height: 2.9rem;
    padding: 0.75rem 1.25rem;
  }

  .hero {
    padding-top: 0;
  }

  .hero-facts,
  .reviews-grid,
  .feature-grid,
  .gallery-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
  }

  .reviews-intro h2 {
    white-space: normal;
  }

  .video-band {
    top: -1.5rem;
    height: 24rem;
  }

  .reviews-supporting {
    margin-top: 1.8rem;
  }

}

@media (max-width: 620px) {
  .section-pad {
    padding: 3.25rem 1.5rem;
  }

  .site-header {
    position: relative;
  }

  .reviews-band,
  .gallery-strap {
    width: min(calc(100% - 3rem), var(--max));
  }

  .hero-media,
  .hero-image {
    min-height: 880px;
  }

  .hero-image img {
    height: 880px;
  }

  .hero-copy {
    width: 100%;
    padding: 2.35rem 1.5rem;
  }

  .hero .eyebrow {
    font-size: 0.72rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: 2.65rem;
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 1.1rem;
    line-height: 1.55;
  }

  .hero-facts {
    gap: 0.85rem;
  }

  .hero-facts article {
    padding-right: 0;
    border-right: 0;
  }

  .hero-facts strong {
    margin-bottom: 0.25rem;
    font-size: 0.76rem;
  }

  .hero-facts span {
    font-size: 0.98rem;
  }

  .hero-actions {
    margin: 1.4rem 0;
  }

  .reviews-supporting {
    padding-top: 1.35rem;
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .split-showcase {
    gap: 2.25rem;
  }

  .showcase-copy {
    max-width: none;
  }

  .showcase-copy h2 {
    font-size: 2.25rem;
    line-height: 1.04;
    max-width: 11ch;
  }

  .section-heading h2,
  .about-copy h2,
  .cta-copy h2 {
    font-size: 2.25rem;
    line-height: 1.04;
  }

  .showcase-copy p,
  .feature-grid p,
  .about-copy p:not(.eyebrow),
  .cta-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .showcase-image {
    height: 24rem;
    border-radius: 2rem 4rem 2rem 4rem;
  }

  .showcase-image::before {
    inset: 0.7rem -0.7rem -0.7rem 0.7rem;
    border-radius: 2rem 4rem 2rem 4rem;
  }

  .feature-grid {
    gap: 1rem;
    margin-top: 1.8rem;
  }

  .feature-grid article {
    padding: 1rem 0 1.15rem;
  }

  .feature-grid h3 {
    font-size: 1.12rem;
  }

  .section-cta {
    align-items: flex-start;
    margin-top: 1.8rem;
  }

  .gallery-card-large,
  .gallery-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .about-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .about-photo,
  .about-photo-large {
    height: 18rem;
    border-radius: 2rem;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-shell {
    width: min(96vw, 1200px);
    padding-top: 0.75rem;
  }

  .lightbox-close {
    top: -0.1rem;
    font-size: 2rem;
  }

  .lightbox-meta {
    margin-top: 0.6rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .js-enabled [data-reveal] {
    transition: none;
  }

  .hero-image::after {
    animation: none;
  }
}
