:root {
  --ink: #090a0e;
  --ink-2: #101318;
  --ink-card: #151820;
  --paper: #f3f2ee;
  --white: #ffffff;
  --silver: #cbd5e1;
  --muted: #94a3b8;
  --muted-dark: #5d6470;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --line-dark: rgba(15, 17, 21, 0.14);
  --max: 1240px;
  --pad: clamp(18px, 4vw, 48px);
  --display: "Inter Tight", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  z-index: 9999;
  background: var(--white);
  color: var(--ink);
  padding: 12px 16px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--silver);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(9, 10, 14, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 245px;
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.18s ease;
}

.brand:hover {
  opacity: 0.9;
}

.brand__logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

.brand--footer .brand__logo {
  height: 58px;
  max-width: 190px;
  margin-bottom: 18px;
}

.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white) !important;
  font-size: 0.84rem;
  font-weight: 750;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.nav-social:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  transform: translateY(-1px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.desktop-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  color: #d1d5db;
  font-weight: 700;
  transition: color 0.18s ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

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

.button--large {
  min-height: 56px;
  padding: 15px 22px;
}

.button--primary,
.button--white,
.button--amber {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.button--primary:hover,
.button--white:hover,
.button--amber:hover {
  background: #f1f5f9;
  border-color: #f1f5f9;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.18);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--line-strong);
}

.header-call {
  margin-left: 4px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 116px));
  display: grid;
  align-items: end;
  overflow: clip;
}

.hero__media,
.hero__scrim {
  position: absolute;
  inset: 0;
}

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

.hero__scrim {
  background:
    linear-gradient(90deg, rgba(8, 10, 13, 0.94) 0%, rgba(8, 10, 13, 0.84) 40%, rgba(8, 10, 13, 0.28) 72%, rgba(8, 10, 13, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 10, 13, 0.77) 0%, rgba(8, 10, 13, 0) 40%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(90px, 14vh, 150px);
  padding-bottom: clamp(70px, 10vh, 110px);
}

.hero__copy {
  max-width: 780px;
}

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.2vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-wrap: balance;
  color: var(--white);
}

.hero__lede {
  margin: 20px 0 0;
  max-width: 640px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: #e2e8f0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.proof-strip {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #e2e8f0;
  font-size: 0.86rem;
  font-weight: 700;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.proof-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.quick-facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
}

.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-facts__grid > div {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.quick-facts__grid > div:first-child {
  border-left: 1px solid var(--line);
}

.quick-facts strong {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.quick-facts span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.83rem;
}

.section {
  padding: clamp(78px, 10vw, 130px) 0;
  background: var(--ink);
  color: var(--white);
}

.section--light {
  background: var(--paper);
  color: #0f1115;
}

.section--light .eyebrow {
  color: #4b5563;
}

.section--light .split-heading h2,
.section--light .coverage-copy h2 {
  color: #0f1115;
}

.section--light .split-heading > p {
  color: #5d6470;
}

.section--light .service-list {
  border-top: 1px solid var(--line-dark);
}

.section--light .service-row {
  border-bottom: 1px solid var(--line-dark);
  color: #0f1115;
}

.section--light .service-row:hover {
  background-color: rgba(15, 17, 21, 0.02);
}

.section--light .service-row__num {
  color: #6b7280;
  font-weight: 850;
}

.section--light .service-row h3 {
  color: #0f1115;
}

.section--light .service-row p {
  color: #555d68;
}

.section--light .service-row > a {
  color: #0f1115;
}

.section--light .service-row > a:hover {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section--light .coverage-address {
  color: #0f1115;
}

.section--light .coverage-list {
  border-top: 1px solid var(--line-dark);
}

.section--light .coverage-list li {
  border-bottom: 1px solid var(--line-dark);
  color: #0f1115;
}

.section--light .text-link {
  color: #0f1115;
  border-bottom: 2px solid #0f1115;
}

.section--light .text-link:hover {
  opacity: 0.7;
}

.section--light .map-frame {
  background: #d8d7d1;
  border: 1px solid var(--line-dark);
}

.section--light .map-frame iframe {
  filter: grayscale(1) contrast(1.02);
}

.section-heading {
  margin-bottom: 54px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 60px;
}

.split-heading h2,
.owner-copy h2,
.final-cta h2,
.coverage-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.45rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: var(--white);
}

.split-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  max-width: 520px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.18s ease;
}

.service-row:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.service-row__num {
  font-family: var(--display);
  color: var(--white);
  font-weight: 850;
  font-size: 1.15rem;
}

.service-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.4vw, 2.25rem);
  letter-spacing: -0.035em;
  color: var(--white);
}

.service-row p {
  margin: 7px 0 0;
  color: #94a3b8;
  max-width: 760px;
}

.service-row > a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 850;
  color: var(--white);
  white-space: nowrap;
  transition: transform 0.18s ease;
}

.service-row > a:hover {
  transform: translateX(4px);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.photo-band {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 0.9fr;
  min-height: 420px;
  background: #060709;
}

.photo-band figure {
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  border-right: 2px solid var(--ink);
}

.photo-band figure:last-child {
  border-right: 0;
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-band figure:hover img {
  transform: scale(1.02);
}

/* Reviews Carousel */
.reviews-section {
  overflow: hidden;
}

.reviews-header {
  margin-bottom: 28px;
}

.reviews-header-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.carousel-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #14171f;
  border: 1px solid var(--line);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  padding: 0;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  transform: translateY(-2px);
}

.carousel-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  pointer-events: none;
}

.reviews-slider-wrap {
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 4px 16px 4px;
  cursor: grab;
  user-select: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.reviews-track:active {
  cursor: grabbing;
}

.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 280px;
  max-width: 380px;
  min-height: 220px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, #151821 0%, #0e1117 100%);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.review-card__badge {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
}

.review-card__text {
  margin: 0 0 16px;
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.55;
  flex-grow: 1;
}

.review-card__author {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__author strong {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.review-card__author span {
  font-size: 0.76rem;
  color: var(--silver);
  font-weight: 650;
}

.stars {
  color: #facc15;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.review-card--verify {
  background: linear-gradient(180deg, #1a1e28 0%, #11141b 100%);
  border-color: rgba(255, 255, 255, 0.22);
}

.review-card--verify h3 {
  margin: 6px 0 8px;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.verify-note {
  margin: 0 0 14px;
  color: #94a3b8;
  font-size: 0.82rem;
  line-height: 1.45;
}

.review-card--verify .review-verify__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.review-card--verify .button {
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.84rem;
}

.reviews-progress {
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
  margin-top: 14px;
  cursor: pointer;
  user-select: none;
  touch-action: none;
}

.reviews-progress::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  transition: background-color 0.18s ease;
}

.reviews-progress:hover::before {
  background: rgba(255, 255, 255, 0.22);
}

.reviews-progress:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
  border-radius: 4px;
}

.reviews-progress-bar {
  position: relative;
  z-index: 2;
  height: 4px;
  width: 33.33%;
  background: var(--white);
  border-radius: 4px;
  transition: transform 0.08s ease-out, width 0.12s ease-out, height 0.15s ease, box-shadow 0.15s ease;
  transform-origin: left center;
  cursor: grab;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.reviews-progress:hover .reviews-progress-bar {
  height: 6px;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
}

.reviews-progress.is-dragging .reviews-progress-bar {
  cursor: grabbing;
  height: 6px;
  background: #f1f5f9;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.6);
}

/* Gallery Section */
.section--gallery {
  background: #0b0d12;
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: #141720;
  border: 1px solid var(--line);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 10, 14, 0.05) 0%, rgba(9, 10, 14, 0.45) 50%, rgba(9, 10, 14, 0.94) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  pointer-events: none;
}

.gallery-item__badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 3px 9px;
  border-radius: 2px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-item__title {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.lightbox-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 9, 0.94);
  backdrop-filter: blur(18px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: min(1200px, 94vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 84vh;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption {
  margin-top: 16px;
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: var(--white);
}

.lightbox-close {
  position: absolute;
  top: -24px;
  right: -24px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-prev {
  position: absolute;
  left: -64px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  position: absolute;
  right: -64px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.08);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.08);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(38px, 7vw, 90px);
  align-items: stretch;
}

.coverage-copy {
  padding: 28px 0;
}

.coverage-address {
  font-size: 1.04rem;
  margin: 28px 0;
  color: #cbd5e1;
}

.coverage-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.coverage-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
  color: var(--white);
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 850;
  text-decoration: none;
  color: var(--white);
  border-bottom: 2px solid var(--white);
  transition: opacity 0.18s ease;
}

.text-link:hover {
  opacity: 0.8;
}

.map-frame {
  min-height: 540px;
  background: #13161c;
  border: 1px solid var(--line);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(0.85);
}

.owner-section {
  background: #0b0d11;
  border-top: 1px solid var(--line);
}

.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
}

.owner-photo {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.owner-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.owner-copy p:not(.eyebrow) {
  color: #cbd5e1;
  font-size: 1.04rem;
  max-width: 650px;
}

.owner-points {
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.owner-points span {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: #e2e8f0;
}

.final-cta {
  background: linear-gradient(135deg, #171a23 0%, #0a0c10 100%);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  color: var(--white);
  padding: clamp(58px, 8vw, 100px) 0;
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  max-width: 800px;
  color: var(--white);
}

.final-cta .button {
  min-width: 235px;
}

.site-footer {
  background: #08090c;
  color: #cbd5e1;
  padding: 70px 0 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr;
  gap: 70px;
}

.brand--footer {
  color: var(--white);
  margin-bottom: 22px;
}

.footer-grid h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

.footer-grid p,
.footer-grid address {
  margin: 0;
  color: #94a3b8;
  font-style: normal;
}

.footer-grid address a {
  color: var(--white);
  text-decoration: none;
}

.footer-grid address a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.footer-links a {
  color: var(--white);
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #64748b;
  font-size: 0.84rem;
  flex-wrap: wrap;
}

.footer-copyright {
  margin: 0;
  color: #64748b;
}

/* Professional Ignite Footer Credit */
.ignite-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-size: 0.8125rem;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ignite-credit:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.ignite-credit__label {
  color: #94a3b8;
  font-weight: 400;
}

.ignite-credit__name {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.ignite-credit__arrow {
  color: #64748b;
  font-size: 0.75rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ignite-credit:hover .ignite-credit__arrow {
  color: #ffffff;
  transform: translate(1px, -1px);
}

.footer-back-to-top {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.18s ease;
}

.footer-back-to-top:hover {
  color: var(--white);
}

.mobile-call-dock {
  display: none;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .hero {
    min-height: 690px;
  }

  .hero__scrim {
    background: linear-gradient(90deg, rgba(8, 10, 13, 0.94) 0%, rgba(8, 10, 13, 0.84) 62%, rgba(8, 10, 13, 0.35) 100%), linear-gradient(0deg, rgba(8, 10, 13, 0.78) 0%, rgba(8, 10, 13, 0) 45%);
  }

  .quick-facts__grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-facts__grid > div {
    border-bottom: 1px solid var(--line);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-row {
    grid-template-columns: 48px 1fr;
  }

  .service-row > a {
    grid-column: 2;
    justify-self: start;
  }

  .photo-band {
    grid-template-columns: 1fr 1fr;
  }

  .photo-band__main {
    grid-column: 1 / -1;
  }

  .review-card {
    flex: 0 0 calc((100% - 18px) / 2);
    min-width: 260px;
    max-width: none;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .coverage-grid,
  .owner-grid {
    grid-template-columns: 1fr;
  }

  .coverage-copy {
    padding-top: 0;
  }

  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }

  .lightbox-close {
    top: -18px;
    right: 12px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 80px;
  }

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

  .brand__logo {
    height: 38px;
    max-width: 140px;
  }

  .lightbox-figure img {
    max-height: 65vh;
  }

  .lightbox-caption {
    font-size: 0.95rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 42px;
  }

  .site-header {
    top: 0;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .brand {
    min-width: auto;
  }

  .brand__text {
    font-size: 0.7rem;
  }

  .brand__text small {
    font-size: 0.6rem;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 620px;
    align-items: end;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__scrim {
    background: linear-gradient(0deg, rgba(8, 10, 13, 0.98) 0%, rgba(8, 10, 13, 0.84) 54%, rgba(8, 10, 13, 0.22) 100%);
  }

  .hero__inner {
    padding-top: 150px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10.5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
  }

  .hero__lede {
    margin-top: 16px;
    font-size: 0.96rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .proof-strip {
    display: grid;
    gap: 8px;
  }

  .quick-facts__grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-facts__grid > div {
    min-height: 110px;
    padding: 18px;
  }

  .quick-facts strong {
    font-size: 1.3rem;
  }

  .quick-facts span {
    font-size: 0.76rem;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .service-row {
    padding: 24px 0;
    gap: 14px;
  }

  .service-row__num {
    font-size: 0.8rem;
  }

  .photo-band {
    display: grid;
    grid-template-columns: 1fr;
  }

  .photo-band figure,
  .photo-band__main {
    grid-column: auto;
    min-height: 280px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .review-card {
    flex: 0 0 84%;
    min-width: 250px;
    padding: 20px 18px;
  }

  .reviews-track {
    gap: 14px;
    padding-bottom: 14px;
  }

  .carousel-controls {
    margin-top: 4px;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 390px;
  }

  .owner-points {
    grid-template-columns: 1fr;
  }

  .owner-copy .button {
    width: 100%;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call-dock {
    display: block;
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 9px 10px max(9px, env(safe-area-inset-bottom));
    background: rgba(8, 9, 12, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
  }

  .mobile-call-dock a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: var(--white);
    color: var(--ink);
    text-decoration: none;
    font-family: var(--display);
    font-weight: 900;
    border-radius: 2px;
  }

  .mobile-call-dock span {
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.75rem;
  }

  .mobile-call-dock strong {
    font-size: 1.08rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}