@import url("https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap");

/* =========================================================
   VIZIMAGE SITE — CLEAN CONSOLIDATED STYLESHEET
   Pages covered:
   - Home
   - Services
   - Working with Vizimage
   - Utility pages
   - Mobile navigation
   - Homepage video modal
   ========================================================= */

/* -------------------------
   Tokens / Base
   ------------------------- */

:root {
  --black: #000000;
  --near-black: #050505;
  --soft-black: #0b0b0b;
  --charcoal: #171717;

  --red: #e00018;
  --red-dark: #a90012;

  --white: #ffffff;
  --off-white: #f5f5f5;
  --cream: #f2ede7;

  --copy-gray: #cfcfcf;
  --muted-gray: #8c8c8c;
  --line: rgba(255, 255, 255, 0.16);

  --font-display: "Special Gothic Expanded One", Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;

  --desktop-live: 1440px;
  --mobile-rail: 15px;

  --header-height-desktop: 64px;
  --header-height-mobile: 67px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-body);
}

body.video-modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.live-area {
  width: min(calc(100% - 30px), var(--desktop-live));
  margin-inline: auto;
}

/* -------------------------
   Display typography
   ------------------------- */

h1,
h2,
h3,
h4,
.logo-text,
.desktop-nav,
.nav-phone,
.nav-book,
.primary-pill,
.mobile-nav-panel a,
.red-subhead,
.hv2-redline,
.sv2-redline,
.wv2-redline,
.hv2-package-card p,
.hv2-package-card h2,
.sv2-partners,
.wv2-stats strong,
.wv2-stats p,
.video-modal-count,
.video-modal-placeholder span {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

/* -------------------------
   Header / Navigation
   ------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
}

.nav-inner {
  width: min(calc(100% - 30px), var(--desktop-live));
  height: var(--header-height-desktop);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 210px 220px 1fr;
  align-items: center;
  gap: 26px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.logo-text {
  font-size: 28px;
  letter-spacing: -0.06em;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.nav-social-dot {
  width: 27px;
  height: 27px;
  border-radius: 999px;
  background: var(--red);
  position: relative;
}

.nav-social-dot::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: var(--white);
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.desktop-nav a {
  opacity: 0.94;
}

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

.nav-book,
.primary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px 25px;
  border-radius: 999px;
  border: 0;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.nav-book:hover,
.primary-pill:hover {
  background: #f11d27;
  color: var(--white);
}

.primary-pill.centered {
  margin-inline: auto;
}

.primary-pill.small {
  min-height: 40px;
  padding: 12px 22px;
}

.mobile-menu-button,
.mobile-phone-bar,
.mobile-nav-panel {
  display: none;
}

/* -------------------------
   Footer
   ------------------------- */

.site-footer {
  padding: 38px 0;
  background: #080808;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

/* =========================================================
   HOME PAGE
   ========================================================= */

.home-v2 {
  background: #000;
}

/* Home hero */

.hv2-hero {
  position: relative;
  min-height: 1325px;
  padding-top: var(--header-height-desktop);
  overflow: hidden;
  background: #000;
}

.hv2-hero-bg {
  position: absolute;
  inset: var(--header-height-desktop) 0 auto;
  height: 675px;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.34) 58%,
      rgba(0,0,0,1) 100%
    ),
    url("/assets/Images/Home/Desktop-hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hv2-hero-copy {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 30px), var(--desktop-live));
  margin-inline: auto;
  padding-top: 190px;
  text-align: center;
}

.hv2-hero-copy h1 {
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(54px, 5.2vw, 98px);
  line-height: 0.95;
  letter-spacing: 0.035em;
  text-shadow: 0 8px 28px rgba(0,0,0,0.6);
}

.hv2-hero-copy p {
  width: fit-content;
  margin: 24px auto 0;
  padding: 12px 22px;
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

/* Home video feature: 3 clickable phones */

.hv2-media-stage.video-feature-carousel {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 30px), 1680px);
  height: 560px;
  margin: 100px auto 0;
  padding: 0;
  overflow: visible;
}

.video-feature-stage {
  position: relative;
  z-index: 6;
  width: min(760px, 100%);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 34px;
}

.video-card {
  appearance: none;
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease;
}

.video-card:hover {
  transform: translateY(-6px);
  filter: brightness(1.05);
}

.video-card.main {
  z-index: 4;
}

.video-card-media {
  position: relative;
  width: 210px;
  height: 400px;
  overflow: hidden;
  border: 8px solid #090909;
  border-radius: 38px;
  background:
    radial-gradient(circle at 55% 30%, rgba(255,255,255,0.22), transparent 23%),
    linear-gradient(135deg, #777, #151515);
  box-shadow: 0 30px 90px rgba(0,0,0,0.72);
}

.video-card.main .video-card-media {
  width: 300px;
  height: 560px;
  border-radius: 42px;
}

.video-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255,255,255,0.18) 36% 44%, transparent 45%),
    linear-gradient(180deg, rgba(224,0,24,0.08), rgba(0,0,0,0.38));
  pointer-events: none;
}

.video-card-media::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 82px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #030303;
}

.video-thumb-1 {
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255,255,255,0.18) 36% 44%, transparent 45%),
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.35)),
    linear-gradient(135deg, #78c9ff, #395c31);
}

.video-thumb-2 {
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255,255,255,0.18) 36% 44%, transparent 45%),
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.35)),
    linear-gradient(135deg, #e8d0a7, #764424);
}

.video-thumb-3 {
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255,255,255,0.18) 36% 44%, transparent 45%),
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.35)),
    linear-gradient(135deg, #f0e6d6, #ad7e55);
}

/* =========================================================
   HOMEPAGE VIDEO PLAY BUTTON IMAGE STATES
========================================================= */

.home-v2 .video-play-button {
  position: absolute;
  z-index: 8;
  left: 50%;
  top: 50%;

  width: 58px;
  height: 58px;

  display: block;
  transform: translate(-50%, -50%);

  background: transparent url("/assets/Images/Home/Video-UI/Play-button-inactive.png") center / contain no-repeat !important;

  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px;

  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  pointer-events: none;
}

.home-v2 .video-card:hover .video-play-button,
.home-v2 .video-card:focus-visible .video-play-button {
  background: transparent url("/assets/Images/Home/Video-UI/Play-button-hover.png") center / contain no-repeat !important;
}

/* =========================================================
   HOMEPAGE VIDEO CAROUSEL THUMBNAILS
   Static thumbnails in phone previews; videos play in modal.
========================================================= */

.home-v2 .video-card-media {
  position: relative;
  overflow: hidden;
  background-color: #000;
  isolation: isolate;
}

.home-v2 .home-carousel-thumb {
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center center;

  border: 0;
  background: #000;
}

.home-v2 .video-card-media::before {
  z-index: 2;
}

.home-v2 .video-card-media::after {
  z-index: 3;
}

.home-v2 .video-play-button {
  z-index: 8;
}

.hv2-zillow {
  position: absolute;
  right: 12%;
  top: 90px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
}

.hv2-zillow strong {
  font-size: 34px;
}

.hv2-lens {
  position: absolute;
  right: -60px;
  bottom: 62px;
  width: 275px;
  height: 275px;
  border-radius: 50%;
  border: 38px solid rgba(255,255,255,0.16);
}

.hv2-lens::after {
  content: "";
  position: absolute;
  inset: 48px;
  border-radius: 50%;
  border: 28px solid rgba(255,255,255,0.11);
}

.hv2-carousel-ui {
  position: relative;
  z-index: 6;
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 8px;
  margin-top: 18px;
}

.hv2-dots {
  display: flex;
  gap: 8px;
}

.hv2-dots span {
  width: 10px;
  height: 10px;
  border: 1px solid var(--red);
  border-radius: 50%;
}

.hv2-dots .active {
  background: var(--red);
}

.hv2-arrows {
  display: flex;
  gap: 22px;
  color: var(--red);
  font-size: 38px;
  line-height: 1;
}

/* =========================================================
   HOME PACKAGES — CLEAN NATURAL CARD SYSTEM
   Package section only
========================================================= */

.hv2-packages {
  padding: 70px 0 96px;
  background: #ffffff;
  color: #000000;
  overflow: visible;
}

.home-v2 .hv2-packages .live-area {
  width: min(calc(100% - 80px), 1560px);
  max-width: none;
  margin-inline: auto;
}

.home-v2 .hv2-package-grid.package-grid-4 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  overflow: visible;
}

/* -------------------------
   Package card base
------------------------- */

.home-v2 .package-card,
.home-v2 .hv2-package-card {
  position: relative;
  width: 100%;
  min-width: 0;

  height: auto;
  min-height: 0;
  max-height: none;

  padding: 0;
  overflow: visible;

  background: #ffffff;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 4px;

  box-shadow:
    0 20px 62px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);

  transform: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

/* subtle card overlap and hierarchy on desktop */
@media (min-width: 1200px) {
  .home-v2 .hv2-package-grid.package-grid-4 > .package-card + .package-card {
    margin-left: -10px;
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card:nth-child(1) {
    margin-top: 24px;
    z-index: 1;
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card:nth-child(2),
  .home-v2 .hv2-package-grid.package-grid-4 > .package-card:nth-child(4) {
    margin-top: 12px;
    z-index: 2;
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card.is-featured {
    margin-top: -8px;
    z-index: 6;
    border: 2px solid var(--red);
    box-shadow:
      0 30px 92px rgba(0, 0, 0, 0.18),
      0 0 0 1px rgba(224, 0, 24, 0.24);
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card:hover {
    z-index: 9;
    transform: translateY(-4px);
    box-shadow:
      0 30px 90px rgba(0, 0, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card.is-featured:hover {
    transform: translateY(-10px);
  }
}

/* -------------------------
   Package header image area
------------------------- */

.home-v2 .package-preview {
  position: relative;
  height: 145px;
  display: block;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22)),
    linear-gradient(135deg, #f2f2f2, #b8b8b8);
}

.home-v2 .package-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 18%;
}

.home-v2 .package-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.82) 100%
  );
}

.home-v2 .package-card.is-featured .package-preview::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.home-v2 .package-card.is-featured .package-preview img {
  filter: brightness(0.56) contrast(1.08) saturate(0.96);
}

.home-v2 .package-card.is-featured .package-preview strong {
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 4;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 24px;
  padding: 7px 17px 6px;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;

  font-family: var(--font-display);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* -------------------------
   Package content
------------------------- */

.home-v2 .package-card-body {
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: visible;

  display: block;
  padding: 32px 34px 32px;
}

.home-v2 .package-title-row {
  display: block;
  margin-bottom: 18px;
}

.home-v2 .package-title-row h2 {
  margin: 0 0 12px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(30px, 2.1vw, 46px);
  line-height: 0.95;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.home-v2 .package-title-row span {
  display: inline-flex;
  width: fit-content;
  max-width: none;
  padding: 7px 14px 6px;
  border-radius: 999px;
  background: rgba(224, 0, 24, 0.09);
  color: var(--red);

  font-family: var(--font-display);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-v2 .package-copy {
  min-height: 0;
  margin: 0 0 28px;
  color: #171717;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 900;
}

.home-v2 .package-starting {
  margin: 0 0 4px;
  color: #555555;
  font-family: var(--font-display);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-v2 .package-price {
  margin: 0 0 22px;
  color: #000000;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.4vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

/* featured card color inversion */
.home-v2 .package-card.is-featured {
  background: #050505;
  color: #ffffff;
}

.home-v2 .package-card.is-featured .package-card-body {
  background: #050505;
}

.home-v2 .package-card.is-featured .package-title-row h2,
.home-v2 .package-card.is-featured .package-price {
  color: #ffffff;
}

.home-v2 .package-card.is-featured .package-title-row span {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.home-v2 .package-card.is-featured .package-copy,
.home-v2 .package-card.is-featured .package-starting {
  color: rgba(255, 255, 255, 0.88);
}

/* -------------------------
   Package accordion rows
------------------------- */

.home-v2 .package-services,
.home-v2 .package-accordion,
.home-v2 .package-service {
  height: auto;
  min-height: 0;
  max-height: none;
  overflow: visible;
}

.home-v2 .package-services {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.home-v2 .package-service {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.home-v2 .package-service summary {
  min-height: 40px;
  padding: 11px 0;
  list-style: none;
  cursor: pointer;

  color: #101010;
  font-size: 13px;
  line-height: 1.22;
  font-weight: 900;
}

.home-v2 .package-service summary::-webkit-details-marker {
  display: none;
}

.home-v2 .package-service summary::after {
  content: "⌄";
  float: right;
  color: var(--red);
  font-size: 13px;
  line-height: 1;
}

.home-v2 .package-service[open] summary::after {
  content: "⌃";
}

.home-v2 .package-service p {
  margin: 0;
  padding: 0 0 13px;
  color: #333333;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.home-v2 .package-card.is-featured .package-services {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.home-v2 .package-card.is-featured .package-service {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.home-v2 .package-card.is-featured .package-service summary {
  color: #ffffff;
}

.home-v2 .package-card.is-featured .package-service p {
  color: rgba(255, 255, 255, 0.72);
}

/* -------------------------
   Package CTA
------------------------- */

.home-v2 .package-cta {
  width: 100%;
  min-height: 46px;
  margin-top: 22px;
  padding: 14px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;

  font-family: var(--font-display);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  overflow: hidden;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.home-v2 .package-cta span {
  display: inline-block;
  max-width: none;
  color: inherit;
  font-size: 14px;
  line-height: 1;
}

.home-v2 .package-cta:hover,
.home-v2 .package-cta:focus-visible {
  background: #ffffff;
  color: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(224, 0, 24, 0.14);
}

.home-v2 .package-cta:active {
  transform: translateY(0);
  box-shadow: none;
}

.home-v2 .package-card.is-featured .package-cta {
  background: #ffffff;
  color: var(--red);
}

.home-v2 .package-card.is-featured .package-cta:hover,
.home-v2 .package-card.is-featured .package-cta:focus-visible {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
}

/* -------------------------
   Package responsive states
------------------------- */

@media (min-width: 761px) and (max-width: 1199px) {
  .home-v2 .hv2-packages .live-area {
    width: min(calc(100% - 40px), 940px);
  }

  .home-v2 .hv2-package-grid.package-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card {
    margin: 0;
    transform: none;
  }
}

@media (max-width: 760px) {
  .hv2-packages {
    padding: 48px 0 58px;
  }

  .home-v2 .hv2-packages .live-area {
    width: calc(100% - 30px);
  }

  .home-v2 .hv2-package-grid.package-grid-4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card {
    margin: 0;
    transform: none;
  }

  .home-v2 .package-preview {
    height: 126px;
  }

  .home-v2 .package-card-body {
    padding: 24px;
  }

  .home-v2 .package-title-row h2 {
    font-size: 29px;
  }

  .home-v2 .package-copy {
    font-size: 13px;
  }

  .home-v2 .package-price {
    font-size: 38px;
  }

  .home-v2 .package-card:hover,
  .home-v2 .package-card.is-featured:hover {
    transform: none;
  }
}

/* Home success / logos / availability / contact */

.hv2-success {
  padding: 88px 0 110px;
  background: #fff;
  color: #000;
  text-align: center;
}

.hv2-success h2 {
  max-width: 1180px;
  margin: 0 auto 26px;
  font-size: clamp(48px, 5.1vw, 88px);
  line-height: 0.98;
  letter-spacing: 0.035em;
}

.hv2-redline {
  max-width: 900px;
  margin: 0 auto 30px;
  color: var(--red);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.12;
  letter-spacing: 0.08em;
}

.hv2-success-copy {
  max-width: 840px;
  margin: 0 auto 34px;
  color: #111;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 700;
}

.hv2-logo-strip {
  padding: 30px 0;
  overflow: hidden;
  background: #fff;
  color: #111;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.hv2-logo-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  min-width: max-content;
  font-size: 18px;
  font-weight: 900;
}

.hv2-availability {
  position: relative;
  min-height: 725px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  color: #fff;
  text-align: center;
}

.hv2-availability-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.56) 50%, rgba(0,0,0,0.9) 100%),
    radial-gradient(circle at 70% 40%, rgba(0,143,220,0.35), transparent 32%),
    linear-gradient(135deg, #4f4f4f, #101010 65%, #000);
}

.hv2-availability .live-area {
  position: relative;
  z-index: 2;
}

.hv2-availability h2 {
  max-width: 1180px;
  margin: 0 auto 28px;
  color: #fff;
  font-size: clamp(54px, 6vw, 112px);
  line-height: 0.94;
  letter-spacing: 0.045em;
}

.hv2-availability > .live-area > p {
  max-width: 920px;
  margin: 0 auto 58px;
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.hv2-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  max-width: 760px;
  margin: 0 auto;
}

.hv2-benefits article {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.hv2-benefits span {
  width: 70px;
  height: 70px;
  border: 4px solid var(--red);
  border-radius: 50%;
}

.hv2-benefits p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.hv2-contact {
  padding: 92px 0 88px;
  background: #fff;
  color: #000;
  text-align: center;
}

.hv2-contact h2 {
  max-width: 900px;
  margin: 0 auto 24px;
  color: #000;
  font-size: clamp(54px, 5.6vw, 98px);
  line-height: 0.92;
  letter-spacing: 0.08em;
}

.hv2-contact-icons {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin: 32px 0;
}

.hv2-contact-icons span {
  width: 70px;
  height: 70px;
  border: 3px solid var(--red);
  border-radius: 50%;
}

.hv2-contact p:not(.hv2-redline) {
  max-width: 850px;
  margin: 0 auto 30px;
  color: #000;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

/* Home video modal */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.84);
  backdrop-filter: blur(12px);
}

.video-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(390px, calc(100vw - 34px));
  display: grid;
  justify-items: center;
  gap: 14px;
}

.video-modal-close {
  position: absolute;
  top: -22px;
  right: -8px;
  z-index: 4;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 18px;
  line-height: 1;
}

.video-modal-frame {
  position: relative;
  width: min(320px, calc(100vw - 70px));
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 7px solid #090909;
  border-radius: 34px;
  background: #111;
  box-shadow: 0 30px 110px rgba(0,0,0,0.72);
}

.video-modal-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-modal-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(135deg, #222, #8b0015 60%, #090909);
}

.video-modal-placeholder span {
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-align: center;
}

.video-modal-controls {
  display: grid;
  grid-template-columns: 34px auto 34px;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.video-modal-controls button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--red);
  font-size: 34px;
  line-height: 1;
}

.video-modal-count {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */

.services-v2 {
  background: #000;
}

.services-v2 h1,
.services-v2 h2,
.services-v2 h3,
.services-v2 .sv2-redline {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

.sv2-hero {
  position: relative;
  height: 365px;
  padding-top: var(--header-height-desktop);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #000;
}

.sv2-hero-image {
  position: absolute;
  inset: var(--header-height-desktop) 0 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45)),
    linear-gradient(90deg, #d9d2c6 0%, #8e8b82 38%, #f1e9dc 70%, #d4c9b8 100%);
}

.sv2-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.18) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0 1px, transparent 1px);
  background-size: 125px 82px;
}

.sv2-hero h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 62px);
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
}

.sv2-premium {
  padding: 72px 0 34px;
  background: #000;
  color: #fff;
}

.sv2-premium-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 80px;
}

.sv2-premium-title h2 {
  max-width: 540px;
  color: #fff;
  font-size: clamp(56px, 5.4vw, 102px);
  line-height: 0.94;
  letter-spacing: 0.045em;
}

.sv2-video-panel {
  position: relative;
  min-height: 445px;
  overflow: hidden;
  border: 8px solid #151515;
  border-radius: 18px;
  background:
    radial-gradient(circle at 38% 32%, rgba(255,0,45,0.45), transparent 32%),
    radial-gradient(circle at 76% 72%, rgba(130,0,20,0.45), transparent 34%),
    linear-gradient(135deg, #220008 0%, #6c0012 48%, #170004 100%);
  box-shadow: 0 24px 80px rgba(0,0,0,0.66);
}

.sv2-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 50%;
}

.sv2-play::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  border-left: 20px solid #fff;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.sv2-slider-ui {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--red);
}

.sv2-dots {
  display: flex;
  gap: 8px;
}

.sv2-dots span {
  width: 9px;
  height: 9px;
  border: 1px solid var(--red);
  border-radius: 50%;
}

.sv2-dots .active {
  background: var(--red);
}

.sv2-arrows {
  display: flex;
  gap: 22px;
  font-size: 34px;
  line-height: 1;
}

.sv2-photo-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 405px;
  background: #000;
}

.sv2-photo-tile {
  min-height: 405px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.2)),
    linear-gradient(135deg, #ddd8cf, #716d66);
}

.sv2-photo-tile.tile-2 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.16)),
    linear-gradient(135deg, #efe6d8, #a7794c);
}

.sv2-photo-tile.tile-3 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.16)),
    linear-gradient(135deg, #d8d0c5, #8a674d);
}

.sv2-photo-tile.tile-4 {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.2)),
    linear-gradient(135deg, #c88f46, #3b2519);
}

.sv2-intro-copy {
  position: relative;
  padding: 72px 0 98px;
  background: #000;
  color: #fff;
  text-align: center;
}

.sv2-intro-copy > .primary-pill {
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
  min-width: 190px;
}

.sv2-intro-copy h2 {
  max-width: 980px;
  margin: 0 auto 36px;
  color: var(--red);
  font-size: clamp(28px, 3.1vw, 54px);
  line-height: 1.08;
  letter-spacing: 0.085em;
}

.sv2-intro-copy p {
  max-width: 760px;
  margin: 0 auto 22px;
  color: #fff;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.sv2-tour {
  padding: 82px 0 96px;
  background: #fff;
  color: #000;
}

.sv2-tour h2 {
  margin-bottom: 34px;
  color: #000;
  font-size: clamp(58px, 5.2vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.sv2-tour h3 {
  margin: 0 0 16px;
  color: var(--red);
  font-size: clamp(22px, 1.7vw, 34px);
  line-height: 1.1;
  letter-spacing: 0.07em;
}

.sv2-tour h3:nth-of-type(2) {
  margin-top: 50px;
}

.sv2-tour p {
  max-width: 1120px;
  margin: 0 0 22px;
  color: #000;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.sv2-partners {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  margin: 42px 0 14px;
  color: #111;
  font-size: 30px;
}

.sv2-tour-embed {
  min-height: 610px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.55)),
    linear-gradient(135deg, #e8e5de, #b5b6b1);
  color: #222;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.sv2-additional {
  position: relative;
  padding: 94px 0 0;
  overflow: hidden;
  background: #000;
  color: #fff;
  text-align: center;
}

.sv2-additional h2 {
  max-width: 1080px;
  margin: 0 auto 26px;
  font-size: clamp(54px, 5.3vw, 98px);
  line-height: 0.95;
  letter-spacing: 0.06em;
}

.sv2-redline {
  max-width: 880px;
  margin: 0 auto 50px;
  color: var(--red);
  font-size: clamp(20px, 2.2vw, 38px);
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.sv2-additional-images {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  max-width: 1160px;
  margin: 0 auto;
}

.sv2-additional-image {
  min-height: 390px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.18)),
    linear-gradient(135deg, #e7e4df, #6c6c6c);
}

.sv2-additional-image.image-b {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.12)),
    linear-gradient(135deg, #37a1e5, #415d34 58%, #282828);
}

.sv2-drone {
  width: min(680px, 54vw);
  height: 210px;
  margin: -82px -40px 0 auto;
  background:
    radial-gradient(ellipse at center, #777 0 18%, transparent 19%),
    linear-gradient(90deg, transparent 0 10%, #777 10% 18%, transparent 18% 36%, #777 36% 44%, transparent 44% 58%, #777 58% 66%, transparent 66% 82%, #777 82% 90%, transparent 90%);
  opacity: 0.9;
}

.sv2-contact {
  padding: 78px 0 80px;
  background: #fff;
  color: #000;
  text-align: center;
}

.sv2-contact h2 {
  margin: 0 auto 24px;
  color: #000;
  font-size: clamp(54px, 5.4vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.08em;
}

.sv2-contact-icons {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin: 30px 0;
}

.sv2-contact-icons span {
  width: 70px;
  height: 70px;
  border: 3px solid var(--red);
  border-radius: 50%;
}

.sv2-contact p:not(.sv2-redline) {
  max-width: 860px;
  margin: 0 auto 30px;
  color: #000;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 700;
}

/* =========================================================
   WORKING WITH VIZIMAGE PAGE
   ========================================================= */

.working-v2 {
  background: #000;
}

.working-v2 h1,
.working-v2 h2,
.working-v2 h3,
.working-v2 .wv2-redline,
.working-v2 .wv2-stats strong {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
}

.wv2-hero {
  position: relative;
  min-height: 905px;
  padding-top: var(--header-height-desktop);
  overflow: hidden;
  color: #fff;
  background: #000;
}

.wv2-hero-bg {
  position: absolute;
  inset: var(--header-height-desktop) 0 auto;
  height: 680px;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.44) 48%,
      rgba(0, 0, 0, 0.82) 78%,
      rgba(0, 0, 0, 1) 100%
    ),
    url("/assets/Images/Working-with-Vizimage/working-with-vizimage-header.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.wv2-hero-bg {
  inset: var(--header-height-mobile) 0 auto;
  height: 260px;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.38) 52%,
      rgba(0, 0, 0, 0.9) 100%
    ),
    url("/assets/Images/Working-with-Vizimage/working-with-vizimage-header.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.wv2-hero-bg::before {
  content: "";
  position: absolute;
  inset: 120px 0 0;
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.12) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.10) 0 1px, transparent 1px);
  background-size: 120px 84px;
}

.wv2-hero-title {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 30px), var(--desktop-live));
  margin: 0 auto;
  padding-top: 190px;
  text-align: center;
}

.wv2-hero-title h1 {
  color: #fff;
  font-size: clamp(40px, 4.1vw, 78px);
  line-height: 1;
  letter-spacing: 0.08em;
}

.wv2-hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  margin-top: 165px;
  align-items: start;
}

.wv2-redline {
  margin: 0 0 20px;
  color: var(--red);
  font-size: clamp(18px, 1.65vw, 30px);
  line-height: 1.15;
  letter-spacing: 0.1em;
}

.wv2-hero-content h2 {
  max-width: 640px;
  color: #fff;
  font-size: clamp(52px, 5vw, 94px);
  line-height: 0.98;
  letter-spacing: 0.05em;
}

.wv2-hero-content p {
  max-width: 650px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.wv2-floating-cta {
  position: relative;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 44px;
  min-width: 340px;
}

.wv2-founders {
  padding: 95px 0 92px;
  background: #fff;
  color: #000;
}

.wv2-founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.wv2-founder-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px;
}

.wv2-founder-photos article {
  text-align: center;
}

.wv2-headshot {
  min-height: 278px;
  background: linear-gradient(135deg, #111 0%, #333 52%, #111 100%);
  box-shadow: 22px 22px 0 var(--red);
}

.wv2-founder-photos p {
  margin: 28px 0 0;
  color: var(--red);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 900;
}

.wv2-founder-copy h2 {
  margin: 0 0 32px;
  color: #000;
  font-size: clamp(54px, 5.6vw, 104px);
  line-height: 0.94;
  letter-spacing: 0.055em;
}

.wv2-founder-copy p {
  max-width: 650px;
  margin: 0 0 28px;
  color: #000;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.wv2-founder-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wv2-founder-copy li {
  position: relative;
  margin: 18px 0;
  padding-left: 28px;
  color: #000;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
}

.wv2-founder-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--red);
  transform: rotate(45deg);
}

.wv2-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 96px;
  text-align: center;
}

.wv2-stats article {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  border-right: 2px solid var(--red);
}

.wv2-stats article:last-child {
  border-right: 0;
}

.wv2-stat-icon {
  width: 96px;
  height: 62px;
  margin-bottom: 18px;
  border: 5px solid var(--red);
  border-radius: 999px;
}

.wv2-stats strong {
  display: block;
  color: var(--red);
  font-size: clamp(96px, 8.7vw, 160px);
  line-height: 0.82;
  letter-spacing: 0.02em;
}

.wv2-stats p {
  margin: 18px 0 0;
  color: #000;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.wv2-prep {
  padding: 98px 0 72px;
  background: #000;
  color: #fff;
}

.wv2-prep-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.wv2-prep h2 {
  max-width: 640px;
  margin: 0 0 32px;
  color: #fff;
  font-size: clamp(54px, 5.2vw, 98px);
  line-height: 0.96;
  letter-spacing: 0.06em;
}

.wv2-prep p {
  max-width: 620px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.68;
  font-weight: 700;
}

.wv2-prep-video {
  position: relative;
  min-height: 330px;
  background:
    linear-gradient(180deg, rgba(224,0,24,0.2), rgba(0,0,0,0.18)),
    linear-gradient(135deg, #42d6ff, #0a83ba);
  border: 1px solid rgba(255,255,255,0.25);
}

.wv2-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
}

.wv2-play::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 22px;
  border-left: 20px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.wv2-red-divider {
  position: relative;
  height: 3px;
  margin-top: 76px;
  background: var(--red);
}

.wv2-red-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--red);
  transform: translate(-50%, -50%) rotate(45deg);
}

.wv2-staging {
  padding: 72px 0 96px;
  background: #000;
  color: #fff;
  text-align: center;
}

.wv2-staging h2 {
  margin: 0 auto 34px;
  color: #fff;
  font-size: clamp(60px, 5.6vw, 104px);
  line-height: 0.94;
  letter-spacing: 0.08em;
}

.wv2-staging .wv2-redline {
  max-width: 880px;
  margin: 0 auto 34px;
  color: var(--red);
  font-size: clamp(22px, 2vw, 36px);
  line-height: 1.32;
}

.wv2-staging-copy {
  max-width: 760px;
  margin: 0 auto 54px;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

.wv2-staging-cta {
  min-width: 320px;
}

.wv2-contact {
  padding: 88px 0 84px;
  background: #fff;
  color: #000;
  text-align: center;
}

.wv2-contact h2 {
  margin: 0 auto 26px;
  color: #000;
  font-size: clamp(54px, 5.4vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.08em;
}

.wv2-contact .wv2-redline {
  max-width: 900px;
  margin: 0 auto 28px;
  color: var(--red);
  font-size: clamp(20px, 1.8vw, 34px);
}

.wv2-contact-icons {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin: 30px 0;
}

.wv2-contact-icons span {
  width: 70px;
  height: 70px;
  border: 3px solid var(--red);
  border-radius: 50%;
}

.wv2-contact p:not(.wv2-redline) {
  max-width: 860px;
  margin: 0 auto 30px;
  color: #000;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 700;
}

/* =========================================================
   UTILITY PAGES
   ========================================================= */

.utility-hero {
  padding: 210px 0 90px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.96)),
    linear-gradient(135deg, #484848, #080808);
}

.utility-hero h1 {
  max-width: 920px;
  color: var(--red);
  font-size: clamp(54px, 5.4vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.06em;
}

.utility-hero p {
  max-width: 680px;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  line-height: 1.55;
}

.utility-form-section {
  padding: 90px 0;
  background: #000;
}

.utility-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.utility-grid h2 {
  color: var(--red);
  font-size: clamp(42px, 4.6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0.06em;
}

.utility-grid p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  line-height: 1.65;
}

.mock-form,
.portal-card {
  padding: 34px;
  background: #111;
  border: 1px solid var(--line);
}

.mock-form {
  display: grid;
  gap: 18px;
}

.mock-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-form input,
.mock-form textarea,
.mock-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  background: #050505;
  color: var(--white);
  padding: 14px 15px;
  border-radius: 0;
}

.mock-form textarea {
  min-height: 140px;
  resize: vertical;
}

.mock-form button {
  min-height: 48px;
  border: 0;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portal-card {
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 26px;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {
  .live-area {
    width: calc(100% - 30px);
  }

  .site-header {
    background: var(--black);
  }

  .nav-inner {
    width: calc(100% - 30px);
    height: 43px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .logo-mark {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .logo-text {
    font-size: 20px;
  }

  .nav-phone,
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    position: relative;
    z-index: 120;
    width: 31px;
    height: 26px;
    border: 0;
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  .mobile-menu-button span {
    display: block;
    width: 31px;
    height: 3px;
    background: var(--white);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-open .mobile-menu-button span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .mobile-menu-open .mobile-menu-button span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile-phone-bar {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
  }

  .site-header::after {
    content: "";
    position: absolute;
    top: 9px;
    right: 58px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--red);
  }

  .mobile-nav-panel {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    right: 0;
    z-index: 90;
    display: grid;
    gap: 0;
    padding: 12px 15px 18px;
    background: rgba(0, 0, 0, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 2px solid var(--red);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .mobile-menu-open .mobile-nav-panel {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-panel a {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-nav-panel a:last-child {
    border-bottom: 0;
  }

  .mobile-nav-book {
    justify-content: center;
    min-height: 42px;
    margin-top: 14px;
    border-radius: 999px;
    background: var(--red);
    border-bottom: 0 !important;
  }

  /* Home mobile */

  .hv2-hero {
    min-height: 725px;
    padding-top: var(--header-height-mobile);
  }

  .hv2-hero-bg {
    inset: var(--header-height-mobile) 0 auto;
    height: 250px;
  }

  .hv2-hero-copy {
    width: calc(100% - 30px);
    padding-top: 44px;
  }

  .hv2-hero-copy h1 {
    max-width: 350px;
    font-size: 23px;
    line-height: 1.12;
    letter-spacing: 0.04em;
  }

  .hv2-hero-copy p {
    margin-top: 10px;
    padding: 7px 12px;
    font-size: 10px;
  }

  .hv2-media-stage.video-feature-carousel {
    width: 100%;
    height: 320px;
    margin-top: 30px;
    overflow: hidden;
  }

  .video-feature-stage {
    width: 100%;
    gap: 12px;
    align-items: flex-start;
  }

  .video-card {
    top: 42px;
  }

  .video-card-media {
    width: 116px;
    height: 225px;
    border-width: 5px;
    border-radius: 24px;
  }

  .video-card.main {
    top: 0;
  }

  .video-card.main .video-card-media {
    width: 148px;
    height: 290px;
    border-radius: 28px;
  }

  .video-card-media::after {
    top: 7px;
    width: 54px;
    height: 15px;
  }

  .home-v2 .video-play-button {
  width: 46px;
  height: 46px;
  }

  .hv2-zillow {
    right: 22px;
    top: -20px;
    z-index: 12;
    font-size: 8px;
  }

  .hv2-zillow strong {
    font-size: 18px;
  }

  .hv2-lens {
    display: none;
  }

  .hv2-carousel-ui {
    margin-top: -16px;
  }

  .hv2-packages {
    padding: 48px 0 58px;
  }

  .hv2-package-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hv2-package-card {
    min-height: 210px;
    padding: 24px;
  }

  .hv2-package-card p {
    font-size: 11px;
  }

  .hv2-package-card h2 {
    font-size: 29px;
  }

  .hv2-package-card span {
    font-size: 14px;
  }

  .hv2-success {
    padding: 56px 0 70px;
  }

  .hv2-success h2 {
    max-width: 360px;
    font-size: 33px;
    line-height: 1.12;
    letter-spacing: 0.055em;
  }

  .hv2-redline {
    max-width: 330px;
    font-size: 17px;
    line-height: 1.35;
  }

  .hv2-success-copy {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.75;
  }

  .hv2-logo-strip {
    padding: 22px 0;
  }

  .hv2-logo-track {
    justify-content: flex-start;
    gap: 40px;
    padding-left: 15px;
    font-size: 13px;
  }

  .hv2-availability {
    min-height: 640px;
    align-items: flex-start;
    padding: 54px 0;
  }

  .hv2-availability h2 {
    max-width: 360px;
    font-size: 39px;
    line-height: 1.05;
  }

  .hv2-availability > .live-area > p {
    max-width: 330px;
    margin-bottom: 34px;
    font-size: 13px;
    line-height: 1.65;
  }

  .hv2-benefits {
    grid-template-columns: 1fr;
    max-width: 260px;
    gap: 28px;
  }

  .hv2-benefits span {
    width: 58px;
    height: 58px;
  }

  .hv2-benefits p {
    font-size: 12px;
  }

  .hv2-contact {
    padding: 56px 0 64px;
  }

  .hv2-contact h2 {
    font-size: 38px;
    line-height: 1.05;
  }

  .hv2-contact-icons span {
    width: 58px;
    height: 58px;
  }

  .hv2-contact p:not(.hv2-redline) {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.7;
  }

  .video-modal {
    padding: 18px;
  }

  .video-modal-frame {
    width: min(300px, calc(100vw - 58px));
    border-radius: 30px;
  }

  .video-modal-close {
    right: 0;
  }

  /* Services mobile */

  .sv2-hero {
    height: 178px;
    padding-top: var(--header-height-mobile);
  }

  .sv2-hero-image {
    inset: var(--header-height-mobile) 0 0;
  }

  .sv2-hero h1 {
    font-size: 17px;
    letter-spacing: 0.08em;
    transform: translateY(18px);
  }

  .sv2-premium {
    padding: 34px 0 18px;
  }

  .sv2-premium-grid {
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .sv2-premium-title h2 {
    max-width: 280px;
    font-size: 33px;
    line-height: 1.06;
    letter-spacing: 0.055em;
  }

  .sv2-video-panel {
    min-height: 205px;
    order: -1;
    border-width: 5px;
    border-radius: 10px;
  }

  .sv2-play {
    width: 46px;
    height: 46px;
  }

  .sv2-play::after {
    left: 19px;
    top: 14px;
    border-left-width: 14px;
    border-top-width: 9px;
    border-bottom-width: 9px;
  }

  .sv2-photo-band {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
  }

  .sv2-photo-tile {
    min-height: 150px;
  }

  .sv2-intro-copy {
    padding: 54px 0 72px;
  }

  .sv2-intro-copy h2 {
    max-width: 330px;
    font-size: 22px;
    line-height: 1.45;
  }

  .sv2-intro-copy p {
    max-width: 330px;
    font-size: 12px;
    line-height: 1.75;
  }

  .sv2-tour {
    padding: 48px 0 54px;
  }

  .sv2-tour h2 {
    font-size: 34px;
    text-align: center;
  }

  .sv2-tour h3 {
    font-size: 15px;
    line-height: 1.35;
  }

  .sv2-tour p {
    font-size: 12px;
    line-height: 1.75;
  }

  .sv2-partners {
    justify-content: flex-start;
    gap: 24px;
    font-size: 20px;
  }

  .sv2-tour-embed {
    min-height: 185px;
    font-size: 12px;
  }

  .sv2-additional {
    padding: 52px 0 0;
  }

  .sv2-additional h2 {
    max-width: 330px;
    font-size: 31px;
    line-height: 1.08;
  }

  .sv2-redline {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.45;
  }

  .sv2-additional-images {
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sv2-additional-image {
    min-height: 185px;
  }

  .sv2-drone {
    width: 340px;
    height: 120px;
    margin: -24px -42px 0 auto;
  }

  .sv2-contact {
    padding: 48px 0 56px;
  }

  .sv2-contact h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .sv2-contact-icons span {
    width: 58px;
    height: 58px;
  }

  .sv2-contact p:not(.sv2-redline) {
    max-width: 330px;
    font-size: 12px;
    line-height: 1.72;
  }

  /* Working mobile */

  .wv2-hero {
    min-height: 565px;
    padding-top: var(--header-height-mobile);
  }

  .wv2-hero-bg {
    inset: var(--header-height-mobile) 0 auto;
    height: 210px;
  }

  .wv2-hero-title {
    width: calc(100% - 30px);
    padding-top: 55px;
  }

  .wv2-hero-title h1 {
    font-size: 17px;
    letter-spacing: 0.08em;
  }

  .wv2-hero-content {
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 80px;
  }

  .wv2-redline {
    font-size: 13px;
    line-height: 1.3;
  }

  .wv2-hero-content h2 {
    max-width: 330px;
    font-size: 29px;
    line-height: 1.12;
    letter-spacing: 0.06em;
  }

  .wv2-hero-content p {
    max-width: 330px;
    font-size: 11px;
    line-height: 1.7;
  }

  .wv2-floating-cta {
    min-width: 260px;
    margin-top: 22px;
  }

  .wv2-founders {
    padding: 50px 0 58px;
  }

  .wv2-founder-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .wv2-founder-photos {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 230px;
    margin: 0 auto;
  }

  .wv2-headshot {
    min-height: 230px;
    box-shadow: 14px 14px 0 var(--red);
  }

  .wv2-founder-photos p {
    margin-top: 22px;
    font-size: 11px;
  }

  .wv2-founder-copy h2 {
    font-size: 33px;
    line-height: 1.08;
    letter-spacing: 0.06em;
  }

  .wv2-founder-copy p,
  .wv2-founder-copy li {
    font-size: 11px;
    line-height: 1.7;
  }

  .wv2-stats {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .wv2-stats article {
    min-height: 205px;
    border-right: 0;
    border-bottom: 2px solid var(--red);
  }

  .wv2-stats article:last-child {
    border-bottom: 0;
  }

  .wv2-stat-icon {
    width: 72px;
    height: 48px;
  }

  .wv2-stats strong {
    font-size: 78px;
  }

  .wv2-stats p {
    font-size: 17px;
  }

  .wv2-prep {
    padding: 54px 0 46px;
  }

  .wv2-prep-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wv2-prep h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .wv2-prep p {
    font-size: 11px;
    line-height: 1.7;
  }

  .wv2-prep-video {
    min-height: 170px;
  }

  .wv2-red-divider {
    margin-top: 42px;
  }

  .wv2-staging {
    padding: 48px 0 58px;
  }

  .wv2-staging h2 {
    font-size: 36px;
    line-height: 1;
  }

  .wv2-staging .wv2-redline {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.4;
  }

  .wv2-staging-copy {
    max-width: 330px;
    font-size: 11px;
    line-height: 1.75;
  }

  .wv2-staging-cta {
    min-width: 260px;
  }

  .wv2-contact {
    padding: 54px 0 58px;
  }

  .wv2-contact h2 {
    font-size: 34px;
    line-height: 1.05;
  }

  .wv2-contact .wv2-redline {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.35;
  }

  .wv2-contact-icons span {
    width: 58px;
    height: 58px;
  }

  .wv2-contact p:not(.wv2-redline) {
    max-width: 330px;
    font-size: 12px;
    line-height: 1.72;
  }

  /* Utility mobile */

  .utility-hero {
    padding: 148px 0 58px;
  }

  .utility-hero h1 {
    font-size: 38px;
  }

  .utility-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mock-form,
  .portal-card {
    padding: 24px;
  }
}

/* =========================================================
   FINAL SITE OVERRIDES
   Consolidated: logo, type scale, hero media, phones, packages
========================================================= */

/* -------------------------
   Logo images
------------------------- */

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

.site-logo img {
  display: block;
  width: 190px;
  height: auto;
  max-width: 100%;
}

.footer-logo img {
  display: block;
  width: 220px;
  height: auto;
  max-width: 100%;
}

/* -------------------------
   Homepage type scale
   Hero stays smaller than middle statement sections
------------------------- */

.hv2-hero-copy {
  padding-top: 112px;
}

.hv2-hero-copy h1 {
  max-width: 720px;
  margin-inline: auto;
  font-size: clamp(30px, 2.65vw, 50px);
  line-height: 1.08;
  letter-spacing: 0.08em;
}

.hv2-hero-copy p {
  margin-top: 14px;
  padding: 9px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.hv2-success h2 {
  max-width: 980px;
  font-size: clamp(38px, 3.5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.045em;
}

.hv2-redline {
  font-size: clamp(17px, 1.45vw, 25px);
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.hv2-availability h2 {
  max-width: 980px;
  font-size: clamp(46px, 4.4vw, 82px);
  line-height: 0.98;
  letter-spacing: 0.04em;
}

.hv2-contact h2 {
  font-size: clamp(42px, 4.2vw, 74px);
  line-height: 0.98;
  letter-spacing: 0.06em;
}

/* -------------------------
   Homepage hero + media transition
------------------------- */

.hv2-hero {
  position: relative;
  min-height: 1325px;
  padding-top: var(--header-height-desktop);
  overflow: visible;
  background: #000;
}

.hv2-hero-bg {
  position: absolute;
  inset: var(--header-height-desktop) 0 auto;
  height: 675px;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.34) 58%,
      rgba(0, 0, 0, 1) 100%
    ),
    url("/assets/Images/Home/Desktop-hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hv2-media-stage.video-feature-carousel {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 30px), 1680px);
  height: 620px;
  margin: 78px auto 0;
  padding: 0;
  overflow: visible;
}

.video-feature-stage {
  position: absolute;
  inset: 0;
  z-index: 20;
  width: 100%;
  height: 620px;
  margin: 0;
  display: block;
}

/* -------------------------
   Decorative media assets
------------------------- */

.hv2-desktop-showcase {
  position: absolute;
  left: -92px;
  bottom: 54px;
  z-index: 18;
  width: 455px;
  height: auto;
  pointer-events: none;
}

.hv2-lens {
  display: none;
}

.hv2-lens-image {
  position: absolute;
  right: 95px;
  bottom: 110px;
  z-index: 3;
  width: 360px;
  height: auto;
  pointer-events: none;
}

.hv2-zillow {
  z-index: 16;
}

/* -------------------------
   Phone carousel
------------------------- */

.video-card {
  appearance: none;
  position: absolute;
  left: 50%;
  top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-origin: center center;
  transition:
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    filter 420ms ease;
  will-change: transform, opacity, filter;
}

.video-card:hover {
  filter: brightness(1.08);
}

.video-card[data-position="center"] {
  width: 300px;
  height: 590px;
  z-index: 12;
  transform: translateX(-50%) translateY(0) rotate(0deg);
  opacity: 1;
  filter: brightness(1.04);
}

.video-card[data-position="left"] {
  width: 178px;
  height: 350px;
  z-index: 9;
  transform: translateX(calc(-50% - 270px)) translateY(105px) rotate(0deg);
  opacity: 0.96;
  filter: brightness(0.92);
}

.video-card[data-position="right"] {
  width: 178px;
  height: 350px;
  z-index: 9;
  transform: translateX(calc(-50% + 270px)) translateY(105px) rotate(0deg);
  opacity: 0.96;
  filter: brightness(0.92);
}

.video-card-media,
.video-card.main .video-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 7px solid #090909;
  border-radius: 42px;
  background-color: #000;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: none;
}

.video-card-media.video-thumb-1 {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.16)),
    url("/assets/Images/Home/Video-Thumbnails/Video_1_thumb.png");
  background-size: cover;
  background-position: center center;
}

.video-card-media.video-thumb-2 {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.16)),
    url("/assets/Images/Home/Video-Thumbnails/Video_2_thumb.png");
  background-size: cover;
  background-position: center center;
}

.video-card-media.video-thumb-3 {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.16)),
    url("/assets/Images/Home/Video-Thumbnails/Video_3_thumb.png");
  background-size: cover;
  background-position: center center;
}

.video-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      120deg,
      transparent 0 34%,
      rgba(255,255,255,0.20) 35% 43%,
      transparent 44%
    ),
    linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.16));
  pointer-events: none;
}

.video-card-media::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  z-index: 5;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #030303;
}

.video-card[data-position="center"] .video-card-media::after {
  top: 11px;
  width: 66px;
  height: 16px;
}

.video-card[data-position="left"] .video-card-media::after,
.video-card[data-position="right"] .video-card-media::after {
  top: 9px;
  width: 48px;
  height: 12px;
}

/* -------------------------
   Carousel indicator
------------------------- */

.hv2-carousel-ui.video-carousel-controls,
.video-carousel-controls {
  position: relative;
  z-index: 22;
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 7px;
  margin-top: -18px;
}

.video-carousel-controls .hv2-dots,
.hv2-dots {
  display: flex;
  gap: 8px;
}

.video-carousel-controls .dot,
.video-carousel-controls .hv2-dots span,
.hv2-dots .dot,
.hv2-dots span {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: transparent;
}

.video-carousel-controls .dot.active,
.video-carousel-controls .hv2-dots .active,
.hv2-dots .dot.active,
.hv2-dots .active {
  background: var(--red);
}

.video-carousel-controls .hv2-arrows,
.hv2-arrows {
  display: flex;
  gap: 22px;
  color: var(--red);
  font-size: 38px;
  line-height: 1;
}

.video-carousel-controls .hv2-arrows button,
.hv2-arrows button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--red);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
}

/* -------------------------
   White overlap + video package cards
------------------------- */

.hv2-packages {
  position: relative;
  z-index: 4;
  margin-top: -285px;
  padding: 390px 0 36px;
  background: #fff;
}

.hv2-package-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hv2-package-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 360px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.14);
  box-shadow: none;
}

.hv2-package-card p {
  margin: 0;
  color: var(--red);
  font-size: 14px;
  letter-spacing: 0.1em;
}

.hv2-package-card h2 {
  max-width: 620px;
  margin: 0;
  color: #000;
  font-size: clamp(38px, 3vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.hv2-package-card em {
  color: #000;
  font-size: 15px;
  font-weight: 900;
}

.hv2-package-card span {
  display: block;
  max-width: 560px;
  color: rgba(0,0,0,0.78);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.hv2-package-card ul {
  margin: 0;
  padding-left: 18px;
  color: #000;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 700;
}

.hv2-package-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hv2-package-footer strong {
  color: #000;
  font-size: 24px;
  font-weight: 400;
}

.hv2-package-footer .primary-pill {
  min-height: 38px;
  padding: 10px 20px;
}

.hv2-success {
  padding-top: 44px;
  background: #fff;
}

/* -------------------------
   Mobile corrections
------------------------- */

@media (max-width: 760px) {
  .site-logo img {
    width: 145px;
  }

  .footer-logo img {
    width: 175px;
  }

  .hv2-hero {
    min-height: 725px;
    padding-top: var(--header-height-mobile);
  }

  .hv2-hero-bg {
    inset: var(--header-height-mobile) 0 auto;
    height: 250px;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.42) 100%),
      url("/assets/Images/Home/Desktop-hero-bg.jpg");
    background-size: cover;
    background-position: center top;
  }

  .hv2-hero-copy {
    width: calc(100% - 30px);
    padding-top: 38px;
  }

  .hv2-hero-copy h1 {
    max-width: 330px;
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: 0.06em;
  }

  .hv2-hero-copy p {
    margin-top: 10px;
    padding: 6px 10px;
    font-size: 9px;
  }

  .hv2-desktop-showcase,
  .hv2-lens-image {
    display: none;
  }

  .hv2-media-stage.video-feature-carousel {
    width: 100%;
    height: 370px;
    margin-top: 24px;
    overflow: hidden;
  }

  .video-feature-stage {
    width: 100%;
    height: 370px;
  }

  .video-card[data-position="center"] {
    width: 175px;
    height: 345px;
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }

  .video-card[data-position="left"] {
    width: 112px;
    height: 220px;
    transform: translateX(calc(-50% - 145px)) translateY(58px) rotate(0deg);
  }

  .video-card[data-position="right"] {
    width: 112px;
    height: 220px;
    transform: translateX(calc(-50% + 145px)) translateY(58px) rotate(0deg);
  }

  .video-card-media,
  .video-card.main .video-card-media {
    border-width: 5px;
    border-radius: 28px;
  }

  .video-card[data-position="center"] .video-card-media::after {
    top: 8px;
    width: 44px;
    height: 11px;
  }

  .video-card[data-position="left"] .video-card-media::after,
  .video-card[data-position="right"] .video-card-media::after {
    top: 7px;
    width: 34px;
    height: 9px;
  }

  .video-play-button {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .hv2-carousel-ui.video-carousel-controls,
  .video-carousel-controls {
    margin-top: -10px;
  }

  .video-carousel-controls .hv2-arrows button,
  .hv2-arrows button {
    font-size: 32px;
  }

  .video-feature-carousel .hv2-zillow {
    right: 22px;
    top: -20px;
    z-index: 12;
    font-size: 8px;
  }

  .video-feature-carousel .hv2-zillow strong {
    font-size: 18px;
  }

  .hv2-packages {
    margin-top: -150px;
    padding: 205px 0 24px;
  }

  .hv2-package-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hv2-package-card {
    min-height: 200px;
    padding: 24px;
  }

  .hv2-package-card p {
    font-size: 11px;
  }

  .hv2-package-card h2 {
    font-size: 31px;
    line-height: 0.98;
  }

  .hv2-package-card span,
  .hv2-package-card ul {
    font-size: 13px;
  }

  .hv2-success {
    padding: 28px 0 70px;
  }

  .hv2-success h2 {
    max-width: 350px;
    font-size: 31px;
    line-height: 1.12;
  }

  .hv2-redline {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.35;
  }

  .hv2-availability h2 {
    max-width: 350px;
    font-size: 38px;
    line-height: 1.05;
  }

  .hv2-contact h2 {
    font-size: 36px;
    line-height: 1.05;
  }
}

/* =========================================================
   FINAL TYPE SCALE — MOCK-SMALLER / STILL BOLD
========================================================= */

:root {
  --font-display: "Special Gothic Expanded One", Arial, Helvetica, sans-serif;
  --font-body: "Special Gothic Expanded One", Arial, Helvetica, sans-serif;
}

body,
button,
input,
textarea,
select,
p,
a,
li,
span,
strong,
em,
small {
  font-family: var(--font-body);
  font-weight: 400;
}

h1,
h2,
h3,
h4,
.logo-text,
.desktop-nav,
.nav-phone,
.nav-book,
.primary-pill,
.mobile-nav-panel a,
.hv2-redline,
.sv2-redline,
.wv2-redline,
.hv2-package-card p,
.hv2-package-card h2,
.video-modal-count,
.video-modal-placeholder span {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  -webkit-text-stroke: 0.32px currentColor;
  text-shadow:
    0.014em 0 0 currentColor,
    -0.004em 0 0 currentColor;
}

/* Hero: small, punchy, like mock */
.hv2-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(32px, 3.05vw, 58px);
  line-height: 1.02;
  letter-spacing: 0.055em;
}

.hv2-hero-copy p {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.035em;
  -webkit-text-stroke: 0.16px currentColor;
  text-shadow: 0.01em 0 0 currentColor;
}

/* Package cards */
.hv2-package-card p {
  font-size: 14px;
  letter-spacing: 0.09em;
}

.hv2-package-card h2 {
  max-width: 620px;
  font-size: clamp(42px, 3.1vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.005em;
}

/* Main white statement */
.hv2-success h2 {
  max-width: 1040px;
  font-size: clamp(42px, 4vw, 72px);
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.hv2-redline {
  font-size: clamp(18px, 1.65vw, 28px);
  line-height: 1.18;
  letter-spacing: 0.055em;
}

/* Available section: largest, but not gigantic */
.hv2-availability h2 {
  max-width: 1040px;
  font-size: clamp(48px, 4.9vw, 88px);
  line-height: 0.96;
  letter-spacing: 0.025em;
}

/* Contact */
.hv2-contact h2 {
  max-width: 850px;
  font-size: clamp(44px, 4.5vw, 78px);
  line-height: 0.96;
  letter-spacing: 0.04em;
}

/* Nav / buttons */
.desktop-nav {
  font-size: 11px;
  letter-spacing: 0.07em;
}

.nav-book,
.primary-pill {
  font-size: 11px;
  letter-spacing: 0.085em;
}

/* Paragraph/body copy stays clean */
p,
li,
.hv2-success-copy,
.hv2-availability > .live-area > p,
.hv2-contact p,
.hv2-package-card span,
.hv2-package-card li,
.sv2-tour p,
.wv2-founder-copy p,
.wv2-prep p {
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-text-stroke: 0;
  text-shadow: none;
  letter-spacing: 0.025em;
}

/* Packages clear carousel controls */
.hv2-packages {
  margin-top: -285px;
  padding-top: 245px;
}

.hv2-package-grid {
  margin-top: 0;
}

@media (max-width: 760px) {
  h1,
  h2,
  h3,
  h4,
  .primary-pill,
  .mobile-nav-panel a,
  .hv2-redline,
  .sv2-redline,
  .wv2-redline,
  .hv2-package-card h2,
  .hv2-package-card p {
    -webkit-text-stroke: 0.22px currentColor;
    text-shadow:
      0.01em 0 0 currentColor,
      -0.003em 0 0 currentColor;
  }

  .hv2-hero-copy h1 {
    max-width: 330px;
    font-size: 19px;
    line-height: 1.12;
    letter-spacing: 0.045em;
  }

  .hv2-hero-copy p {
    font-size: 9px;
    padding: 6px 10px;
  }

  .hv2-package-card h2 {
    font-size: 30px;
    line-height: 0.98;
  }

  .hv2-success h2 {
    max-width: 350px;
    font-size: 31px;
    line-height: 1.13;
    letter-spacing: 0.045em;
  }

  .hv2-redline {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.35;
  }

  .hv2-availability h2 {
    max-width: 350px;
    font-size: 36px;
    line-height: 1.06;
  }

  .hv2-contact h2 {
    font-size: 34px;
    line-height: 1.06;
  }

  .hv2-packages {
    margin-top: -150px;
    padding-top: 150px;
  }
}

/* =========================================================
   SECTION HEADLINE + HEADER WEIGHT CORRECTION
========================================================= */

/* Bring lower section headers closer to the rest of the page */
.hv2-availability h2 {
  max-width: 980px;
  font-size: clamp(42px, 4.05vw, 72px);
  line-height: 1.02;
  letter-spacing: 0.035em;
  -webkit-text-stroke: 0.26px currentColor;
  text-shadow: 0.01em 0 0 currentColor;
}

.hv2-contact h2 {
  max-width: 820px;
  font-size: clamp(40px, 3.85vw, 68px);
  line-height: 1.02;
  letter-spacing: 0.045em;
  -webkit-text-stroke: 0.24px currentColor;
  text-shadow: 0.01em 0 0 currentColor;
}

.hv2-contact .hv2-redline {
  max-width: 780px;
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.22;
  letter-spacing: 0.055em;
}

/* Header should feel medium/regular, not chunky headline-bold */
.site-header .desktop-nav,
.site-header .desktop-nav a,
.site-header .nav-phone,
.site-header .nav-book {
  font-weight: 400;
  -webkit-text-stroke: 0;
  text-shadow: none;
  letter-spacing: 0.055em;
}

.site-header .desktop-nav {
  font-size: 10px;
}

.site-header .nav-phone {
  font-size: 13px;
}

.site-header .nav-book {
  font-size: 10px;
  letter-spacing: 0.075em;
}

/* Keep paragraph/benefit text from getting over-fattened */
.hv2-availability > .live-area > p,
.hv2-benefits p,
.hv2-contact p {
  -webkit-text-stroke: 0;
  text-shadow: none;
}

@media (max-width: 760px) {
  .hv2-availability h2 {
    max-width: 350px;
    font-size: 34px;
    line-height: 1.08;
  }

  .hv2-contact h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .hv2-contact .hv2-redline {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.36;
  }
}
/* =========================================================
   PACKAGE CARD TITLE REFINEMENT + CAROUSEL SPACING
========================================================= */

/* hide "Core Video Package 01 / 02" labels */
.home-v2 .hv2-package-card > p {
  display: none;
}

/* package names: mid-size red headers */
.home-v2 .hv2-package-card h2 {
  color: var(--red);
  max-width: 520px;
  margin: 0 0 28px;
  font-size: clamp(23px, 1.65vw, 31px);
  line-height: 1.16;
  letter-spacing: 0.065em;
  -webkit-text-stroke: 0.06px currentColor;
  text-shadow: none;
}

/* more room between carousel arrows/dots and top of cards */
.home-v2 .hv2-packages {
  margin-top: -285px;
  padding-top: 220px;
}

/* card interior */
.home-v2 .hv2-package-card {
  padding-top: 46px;
}

@media (max-width: 760px) {
  .home-v2 .hv2-package-card h2 {
    font-size: 21px;
    line-height: 1.18;
    letter-spacing: 0.055em;
  }

  .home-v2 .hv2-packages {
    margin-top: -150px;
    padding-top: 150px;
  }

  .home-v2 .hv2-package-card {
    padding-top: 30px;
  }
}

/* =========================================================
   HOMEPAGE REAL IMAGE ASSETS
========================================================= */

/* Header Facebook icon replacing the generic red dot */
.nav-social-dot {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 0;
  background: url("/assets/Images/Home/facebook-link-icon-for-header.png") center / contain no-repeat;
}

.nav-social-dot::after {
  display: none;
}

/* Official Zillow tag in hero */
.hv2-zillow {
  width: 132px;
  height: 54px;
  right: 12%;
  top: 92px;
  font-size: 0;
  line-height: 0;
  background: url("/assets/Images/Home/Zillow-Certified-tag.png") center / contain no-repeat;
}

.hv2-zillow strong {
  display: none;
}

/* Day or night real background */
.hv2-availability-bg {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.28) 0%,
      rgba(0, 0, 0, 0.52) 48%,
      rgba(0, 0, 0, 0.78) 100%
    ),
    url("/assets/Images/Home/Day-or-night-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Day or night real icons */
.hv2-benefits span {
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hv2-benefits article:nth-child(1) span {
  background-image: url("/assets/Images/Home/day_or_night_icon_1.png");
}

.hv2-benefits article:nth-child(2) span {
  background-image: url("/assets/Images/Home/day_or_night_icon_2.png");
}

.hv2-benefits article:nth-child(3) span {
  background-image: url("/assets/Images/Home/day_or_night_icon_3.png");
}

/* Get in touch real icons */
.hv2-contact-icons span {
  width: 74px;
  height: 74px;
  border: 0;
  border-radius: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hv2-contact-icons span:nth-child(1) {
  background-image: url("/assets/Images/Home/handshake-icon.png");
}

.hv2-contact-icons span:nth-child(2) {
  background-image: url("/assets/Images/Home/camera-icon.png");
}

@media (max-width: 760px) {
  .hv2-zillow {
    width: 82px;
    height: 34px;
    right: 20px;
    top: -18px;
  }

  .hv2-benefits span {
    width: 62px;
    height: 62px;
  }

  .hv2-contact-icons span {
    width: 60px;
    height: 60px;
  }
}

/* =========================================================
   HOMEPAGE TYPE SCALE LOCK
   60 / 24 / 16 rhythm
========================================================= */

/* Main homepage section headlines */
.home-v2 .hv2-success h2,
.home-v2 .hv2-availability h2,
.home-v2 .hv2-contact h2 {
  max-width: 980px;
  font-family: var(--font-display);
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1.06;
  letter-spacing: 0.045em;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-text-stroke: 0.22px currentColor;
  text-shadow: 0.008em 0 0 currentColor;
}

/* Red subheads */
.home-v2 .hv2-redline,
.home-v2 .hv2-contact .hv2-redline {
  max-width: 860px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.22;
  letter-spacing: 0.055em;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-text-stroke: 0.08px currentColor;
  text-shadow: none;
}

/* Body copy: 16px regular, still Special Gothic */
.home-v2 .hv2-success-copy,
.home-v2 .hv2-availability > .live-area > p,
.home-v2 .hv2-contact p:not(.hv2-redline),
.home-v2 .hv2-package-card span,
.home-v2 .hv2-package-card li {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: 0.025em;
  font-weight: 400;
  text-transform: none;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

/* Availability headline can be slightly wider but same scale */
.home-v2 .hv2-availability h2 {
  max-width: 1050px;
}

/* Contact headline slightly tighter */
.home-v2 .hv2-contact h2 {
  max-width: 820px;
}

/* Mobile scale */
@media (max-width: 760px) {
  .home-v2 .hv2-success h2,
  .home-v2 .hv2-availability h2,
  .home-v2 .hv2-contact h2 {
    max-width: 350px;
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: 0.045em;
    -webkit-text-stroke: 0.16px currentColor;
    text-shadow: 0.006em 0 0 currentColor;
  }

  .home-v2 .hv2-redline,
  .home-v2 .hv2-contact .hv2-redline {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.35;
  }

  .home-v2 .hv2-success-copy,
  .home-v2 .hv2-availability > .live-area > p,
  .home-v2 .hv2-contact p:not(.hv2-redline),
  .home-v2 .hv2-package-card span,
  .home-v2 .hv2-package-card li {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* =========================================================
   FINAL HEADER / NAV MOCK TUNE
========================================================= */

:root {
  --header-height-desktop: 58px;
}

/* desktop header shell */
.site-header {
  height: var(--header-height-desktop);
  overflow: visible;
}

.nav-inner {
  width: min(calc(100% - 30px), var(--desktop-live));
  height: var(--header-height-desktop);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 112px 195px 1fr;
  align-items: center;
  gap: 24px;
}

/* logo: smaller, optically calmer */
.site-logo {
  height: var(--header-height-desktop);
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.site-logo img {
  width: 104px;
  height: auto;
  transform: translateY(0);
}

/* facebook + phone */
.nav-contact {
  height: var(--header-height-desktop);
  display: flex;
  align-items: center;
  gap: 9px;
  transform: translateY(4px);
}

.nav-facebook {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 19px;
}

.nav-facebook img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-contact .nav-phone {
  height: var(--header-height-desktop);
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.055em;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

/* right-side desktop nav */
.desktop-nav {
  position: relative;
  height: var(--header-height-desktop);
  margin-left: auto;
  padding-right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  font-size: 10px;
  letter-spacing: 0.055em;
}

.desktop-nav > a:not(.nav-book) {
  height: var(--header-height-desktop);
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transform: translateY(4px);
}

/* Book Now: separate-feeling pill, planted halfway on black bar edge */
.desktop-nav .nav-book {
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(-50%);
  z-index: 120;

  height: 30px;
  min-height: 30px;
  padding: 0 21px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: #fff;
  color: var(--red);

  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.075em;
  -webkit-text-stroke: 0;
  text-shadow: none;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.desktop-nav .nav-book:hover {
  background: var(--red);
  color: #fff;
}

.nav-social-dot {
  display: none;
}

/* =========================================================
   MOBILE HEADER RESET
   Logo + real Facebook + hamburger / flush phone bar
========================================================= */

@media (max-width: 760px) {
  .site-header {
    height: var(--header-height-mobile);
    overflow: visible;
    background: #000;
  }

  /* remove the old fake red circle */
  .site-header::after {
    display: none;
    content: none;
  }

  .nav-inner {
    width: calc(100% - 30px);
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }

  .site-logo {
    height: 43px;
    display: inline-flex;
    align-items: center;
    margin-right: auto;
  }

  .site-logo img {
    width: 102px;
    height: auto;
    transform: none;
  }

  /* show Facebook where the old red circle was */
  .nav-contact {
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 16px 0 0;
    gap: 0;
    transform: none;
  }

  .nav-contact .nav-phone {
    display: none;
  }

  .nav-facebook {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-facebook img {
    display: block;
    width: 100%;
    height: auto;
  }

  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-button {
    display: flex !important;
    position: relative;
    z-index: 130;
    width: 31px;
    height: 26px;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  .mobile-menu-button span {
    display: block;
    width: 31px;
    height: 3px;
    background: #fff;
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-open .mobile-menu-button span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .mobile-menu-open .mobile-menu-button span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  /* phone bar flush against hero image */
  .mobile-phone-bar {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background: var(--red);
    color: #fff;
    line-height: 1;
  }

  .mobile-nav-panel {
    top: var(--header-height-mobile);
  }

  .hv2-hero {
    padding-top: var(--header-height-mobile);
  }

  .hv2-hero-bg {
    inset: var(--header-height-mobile) 0 auto;
    margin-top: 0;
  }

  /* let the Zillow tag escape the carousel crop */
  .hv2-media-stage.video-feature-carousel {
    overflow: visible;
  }

  .hv2-zillow {
    display: block;
    width: 84px;
    height: 34px;
    right: 24px;
    top: -44px;
    z-index: 30;
    font-size: 0;
    line-height: 0;
    background: url("/assets/Images/Home/Zillow-Certified-tag.png") center / contain no-repeat;
  }

  .hv2-zillow strong {
    display: none;
  }
}

/* =========================================================
   MOBILE HERO FLUSH + ZILLOW CLEANUP
========================================================= */

@media (max-width: 760px) {
  /* remove any old text sitting over/near the Zillow image */
  .hv2-zillow {
    display: block;
    width: 86px;
    height: 36px;
    right: 22px;
    top: -40px;
    z-index: 30;

    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px;
    overflow: hidden;

    background: url("/assets/Images/Home/Zillow-Certified-tag.png") center / contain no-repeat;
  }

  .hv2-zillow br,
  .hv2-zillow strong {
    display: none !important;
  }

  /* close the black gap below the red phone bar */
  .hv2-hero-bg {
    top: calc(var(--header-height-mobile) - 18px);
  }

  .hv2-hero-copy {
    padding-top: 26px;
  }

  .hv2-media-stage.video-feature-carousel {
    margin-top: 22px;
  }
}

/* =========================================================
   HEADER PRECISION PATCH
   Desktop Book Now edge alignment + mobile phone-bar seam
========================================================= */

/* Desktop: plant Book Now exactly on the black nav bottom edge */
@media (min-width: 761px) {
  .desktop-nav {
    position: relative;
    align-items: center;
  }

  .desktop-nav > a:not(.nav-book) {
    transform: translateY(4px);
  }

  .desktop-nav .nav-book {
    right: 0;
    top: var(--header-height-desktop);
    transform: translateY(-50%);
    height: 30px;
    min-height: 30px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile: remove the tiny black seam below the red phone bar */
@media (max-width: 760px) {
  .mobile-phone-bar {
    position: relative;
    z-index: 160;
    height: 25px;
    margin-bottom: -1px;
    box-shadow: 0 2px 0 var(--red);
  }

  .hv2-hero {
    margin-top: -1px;
  }

  .hv2-hero-bg {
    top: calc(var(--header-height-mobile) - 20px);
  }
}

/* =========================================================
   BOOK NOW TRUE EDGE STRADDLE PATCH
========================================================= */

@media (min-width: 761px) {
  .desktop-nav .nav-book {
    top: calc(var(--header-height-desktop) + 11px);
    transform: translateY(-50%);
  }
}

/* =========================================================
   MOBILE CAROUSEL OVERLAP + PACKAGE SPACING TUNE
========================================================= */

@media (max-width: 760px) {
  /* let the phones break past the black hero edge */
  .hv2-hero {
    overflow: visible;
  }

  .hv2-media-stage.video-feature-carousel {
    overflow: visible;
    margin-bottom: -26px;
  }

  /* drop the phone group slightly so center phone crosses the black/white edge */
  .video-card[data-position="center"] {
    transform: translateX(-50%) translateY(24px) rotate(0deg);
  }

  .video-card[data-position="left"] {
    transform: translateX(calc(-50% - 145px)) translateY(82px) rotate(0deg);
  }

  .video-card[data-position="right"] {
    transform: translateX(calc(-50% + 145px)) translateY(82px) rotate(0deg);
  }

  /* controls stay below the phone, not smashed into it */
  .hv2-carousel-ui.video-carousel-controls,
  .video-carousel-controls {
    margin-top: 24px;
  }

  /* package cards start about 60px below carousel controls */
  .home-v2 .hv2-packages {
    margin-top: -150px;
    padding-top: 172px;
  }
}

/* =========================================================
   FINAL NAV EDGE + MOBILE CAROUSEL DOT SPACING PATCH
========================================================= */

/* Desktop nav: smaller black band + Book Now centered on true bottom edge */
@media (min-width: 761px) {
  :root {
    --header-height-desktop: 52px;
  }

  .site-header {
    height: var(--header-height-desktop);
    overflow: visible;
  }

  .nav-inner {
    height: var(--header-height-desktop);
    grid-template-columns: 104px 190px 1fr;
    align-items: center;
  }

  .site-logo {
    height: var(--header-height-desktop);
  }

  .site-logo img {
    width: 96px;
    transform: translateY(0);
  }

  .nav-contact {
    height: var(--header-height-desktop);
    transform: translateY(2px);
  }

  .nav-contact .nav-phone {
    height: var(--header-height-desktop);
    font-size: 10px;
    line-height: 1;
  }

  .nav-facebook {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .desktop-nav {
    height: var(--header-height-desktop);
    align-items: center;
    justify-content: flex-end;
    gap: 21px;
    font-size: 9px;
  }

  .desktop-nav > a:not(.nav-book) {
    height: var(--header-height-desktop);
    align-items: center;
    transform: translateY(2px);
  }

  .desktop-nav .nav-book {
    right: 0;
    top: 100%;
    transform: translateY(-50%);

    height: 30px;
    min-height: 30px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 9px;
    line-height: 1;
  }
}

/* Mobile: move carousel dots/arrows 30px farther below phones */
@media (max-width: 760px) {
  .hv2-carousel-ui,
  .hv2-carousel-ui.video-carousel-controls,
  .video-carousel-controls {
    margin-top: 54px;
  }
}

/* =========================================================
   DESKTOP HERO STARTS UNDER FIXED NAV / NO EXTRA BLACK BAND
========================================================= */

@media (min-width: 761px) {
  /* keep nav compact */
  :root {
    --header-height-desktop: 52px;
  }

  .site-header {
    height: var(--header-height-desktop);
  }

  .nav-inner {
    height: var(--header-height-desktop);
  }

  /* hero image begins at very top of page, behind fixed nav */
  .hv2-hero {
    padding-top: 0;
  }

  .hv2-hero-bg {
    inset: 0 0 auto;
    height: 675px;
  }

  /* compensate the copy downward manually */
  .hv2-hero-copy {
    padding-top: 138px;
  }

  /* Book Now: plant over visible bottom edge of black nav */
  .desktop-nav .nav-book {
    top: calc(var(--header-height-desktop) + 15px);
    transform: translateY(-50%);
  }
}

/* =========================================================
   PERFORMANCE STABILIZATION PATCH
========================================================= */

/* fixed-header blur is visually nice but expensive */
.site-header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* modal blur can also be heavy */
.video-modal-backdrop {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* don't keep GPU hints permanently active */
.video-card {
  will-change: auto;
}

/* only hint while hovering/focused */
.video-card:hover,
.video-card:focus-visible {
  will-change: transform, opacity, filter;
}

/* =========================================================
   BOOK NOW TRUE MIDLINE EDGE FIX
========================================================= */

@media (min-width: 761px) {
  .desktop-nav .nav-book {
    --book-now-height: 30px;

    height: var(--book-now-height);
    min-height: var(--book-now-height);

    top: calc(100% - (var(--book-now-height) / 2));
    transform: none;
  }
}

/* =========================================================
   BOOK NOW BREATHING ROOM TUNE
========================================================= */

@media (min-width: 761px) {
  .desktop-nav .nav-book {
    --book-now-height: 30px;

    height: var(--book-now-height);
    min-height: var(--book-now-height);

    right: 0;
    top: calc(100% - (var(--book-now-height) / 2) + 7px);
    transform: none;
  }
}

/* =========================================================
   PACKAGE GRID — FOUR CARDS / VIZIMAGE FINAL
========================================================= */

.home-v2 .hv2-packages {
  background: #fff;
  color: #000;
}

/* Wider centered rail for the package cards */
.home-v2 .hv2-packages .live-area {
  width: min(calc(100% - 80px), 1560px);
  max-width: none;
  margin-inline: auto;
}

/* Beat older .hv2-package-grid rules without hurting other sections */
.home-v2 .hv2-package-grid.package-grid-4 {
  width: 100%;
  max-width: none;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.home-v2 .package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 660px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  color: #000;
  box-shadow: none;
}

.home-v2 .package-preview {
  position: relative;
  height: 160px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.28)),
    linear-gradient(135deg, #f2f2f2, #b7b7b7);
  color: rgba(0,0,0,0.46);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-v2 .package-preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.82));
}

.home-v2 .package-preview span {
  position: relative;
  z-index: 2;
}

.home-v2 .package-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 34px 32px 30px;
  overflow: visible;
}

.home-v2 .package-title-row {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.home-v2 .package-title-row h2 {
  max-width: 100%;
  margin: 0;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(29px, 1.65vw, 38px);
  line-height: 1.04;
  letter-spacing: 0.018em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: normal;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.home-v2 .package-title-row span {
  width: fit-content;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(224, 0, 24, 0.1);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.home-v2 .package-copy {
  min-height: 92px;
  margin-bottom: 20px;
  color: #3b3b3b;
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.006em;
}

.home-v2 .package-starting {
  margin-top: 2px;
  color: #555;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.home-v2 .package-price {
  max-width: 100%;
  margin: 8px 0 20px;
  color: #000;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.05vw, 42px);
  line-height: 1;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: visible;
}

.home-v2 .package-services {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.home-v2 .package-services li {
  position: relative;
  padding: 13px 22px 13px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  color: #111;
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.003em;
}

.home-v2 .package-services li::after {
  content: "⌄";
  position: absolute;
  right: 0;
  top: 12px;
  color: var(--red);
  font-size: 14px;
}

.home-v2 .package-cta {
  margin-top: auto;
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-v2 .package-cta span {
  font-size: 18px;
  line-height: 1;
}

/* Featured / Most Popular card */
.home-v2 .package-card.is-featured {
  background: #080808;
  color: #fff;
  border: 2px solid var(--red);
  box-shadow: 0 22px 70px rgba(0,0,0,0.2);
}

.home-v2 .package-card.is-featured .package-preview {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.68)),
    linear-gradient(135deg, #575757, #111);
  color: rgba(255,255,255,0.58);
}

.home-v2 .package-card.is-featured .package-preview::after {
  background: linear-gradient(180deg, transparent, rgba(8,8,8,0.88));
}

.home-v2 .package-card.is-featured .package-preview strong {
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 3;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.home-v2 .package-card.is-featured .package-title-row h2,
.home-v2 .package-card.is-featured .package-price {
  color: #fff;
}

.home-v2 .package-card.is-featured .package-title-row span {
  background: rgba(255,255,255,0.13);
  color: #fff;
}

.home-v2 .package-card.is-featured .package-copy,
.home-v2 .package-card.is-featured .package-starting,
.home-v2 .package-card.is-featured .package-services li {
  color: rgba(255,255,255,0.86);
}

.home-v2 .package-card.is-featured .package-services {
  border-top-color: rgba(255,255,255,0.16);
}

.home-v2 .package-card.is-featured .package-services li {
  border-bottom-color: rgba(255,255,255,0.16);
}

.home-v2 .package-card.is-featured .package-cta {
  background: #fff;
  color: var(--red);
}

/* laptop / narrower desktop */
@media (min-width: 761px) and (max-width: 1199px) {
  .home-v2 .hv2-packages .live-area {
    width: min(calc(100% - 48px), 920px);
    max-width: none;
  }

  .home-v2 .hv2-package-grid.package-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .home-v2 .package-card {
    min-height: auto;
  }
}

/* mobile */
@media (max-width: 760px) {
  .home-v2 .hv2-packages .live-area {
    width: calc(100% - 30px);
  }

  .home-v2 .hv2-package-grid.package-grid-4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-v2 .package-card {
    min-height: auto;
  }

  .home-v2 .package-preview {
    height: 140px;
  }

  .home-v2 .package-card-body {
    padding: 26px 24px 24px;
  }

  .home-v2 .package-title-row h2 {
    font-size: 29px;
  }

  .home-v2 .package-copy {
    min-height: 0;
    font-size: 13px;
  }

  .home-v2 .package-price {
    font-size: 38px;
  }
}

/* =========================================================
   SERVICES + WORKING VISUAL PORT FROM HOMEPAGE SYSTEM
   Paste at the very bottom of /css/style.css
========================================================= */

/* Shared page polish pulled from the current homepage header/footer system */
.site-logo img,
.footer-logo img {
  display: block;
  height: auto;
}

.site-logo img {
  width: 190px;
}

.footer-logo img {
  width: 220px;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  height: var(--header-height-desktop);
}

.nav-facebook {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}

.nav-facebook img {
  width: 100%;
  height: auto;
}

.nav-contact .nav-phone {
  height: auto;
  display: inline-flex;
  align-items: center;
  color: #fff;
}

/* Keep the old generated social dot off once real Facebook markup exists */
.nav-social-dot,
.site-header::after {
  display: none;
}

/* ---------------------------------------------------------
   SERVICES PAGE — mock port
--------------------------------------------------------- */

.services-v2 {
  background: #000;
}

.services-v2 .sv2-hero {
  position: relative;
  height: 430px;
  padding-top: 0;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  background: #000;
}

.services-v2 .sv2-hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.46)),
    url("/assets/Images/Services/services-hero.jpg"),
    linear-gradient(90deg, #d8d4ca 0%, #8d8a82 42%, #f2eadc 74%, #c7bdad 100%);
  background-size: cover;
  background-position: center center;
}

.services-v2 .sv2-hero-image::before {
  display: none;
}

.services-v2 .sv2-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  text-align: center;
}

.services-v2 .sv2-hero h1 {
  color: #fff;
  font-size: clamp(34px, 3.4vw, 62px);
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 8px 28px rgba(0,0,0,0.58);
}

.services-v2 .sv2-premium {
  position: relative;
  padding: 76px 0 44px;
  background: #000;
  color: #fff;
}

.services-v2 .sv2-premium-grid {
  width: min(calc(100% - 30px), 1240px);
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 88px;
}

.services-v2 .sv2-premium-title h2 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(46px, 4.25vw, 78px);
  line-height: 1.02;
  letter-spacing: 0.055em;
}

.services-v2 .sv2-video-panel {
  appearance: none;
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 7px solid #151515;
  border-radius: 14px;
  background:
    linear-gradient(140deg, rgba(224,0,24,0.32), rgba(0,0,0,0.18)),
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.08), transparent 22%),
    url("/assets/Images/Services/services-video-preview.jpg"),
    linear-gradient(135deg, #280008 0%, #870014 52%, #170004 100%);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.66);
}

.services-v2 .sv2-play {
  border-color: rgba(255,255,255,0.88);
}

.services-v2 .sv2-slider-ui {
  margin-top: 20px;
}

.services-v2 .sv2-photo-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 330px;
  background: #000;
}

.services-v2 .sv2-photo-tile {
  min-height: 330px;
  background-size: cover;
  background-position: center;
}

.services-v2 .sv2-photo-tile.tile-1 {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.14)),
    url("/assets/Images/Services/services-photo-1.jpg"),
    linear-gradient(135deg, #ddd8cf, #716d66);
}

.services-v2 .sv2-photo-tile.tile-2 {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.14)),
    url("/assets/Images/Services/services-photo-2.jpg"),
    linear-gradient(135deg, #efe6d8, #a7794c);
}

.services-v2 .sv2-photo-tile.tile-3 {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.14)),
    url("/assets/Images/Services/services-photo-3.jpg"),
    linear-gradient(135deg, #d8d0c5, #8a674d);
}

.services-v2 .sv2-photo-tile.tile-4 {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.18)),
    url("/assets/Images/Services/services-photo-4.jpg"),
    linear-gradient(135deg, #c88f46, #3b2519);
}

.services-v2 .sv2-intro-copy {
  position: relative;
  padding: 82px 0 108px;
  background: #000;
  color: #fff;
  text-align: center;
}

.services-v2 .sv2-intro-copy > .primary-pill {
  position: absolute;
  left: 50%;
  top: -23px;
  transform: translateX(-50%);
  min-width: 220px;
}

.services-v2 .sv2-intro-copy h2 {
  max-width: 1040px;
  margin: 0 auto 34px;
  color: var(--red);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.26;
  letter-spacing: 0.09em;
}

.services-v2 .sv2-intro-copy p {
  max-width: 780px;
  margin: 0 auto 22px;
  color: #fff;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 700;
}

.services-v2 .sv2-tour {
  padding: 102px 0 106px;
  background: #fff;
  color: #000;
}

.services-v2 .sv2-tour h2 {
  margin-bottom: 34px;
  color: #000;
  font-size: clamp(54px, 5vw, 90px);
  line-height: 1;
  letter-spacing: 0.055em;
}

.services-v2 .sv2-tour h3 {
  margin: 0 0 16px;
  color: var(--red);
  font-size: clamp(20px, 1.55vw, 30px);
  line-height: 1.15;
  letter-spacing: 0.085em;
}

.services-v2 .sv2-tour p {
  max-width: 1120px;
  margin: 0 0 28px;
  color: #000;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.services-v2 .sv2-partners {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 34px;
  margin: 42px 0 18px;
  color: #111;
  font-size: 24px;
}

.services-v2 .sv2-tour-embed {
  min-height: 585px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.24)),
    url("/assets/Images/Services/services-3d-tour-preview.jpg"),
    linear-gradient(135deg, #e8e5de, #b5b6b1);
  background-size: cover;
  background-position: center;
  color: rgba(0,0,0,0.45);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-v2 .sv2-additional {
  position: relative;
  padding: 96px 0 126px;
  overflow: hidden;
  background: #000;
  color: #fff;
  text-align: center;
}

.services-v2 .sv2-additional h2 {
  max-width: 1040px;
  margin: 0 auto 26px;
  color: #fff;
  font-size: clamp(50px, 5vw, 86px);
  line-height: 1;
  letter-spacing: 0.06em;
}

.services-v2 .sv2-additional .sv2-redline {
  max-width: 860px;
  margin: 0 auto 54px;
  color: var(--red);
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.35;
  letter-spacing: 0.09em;
}

.services-v2 .sv2-additional-images {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
}

.services-v2 .sv2-additional-image {
  min-height: 330px;
  background-size: cover;
  background-position: center;
}

.services-v2 .sv2-additional-image.image-a {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.08)),
    url("/assets/Images/Services/additional-service-1.jpg"),
    linear-gradient(135deg, #e7e4df, #6c6c6c);
}

.services-v2 .sv2-additional-image.image-b {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.08)),
    url("/assets/Images/Services/additional-service-2.jpg"),
    linear-gradient(135deg, #37a1e5, #415d34 58%, #282828);
}

.services-v2 .sv2-drone {
  position: absolute;
  right: 2vw;
  bottom: -36px;
  width: min(620px, 42vw);
  height: 220px;
  margin: 0;
  background:
    url("/assets/Images/Services/drone.png") center / contain no-repeat,
    radial-gradient(ellipse at center, #777 0 18%, transparent 19%);
  opacity: 0.96;
  pointer-events: none;
}

/* ---------------------------------------------------------
   WORKING WITH VIZIMAGE — mock port
--------------------------------------------------------- */

.working-v2 {
  background: #000;
}

.working-v2 .wv2-hero {
  position: relative;
  min-height: 700px;
  padding-top: 0;
  overflow: visible;
  color: #fff;
  background: #000;
}

.working-v2 .wv2-hero-bg {
  position: absolute;
  inset: 0 0 auto;
  height: 700px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.44) 48%, rgba(0,0,0,0.74) 100%),
    url("/assets/Images/Working/working-hero.jpg"),
    linear-gradient(135deg, #3f3b35 0%, #151515 58%, #000 100%);
  background-size: cover;
  background-position: center center;
}

.working-v2 .wv2-hero-bg::before {
  display: none;
}

.working-v2 .wv2-hero-title {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 30px), var(--desktop-live));
  margin: 0 auto;
  padding-top: 208px;
  text-align: center;
}

.working-v2 .wv2-hero-title h1 {
  color: #fff;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 8px 28px rgba(0,0,0,0.6);
}

.working-v2 .wv2-hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  margin-top: 180px;
  align-items: end;
}

.working-v2 .wv2-redline {
  margin: 0 0 20px;
  color: var(--red);
  font-size: clamp(18px, 1.5vw, 26px);
  line-height: 1.15;
  letter-spacing: 0.1em;
}

.working-v2 .wv2-hero-content h2 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(46px, 4.4vw, 82px);
  line-height: 1.02;
  letter-spacing: 0.055em;
}

.working-v2 .wv2-hero-content p {
  max-width: 650px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.working-v2 .wv2-floating-cta {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: -33px;
  min-width: 360px;
  transform: translateX(-50%);
}

.working-v2 .wv2-founders {
  padding: 118px 0 102px;
  background: #fff;
  color: #000;
}

.working-v2 .wv2-founder-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 76px;
  align-items: start;
}

.working-v2 .wv2-founder-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
}

.working-v2 .wv2-founder-card {
  margin: 0;
  text-align: center;
}

.working-v2 .wv2-headshot {
  position: relative;
  min-height: 278px;
  background-size: cover;
  background-position: center;
  box-shadow: 22px 22px 0 var(--red);
}

.working-v2 .wv2-headshot-nick {
  background-image:
    url("/assets/Images/Working/nick-derango.jpg"),
    linear-gradient(135deg, #111 0%, #333 52%, #111 100%);
}

.working-v2 .wv2-headshot-corey {
  background-image:
    url("/assets/Images/Working/corey-krakowski.jpg"),
    linear-gradient(135deg, #111 0%, #333 52%, #111 100%);
}

.working-v2 .wv2-founder-card figcaption {
  margin: 30px 0 0;
  color: var(--red);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

.working-v2 .wv2-founder-copy h2 {
  margin: 0 0 34px;
  color: #000;
  font-size: clamp(46px, 4.6vw, 84px);
  line-height: 1.02;
  letter-spacing: 0.055em;
}

.working-v2 .wv2-founder-copy p {
  max-width: 650px;
  margin: 0 0 28px;
  color: #000;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 700;
}

.working-v2 .wv2-founder-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.working-v2 .wv2-founder-copy li {
  position: relative;
  margin: 20px 0;
  padding-left: 32px;
  color: #000;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.working-v2 .wv2-founder-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--red);
  transform: rotate(45deg);
}

.working-v2 .wv2-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 106px;
  text-align: center;
}

.working-v2 .wv2-stats article {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  border-right: 2px solid var(--red);
}

.working-v2 .wv2-stats article:last-child {
  border-right: 0;
}

.working-v2 .wv2-stat-icon {
  width: 96px;
  height: 62px;
  margin-bottom: 20px;
  border: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.working-v2 .wv2-people-icon {
  background-image: url("/assets/Images/Working/agents-served-icon.png");
}

.working-v2 .wv2-house-icon {
  background-image: url("/assets/Images/Working/houses-photographed-icon.png");
}

.working-v2 .wv2-stats strong {
  display: block;
  color: var(--red);
  font-size: clamp(96px, 9vw, 170px);
  line-height: 0.82;
  letter-spacing: 0.02em;
}

.working-v2 .wv2-stats p {
  margin: 18px 0 0;
  color: #000;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.working-v2 .wv2-prep {
  padding: 100px 0 80px;
  background: #000;
  color: #fff;
}

.working-v2 .wv2-prep-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 78px;
  align-items: center;
}

.working-v2 .wv2-prep h2 {
  max-width: 640px;
  margin: 0 0 32px;
  color: #fff;
  font-size: clamp(48px, 4.7vw, 88px);
  line-height: 1.03;
  letter-spacing: 0.06em;
}

.working-v2 .wv2-prep p {
  max-width: 620px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 700;
}

.working-v2 .wv2-prep-video {
  appearance: none;
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(180deg, rgba(224,0,24,0.10), rgba(0,0,0,0.12)),
    url("/assets/Images/Working/photo-prep-video-preview.jpg"),
    linear-gradient(135deg, #42d6ff, #0a83ba);
  background-size: cover;
  background-position: center;
}

.working-v2 .wv2-red-divider {
  position: relative;
  height: 3px;
  margin-top: 76px;
  background: var(--red);
}

.working-v2 .wv2-red-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--red);
  transform: translate(-50%, -50%) rotate(45deg);
}

.working-v2 .wv2-staging {
  padding: 72px 0 106px;
  background: #000;
  color: #fff;
  text-align: center;
}

.working-v2 .wv2-staging h2 {
  margin: 0 auto 34px;
  color: #fff;
  font-size: clamp(54px, 5.4vw, 94px);
  line-height: 1;
  letter-spacing: 0.08em;
}

.working-v2 .wv2-staging .wv2-redline {
  max-width: 880px;
  margin: 0 auto 34px;
  color: var(--red);
  font-size: clamp(20px, 1.8vw, 32px);
  line-height: 1.35;
}

.working-v2 .wv2-staging-copy {
  max-width: 760px;
  margin: 0 auto 54px;
  color: #fff;
  font-size: 13px;
  line-height: 1.78;
  font-weight: 700;
}

.working-v2 .wv2-staging-cta {
  min-width: 320px;
}

/* ---------------------------------------------------------
   Services + Working responsive refinements
--------------------------------------------------------- */

@media (max-width: 1100px) and (min-width: 761px) {
  .services-v2 .sv2-premium-grid,
  .working-v2 .wv2-hero-content,
  .working-v2 .wv2-founder-grid,
  .working-v2 .wv2-prep-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .working-v2 .wv2-hero-content {
    margin-top: 100px;
  }
}

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

  .site-logo img {
    width: 104px;
  }

  .services-v2 .sv2-hero {
    height: 232px;
    padding-top: var(--header-height-mobile);
  }

  .services-v2 .sv2-hero-image {
    inset: var(--header-height-mobile) 0 0;
    background-position: center;
  }

  .services-v2 .sv2-hero-inner {
    padding-top: 0;
  }

  .services-v2 .sv2-hero h1 {
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .services-v2 .sv2-premium {
    padding: 34px 0 24px;
  }

  .services-v2 .sv2-premium-grid {
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-v2 .sv2-premium-title {
    order: 2;
  }

  .services-v2 .sv2-premium-title h2 {
    max-width: 330px;
    font-size: 31px;
    line-height: 1.08;
  }

  .services-v2 .sv2-video-panel {
    min-height: 205px;
    order: 1;
    border-width: 5px;
    border-radius: 10px;
  }

  .services-v2 .sv2-photo-band {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
  }

  .services-v2 .sv2-photo-tile {
    min-height: 150px;
  }

  .services-v2 .sv2-intro-copy {
    padding: 56px 0 72px;
  }

  .services-v2 .sv2-intro-copy h2,
  .services-v2 .sv2-additional .sv2-redline {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.45;
  }

  .services-v2 .sv2-intro-copy p,
  .services-v2 .sv2-tour p {
    max-width: 330px;
    font-size: 11px;
    line-height: 1.75;
  }

  .services-v2 .sv2-tour {
    padding: 50px 0 56px;
  }

  .services-v2 .sv2-tour h2 {
    font-size: 34px;
    text-align: center;
  }

  .services-v2 .sv2-tour h3 {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.35;
  }

  .services-v2 .sv2-partners {
    justify-content: flex-start;
    gap: 24px;
    font-size: 18px;
  }

  .services-v2 .sv2-tour-embed {
    min-height: 205px;
    font-size: 11px;
  }

  .services-v2 .sv2-additional {
    padding: 54px 0 86px;
  }

  .services-v2 .sv2-additional h2 {
    max-width: 330px;
    font-size: 31px;
    line-height: 1.08;
  }

  .services-v2 .sv2-additional-images {
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-v2 .sv2-additional-image {
    min-height: 185px;
  }

  .services-v2 .sv2-drone {
    right: -48px;
    bottom: -22px;
    width: 340px;
    height: 120px;
  }

  .working-v2 .wv2-hero {
    min-height: 475px;
    padding-top: var(--header-height-mobile);
    overflow: hidden;
  }

  .working-v2 .wv2-hero-bg {
    inset: var(--header-height-mobile) 0 auto;
    height: 205px;
  }

  .working-v2 .wv2-hero-title {
    width: calc(100% - 30px);
    padding-top: 58px;
  }

  .working-v2 .wv2-hero-title h1 {
    font-size: 17px;
  }

  .working-v2 .wv2-hero-content {
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 70px;
  }

  .working-v2 .wv2-redline {
    font-size: 13px;
    line-height: 1.3;
  }

  .working-v2 .wv2-hero-content h2 {
    max-width: 330px;
    font-size: 29px;
    line-height: 1.12;
  }

  .working-v2 .wv2-hero-content p {
    max-width: 330px;
    font-size: 11px;
    line-height: 1.7;
  }

  .working-v2 .wv2-floating-cta {
    position: relative;
    left: 50%;
    bottom: auto;
    min-width: 260px;
    margin-top: 22px;
  }

  .working-v2 .wv2-founders {
    padding: 52px 0 58px;
  }

  .working-v2 .wv2-founder-grid,
  .working-v2 .wv2-prep-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .working-v2 .wv2-founder-photos {
    grid-template-columns: 1fr;
    gap: 42px;
    max-width: 230px;
    margin: 0 auto;
  }

  .working-v2 .wv2-headshot {
    min-height: 230px;
    box-shadow: 14px 14px 0 var(--red);
  }

  .working-v2 .wv2-founder-card figcaption {
    margin-top: 22px;
    font-size: 11px;
  }

  .working-v2 .wv2-founder-copy h2 {
    font-size: 33px;
    line-height: 1.08;
  }

  .working-v2 .wv2-founder-copy p,
  .working-v2 .wv2-founder-copy li,
  .working-v2 .wv2-prep p,
  .working-v2 .wv2-staging-copy {
    font-size: 11px;
    line-height: 1.75;
  }

  .working-v2 .wv2-stats {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .working-v2 .wv2-stats article {
    min-height: 205px;
    border-right: 0;
    border-bottom: 2px solid var(--red);
  }

  .working-v2 .wv2-stats article:last-child {
    border-bottom: 0;
  }

  .working-v2 .wv2-stat-icon {
    width: 80px;
    height: 52px;
  }

  .working-v2 .wv2-stats strong {
    font-size: 78px;
  }

  .working-v2 .wv2-stats p {
    font-size: 17px;
  }

  .working-v2 .wv2-prep {
    padding: 56px 0 48px;
  }

  .working-v2 .wv2-prep h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .working-v2 .wv2-prep-video {
    min-height: 170px;
  }

  .working-v2 .wv2-red-divider {
    margin-top: 42px;
  }

  .working-v2 .wv2-staging {
    padding: 50px 0 62px;
  }

  .working-v2 .wv2-staging h2 {
    font-size: 36px;
    line-height: 1;
  }

  .working-v2 .wv2-staging .wv2-redline {
    max-width: 330px;
    font-size: 16px;
    line-height: 1.4;
  }

  .working-v2 .wv2-staging-copy {
    max-width: 330px;
  }

  .working-v2 .wv2-staging-cta {
    min-width: 260px;
  }
}

/* =========================================================
   UNIVERSAL CONTACT + FOOTER LOCKUP
   Homepage / Services / Working with Vizimage
========================================================= */

/* -------------------------
   Contact section: universal desktop
------------------------- */

.home-v2 .hv2-contact,
.services-v2 .sv2-contact,
.working-v2 .wv2-contact {
  position: relative;
  padding: 92px 0 104px;
  background: #fff;
  color: #000;
  text-align: center;
}

.home-v2 .hv2-contact .live-area,
.services-v2 .sv2-contact .live-area,
.working-v2 .wv2-contact .live-area {
  width: min(calc(100% - 30px), 1040px);
  margin-inline: auto;
}

.home-v2 .hv2-contact h2,
.services-v2 .sv2-contact h2,
.working-v2 .wv2-contact h2 {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #000;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.2vw, 74px);
  line-height: 0.98;
  letter-spacing: 0.06em;
  font-weight: 400;
  text-transform: uppercase;
}

.home-v2 .hv2-contact .hv2-redline,
.services-v2 .sv2-contact .sv2-redline,
.working-v2 .wv2-contact .wv2-redline {
  max-width: 840px;
  margin: 0 auto 30px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.45vw, 25px);
  line-height: 1.2;
  letter-spacing: 0.06em;
  font-weight: 400;
  text-transform: uppercase;
}

.home-v2 .hv2-contact-icons,
.services-v2 .sv2-contact-icons,
.working-v2 .wv2-contact-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  margin: 30px 0 34px;
}

.home-v2 .hv2-contact-icons span,
.services-v2 .sv2-contact-icons span,
.working-v2 .wv2-contact-icons span {
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* universal icon art */
.home-v2 .hv2-contact-icons span:nth-child(1),
.services-v2 .sv2-contact-icons span:nth-child(1),
.working-v2 .wv2-contact-icons span:nth-child(1) {
  background-image: url("/assets/Images/Home/handshake-icon.png");
}

.home-v2 .hv2-contact-icons span:nth-child(2),
.services-v2 .sv2-contact-icons span:nth-child(2),
.working-v2 .wv2-contact-icons span:nth-child(2) {
  background-image: url("/assets/Images/Home/camera-icon.png");
}

.home-v2 .hv2-contact p:not(.hv2-redline),
.services-v2 .sv2-contact p:not(.sv2-redline),
.working-v2 .wv2-contact p:not(.wv2-redline) {
  max-width: 870px;
  margin: 0 auto 24px;
  color: #000;
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-weight: 400;
  text-transform: none;
}

/* keep optional second paragraph consistent, not section-breaking */
.home-v2 .hv2-contact p:not(.hv2-redline) + p,
.services-v2 .sv2-contact p:not(.sv2-redline) + p,
.working-v2 .wv2-contact p:not(.wv2-redline) + p {
  margin-top: 12px;
}

/* CTA always straddles the black footer edge */
.home-v2 .hv2-contact > .live-area > .primary-pill,
.services-v2 .sv2-contact > .live-area > .primary-pill,
.working-v2 .wv2-contact > .live-area > .primary-pill {
  position: absolute;
  left: 50%;
  bottom: -23px;
  z-index: 20;
  transform: translateX(-50%);

  min-height: 46px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: var(--red);
  color: #fff;

  font-family: var(--font-display);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* -------------------------
   Footer: universal desktop
------------------------- */

.site-footer {
  padding: 76px 0 54px;
  background: #000;
  color: #fff;
  border-top: 0;
}

.site-footer .footer-inner {
  width: min(calc(100% - 30px), var(--desktop-live));
  margin-inline: auto;

  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-footer .footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.site-footer .footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  line-height: 0;
}

.site-footer .footer-logo img {
  width: 190px;
  height: auto;
  display: block;
}

/* If an older footer logo span version sneaks through, keep it from creating a mismatch */
.site-footer .footer-logo .logo-mark,
.site-footer .footer-logo .logo-text {
  display: none;
}

/* ---------------------------------------------------------
   Working page stats: reserve icon space above 300 / 10000
--------------------------------------------------------- */

.working-v2 .wv2-stats article {
  align-content: center;
}

.working-v2 .wv2-stat-icon {
  display: block;
  width: 110px;
  height: 76px;
  margin: 0 auto 24px;

  border: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* fallback red line-icons until final assets are in place */
.working-v2 .wv2-stat-icon:not(.wv2-house-icon) {
  background-image: url("/assets/Images/Working/agents-served-icon.png");
}

.working-v2 .wv2-stat-icon.wv2-house-icon {
  background-image: url("/assets/Images/Working/houses-photographed-icon.png");
}

/* fallback if those image assets are missing: preserve the slot visually */
.working-v2 .wv2-stat-icon:not([style]) {
  min-height: 76px;
}

/* -------------------------
   Contact + footer: universal mobile
------------------------- */

@media (max-width: 760px) {
  .home-v2 .hv2-contact,
  .services-v2 .sv2-contact,
  .working-v2 .wv2-contact {
    padding: 54px 0 88px;
  }

  .home-v2 .hv2-contact .live-area,
  .services-v2 .sv2-contact .live-area,
  .working-v2 .wv2-contact .live-area {
    width: calc(100% - 30px);
  }

  .home-v2 .hv2-contact h2,
  .services-v2 .sv2-contact h2,
  .working-v2 .wv2-contact h2 {
    max-width: 330px;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: 0.055em;
    margin-bottom: 22px;
  }

  .home-v2 .hv2-contact .hv2-redline,
  .services-v2 .sv2-contact .sv2-redline,
  .working-v2 .wv2-contact .wv2-redline {
    max-width: 330px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 0.06em;
  }

  .home-v2 .hv2-contact-icons,
  .services-v2 .sv2-contact-icons,
  .working-v2 .wv2-contact-icons {
    gap: 26px;
    margin: 24px 0 30px;
  }

  .home-v2 .hv2-contact-icons span,
  .services-v2 .sv2-contact-icons span,
  .working-v2 .wv2-contact-icons span {
    width: 58px;
    height: 58px;
  }

  .home-v2 .hv2-contact p:not(.hv2-redline),
  .services-v2 .sv2-contact p:not(.sv2-redline),
  .working-v2 .wv2-contact p:not(.wv2-redline) {
    max-width: 330px;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.72;
  }

  .home-v2 .hv2-contact > .live-area > .primary-pill,
  .services-v2 .sv2-contact > .live-area > .primary-pill,
  .working-v2 .wv2-contact > .live-area > .primary-pill {
    bottom: -22px;
    width: min(330px, calc(100vw - 30px));
    min-height: 44px;
    padding-inline: 16px;
    font-size: 10px;
    line-height: 1.05;
    text-align: center;
  }

  .site-footer {
    padding: 70px 0 34px;
  }

  .site-footer .footer-inner {
    width: calc(100% - 30px);
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 26px;
  }

  .site-footer .footer-inner > div {
    order: 1;
  }

  .site-footer .footer-logo {
    order: 2;
    align-self: flex-end;
  }

  .site-footer .footer-logo img {
    width: 145px;
  }

  .site-footer .footer-inner p {
    font-size: 10px;
    line-height: 1.55;
    letter-spacing: 0.045em;
  }

  .working-v2 .wv2-stat-icon {
    width: 82px;
    height: 58px;
    margin-bottom: 16px;
  }
}

/* =========================================================
   PACKAGE ACCORDION DROPDOWNS — LIVE PLACEHOLDER
========================================================= */

.home-v2 .package-accordion {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.home-v2 .package-service {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.home-v2 .package-service summary {
  position: relative;
  min-height: 46px;
  padding: 13px 26px 13px 0;
  display: flex;
  align-items: center;
  color: #111;
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1.28;
  letter-spacing: 0.003em;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.home-v2 .package-service summary::-webkit-details-marker {
  display: none;
}

.home-v2 .package-service summary::after {
  content: "⌄";
  position: absolute;
  right: 0;
  top: 13px;
  color: var(--red);
  font-size: 14px;
  line-height: 1;
  transition: transform 180ms ease;
}

.home-v2 .package-service[open] summary::after {
  transform: rotate(180deg);
}

.home-v2 .package-service p {
  margin: -2px 0 15px;
  padding-right: 18px;
  color: rgba(0, 0, 0, 0.68);
  font-family: var(--font-display);
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  text-transform: none;
}

/* featured reverse card */
.home-v2 .package-card.is-featured .package-accordion {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.home-v2 .package-card.is-featured .package-service {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.home-v2 .package-card.is-featured .package-service summary {
  color: rgba(255, 255, 255, 0.88);
}

.home-v2 .package-card.is-featured .package-service p {
  color: rgba(255, 255, 255, 0.66);
}

.home-v2 .package-card.is-featured .package-service summary::after {
  color: var(--red);
}

/* prevent old li package rules from affecting this new structure */
.home-v2 .package-accordion li,
.home-v2 .package-accordion li::after {
  all: unset;
}

/* mobile tuning */
@media (max-width: 760px) {
  .home-v2 .package-service summary {
    min-height: 44px;
    font-size: 12px;
    line-height: 1.3;
  }

  .home-v2 .package-service p {
    font-size: 10px;
    line-height: 1.6;
  }
}

/* =========================================================
   HOMEPAGE HERO — CLEAN CONSOLIDATED RESET
   Desktop mock target + wide-mobile below 950px
   Paste after PACKAGE ACCORDION block
========================================================= */

/* -------------------------
   Shared cleanup
------------------------- */

.home-v2 .hv2-media-stage.video-feature-carousel::after {
  content: none !important;
  display: none !important;
}

.home-v2 .hv2-side-art-band {
  display: none !important;
}

.home-v2 .hv2-lens {
  display: none !important;
}

/* Keep package section from being dragged upward by old hero experiments */
.home-v2 .hv2-packages {
  margin-top: 0;
  background: #fff;
  color: #000;
}

/* -------------------------
   Desktop / mock composition
   1200px and up
------------------------- */

@media (min-width: 1200px) {
  .home-v2 .hv2-hero {
    position: relative;
    height: 930px;
    min-height: 930px;
    padding-top: 0;
    overflow: visible;
    background: #000;
  }

  .home-v2 .hv2-hero-bg {
    inset: 0 0 auto;
    height: 675px;
  }

  .home-v2 .hv2-hero-copy {
    padding-top: 138px;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel {
    --hero-band-top: 132px;
    --hero-band-height: 320px;
    --hero-band-center: calc(var(--hero-band-top) + (var(--hero-band-height) / 2));

    position: relative;
    z-index: 10;
    width: 100vw;
    max-width: none;
    height: 620px;
    margin: 78px 0 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: var(--hero-band-top);
    height: var(--hero-band-height);
    z-index: 1;
    background: #000;
    pointer-events: none;
  }

  .home-v2 .hv2-lens-clip {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--hero-band-top);
    height: var(--hero-band-height);
    z-index: 6;
    overflow: hidden;
    pointer-events: none;
  }

  .home-v2 .hv2-lens-image {
    display: block !important;
    position: absolute;
    right: clamp(110px, 7vw, 235px);
    top: 50%;
    width: clamp(300px, 15.5vw, 390px);
    max-width: none;
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .home-v2 .hv2-desktop-showcase {
    display: block;
    position: absolute;
    left: clamp(50px, 4.4vw, 125px);
    top: var(--hero-band-center);
    bottom: auto;
    z-index: 8;
    width: clamp(485px, 25.5vw, 600px);
    max-width: none;
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .home-v2 .video-feature-stage {
    position: absolute;
    inset: 0;
    z-index: 30;
    width: 100%;
    height: 620px;
    margin: 0;
    display: block;
  }

  .home-v2 .video-card {
    position: absolute;
    left: 50%;
    top: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .home-v2 .video-card[data-position="center"] {
    width: 300px;
    height: 590px;
    z-index: 36;
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }

  .home-v2 .video-card[data-position="left"] {
    width: 190px;
    height: 374px;
    z-index: 34;
    transform: translateX(calc(-50% - 285px)) translateY(108px) rotate(0deg);
  }

  .home-v2 .video-card[data-position="right"] {
    width: 190px;
    height: 374px;
    z-index: 34;
    transform: translateX(calc(-50% + 285px)) translateY(108px) rotate(0deg);
  }

  .home-v2 .video-card-media,
  .home-v2 .video-card.main .video-card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-width: 7px;
    background-size: cover;
    background-position: center;
  }

  .home-v2 .video-card[data-position="center"] .video-card-media {
    border-radius: 42px;
  }

  .home-v2 .video-card[data-position="left"] .video-card-media,
  .home-v2 .video-card[data-position="right"] .video-card-media {
    border-radius: 32px;
  }

  .home-v2 .hv2-zillow {
    width: 132px;
    height: 54px;
    right: clamp(330px, 22vw, 540px);
    top: -42px;
    z-index: 40;
  }

  .home-v2 .hv2-carousel-ui.video-carousel-controls,
  .home-v2 .video-carousel-controls {
    position: relative;
    z-index: 45;
    margin-top: 0;
  }

  .home-v2 .hv2-packages {
    padding: 220px 0 56px;
  }
}

/* -------------------------
   Smaller desktop
   951px–1199px
------------------------- */

@media (min-width: 951px) and (max-width: 1199px) {
  .home-v2 .hv2-hero {
    height: 820px;
    min-height: 820px;
    padding-top: 0;
    overflow: visible;
    background: #000;
  }

  .home-v2 .hv2-hero-bg {
    inset: 0 0 auto;
    height: 610px;
  }

  .home-v2 .hv2-hero-copy {
    padding-top: 120px;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel {
    --hero-band-top: 112px;
    --hero-band-height: 280px;
    --hero-band-center: calc(var(--hero-band-top) + (var(--hero-band-height) / 2));

    position: relative;
    z-index: 10;
    width: 100vw;
    height: 522px;
    margin: 62px 0 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: var(--hero-band-top);
    height: var(--hero-band-height);
    z-index: 1;
    background: #000;
  }

  .home-v2 .hv2-lens-clip {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--hero-band-top);
    height: var(--hero-band-height);
    z-index: 6;
    overflow: hidden;
    pointer-events: none;
  }

  .home-v2 .hv2-lens-image {
    display: block !important;
    position: absolute;
    right: clamp(-230px, -8vw, -115px);
    top: 50%;
    width: clamp(285px, 17vw, 340px);
    max-width: none;
    transform: translateY(-50%);
  }

  .home-v2 .hv2-desktop-showcase {
    display: block;
    position: absolute;
    left: clamp(-180px, -6vw, -70px);
    top: var(--hero-band-center);
    bottom: auto;
    z-index: 8;
    width: clamp(420px, 24vw, 490px);
    max-width: none;
    transform: translateY(-50%);
  }

  .home-v2 .video-feature-stage {
    position: absolute;
    inset: 0;
    z-index: 30;
    width: 100%;
    height: 522px;
    margin: 0;
    display: block;
  }

  .home-v2 .video-card {
    position: absolute;
    left: 50%;
    top: 0;
  }

  .home-v2 .video-card[data-position="center"] {
    width: 250px;
    height: 492px;
    z-index: 36;
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }

  .home-v2 .video-card[data-position="left"] {
    width: 160px;
    height: 315px;
    z-index: 34;
    transform: translateX(calc(-50% - 235px)) translateY(88px) rotate(0deg);
  }

  .home-v2 .video-card[data-position="right"] {
    width: 160px;
    height: 315px;
    z-index: 34;
    transform: translateX(calc(-50% + 235px)) translateY(88px) rotate(0deg);
  }

  .home-v2 .video-card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .home-v2 .video-card[data-position="center"] .video-card-media {
    border-radius: 36px;
  }

  .home-v2 .video-card[data-position="left"] .video-card-media,
  .home-v2 .video-card[data-position="right"] .video-card-media {
    border-radius: 28px;
  }

  .home-v2 .hv2-zillow {
    width: 112px;
    height: 46px;
    right: clamp(150px, 15vw, 290px);
    top: -38px;
    z-index: 40;
  }

  .home-v2 .hv2-carousel-ui.video-carousel-controls,
  .home-v2 .video-carousel-controls {
    margin-top: 0;
  }

  .home-v2 .hv2-packages {
    padding: 185px 0 52px;
  }
}

/* -------------------------
   Wide mobile / iPad
   761px–950px
------------------------- */

@media (min-width: 761px) and (max-width: 950px) {
  .home-v2 .hv2-hero {
    height: 650px;
    min-height: 650px;
    padding-top: var(--header-height-desktop);
    overflow: visible;
    background: #000;
  }

  .home-v2 .hv2-hero-bg {
    inset: 0 0 auto;
    height: 360px;
  }

  .home-v2 .hv2-hero-copy {
    width: calc(100% - 30px);
    padding-top: 88px;
  }

  .home-v2 .hv2-hero-copy h1 {
    max-width: 560px;
    font-size: 27px;
    line-height: 1.14;
    letter-spacing: 0.055em;
  }

  .home-v2 .hv2-hero-copy p {
    margin-top: 10px;
    padding: 7px 12px;
    font-size: 10px;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel {
    width: 100%;
    height: 463px;
    margin: 34px 0 0;
    left: auto;
    transform: none;
    overflow: visible;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel::before,
  .home-v2 .hv2-media-stage.video-feature-carousel::after,
  .home-v2 .hv2-lens-clip,
  .home-v2 .hv2-lens-image,
  .home-v2 .hv2-desktop-showcase {
    content: none !important;
    display: none !important;
  }

  .home-v2 .video-feature-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 463px;
    margin: 0;
    display: block;
  }

  .home-v2 .video-card {
    position: absolute;
    left: 50%;
    top: 0;
  }

  .home-v2 .video-card[data-position="center"] {
    width: 220px;
    height: 433px;
    z-index: 36;
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }

  .home-v2 .video-card[data-position="left"] {
    width: 140px;
    height: 276px;
    z-index: 34;
    transform: translateX(calc(-50% - 218px)) translateY(78px) rotate(0deg);
  }

  .home-v2 .video-card[data-position="right"] {
    width: 140px;
    height: 276px;
    z-index: 34;
    transform: translateX(calc(-50% + 218px)) translateY(78px) rotate(0deg);
  }

  .home-v2 .video-card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-width: 6px;
  }

  .home-v2 .video-card[data-position="center"] .video-card-media {
    border-radius: 34px;
  }

  .home-v2 .video-card[data-position="left"] .video-card-media,
  .home-v2 .video-card[data-position="right"] .video-card-media {
    border-radius: 25px;
  }

  .home-v2 .hv2-zillow {
    width: 104px;
    height: 43px;
    right: 44px;
    top: -42px;
    z-index: 40;
  }

  .home-v2 .hv2-carousel-ui.video-carousel-controls,
  .home-v2 .video-carousel-controls {
    margin-top: 0;
  }

  .home-v2 .hv2-packages {
    margin-top: 0;
    padding: 120px 0 42px;
  }
}

/* -------------------------
   True mobile
   760px and down
------------------------- */

@media (max-width: 760px) {
  .home-v2 .hv2-hero {
    height: 560px;
    min-height: 560px;
    padding-top: var(--header-height-mobile);
    overflow: visible;
    background: #000;
  }

  .home-v2 .hv2-hero-bg {
    top: calc(var(--header-height-mobile) - 20px);
    height: 250px;
  }

  .home-v2 .hv2-hero-copy {
    width: calc(100% - 30px);
    padding-top: 26px;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel {
    width: 100%;
    height: 375px;
    margin: 22px 0 0;
    overflow: visible;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel::before,
  .home-v2 .hv2-media-stage.video-feature-carousel::after,
  .home-v2 .hv2-lens-clip,
  .home-v2 .hv2-lens-image,
  .home-v2 .hv2-desktop-showcase {
    content: none !important;
    display: none !important;
  }

  .home-v2 .video-feature-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 375px;
    margin: 0;
    display: block;
  }

  .home-v2 .video-card {
    position: absolute;
    left: 50%;
    top: 0;
  }

  .home-v2 .video-card[data-position="center"] {
    width: 175px;
    height: 345px;
    z-index: 36;
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }

  .home-v2 .video-card[data-position="left"] {
    width: 112px;
    height: 220px;
    z-index: 34;
    transform: translateX(calc(-50% - 145px)) translateY(62px) rotate(0deg);
  }

  .home-v2 .video-card[data-position="right"] {
    width: 112px;
    height: 220px;
    z-index: 34;
    transform: translateX(calc(-50% + 145px)) translateY(62px) rotate(0deg);
  }

  .home-v2 .video-card-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-width: 5px;
  }

  .home-v2 .video-card[data-position="center"] .video-card-media {
    border-radius: 28px;
  }

  .home-v2 .video-card[data-position="left"] .video-card-media,
  .home-v2 .video-card[data-position="right"] .video-card-media {
    border-radius: 22px;
  }

  .home-v2 .hv2-zillow {
    width: 86px;
    height: 36px;
    right: 22px;
    top: -40px;
    z-index: 40;
  }

  .home-v2 .hv2-carousel-ui.video-carousel-controls,
  .home-v2 .video-carousel-controls {
    margin-top: 0;
  }

  .home-v2 .hv2-packages {
    margin-top: 0;
    padding: 96px 0 32px;
  }
}

/* =========================================================
   HOMEPAGE HERO — REFINEMENT PASS 01
   Package breathing room + narrower desktop side-art retreat
========================================================= */

/* -------------------------
   Full desktop:
   package cards should begin about 80px below the carousel controls
------------------------- */

@media (min-width: 1200px) {
  .home-v2 .hv2-packages {
    /*
      Was 220px in the clean reset.
      This gives the controls/ellipses breathing room before the cards begin.
    */
    padding-top: 285px;
  }
}

/* -------------------------
   Narrow desktop:
   keep side art as edge texture, not crowded content
------------------------- */

@media (min-width: 1200px) and (max-width: 1599px) {
  .home-v2 .hv2-desktop-showcase {
    left: clamp(-230px, -11vw, -135px);
    width: clamp(430px, 24vw, 520px);
  }

  .home-v2 .hv2-lens-image {
    right: clamp(-330px, -13vw, -175px);
    width: clamp(285px, 18vw, 355px);
  }

  .home-v2 .hv2-zillow {
    right: clamp(180px, 17vw, 320px);
  }
}

/* -------------------------
   Small desktop / pre-iPad:
   push side art farther out and keep phone ratios locked
------------------------- */

@media (min-width: 951px) and (max-width: 1199px) {
  .home-v2 .hv2-desktop-showcase {
    left: clamp(-300px, -22vw, -190px);
    width: clamp(390px, 36vw, 455px);
  }

  .home-v2 .hv2-lens-image {
    right: clamp(-390px, -25vw, -255px);
    width: clamp(275px, 30vw, 330px);
  }

  /*
    Keep the three phones visually consistent instead of letting old mobile
    rules make them feel stretched or oblong.
  */
  .home-v2 .video-card[data-position="center"] {
    width: 250px;
    height: 492px;
  }

  .home-v2 .video-card[data-position="left"],
  .home-v2 .video-card[data-position="right"] {
    width: 160px;
    height: 315px;
  }

  .home-v2 .video-card-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home-v2 .hv2-packages {
    padding-top: 210px;
  }
}

/* -------------------------
   Wide mobile / iPad:
   no desktop side art, but keep phone group crossing the black/white edge
------------------------- */

@media (min-width: 761px) and (max-width: 950px) {
  .home-v2 .hv2-hero {
    height: 675px;
    min-height: 675px;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel {
    height: 463px;
    margin-top: 34px;
  }

  .home-v2 .video-feature-stage {
    height: 463px;
  }

  .home-v2 .video-card[data-position="center"] {
    width: 220px;
    height: 433px;
  }

  .home-v2 .video-card[data-position="left"],
  .home-v2 .video-card[data-position="right"] {
    width: 140px;
    height: 276px;
  }

  .home-v2 .video-card[data-position="left"] {
    transform: translateX(calc(-50% - 218px)) translateY(78px) rotate(0deg);
  }

  .home-v2 .video-card[data-position="right"] {
    transform: translateX(calc(-50% + 218px)) translateY(78px) rotate(0deg);
  }

  .home-v2 .hv2-carousel-ui.video-carousel-controls,
  .home-v2 .video-carousel-controls {
    margin-top: 0;
  }

  .home-v2 .hv2-packages {
    padding-top: 130px;
  }
}

/* -------------------------
   True mobile:
   maintain clean phone proportion + controls below phone group
------------------------- */

@media (max-width: 760px) {
  .home-v2 .hv2-hero {
    height: 575px;
    min-height: 575px;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel {
    height: 375px;
  }

  .home-v2 .video-feature-stage {
    height: 375px;
  }

  .home-v2 .video-card[data-position="center"] {
    width: 175px;
    height: 345px;
  }

  .home-v2 .video-card[data-position="left"],
  .home-v2 .video-card[data-position="right"] {
    width: 112px;
    height: 220px;
  }

  .home-v2 .hv2-carousel-ui.video-carousel-controls,
  .home-v2 .video-carousel-controls {
    margin-top: 0;
  }

  .home-v2 .hv2-packages {
    padding-top: 110px;
  }
}

/* =========================================================
   HOMEPAGE REFINEMENT PASS 02
   Smaller mobile black carousel band + tighter package spacing
========================================================= */

/* -------------------------
   Desktop package spacing:
   tighter, more compact package grid rhythm
------------------------- */

@media (min-width: 1200px) {
  .home-v2 .hv2-packages {
    padding-top: 300px;
    padding-bottom: 72px;
  }

  .home-v2 .hv2-packages .live-area {
    width: min(calc(100% - 96px), 1500px);
  }

  .home-v2 .hv2-package-grid.package-grid-4 {
    gap: 18px;
    align-items: center;
  }

  .home-v2 .package-card {
    min-height: 620px;
  }

  .home-v2 .package-card.is-featured {
    min-height: 656px;
    transform: translateY(-18px);
  }

  .home-v2 .package-preview {
    height: 145px;
  }

  .home-v2 .package-card-body {
    padding: 28px 28px 26px;
  }

  .home-v2 .package-title-row {
    gap: 10px;
    margin-bottom: 16px;
  }

  .home-v2 .package-copy {
    min-height: 78px;
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.48;
  }

  .home-v2 .package-price {
    margin: 6px 0 16px;
    font-size: clamp(31px, 1.85vw, 38px);
  }

  .home-v2 .package-services,
  .home-v2 .package-accordion {
    margin-bottom: 20px;
  }

  .home-v2 .package-service summary {
    min-height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

/* -------------------------
   Narrow desktop:
   side art retreats farther, phones stay proportional
------------------------- */

@media (min-width: 951px) and (max-width: 1199px) {
  .home-v2 .hv2-desktop-showcase {
    left: clamp(-360px, -31vw, -235px);
    width: clamp(380px, 34vw, 440px);
  }

  .home-v2 .hv2-lens-image {
    right: clamp(-500px, -34vw, -315px);
    width: clamp(250px, 27vw, 315px);
  }

  .home-v2 .video-card[data-position="center"] {
    width: 240px;
    height: 472px;
  }

  .home-v2 .video-card[data-position="left"],
  .home-v2 .video-card[data-position="right"] {
    width: 152px;
    height: 299px;
  }

  .home-v2 .video-card[data-position="left"] {
    transform: translateX(calc(-50% - 218px)) translateY(86px) rotate(0deg);
  }

  .home-v2 .video-card[data-position="right"] {
    transform: translateX(calc(-50% + 218px)) translateY(86px) rotate(0deg);
  }

  .home-v2 .hv2-media-stage.video-feature-carousel,
  .home-v2 .video-feature-stage {
    height: 502px;
  }

  .home-v2 .hv2-package-grid.package-grid-4 {
    gap: 18px;
  }
}

/* -------------------------
   Wide mobile / iPad:
   convert before desktop support art crowds in
------------------------- */

@media (min-width: 761px) and (max-width: 950px) {
  .home-v2 .hv2-hero {
    height: 625px;
    min-height: 625px;
  }

  .home-v2 .hv2-hero-bg {
    height: 340px;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel {
    height: 463px;
    margin-top: 28px;
  }

  .home-v2 .video-feature-stage {
    height: 463px;
  }

  .home-v2 .video-card[data-position="center"] {
    width: 220px;
    height: 433px;
  }

  .home-v2 .video-card[data-position="left"],
  .home-v2 .video-card[data-position="right"] {
    width: 140px;
    height: 276px;
  }

  .home-v2 .hv2-carousel-ui.video-carousel-controls,
  .home-v2 .video-carousel-controls {
    margin-top: 0;
  }

  .home-v2 .hv2-packages {
    padding-top: 150px;
    padding-bottom: 42px;
  }

  .home-v2 .hv2-package-grid.package-grid-4 {
    gap: 16px;
  }
}

/* -------------------------
   True mobile:
   make the black rectangle shorter so phones cross into white harder
------------------------- */

@media (max-width: 760px) {
  .home-v2 .hv2-hero {
    height: 520px;
    min-height: 520px;
    overflow: visible;
  }

  .home-v2 .hv2-hero-bg {
    height: 232px;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel {
    height: 375px;
    margin-top: 18px;
    overflow: visible;
  }

  .home-v2 .video-feature-stage {
    height: 375px;
  }

  .home-v2 .video-card[data-position="center"] {
    width: 175px;
    height: 345px;
  }

  .home-v2 .video-card[data-position="left"],
  .home-v2 .video-card[data-position="right"] {
    width: 112px;
    height: 220px;
  }

  .home-v2 .video-card[data-position="left"] {
    transform: translateX(calc(-50% - 145px)) translateY(62px) rotate(0deg);
  }

  .home-v2 .video-card[data-position="right"] {
    transform: translateX(calc(-50% + 145px)) translateY(62px) rotate(0deg);
  }

  .home-v2 .hv2-carousel-ui.video-carousel-controls,
  .home-v2 .video-carousel-controls {
    margin-top: 0;
  }

  .home-v2 .hv2-packages {
    padding-top: 158px;
    padding-bottom: 30px;
  }

  .home-v2 .hv2-package-grid.package-grid-4 {
    gap: 14px;
  }

  .home-v2 .package-preview {
    height: 126px;
  }

  .home-v2 .package-card-body {
    padding: 22px 24px 22px;
  }

  .home-v2 .package-title-row {
    gap: 9px;
    margin-bottom: 15px;
  }

  .home-v2 .package-copy {
    margin-bottom: 16px;
  }

  .home-v2 .package-price {
    margin: 6px 0 16px;
  }

  .home-v2 .package-service summary {
    min-height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .home-v2 .package-card.is-featured {
    border-width: 2px;
    transform: none;
  }
}

/* =========================================================
   DESKTOP HEADER LOGO UPSCALE
   Larger Vizimage mark, optically centered with nav
========================================================= */

@media (min-width: 761px) {
  :root {
    --header-height-desktop: 64px;
  }

  .site-header {
    height: var(--header-height-desktop);
  }

  .nav-inner {
    height: var(--header-height-desktop);
    grid-template-columns: 154px 220px 1fr;
    align-items: center;
    gap: 24px;
  }

  .site-logo {
    height: var(--header-height-desktop);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
  }

  .site-logo img {
    width: 132px !important;
    height: auto;
    transform: translateY(1px);
  }

  .nav-contact {
    height: var(--header-height-desktop);
    display: flex;
    align-items: center;
    gap: 11px;
    transform: translateY(1px);
  }

  .nav-facebook {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
  }

  .nav-contact .nav-phone {
    height: var(--header-height-desktop);
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    line-height: 1;
  }

  .desktop-nav {
    height: var(--header-height-desktop);
    align-items: center;
    gap: 22px;
  }

  .desktop-nav > a:not(.nav-book) {
    height: var(--header-height-desktop);
    display: inline-flex;
    align-items: center;
    transform: translateY(1px);
  }

  .desktop-nav .nav-book {
    --book-now-height: 30px;

    height: var(--book-now-height);
    min-height: var(--book-now-height);

    top: calc(100% - (var(--book-now-height) / 2) + 7px);
    transform: none;
  }
}

/* =========================================================
   DESKTOP HEADER OPTICAL CENTER PATCH
   +10px nav height, logo stays planted, other nav items drop
========================================================= */

@media (min-width: 761px) {
  :root {
    --header-height-desktop: 74px;
  }

  .site-header {
    height: var(--header-height-desktop);
  }

  .nav-inner {
    height: var(--header-height-desktop);
    align-items: start;
  }

  /*
    Keep the Vizimage logo optically where it already was.
    Header grows, but logo does not drift downward with it.
  */
  .site-logo {
    height: 64px;
    align-self: start;
    display: inline-flex;
    align-items: center;
  }

  .site-logo img {
    width: 132px !important;
    transform: translateY(1px);
  }

  /*
    Everything else gets the 10px downward optical offset.
  */
  .nav-contact {
    height: 64px;
    align-self: start;
    transform: translateY(6px);
  }

  .desktop-nav {
    height: 64px;
    align-self: start;
  }

  .desktop-nav > a:not(.nav-book) {
    height: 64px;
    transform: translateY(6px);
  }

  /*
    Book Now stays straddling the new lower nav edge.
  */
  .desktop-nav .nav-book {
    --book-now-height: 30px;

    top: calc(var(--header-height-desktop) - (var(--book-now-height) / 2) + 7px);
    transform: none;
  }
}

/* =========================================================
   HOMEPAGE VIDEO CAROUSEL — TAP + DRAG INTERACTION STATES
========================================================= */

.home-v2 [data-video-carousel],
.home-v2 .video-feature-stage {
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.home-v2 [data-video-carousel].is-dragging,
.home-v2 .video-feature-stage.is-dragging {
  cursor: grabbing;
}

.home-v2 [data-video-carousel].is-dragging .video-card,
.home-v2 .video-feature-stage.is-dragging .video-card {
  transition: none !important;
}

.home-v2 .video-card {
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  touch-action: pan-y;
  cursor: pointer;
  transition:
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
    width 640ms cubic-bezier(0.22, 1, 0.36, 1),
    height 640ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    filter 420ms ease;
}

.home-v2 .video-card.is-grabbed {
  filter: brightness(1.08);
}

.home-v2 .video-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 6px;
}

.home-v2 .video-play-button {
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}

.home-v2 .video-feature-stage {
  position: relative;
}

.home-v2 .video-card {
  position: absolute;
  left: 50%;
  top: 0;
  margin: 0;
  will-change: transform, opacity, width, height;
}

/* =========================================================
   SERVICES + WORKING HEADLINE SCALE MATCH
   Match current Homepage 60 / 24 / 16 rhythm
========================================================= */

/* Page hero headlines: match the tighter Homepage hero feel */
.services-v2 .sv2-hero h1,
.working-v2 .wv2-hero-title h1 {
  max-width: 980px;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.05vw, 58px);
  line-height: 1.02;
  letter-spacing: 0.055em;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-text-stroke: 0.22px currentColor;
  text-shadow: 0.008em 0 0 currentColor;
}

/* Major section headlines: match Homepage section h2 scale */
.services-v2 .sv2-premium-title h2,
.services-v2 .sv2-intro-copy h2,
.services-v2 .sv2-tour h2,
.services-v2 .sv2-additional h2,
.services-v2 .sv2-contact h2,
.working-v2 .wv2-hero-content h2,
.working-v2 .wv2-founder-copy h2,
.working-v2 .wv2-prep h2,
.working-v2 .wv2-staging h2,
.working-v2 .wv2-contact h2 {
  max-width: 980px;
  font-family: var(--font-display);
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1.06;
  letter-spacing: 0.045em;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-text-stroke: 0.22px currentColor;
  text-shadow: 0.008em 0 0 currentColor;
}

/* Centered major headlines */
.services-v2 .sv2-intro-copy h2,
.services-v2 .sv2-additional h2,
.services-v2 .sv2-contact h2,
.working-v2 .wv2-staging h2,
.working-v2 .wv2-contact h2 {
  margin-inline: auto;
  text-align: center;
}

/* Left-column major headlines */
.services-v2 .sv2-premium-title h2,
.services-v2 .sv2-tour h2,
.working-v2 .wv2-hero-content h2,
.working-v2 .wv2-founder-copy h2,
.working-v2 .wv2-prep h2 {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

/* Redline subheads: match Homepage redline scale */
.services-v2 .sv2-redline,
.working-v2 .wv2-redline,
.working-v2 .wv2-staging .wv2-redline,
.working-v2 .wv2-contact .wv2-redline {
  max-width: 860px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.22;
  letter-spacing: 0.055em;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-text-stroke: 0.08px currentColor;
  text-shadow: none;
}

/* Smaller red section headers, like service h3 callouts */
.services-v2 .sv2-tour h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.22;
  letter-spacing: 0.055em;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-text-stroke: 0.08px currentColor;
  text-shadow: none;
}

/* Stat numbers should stay expressive, but not overpower the page */
.working-v2 .wv2-stats strong {
  font-family: var(--font-display);
  font-size: clamp(72px, 7vw, 112px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-text-stroke: 0.22px currentColor;
  text-shadow: 0.008em 0 0 currentColor;
}

.working-v2 .wv2-stats p {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.05;
  letter-spacing: 0.055em;
  font-weight: 400;
  text-transform: uppercase;
}

/* Mobile: match Homepage mobile headline rhythm */
@media (max-width: 760px) {
  .services-v2 .sv2-hero h1,
  .working-v2 .wv2-hero-title h1 {
    max-width: 330px;
    font-size: 19px;
    line-height: 1.12;
    letter-spacing: 0.045em;
    -webkit-text-stroke: 0.16px currentColor;
    text-shadow: 0.006em 0 0 currentColor;
  }

  .services-v2 .sv2-premium-title h2,
  .services-v2 .sv2-intro-copy h2,
  .services-v2 .sv2-tour h2,
  .services-v2 .sv2-additional h2,
  .services-v2 .sv2-contact h2,
  .working-v2 .wv2-hero-content h2,
  .working-v2 .wv2-founder-copy h2,
  .working-v2 .wv2-prep h2,
  .working-v2 .wv2-staging h2,
  .working-v2 .wv2-contact h2 {
    max-width: 350px;
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: 0.045em;
    -webkit-text-stroke: 0.16px currentColor;
    text-shadow: 0.006em 0 0 currentColor;
  }

  .services-v2 .sv2-premium-title h2,
  .services-v2 .sv2-tour h2,
  .working-v2 .wv2-hero-content h2,
  .working-v2 .wv2-founder-copy h2,
  .working-v2 .wv2-prep h2 {
    margin-inline: auto;
    text-align: center;
  }

  .services-v2 .sv2-redline,
  .working-v2 .wv2-redline,
  .working-v2 .wv2-staging .wv2-redline,
  .working-v2 .wv2-contact .wv2-redline,
  .services-v2 .sv2-tour h3 {
    max-width: 330px;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: 0.055em;
  }

  .working-v2 .wv2-stats strong {
    font-size: 58px;
    line-height: 0.95;
  }

  .working-v2 .wv2-stats p {
    font-size: 15px;
    line-height: 1.2;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 70px 0 34px !important;
  }

  .site-footer .footer-inner {
    width: calc(100% - 30px);
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 26px;
  }

  .site-footer .footer-inner > div {
    order: 1;
  }

  .site-footer .footer-logo {
    order: 2;
    align-self: flex-end;
  }

  .site-footer .footer-logo img {
    width: 145px;
  }

  .site-footer .footer-inner p {
    font-size: 10px;
    line-height: 1.55;
    letter-spacing: 0.045em;
  }
}

/* =========================================================
   CONTACT FOOTER ICON RESTORE
   Works with old and new footer/contact HTML
========================================================= */

.hv2-contact-icons span,
.sv2-contact-icons span,
.wv2-contact-icons span,
.footer-contact-icons span {
  width: 74px;
  height: 74px;
  display: block;
  border: 0 !important;
  border-radius: 0 !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hv2-contact-icons span:nth-child(1),
.sv2-contact-icons span:nth-child(1),
.wv2-contact-icons span:nth-child(1),
.footer-contact-icons span:nth-child(1) {
  background-image: url("/assets/Images/Home/handshake-icon.png");
}

.hv2-contact-icons span:nth-child(2),
.sv2-contact-icons span:nth-child(2),
.wv2-contact-icons span:nth-child(2),
.footer-contact-icons span:nth-child(2) {
  background-image: url("/assets/Images/Home/camera-icon.png");
}

@media (max-width: 760px) {
  .hv2-contact-icons span,
  .sv2-contact-icons span,
  .wv2-contact-icons span,
  .footer-contact-icons span {
    width: 58px;
    height: 58px;
  }
}

/* =========================================================
   FOOTER RESTORE — NEW HTML STRUCTURE
   Matches current .footer-contact / .footer-bottom markup
========================================================= */

/* Main wrapper: footer contains both the white contact band and black bottom bar */
.site-footer {
  margin: 0 !important;
  padding: 0 !important;
  background: #000 !important;
  color: #fff !important;
  border-top: 0 !important;
}

/* -------------------------
   White contact band
------------------------- */

.site-footer .footer-contact {
  position: relative !important;
  z-index: 1 !important;
  padding: 92px 0 104px !important;
  background: #fff !important;
  color: #000 !important;
  text-align: center !important;
}

.site-footer .footer-contact-inner {
  width: min(calc(100% - 30px), 1040px) !important;
  margin-inline: auto !important;
}

.site-footer .footer-contact h2 {
  max-width: 760px !important;
  margin: 0 auto 24px !important;
  color: #000 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(42px, 4.2vw, 74px) !important;
  line-height: 0.98 !important;
  letter-spacing: 0.06em !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  text-align: center !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}

.site-footer .footer-redline {
  max-width: 840px !important;
  margin: 0 auto 30px !important;
  color: var(--red) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(17px, 1.45vw, 25px) !important;
  line-height: 1.2 !important;
  letter-spacing: 0.06em !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  text-align: center !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}

.site-footer .footer-contact-icons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 26px !important;
  margin: 28px 0 34px !important;
}

.site-footer .footer-contact-icons span {
  width: 70px !important;
  height: 70px !important;
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

.site-footer .footer-contact-icons span:nth-child(1) {
  background-image: url("/assets/Images/Home/handshake-icon.png") !important;
}

.site-footer .footer-contact-icons span:nth-child(2) {
  background-image: url("/assets/Images/Home/camera-icon.png") !important;
}

.site-footer .footer-contact p:not(.footer-redline) {
  max-width: 870px !important;
  margin: 0 auto 24px !important;
  color: #000 !important;
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
  letter-spacing: 0.01em !important;
  font-weight: 400 !important;
  text-transform: none !important;
  text-align: center !important;
}

.site-footer .footer-contact p:not(.footer-redline) + p {
  margin-top: 12px !important;
}

/* CTA straddles white contact band and black footer bottom */
.site-footer .footer-contact-cta {
  position: absolute !important;
  left: 50% !important;
  bottom: -23px !important;
  z-index: 20 !important;
  transform: translateX(-50%) !important;

  min-height: 46px !important;
  padding: 0 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border-radius: 999px !important;
  background: var(--red) !important;
  color: #fff !important;

  font-family: var(--font-display) !important;
  font-size: 11px !important;
  line-height: 1 !important;
  letter-spacing: 0.055em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

/* -------------------------
   Black bottom footer bar
------------------------- */

.site-footer .footer-bottom {
  position: relative !important;
  z-index: 0 !important;
  padding: 76px 0 54px !important;
  background: #000 !important;
  color: #fff !important;
}

.site-footer .footer-inner {
  width: min(calc(100% - 30px), var(--desktop-live)) !important;
  min-height: 88px !important;
  margin-inline: auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 30px !important;
}

.site-footer .footer-copy {
  display: grid !important;
  gap: 4px !important;
}

.site-footer .footer-inner p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  letter-spacing: 0.045em !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
}

.site-footer .footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-shrink: 0 !important;
  line-height: 0 !important;
}

.site-footer .footer-logo img {
  width: 190px !important;
  height: auto !important;
  display: block !important;
  max-width: 100% !important;
}

.site-footer .footer-logo .logo-mark,
.site-footer .footer-logo .logo-text {
  display: none !important;
}

/* -------------------------
   Mobile footer restore
------------------------- */

@media (max-width: 760px) {
  .site-footer .footer-contact {
    padding: 54px 0 88px !important;
  }

  .site-footer .footer-contact-inner {
    width: calc(100% - 30px) !important;
  }

  .site-footer .footer-contact h2 {
    max-width: 330px !important;
    margin-bottom: 22px !important;
    font-size: 34px !important;
    line-height: 1.05 !important;
    letter-spacing: 0.055em !important;
  }

  .site-footer .footer-redline {
    max-width: 330px !important;
    margin-bottom: 28px !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.06em !important;
  }

  .site-footer .footer-contact-icons {
    gap: 26px !important;
    margin: 24px 0 30px !important;
  }

  .site-footer .footer-contact-icons span {
    width: 58px !important;
    height: 58px !important;
  }

  .site-footer .footer-contact p:not(.footer-redline) {
    max-width: 330px !important;
    margin-bottom: 18px !important;
    font-size: 12px !important;
    line-height: 1.72 !important;
  }

  .site-footer .footer-contact-cta {
    bottom: -22px !important;
    width: min(330px, calc(100vw - 30px)) !important;
    min-height: 44px !important;
    padding-inline: 16px !important;
    font-size: 10px !important;
    line-height: 1.05 !important;
    text-align: center !important;
  }

  .site-footer .footer-bottom {
    padding: 70px 0 34px !important;
  }

  .site-footer .footer-inner {
    width: calc(100% - 30px) !important;
    min-height: 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 26px !important;
  }

  .site-footer .footer-copy {
    order: 1 !important;
  }

  .site-footer .footer-logo {
    order: 2 !important;
    align-self: flex-end !important;
  }

  .site-footer .footer-logo img {
    width: 145px !important;
  }

  .site-footer .footer-inner p {
    font-size: 10px !important;
    line-height: 1.55 !important;
    letter-spacing: 0.045em !important;
  }
}

/* =========================================================
   WORKING WITH VIZIMAGE — RESTRAINED MOCK ALIGNMENT
   Less horsey. More like the mock.
========================================================= */

@media (min-width: 761px) {
  .working-v2 .wv2-hero {
    position: relative !important;
    min-height: 640px !important;
    padding-top: var(--header-height-desktop) !important;
    overflow: hidden !important;
    background: #000 !important;
  }

  .working-v2 .wv2-hero-bg {
    position: absolute !important;
    inset: var(--header-height-desktop) 0 auto !important;
    height: 575px !important;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.16) 0%,
        rgba(0, 0, 0, 0.44) 58%,
        rgba(0, 0, 0, 0.82) 100%
      ),
      url("/assets/Images/Working/working-hero.jpg"),
      linear-gradient(135deg, #3f3b35 0%, #151515 58%, #000 100%) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .working-v2 .wv2-hero-bg::before {
    display: none !important;
  }

  .working-v2 .wv2-hero-title {
    position: relative !important;
    z-index: 2 !important;
    width: min(calc(100% - 30px), var(--desktop-live)) !important;
    margin: 0 auto !important;
    padding-top: 122px !important;
    text-align: center !important;
  }

  .working-v2 .wv2-hero-title h1 {
    max-width: 760px !important;
    margin: 0 auto !important;
    color: #fff !important;
    font-size: clamp(30px, 2.65vw, 48px) !important;
    line-height: 1.04 !important;
    letter-spacing: 0.075em !important;
    text-align: center !important;
  }

  .working-v2 .wv2-hero-content {
    position: relative !important;
    z-index: 3 !important;
    width: min(calc(100% - 30px), var(--desktop-live)) !important;
    margin: 140px auto 0 !important;
    display: grid !important;
    grid-template-columns: 0.92fr 1.08fr !important;
    gap: 76px !important;
    align-items: start !important;
  }

  .working-v2 .wv2-hero-content .wv2-redline {
    max-width: 560px !important;
    margin: 0 0 18px !important;
    color: var(--red) !important;
    font-size: clamp(15px, 1.15vw, 20px) !important;
    line-height: 1.2 !important;
    letter-spacing: 0.09em !important;
    text-align: left !important;
  }

  .working-v2 .wv2-hero-content h2 {
    max-width: 560px !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(34px, 3.35vw, 62px) !important;
    line-height: 1.02 !important;
    letter-spacing: 0.055em !important;
    text-align: left !important;
  }

  .working-v2 .wv2-hero-content p {
    max-width: 590px !important;
    margin: 0 0 16px !important;
    color: #fff !important;
    font-size: 13px !important;
    line-height: 1.68 !important;
    font-weight: 700 !important;
    text-align: left !important;
  }

  .working-v2 .wv2-floating-cta {
    position: absolute !important;
    z-index: 5 !important;
    left: 50% !important;
    bottom: -24px !important;
    transform: translateX(-50%) !important;
    min-width: 330px !important;
    min-height: 48px !important;
    margin: 0 !important;
  }

  .working-v2 .wv2-founders {
    padding: 96px 0 92px !important;
    background: #fff !important;
    color: #000 !important;
  }

  .working-v2 .wv2-founder-grid {
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: 72px !important;
    align-items: start !important;
  }

  .working-v2 .wv2-founder-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 54px !important;
  }

  .working-v2 .wv2-founder-card {
    margin: 0 !important;
    text-align: center !important;
  }

  .working-v2 .wv2-founder-copy h2 {
    max-width: 680px !important;
    margin: 0 0 30px !important;
    font-size: clamp(42px, 4vw, 74px) !important;
    line-height: 0.98 !important;
    letter-spacing: 0.055em !important;
    text-align: left !important;
  }

  .working-v2 .wv2-founder-copy p,
  .working-v2 .wv2-founder-copy li {
    text-align: left !important;
  }

  .working-v2 .wv2-stats {
    margin-top: 90px !important;
  }

  .working-v2 .wv2-prep {
    padding: 92px 0 72px !important;
  }

  .working-v2 .wv2-prep-grid {
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: 72px !important;
    align-items: center !important;
  }

  .working-v2 .wv2-staging {
    padding: 72px 0 96px !important;
  }
}

/* =========================================================
   WORKING WITH VIZIMAGE — MOCK CLOSER DESKTOP PASS
   Fixes oversized/over-tall hero from previous override
========================================================= */

@media (min-width: 761px) {
  .working-v2 .wv2-hero {
    position: relative !important;
    min-height: 560px !important;
    padding-top: 0 !important;
    overflow: visible !important;
    background: #000 !important;
    color: #fff !important;
  }

  .working-v2 .wv2-hero-bg {
    position: absolute !important;
    inset: 0 0 auto !important;
    height: 560px !important;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.10) 0%,
        rgba(0, 0, 0, 0.38) 46%,
        rgba(0, 0, 0, 0.78) 100%
      ),
      url("/assets/Images/Working/working-hero.jpg"),
      linear-gradient(135deg, #3f3b35 0%, #151515 58%, #000 100%) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .working-v2 .wv2-hero-bg::before {
    display: none !important;
  }

  .working-v2 .wv2-hero-title {
    position: relative !important;
    z-index: 2 !important;
    width: min(calc(100% - 30px), var(--desktop-live)) !important;
    margin: 0 auto !important;
    padding-top: 124px !important;
    text-align: center !important;
  }

  .working-v2 .wv2-hero-title h1 {
    max-width: 860px !important;
    margin: 0 auto !important;
    color: #fff !important;
    font-size: clamp(30px, 2.8vw, 52px) !important;
    line-height: 1.02 !important;
    letter-spacing: 0.075em !important;
    text-align: center !important;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.52) !important;
  }

  .working-v2 .wv2-hero-content {
    position: relative !important;
    z-index: 3 !important;
    width: min(calc(100% - 30px), var(--desktop-live)) !important;
    margin: 86px auto 0 !important;
    display: grid !important;
    grid-template-columns: 0.88fr 1.12fr !important;
    gap: 78px !important;
    align-items: end !important;
  }

  .working-v2 .wv2-hero-content > div:first-child,
  .working-v2 .wv2-hero-content > div:last-child {
    text-align: left !important;
  }

  .working-v2 .wv2-hero-content .wv2-redline {
    max-width: 700px !important;
    margin: 0 0 16px !important;
    color: var(--red) !important;
    font-size: clamp(15px, 1.25vw, 22px) !important;
    line-height: 1.16 !important;
    letter-spacing: 0.09em !important;
    text-align: left !important;
  }

  .working-v2 .wv2-hero-content h2 {
    max-width: 720px !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(36px, 3.35vw, 60px) !important;
    line-height: 1.03 !important;
    letter-spacing: 0.055em !important;
    text-align: left !important;
  }

  .working-v2 .wv2-hero-content p {
    max-width: 590px !important;
    margin: 0 0 15px !important;
    color: #fff !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    font-weight: 700 !important;
    text-align: left !important;
  }

  .working-v2 .wv2-floating-cta {
    position: absolute !important;
    z-index: 5 !important;
    left: 50% !important;
    bottom: -24px !important;
    transform: translateX(-50%) !important;
    min-width: 330px !important;
    min-height: 48px !important;
    margin: 0 !important;
  }

  .working-v2 .wv2-founders {
    padding: 94px 0 92px !important;
    background: #fff !important;
    color: #000 !important;
  }

  .working-v2 .wv2-founder-grid {
    display: grid !important;
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: 72px !important;
    align-items: start !important;
  }

  .working-v2 .wv2-founder-photos {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 54px !important;
  }

  .working-v2 .wv2-founder-card {
    margin: 0 !important;
    text-align: center !important;
  }

  .working-v2 .wv2-founder-copy h2 {
    max-width: 690px !important;
    margin: 0 0 30px !important;
    font-size: clamp(42px, 3.9vw, 72px) !important;
    line-height: 1 !important;
    letter-spacing: 0.055em !important;
    text-align: left !important;
  }

  .working-v2 .wv2-founder-copy p,
  .working-v2 .wv2-founder-copy li {
    text-align: left !important;
  }

  .working-v2 .wv2-stats {
    margin-top: 88px !important;
  }

  .working-v2 .wv2-prep {
    padding: 90px 0 72px !important;
  }

  .working-v2 .wv2-prep-grid {
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: 72px !important;
    align-items: center !important;
  }

  .working-v2 .wv2-staging {
    padding: 72px 0 96px !important;
  }
}

/* =========================================================
   WORKING WITH VIZIMAGE — MOBILE LEFT ALIGN
========================================================= */

@media (max-width: 760px) {
  .working-v2 .wv2-hero {
    min-height: 475px !important;
    padding-top: var(--header-height-mobile) !important;
    overflow: hidden !important;
  }

  .working-v2 .wv2-hero-bg {
    inset: var(--header-height-mobile) 0 auto !important;
    height: 205px !important;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.34) 52%,
        rgba(0, 0, 0, 0.72) 100%
      ),
      url("/assets/Images/Working/working-hero.jpg"),
      linear-gradient(135deg, #3f3b35 0%, #151515 58%, #000 100%) !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }

  .working-v2 .wv2-hero-bg::before {
    display: none !important;
  }

  .working-v2 .wv2-hero-title {
    width: calc(100% - 30px) !important;
    margin: 0 auto !important;
    padding-top: 58px !important;
    text-align: left !important;
  }

  .working-v2 .wv2-hero-title h1 {
    max-width: 330px !important;
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.15 !important;
    letter-spacing: 0.08em !important;
    text-align: left !important;
  }

  .working-v2 .wv2-hero-content {
    width: calc(100% - 30px) !important;
    margin: 70px auto 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    text-align: left !important;
  }

  .working-v2 .wv2-hero-content > div,
  .working-v2 .wv2-hero-content h2,
  .working-v2 .wv2-hero-content p,
  .working-v2 .wv2-hero-content .wv2-redline {
    text-align: left !important;
  }

  .working-v2 .wv2-hero-content .wv2-redline {
    max-width: 330px !important;
    margin: 0 0 14px !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
  }

  .working-v2 .wv2-hero-content h2 {
    max-width: 330px !important;
    margin: 0 !important;
    font-size: 29px !important;
    line-height: 1.12 !important;
    letter-spacing: 0.06em !important;
  }

  .working-v2 .wv2-hero-content p {
    max-width: 330px !important;
    margin: 0 0 14px !important;
    font-size: 11px !important;
    line-height: 1.7 !important;
  }

  .working-v2 .wv2-floating-cta {
    position: relative !important;
    left: 50% !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
    width: min(330px, calc(100vw - 30px)) !important;
    min-width: 0 !important;
    margin-top: 22px !important;
  }
}

/* =========================================================
   WORKING WITH VIZIMAGE — DESKTOP REFINEMENT PASS
   - More breathing room under "BUSINESS"
   - Right hero copy aligns with "MARKETING"
   - Founder headline one notch smaller
========================================================= */

@media (min-width: 761px) {
  /* Give the hero about 100px more room under the main headline */
  .working-v2 .wv2-hero {
    min-height: 660px !important;
    overflow: visible !important;
  }

  .working-v2 .wv2-hero-bg {
    height: 660px !important;
  }

  /* Keep the hero content where it is horizontally,
     but stop bottom-crashing into the white section */
  .working-v2 .wv2-hero-content {
    margin-top: 86px !important;
    align-items: start !important;
  }

  /* Right paragraph block should start around the top of "MARKETING",
     not low near "FOR YOUR / BUSINESS" */
  .working-v2 .wv2-hero-content > div:last-child {
    align-self: start !important;
    padding-top: 94px !important;
  }

  .working-v2 .wv2-hero-content p {
    max-width: 610px !important;
    margin: 0 0 15px !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  /* Keep CTA straddling the hero/white transition,
     now with the hero transition moved lower */
  .working-v2 .wv2-floating-cta {
    bottom: -24px !important;
  }

  /* Founder section: add a touch of top breathing room after CTA overlap */
  .working-v2 .wv2-founders {
    padding-top: 106px !important;
  }

  /* "MOST MEDIA COMPANIES..." one notch smaller and less shouty */
  .working-v2 .wv2-founder-copy h2 {
    max-width: 720px !important;
    font-size: clamp(38px, 3.35vw, 58px) !important;
    line-height: 1.04 !important;
    letter-spacing: 0.05em !important;
  }
}

/* =========================================================
   WORKING WITH VIZIMAGE — MICRO DESKTOP TWEAK
   - Slightly more room under "BUSINESS"
   - Right paragraph block aligns with top of "A MARKETING"
========================================================= */

@media (min-width: 761px) {
  /* Slightly taller hero for more space under BUSINESS */
  .working-v2 .wv2-hero {
    min-height: 690px !important;
  }

  .working-v2 .wv2-hero-bg {
    height: 690px !important;
  }

  /* Keep the left headline where it is, but give the section more air */
  .working-v2 .wv2-hero-content {
    margin-top: 86px !important;
    align-items: start !important;
  }

  /* Move the right copy up so its top aligns with the top of "A MARKETING" */
  .working-v2 .wv2-hero-content > div:last-child {
    align-self: start !important;
    padding-top: 44px !important;
  }
}

/* Package card real image headers */
.home-v2 .package-preview {
  display: block;
  background: #d8d8d8;
}

.home-v2 .package-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 22%;
}

/* Keep the existing fade behavior over the real images */
.home-v2 .package-preview::after {
  z-index: 1;
}

/* Keep the Most Popular pill above the image and overlay */
.home-v2 .package-card.is-featured .package-preview strong {
  z-index: 3;
}

/* Optional: make the featured image sit darker without changing header size */
.home-v2 .package-card.is-featured .package-preview img {
  filter: brightness(0.55) contrast(1.08);
}

/* =========================================================
   PACKAGE SET FINAL NORMALIZATION
   Fixes leftover spacing from older homepage refinement rules
   Package section only
========================================================= */

@media (min-width: 1200px) {
  .home-v2 .hv2-packages {
    margin-top: 0 !important;
    padding-top: 285px !important;
    padding-bottom: 96px !important;
  }

  .home-v2 .hv2-packages .live-area {
    width: min(calc(100% - 80px), 1560px) !important;
    max-width: none !important;
  }

  .home-v2 .hv2-package-grid.package-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    align-items: start !important;
    overflow: visible !important;
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: block !important;
    overflow: visible !important;
    transform: none !important;
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card + .package-card {
    margin-left: -10px !important;
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card:nth-child(1) {
    margin-top: 24px !important;
    z-index: 1;
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card:nth-child(2),
  .home-v2 .hv2-package-grid.package-grid-4 > .package-card:nth-child(4) {
    margin-top: 12px !important;
    z-index: 2;
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card.is-featured {
    margin-top: -8px !important;
    z-index: 6;
    border: 2px solid var(--red);
    transform: none !important;
  }

  .home-v2 .package-preview {
    height: 145px !important;
    flex: initial !important;
  }

  .home-v2 .package-card-body {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 30px 28px 28px !important;
    overflow: visible !important;
  }

  .home-v2 .package-title-row {
    display: block !important;
    gap: 0 !important;
    margin-bottom: 14px !important;
  }

  .home-v2 .package-title-row h2 {
    margin: 0 0 10px !important;
    font-size: clamp(30px, 1.9vw, 42px) !important;
    line-height: 0.95 !important;
  }

  .home-v2 .package-copy {
    min-height: 0 !important;
    margin: 0 0 18px !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .home-v2 .package-starting {
    margin: 0 0 5px !important;
  }

  .home-v2 .package-price {
    margin: 0 0 18px !important;
    font-size: clamp(32px, 2vw, 42px) !important;
    line-height: 0.95 !important;
  }

  .home-v2 .package-services,
  .home-v2 .package-accordion {
    margin-bottom: 0 !important;
  }

  .home-v2 .package-service summary {
    min-height: 38px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .home-v2 .package-cta {
    margin-top: 18px !important;
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card:hover {
    z-index: 9;
    transform: translateY(-4px) !important;
  }

  .home-v2 .hv2-package-grid.package-grid-4 > .package-card.is-featured:hover {
    transform: translateY(-10px) !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .home-v2 .hv2-carousel-ui.video-carousel-controls,
  .home-v2 .video-carousel-controls {
    position: relative;
    z-index: 30;
    margin-bottom: 0 !important;
  }

  .home-v2 .hv2-packages {
    margin-top: 0 !important;
    padding-top: 110px !important;
    padding-bottom: 58px !important;
  }
}

@media (max-width: 760px) {
  .home-v2 .hv2-hero {
    overflow: visible !important;
    padding-bottom: 50px !important;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel {
    overflow: visible !important;
  }

  .home-v2 .hv2-carousel-ui.video-carousel-controls,
  .home-v2 .video-carousel-controls {
    position: relative;
    z-index: 30;
    margin-bottom: 0 !important;
  }

  .home-v2 .hv2-packages {
    margin-top: 0 !important;
    padding-top: 48px !important;
    padding-bottom: 58px !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .home-v2 .hv2-carousel-ui.video-carousel-controls,
  .home-v2 .video-carousel-controls {
    position: relative;
    z-index: 30;
    margin-bottom: 0 !important;
  }

  .home-v2 .hv2-packages {
    margin-top: 50px !important;
    padding-top: 48px !important;
    padding-bottom: 58px !important;
  }
}

/* =========================================================
   PARTNER LOGO BELT / MARQUEE
   Constant right-to-left carousel with white edge fades
========================================================= */

.home-v2 .hv2-logo-strip.hv2-partner-belt {
  position: relative;
  padding: 24px 0;
  overflow: hidden;
  background: #ffffff;
  color: #000000;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* white fade before logos hit either edge */
.home-v2 .hv2-partner-belt::before,
.home-v2 .hv2-partner-belt::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(70px, 10vw, 190px);
  pointer-events: none;
}

.home-v2 .hv2-partner-belt::before {
  left: 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.94) 28%,
    rgba(255, 255, 255, 0) 100%
  );
}

.home-v2 .hv2-partner-belt::after {
  right: 0;
  background: linear-gradient(
    270deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.94) 28%,
    rgba(255, 255, 255, 0) 100%
  );
}

.home-v2 .hv2-partner-marquee {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: hv2PartnerMarquee 46s linear infinite;
}

.home-v2 .hv2-partner-set {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(44px, 5vw, 86px);
  padding-right: clamp(44px, 5vw, 86px);
}

.home-v2 .hv2-partner-set img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 46px;
  object-fit: contain;
  opacity: 0.9;
  filter: saturate(0.96);
}

/* long horizontal logos need a little more width */
.home-v2 .hv2-partner-set img[src*="three-rivers"],
.home-v2 .hv2-partner-set img[src*="hbagc"],
.home-v2 .hv2-partner-set img[src*="lori-bonarek"] {
  max-width: 230px;
}

.home-v2 .hv2-partner-belt:hover .hv2-partner-marquee {
  animation-play-state: paused;
}

@keyframes hv2PartnerMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 760px) {
  .home-v2 .hv2-logo-strip.hv2-partner-belt {
    padding: 18px 0;
  }

  .home-v2 .hv2-partner-marquee {
    animation-duration: 34s;
  }

  .home-v2 .hv2-partner-set {
    gap: 38px;
    padding-right: 38px;
  }

  .home-v2 .hv2-partner-set img {
    max-width: 132px;
    max-height: 34px;
  }

  .home-v2 .hv2-partner-set img[src*="three-rivers"],
  .home-v2 .hv2-partner-set img[src*="hbagc"],
  .home-v2 .hv2-partner-set img[src*="lori-bonarek"] {
    max-width: 165px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v2 .hv2-partner-marquee {
    animation: none;
    transform: none;
  }

  .home-v2 .hv2-logo-strip.hv2-partner-belt {
    overflow-x: auto;
  }
}

/* =========================================================
   HOMEPAGE VIDEO CAROUSEL THUMBNAILS
   Static thumbnails in phone previews; video plays only in modal.
========================================================= */

.home-v2 .video-card-media {
  position: relative;
  overflow: hidden;
  background-color: #000;
  isolation: isolate;
}

.home-v2 .home-carousel-thumb {
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center center;

  border: 0;
  background: #000;
}

/* Existing glare layer stays above thumbnail */
.home-v2 .video-card-media::before {
  z-index: 2;
}

/* Existing phone notch stays above thumbnail */
.home-v2 .video-card-media::after {
  z-index: 3;
}

/* Existing play button stays above everything */
.home-v2 .video-play-button {
  z-index: 8;
}

.wv2-headshot {
  position: relative;
  min-height: 278px;
  overflow: hidden;
  background: #000;
  box-shadow: 22px 22px 0 var(--red);
}

.wv2-headshot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.wv2-stat-icon-img {
  width: auto;
  height: 58px;
  margin-bottom: 18px;
  object-fit: contain;
}

.wv2-stat-icon-img--houses {
  height: 54px;
}

@media (max-width: 760px) {
  .wv2-stat-icon-img {
    height: 44px;
    margin-bottom: 10px;
  }

  .wv2-stat-icon-img--houses {
    height: 42px;
  }
}

/* =========================================================
   WORKING WITH VIZIMAGE — PREP VIDEO THUMBNAIL + MODAL
========================================================= */

.wv2-prep-video {
  position: relative;
  min-height: 330px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  display: block;

  border: 0;
  background: #000;
  cursor: pointer;
}

.wv2-prep-video img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.wv2-prep-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02),
    rgba(0, 0, 0, 0.18)
  );
  pointer-events: none;
}

.wv2-prep-video .wv2-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Horizontal modal */

.prep-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.prep-video-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.prep-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(12px);
}

.prep-video-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100vw - 40px));
}

.prep-video-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 4;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;

  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  font-size: 22px;
  line-height: 1;
}

.prep-video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.72);
}

.prep-video-modal-player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

@media (max-width: 760px) {
  .wv2-prep-video {
    min-height: 180px;
  }

  .wv2-prep-video img {
    min-height: 180px;
  }

  .prep-video-modal-dialog {
    width: calc(100vw - 24px);
  }

  .prep-video-modal-close {
    right: -6px;
  }
}

/* =========================================================
   WORKING WITH VIZIMAGE — IMAGE + STATS + PREP PLAY FIX
   Fixes:
   1. Correct hero image path/casing
   2. Stats locked to 1440px live area
   3. Prep checklist uses homepage play button PNG states
========================================================= */

/* 1. Correct desktop hero image path */
@media (min-width: 761px) {
  .working-v2 .wv2-hero-bg {
    position: absolute;
    inset: var(--header-height-desktop) 0 auto !important;
    height: 690px !important;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.34) 48%,
        rgba(0, 0, 0, 0.74) 78%,
        rgba(0, 0, 0, 1) 100%
      ),
      url("/assets/Images/Working-with-Vizimage/working-with-vizimage-header.png") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}

/* Correct mobile hero image path */
@media (max-width: 760px) {
  .working-v2 .wv2-hero-bg {
    position: absolute;
    inset: var(--header-height-mobile) 0 auto !important;
    height: 260px !important;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.3) 52%,
        rgba(0, 0, 0, 0.86) 100%
      ),
      url("/assets/Images/Working-with-Vizimage/working-with-vizimage-header.png") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}

/* 2. Stats: center both sides inside true 1440px live area */
@media (min-width: 761px) {
  .working-v2 .wv2-stats {
    width: min(calc(100% - 30px), 1440px) !important;
    max-width: 1440px !important;
    margin: 96px auto 0 !important;

    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    align-items: center !important;
  }

  .working-v2 .wv2-stats article {
    min-height: 280px !important;
    display: grid !important;
    justify-items: center !important;
    align-content: center !important;
    text-align: center !important;
    border-bottom: 0 !important;
  }

  .working-v2 .wv2-stats article:first-child {
    border-right: 2px solid var(--red) !important;
  }

  .working-v2 .wv2-stats article:last-child {
    border-right: 0 !important;
  }

  .working-v2 .wv2-stat-icon-img {
    height: 58px !important;
    width: auto !important;
    margin: 0 0 20px !important;
    object-fit: contain !important;
  }

  .working-v2 .wv2-stat-icon-img--houses {
    height: 54px !important;
  }

  .working-v2 .wv2-stats strong {
    font-size: clamp(96px, 7.8vw, 150px) !important;
    line-height: 0.82 !important;
  }

  .working-v2 .wv2-stats p {
    margin-top: 18px !important;
    font-size: 28px !important;
    line-height: 1 !important;
  }
}

/* Mobile stats remain stacked like mock */
@media (max-width: 760px) {
  .working-v2 .wv2-stats {
    width: calc(100% - 30px) !important;
    margin: 54px auto 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .working-v2 .wv2-stats article {
    min-height: 205px !important;
    border-right: 0 !important;
    border-bottom: 2px solid var(--red) !important;
  }

  .working-v2 .wv2-stats article:last-child {
    border-bottom: 0 !important;
  }

  .working-v2 .wv2-stat-icon-img {
    height: 44px !important;
    margin-bottom: 10px !important;
  }

  .working-v2 .wv2-stat-icon-img--houses {
    height: 42px !important;
  }
}

/* 3. Prep checklist thumbnail: use homepage play button PNG states */
.working-v2 .wv2-prep-video {
  position: relative !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 0 !important;
  background: #000 !important;
  cursor: pointer !important;
}

.working-v2 .wv2-prep-video img {
  width: 100% !important;
  height: 100% !important;
  min-height: 330px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.working-v2 .wv2-prep-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02),
    rgba(0, 0, 0, 0.18)
  );
  pointer-events: none;
}

.working-v2 .wv2-prep-video .wv2-play {
  position: absolute !important;
  z-index: 4 !important;
  left: 50% !important;
  top: 50% !important;

  width: 72px !important;
  height: 72px !important;

  display: block !important;
  transform: translate(-50%, -50%) !important;

  background: transparent url("/assets/Images/Home/Video-UI/Play-button-inactive.png") center / contain no-repeat !important;

  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

.working-v2 .wv2-prep-video .wv2-play::after {
  display: none !important;
  content: none !important;
}

.working-v2 .wv2-prep-video:hover .wv2-play,
.working-v2 .wv2-prep-video:focus-visible .wv2-play {
  background: transparent url("/assets/Images/Home/Video-UI/Play-button-hover.png") center / contain no-repeat !important;
}

@media (max-width: 760px) {
  .working-v2 .wv2-prep-video img {
    min-height: 170px !important;
  }

  .working-v2 .wv2-prep-video .wv2-play {
    width: 54px !important;
    height: 54px !important;
  }
}

/* =========================================================
   WWV HERO MICRO FIX
   - Mobile "More Than Media" stays red
   - Desktop hero shading extends higher behind intro copy
========================================================= */

/* Desktop: stronger dark shading behind main headline + right intro copy */
@media (min-width: 761px) {
  .working-v2 .wv2-hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.30) 28%,
        rgba(0, 0, 0, 0.56) 56%,
        rgba(0, 0, 0, 0.82) 82%,
        rgba(0, 0, 0, 1) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.38) 0%,
        rgba(0, 0, 0, 0.18) 42%,
        rgba(0, 0, 0, 0.34) 70%,
        rgba(0, 0, 0, 0.46) 100%
      ),
      url("/assets/Images/Working-with-Vizimage/working-with-vizimage-header.png") !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  /* Extra localized shadow behind the right intro paragraph */
  .working-v2 .wv2-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(
        ellipse at 68% 50%,
        rgba(0, 0, 0, 0.48) 0%,
        rgba(0, 0, 0, 0.34) 22%,
        rgba(0, 0, 0, 0.12) 44%,
        transparent 68%
      );
  }
}

/* Mobile: keep "More Than Media" red like desktop */
@media (max-width: 760px) {
  .working-v2 .wv2-hero-content .wv2-redline,
  .working-v2 .wv2-redline {
    color: var(--red) !important;
  }

  .working-v2 .wv2-hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.28) 42%,
        rgba(0, 0, 0, 0.74) 100%
      ),
      url("/assets/Images/Working-with-Vizimage/working-with-vizimage-header.png") !important;

    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }
}

/* =========================================================
   SHARED SVG ICON SYSTEM
   /assets/Icons/
   - checkmark: CTA buttons
   - lightning: footer contact CTA
   - phone: phone links
   - hamburger: mobile menu icon
   - magnifying glass: Services View More gallery toggle
========================================================= */

.button-with-icon,
.primary-pill.button-with-icon,
.nav-book.button-with-icon,
.mobile-nav-book.button-with-icon,
.package-cta.button-with-icon,
.footer-contact-cta.button-with-icon,
.sv2-gallery-toggle.button-with-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

.button-icon,
.inline-icon,
.mobile-menu-icon {
  flex: 0 0 auto;
  display: inline-block;
  background-color: currentColor;

  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.button-icon--check {
  width: 18px;
  height: 18px;
  mask-image: url("/assets/Icons/button-checkmark-icon.svg");
  -webkit-mask-image: url("/assets/Icons/button-checkmark-icon.svg");
}

.button-icon--bolt {
  width: 13px;
  height: 18px;
  mask-image: url("/assets/Icons/contact-us-lightning-bolt.svg");
  -webkit-mask-image: url("/assets/Icons/contact-us-lightning-bolt.svg");
}

.button-icon--search {
  width: 17px;
  height: 17px;
  mask-image: url("/assets/Icons/magnifiying-glass-icon.svg");
  -webkit-mask-image: url("/assets/Icons/magnifiying-glass-icon.svg");
}

.inline-icon--phone {
  width: 14px;
  height: 14px;
  mask-image: url("/assets/Icons/phone-icon.svg");
  -webkit-mask-image: url("/assets/Icons/phone-icon.svg");
}

/* Phone icon spacing */
.nav-phone .inline-icon--phone,
.mobile-phone-bar .inline-icon--phone {
  margin-right: 7px;
  transform: translateY(1px);
}

/* Make text/icon inverse together on red pill CTAs */
.primary-pill.button-with-icon:hover,
.primary-pill.button-with-icon:focus-visible,
.package-cta.button-with-icon:hover,
.package-cta.button-with-icon:focus-visible,
.mobile-nav-book.button-with-icon:hover,
.mobile-nav-book.button-with-icon:focus-visible,
.sv2-gallery-toggle.button-with-icon:hover,
.sv2-gallery-toggle.button-with-icon:focus-visible {
  background: #ffffff !important;
  color: var(--red) !important;
  border-color: var(--red) !important;
}

/* Featured package button starts white/red, then reverses to red/white */
.home-v2 .package-card.is-featured .package-cta.button-with-icon:hover,
.home-v2 .package-card.is-featured .package-cta.button-with-icon:focus-visible {
  background: var(--red) !important;
  color: #ffffff !important;
  border-color: var(--red) !important;
}

/* Footer CTA uses lightning and needs to beat existing !important footer rules */
.site-footer .footer-contact-cta.button-with-icon:hover,
.site-footer .footer-contact-cta.button-with-icon:focus-visible {
  background: #ffffff !important;
  color: var(--red) !important;
  border-color: var(--red) !important;
}

/* Package CTA old arrow span reset */
.package-cta .button-icon {
  font-size: 0 !important;
  line-height: 0 !important;
  max-width: none !important;
}

/* Replace mobile hamburger line spans with real SVG icon */
.mobile-menu-button .mobile-menu-icon {
  display: block !important;
  width: 31px !important;
  height: 26px !important;
  background-color: #ffffff !important;

  mask-image: url("/assets/Icons/mobile-hamburger-icon.svg");
  -webkit-mask-image: url("/assets/Icons/mobile-hamburger-icon.svg");

  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  transform: none !important;
  opacity: 1 !important;
}

.mobile-menu-open .mobile-menu-button .mobile-menu-icon {
  transform: rotate(90deg) !important;
  opacity: 0.92 !important;
}

/* Services featured photos View More button */
.services-v2 .sv2-gallery-toggle {
  position: relative;
  z-index: 6;
  width: fit-content;
  min-height: 44px;
  margin: -22px auto 0;
  padding: 0 24px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: #ffffff;

  font-family: var(--font-display);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

/* Featured photo gallery collapsed / expanded */
.services-v2 .sv2-photo-band[data-featured-photo-gallery] {
  max-height: 412px;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.services-v2 .sv2-photo-band[data-featured-photo-gallery].is-expanded {
  max-height: 1400px;
}

@media (max-width: 760px) {
  .button-with-icon,
  .primary-pill.button-with-icon,
  .nav-book.button-with-icon,
  .mobile-nav-book.button-with-icon,
  .package-cta.button-with-icon,
  .footer-contact-cta.button-with-icon,
  .sv2-gallery-toggle.button-with-icon {
    gap: 8px !important;
  }

  .button-icon--check {
    width: 16px;
    height: 16px;
  }

  .button-icon--bolt {
    width: 12px;
    height: 16px;
  }

  .button-icon--search {
    width: 15px;
    height: 15px;
  }

  .inline-icon--phone {
    width: 13px;
    height: 13px;
  }

  .services-v2 .sv2-gallery-toggle {
    min-height: 42px;
    margin-top: -21px;
    font-size: 10px;
  }

  .services-v2 .sv2-photo-band[data-featured-photo-gallery] {
    max-height: 375px;
  }

  .services-v2 .sv2-photo-band[data-featured-photo-gallery].is-expanded {
    max-height: 2600px;
  }
}

/* =========================================================
   HEADER / CTA / MOBILE MENU REFINEMENT PASS
   - WwV checklist CTA straddles hero baseline
   - Mobile Facebook restored beside hamburger
   - Desktop Facebook hover turns white
   - Desktop phone + icon hover turns red
   - Hamburger becomes true X when expanded
========================================================= */

/* ---------------------------------------------
   1. Working with Vizimage hero CTA baseline
   The hero/white-section boundary now hits the
   vertical center of the checklist button.
--------------------------------------------- */

.working-v2 .wv2-hero {
  overflow: visible !important;
}

.working-v2 .wv2-floating-cta {
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  z-index: 12 !important;

  margin: 0 !important;
  transform: translate(-50%, 50%) !important;
}

@media (min-width: 761px) {
  .working-v2 .wv2-founders {
    padding-top: 118px !important;
  }
}

@media (max-width: 760px) {
  .working-v2 .wv2-hero {
    overflow: visible !important;
  }

  .working-v2 .wv2-floating-cta {
    width: min(330px, calc(100vw - 30px)) !important;
    min-width: 0 !important;
    bottom: 0 !important;
    transform: translate(-50%, 50%) !important;
  }

  .working-v2 .wv2-founders {
    padding-top: 76px !important;
  }
}

/* ---------------------------------------------
   2. Desktop hover behavior
   Facebook goes white.
   Phone number + phone icon go red together.
--------------------------------------------- */

@media (min-width: 761px) {
  .site-header .nav-facebook img {
    transition: filter 180ms ease, opacity 180ms ease;
  }

  .site-header .nav-facebook:hover img,
  .site-header .nav-facebook:focus-visible img {
    filter: brightness(0) invert(1);
  }

  .site-header .nav-contact .nav-phone {
    color: #ffffff !important;
    transition: color 180ms ease;
  }

  .site-header .nav-contact .nav-phone:hover,
  .site-header .nav-contact .nav-phone:focus-visible {
    color: var(--red) !important;
  }
}

/* ---------------------------------------------
   3. Mobile: keep Facebook visible next to hamburger
--------------------------------------------- */

@media (max-width: 760px) {
  .site-header .nav-contact {
    height: 43px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 14px 0 0 !important;
    gap: 0 !important;
    transform: none !important;
  }

  .site-header .nav-contact .nav-phone {
    display: none !important;
  }

  .site-header .nav-facebook {
    width: 20px !important;
    height: 20px !important;
    flex: 0 0 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .site-header .nav-facebook img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

/* ---------------------------------------------
   4. Mobile hamburger:
   normal state uses SVG hamburger;
   expanded state becomes a true CSS X.
--------------------------------------------- */

.mobile-menu-button .mobile-menu-icon {
  position: relative !important;
  display: block !important;
  width: 31px !important;
  height: 26px !important;
  color: #ffffff !important;
  background-color: currentColor !important;

  mask-image: url("/assets/Icons/mobile-hamburger-icon.svg");
  -webkit-mask-image: url("/assets/Icons/mobile-hamburger-icon.svg");

  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  transform: none !important;
  transition: background-color 180ms ease;
}

.mobile-menu-button .mobile-menu-icon::before,
.mobile-menu-button .mobile-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;

  width: 31px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;

  opacity: 0;
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

/* Expanded: remove SVG mask and draw the X */
.mobile-menu-open .mobile-menu-button .mobile-menu-icon {
  background-color: transparent !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  transform: none !important;
  opacity: 1 !important;
}

.mobile-menu-open .mobile-menu-button .mobile-menu-icon::before {
  opacity: 1;
  transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-open .mobile-menu-button .mobile-menu-icon::after {
  opacity: 1;
  transform: translateY(-50%) rotate(-45deg);
}

/* =========================================================
   HEADER PHONE / FACEBOOK CLEANUP
   - Mobile: only Facebook next to hamburger, no phone in black bar
   - Desktop: phone is plain icon + text lockup, not a button
========================================================= */

/* Desktop phone lockup: plain white text + icon */
@media (min-width: 761px) {
  .site-header .nav-contact {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .site-header .nav-contact .nav-phone {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;

    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    color: #ffffff !important;

    font-family: var(--font-display) !important;
    font-size: 11px !important;
    line-height: 1 !important;
    letter-spacing: 0.055em !important;
    text-transform: uppercase !important;
  }

  .site-header .nav-contact .nav-phone:hover,
  .site-header .nav-contact .nav-phone:focus-visible {
    color: var(--red) !important;
  }

  .site-header .nav-contact .nav-phone .inline-icon--phone {
    width: 13px !important;
    height: 13px !important;
    margin: 0 !important;
    transform: translateY(0) !important;
    background-color: currentColor !important;
  }

  .site-header .nav-facebook img {
    transition: filter 180ms ease, opacity 180ms ease;
  }

  .site-header .nav-facebook:hover img,
  .site-header .nav-facebook:focus-visible img {
    filter: brightness(0) invert(1) !important;
  }
}

/* Mobile: hide the desktop phone from the top black header */
@media (max-width: 760px) {
  .site-header .nav-contact {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    margin-left: auto !important;
    margin-right: 14px !important;
    height: 43px !important;
  }

  .site-header .nav-contact .nav-phone {
    display: none !important;
  }

  .site-header .nav-facebook {
    display: inline-flex !important;
    width: 20px !important;
    height: 20px !important;
    flex: 0 0 20px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .site-header .nav-facebook img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Keep only the lower red phone bar visible */
  .site-header > .mobile-phone-bar {
    display: flex !important;
  }

  .site-header > .mobile-phone-bar .inline-icon--phone {
    background-color: currentColor !important;
  }
}

/* =========================================================
   WWV HERO / WHITE SECTION BOUNDARY TRUE LOCK
   Pulls the white founder section upward so its top edge
   crosses the vertical center of the checklist CTA.
========================================================= */

@media (min-width: 761px) {
  .working-v2 .wv2-hero {
    position: relative !important;
    min-height: 690px !important;
    height: auto !important;
    overflow: visible !important;
  }

  .working-v2 .wv2-hero-bg {
    height: 690px !important;
  }

  .working-v2 .wv2-floating-cta {
    position: absolute !important;
    left: 50% !important;
    bottom: 0 !important;
    z-index: 30 !important;

    margin: 0 !important;
    transform: translate(-50%, 50%) !important;
  }

  .working-v2 .wv2-founders {
    position: relative !important;
    z-index: 10 !important;

    margin-top: -56px !important;
    padding-top: 150px !important;
  }
}

@media (max-width: 760px) {
  .working-v2 .wv2-hero {
    position: relative !important;
    min-height: 500px !important;
    height: auto !important;
    overflow: visible !important;
  }

  .working-v2 .wv2-hero-bg {
    height: 260px !important;
  }

  .working-v2 .wv2-floating-cta {
    position: absolute !important;
    left: 50% !important;
    bottom: 0 !important;
    z-index: 30 !important;

    width: min(330px, calc(100vw - 30px)) !important;
    min-width: 0 !important;
    margin: 0 !important;
    transform: translate(-50%, 50%) !important;
  }

  .working-v2 .wv2-founders {
    position: relative !important;
    z-index: 10 !important;

    margin-top: -44px !important;
    padding-top: 104px !important;
  }
}

/* =========================================================
   WWV HERO TRUE BUTTON-CENTER BOUNDARY
   The black hero/image area ends at the vertical center
   of "Download Photo Prep Checklist"
========================================================= */

/* Desktop */
@media (min-width: 761px) {
  .working-v2 .wv2-hero {
    position: relative !important;
    height: 690px !important;
    min-height: 690px !important;
    padding-top: 0 !important;
    overflow: visible !important;
    background: #000 !important;
  }

  .working-v2 .wv2-hero-bg {
    position: absolute !important;
    inset: 0 0 auto !important;
    height: 690px !important;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.30) 28%,
        rgba(0, 0, 0, 0.56) 56%,
        rgba(0, 0, 0, 0.82) 82%,
        rgba(0, 0, 0, 1) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.38) 0%,
        rgba(0, 0, 0, 0.18) 42%,
        rgba(0, 0, 0, 0.34) 70%,
        rgba(0, 0, 0, 0.46) 100%
      ),
      url("/assets/Images/Working-with-Vizimage/working-with-vizimage-header.png") !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .working-v2 .wv2-floating-cta {
    position: absolute !important;
    left: 50% !important;
    bottom: 0 !important;
    z-index: 40 !important;

    margin: 0 !important;
    transform: translate(-50%, 50%) !important;
  }

  .working-v2 .wv2-founders {
    position: relative !important;
    z-index: 1 !important;

    margin-top: 0 !important;
    padding-top: 124px !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .working-v2 .wv2-hero {
    position: relative !important;
    height: 510px !important;
    min-height: 510px !important;
    padding-top: var(--header-height-mobile) !important;
    overflow: visible !important;
    background: #000 !important;
  }

  .working-v2 .wv2-hero-bg {
    position: absolute !important;
    inset: var(--header-height-mobile) 0 auto !important;
    height: calc(510px - var(--header-height-mobile)) !important;

    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.06) 0%,
        rgba(0, 0, 0, 0.22) 36%,
        rgba(0, 0, 0, 0.74) 100%
      ),
      url("/assets/Images/Working-with-Vizimage/working-with-vizimage-header.png") !important;

    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }

  .working-v2 .wv2-floating-cta {
    position: absolute !important;
    left: 50% !important;
    bottom: 0 !important;
    z-index: 40 !important;

    width: min(330px, calc(100vw - 30px)) !important;
    min-width: 0 !important;
    margin: 0 !important;
    transform: translate(-50%, 50%) !important;
  }

  .working-v2 .wv2-founders {
    position: relative !important;
    z-index: 1 !important;

    margin-top: 0 !important;
    padding-top: 92px !important;
  }
}

/* =========================================================
   WWV MOBILE HERO FINAL SPACING + REDLINE READABILITY
   - Adds 40px more space before checklist CTA
   - Extends dark gradient higher behind "More Than Media"
   - Mobile only
========================================================= */

@media (max-width: 760px) {
  .working-v2 .wv2-hero {
    height: 550px !important;
    min-height: 550px !important;
  }

  .working-v2 .wv2-hero-bg {
    height: calc(550px - var(--header-height-mobile)) !important;

    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.24) 22%,
        rgba(0, 0, 0, 0.48) 42%,
        rgba(0, 0, 0, 0.68) 68%,
        rgba(0, 0, 0, 0.86) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.56) 0%,
        rgba(0, 0, 0, 0.42) 42%,
        rgba(0, 0, 0, 0.14) 74%,
        rgba(0, 0, 0, 0.02) 100%
      ),
      url("/assets/Images/Working-with-Vizimage/working-with-vizimage-header.png") !important;

    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }

  .working-v2 .wv2-floating-cta {
    bottom: 0 !important;
    transform: translate(-50%, 50%) !important;
  }

  .working-v2 .wv2-founders {
    padding-top: 92px !important;
  }
}

/* =========================================================
   SERVICES IMAGE ASSET PATH UPDATE
   Uses actual /assets/Images/Services/ folder names
========================================================= */

/* Services hero header image */
.services-v2 .sv2-hero-image {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.46)),
    url("/assets/Images/Services/services-header.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Services iPad / premium video preview image */
.services-v2 .sv2-video-panel {
  background:
    linear-gradient(140deg, rgba(224,0,24,0.18), rgba(0,0,0,0.08)),
    url("/assets/Images/Services/services-ipad-image.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* 16-image collapsible featured photo grid */
.services-v2 .sv2-photo-band .tile-1 {
  background-image: url("/assets/Images/Services/image_1.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-2 {
  background-image: url("/assets/Images/Services/image_2.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-3 {
  background-image: url("/assets/Images/Services/image_3.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-4 {
  background-image: url("/assets/Images/Services/image_4.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-5 {
  background-image: url("/assets/Images/Services/image_5.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-6 {
  background-image: url("/assets/Images/Services/image_6.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-7 {
  background-image: url("/assets/Images/Services/image_7.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-8 {
  background-image: url("/assets/Images/Services/image_8.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-9 {
  background-image: url("/assets/Images/Services/image_9.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-10 {
  background-image: url("/assets/Images/Services/image_10.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-11 {
  background-image: url("/assets/Images/Services/image_11.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-12 {
  background-image: url("/assets/Images/Services/image_12.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-13 {
  background-image: url("/assets/Images/Services/image_13.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-14 {
  background-image: url("/assets/Images/Services/image_14.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-15 {
  background-image: url("/assets/Images/Services/image_15.jpg") !important;
}

.services-v2 .sv2-photo-band .tile-16 {
  background-image: url("/assets/Images/Services/image_16.jpg") !important;
}

.services-v2 .sv2-photo-band .sv2-photo-tile {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Additional services night-time image */
.services-v2 .sv2-additional-image.image-b {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.08)),
    url("/assets/Images/Services/night-time-image-additional.png") !important;
  background-size: cover !important;
  background-position: center center !important;
}

/* =========================================================
   SERVICES GALLERY + IMAGE MODAL FINAL PASS
========================================================= */

/* Red intro headline: force it to behave as a subhead, not a giant h2 */
.services-v2 .sv2-intro-copy .live-area > h2 {
  max-width: 880px !important;
  margin: 0 auto 30px !important;
  color: var(--red) !important;

  font-family: var(--font-display) !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  line-height: 1.34 !important;
  letter-spacing: 0.085em !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;

  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}

/* Gallery tile buttons */
.services-v2 .sv2-photo-band[data-featured-photo-gallery] .sv2-photo-tile {
  appearance: none !important;
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  background-color: #111 !important;
  transition: filter 180ms ease, transform 180ms ease;
}

.services-v2 .sv2-photo-band[data-featured-photo-gallery] .sv2-photo-tile:hover,
.services-v2 .sv2-photo-band[data-featured-photo-gallery] .sv2-photo-tile:focus-visible {
  filter: brightness(1.08) contrast(1.02) !important;
  outline: 2px solid var(--red) !important;
  outline-offset: -2px !important;
}

/* Gallery collapsed / expanded window */
.services-v2 .sv2-photo-band[data-featured-photo-gallery] {
  --sv2-tile-h: 330px;
  --sv2-collapsed-h: calc(var(--sv2-tile-h) * 1.3333);
  --sv2-expanded-h: calc(var(--sv2-tile-h) * 4);

  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  max-height: var(--sv2-collapsed-h) !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: #000 !important;
  transition: max-height 420ms ease !important;
}

.services-v2 .sv2-photo-band[data-featured-photo-gallery].is-expanded {
  max-height: var(--sv2-expanded-h) !important;
}

.services-v2 .sv2-photo-band[data-featured-photo-gallery] .sv2-photo-tile {
  height: var(--sv2-tile-h) !important;
  min-height: var(--sv2-tile-h) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Actual image paths */
.services-v2 .sv2-photo-band .tile-1 { background-image: url("/assets/Images/Services/image_1.jpg") !important; }
.services-v2 .sv2-photo-band .tile-2 { background-image: url("/assets/Images/Services/image_2.jpg") !important; }
.services-v2 .sv2-photo-band .tile-3 { background-image: url("/assets/Images/Services/image_3.jpg") !important; }
.services-v2 .sv2-photo-band .tile-4 { background-image: url("/assets/Images/Services/image_4.jpg") !important; }
.services-v2 .sv2-photo-band .tile-5 { background-image: url("/assets/Images/Services/image_5.jpg") !important; }
.services-v2 .sv2-photo-band .tile-6 { background-image: url("/assets/Images/Services/image_6.jpg") !important; }
.services-v2 .sv2-photo-band .tile-7 { background-image: url("/assets/Images/Services/image_7.jpg") !important; }
.services-v2 .sv2-photo-band .tile-8 { background-image: url("/assets/Images/Services/image_8.jpg") !important; }
.services-v2 .sv2-photo-band .tile-9 { background-image: url("/assets/Images/Services/image_9.jpg") !important; }
.services-v2 .sv2-photo-band .tile-10 { background-image: url("/assets/Images/Services/image_10.jpg") !important; }
.services-v2 .sv2-photo-band .tile-11 { background-image: url("/assets/Images/Services/image_11.jpg") !important; }
.services-v2 .sv2-photo-band .tile-12 { background-image: url("/assets/Images/Services/image_12.jpg") !important; }
.services-v2 .sv2-photo-band .tile-13 { background-image: url("/assets/Images/Services/image_13.jpg") !important; }
.services-v2 .sv2-photo-band .tile-14 { background-image: url("/assets/Images/Services/image_14.jpg") !important; }
.services-v2 .sv2-photo-band .tile-15 { background-image: url("/assets/Images/Services/image_15.jpg") !important; }
.services-v2 .sv2-photo-band .tile-16 { background-image: url("/assets/Images/Services/image_16.jpg") !important; }

/* The black intro section owns the button at its top edge.
   Because the gallery height changes, this edge moves with collapsed/expanded state. */
.services-v2 .sv2-intro-copy {
  position: relative !important;
  padding: 92px 0 98px !important;
  background: #000 !important;
  color: #fff !important;
  text-align: center !important;
  overflow: visible !important;
}

/* View More / View Less button: centered at the bottom edge of gallery window */
.services-v2 .sv2-intro-copy .sv2-gallery-toggle {
  position: absolute !important;
  left: 50% !important;
  top: 0 !important;
  z-index: 30 !important;
  transform: translate(-50%, -50%) !important;

  width: auto !important;
  min-width: 220px !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 0 26px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  border: 1px solid var(--red) !important;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #fff !important;

  font-family: var(--font-display) !important;
  font-size: 11px !important;
  line-height: 1 !important;
  letter-spacing: 0.085em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.services-v2 .sv2-intro-copy .sv2-gallery-toggle .button-icon--search {
  width: 16px !important;
  height: 16px !important;
  background-color: currentColor !important;
}

.services-v2 .sv2-intro-copy .sv2-gallery-toggle:hover,
.services-v2 .sv2-intro-copy .sv2-gallery-toggle:focus-visible {
  background: #fff !important;
  color: var(--red) !important;
  border-color: var(--red) !important;
}

/* Services horizontal image modal */
.services-image-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.services-image-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.services-image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
}

.services-image-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 48px));
  display: grid;
  justify-items: center;
  gap: 14px;
}

.services-image-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 4;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;

  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 22px;
  line-height: 1;
}

.services-image-modal-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505;
  border: 7px solid #090909;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.72);
}

.services-image-modal-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.services-image-modal-controls {
  display: grid;
  grid-template-columns: 34px auto 34px;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.services-image-modal-controls button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--red);
  font-size: 34px;
  line-height: 1;
}

.services-image-modal-count {
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.services-image-modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .services-v2 .sv2-photo-band[data-featured-photo-gallery] {
    --sv2-tile-h: 150px;
    --sv2-collapsed-h: calc((var(--sv2-tile-h) * 2) + (var(--sv2-tile-h) * 0.3333));
    --sv2-expanded-h: calc(var(--sv2-tile-h) * 8);

    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .services-v2 .sv2-intro-copy {
    padding: 66px 0 72px !important;
  }

  .services-v2 .sv2-intro-copy .sv2-gallery-toggle {
    min-width: 190px !important;
    min-height: 42px !important;
    padding: 0 20px !important;
    font-size: 10px !important;
  }

  .services-v2 .sv2-intro-copy .live-area > h2 {
    max-width: 330px !important;
    font-size: 15px !important;
    line-height: 1.42 !important;
    letter-spacing: 0.08em !important;
  }

  .services-image-modal {
    padding: 16px;
  }

  .services-image-modal-dialog {
    width: calc(100vw - 24px);
  }

  .services-image-modal-close {
    right: -6px;
  }

  .services-image-modal-frame {
    border-width: 4px;
  }
}

/* =========================================================
   SEARCH ICON FIX — SERVICES VIEW MORE / VIEW LESS BUTTON
   Uses /assets/Icons/magnifying-glass-icon.svg
========================================================= */

.button-with-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

.button-icon {
  display: inline-block !important;
  flex: 0 0 auto !important;
  width: 16px !important;
  height: 16px !important;

  background-color: currentColor !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
}

/* Exact folder casing matters: Icons, not icons */
.button-icon--search {
  width: 16px !important;
  height: 16px !important;

  mask-image: url("/assets/Icons/magnifying-glass-icon.svg") !important;
  -webkit-mask-image: url("/assets/Icons/magnifying-glass-icon.svg") !important;

  mask-repeat: no-repeat !important;
  mask-position: center !important;
  mask-size: contain !important;

  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  -webkit-mask-size: contain !important;
}

/* Services-specific lock so older button rules cannot hide it */
.services-v2 .sv2-gallery-toggle .button-icon--search {
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
  background-color: currentColor !important;
}

/* Expanded/hover state still reverses cleanly because the icon uses currentColor */
.services-v2 .sv2-gallery-toggle:hover .button-icon--search,
.services-v2 .sv2-gallery-toggle:focus-visible .button-icon--search {
  background-color: currentColor !important;
}

/* =========================================================
   SERVICES — ZILLOW 3D TOUR EMBED
   Replaces placeholder / slider UI with live embedded tour
========================================================= */

.services-v2 .sv2-tour-embed.sv2-zillow-embed {
  width: 100% !important;
  max-width: 1160px !important;
  min-height: 0 !important;
  margin: 34px auto 0 !important;
  padding: 0 !important;

  display: block !important;
  overflow: hidden !important;

  background: #000 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.services-v2 .sv2-tour-embed.sv2-zillow-embed iframe {
  width: 100% !important;
  height: min(680px, 56vw) !important;
  min-height: 520px !important;
  display: block !important;

  border: 0 !important;
  background: #000 !important;
}

@media (max-width: 760px) {
  .services-v2 .sv2-tour-embed.sv2-zillow-embed {
    width: 100% !important;
    margin-top: 24px !important;
  }

  .services-v2 .sv2-tour-embed.sv2-zillow-embed iframe {
    height: 360px !important;
    min-height: 360px !important;
  }
}

/* =========================================================
   SERVICES — 3D TOUR FULL RAIL + ZILLOW SERVICES LOGO
========================================================= */

.services-v2 .sv2-tour .live-area {
  width: min(calc(100% - 30px), var(--desktop-live)) !important;
}

.services-v2 .sv2-partners.sv2-partners--zillow-only {
  width: min(calc(100% - 30px), var(--desktop-live)) !important;
  max-width: var(--desktop-live) !important;
  margin: 42px auto 18px !important;

  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.services-v2 .sv2-zillow-certified-logo {
  display: block !important;
  width: 210px !important;
  height: auto !important;
  object-fit: contain !important;
}

.services-v2 .sv2-tour-embed.sv2-zillow-embed {
  width: min(calc(100% - 30px), var(--desktop-live)) !important;
  max-width: var(--desktop-live) !important;
  margin: 28px auto 0 !important;
  padding: 0 !important;

  display: block !important;
  overflow: hidden !important;
  background: #000 !important;
}

.services-v2 .sv2-tour-embed.sv2-zillow-embed iframe {
  width: 100% !important;
  height: min(760px, 52vw) !important;
  min-height: 620px !important;
  display: block !important;

  border: 0 !important;
  background: #000 !important;
}

@media (max-width: 760px) {
  .services-v2 .sv2-partners.sv2-partners--zillow-only {
    width: calc(100% - 30px) !important;
    margin: 28px auto 14px !important;
    justify-content: center !important;
  }

  .services-v2 .sv2-zillow-certified-logo {
    width: 160px !important;
  }

  .services-v2 .sv2-tour-embed.sv2-zillow-embed {
    width: calc(100% - 30px) !important;
    margin-top: 18px !important;
  }

  .services-v2 .sv2-tour-embed.sv2-zillow-embed iframe {
    height: 420px !important;
    min-height: 420px !important;
  }
}

/* =========================================================
   SERVICES — ADDITIONAL SERVICES VIRTUAL STAGING SLIDER
   Left card becomes before/after comparison.
   Right card remains twilight image.
========================================================= */

.services-v2 .sv2-additional-images {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 34px !important;
  width: min(calc(100% - 30px), 1160px) !important;
  margin: 0 auto !important;
  align-items: center !important;
}

.services-v2 .sv2-additional-image,
.services-v2 .sv2-staging-compare {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  min-height: 0 !important;
  height: auto !important;
}

/* staging comparison shell */
.services-v2 .sv2-staging-compare {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  background: #111 !important;
  border: 0 !important;
  cursor: ew-resize !important;
  user-select: none !important;
  touch-action: none !important;
}

.services-v2 .sv2-staging-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  pointer-events: none !important;
}

.services-v2 .sv2-staging-img--before {
  z-index: 1 !important;
}

.services-v2 .sv2-staging-after-wrap {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  overflow: hidden !important;
  clip-path: inset(0 calc(100% - var(--staging-position, 50%)) 0 0) !important;
}

.services-v2 .sv2-staging-label {
  position: absolute !important;
  z-index: 6 !important;
  top: 14px !important;

  min-width: 74px !important;
  padding: 8px 12px 7px !important;

  background: rgba(0, 0, 0, 0.68) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;

  font-family: var(--font-display) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

.services-v2 .sv2-staging-label--before {
  left: 14px !important;
}

.services-v2 .sv2-staging-label--after {
  right: 14px !important;
}

/* invisible real input controls the slider */
.services-v2 .sv2-staging-range {
  position: absolute !important;
  inset: 0 !important;
  z-index: 10 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: ew-resize !important;
  margin: 0 !important;
}

/* visible vertical divider + handle */
.services-v2 .sv2-staging-handle {
  position: absolute !important;
  z-index: 7 !important;
  top: 0 !important;
  bottom: 0 !important;
  left: var(--staging-position, 50%) !important;
  width: 2px !important;
  transform: translateX(-50%) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  pointer-events: none !important;
}

.services-v2 .sv2-staging-handle span {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;

  width: 46px !important;
  height: 46px !important;
  transform: translate(-50%, -50%) !important;

  border-radius: 999px !important;
  background: var(--red) !important;
  border: 3px solid #fff !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32) !important;
}

.services-v2 .sv2-staging-handle span::before,
.services-v2 .sv2-staging-handle span::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  width: 8px !important;
  height: 8px !important;
  border-top: 2px solid #fff !important;
  border-left: 2px solid #fff !important;
}

.services-v2 .sv2-staging-handle span::before {
  left: 12px !important;
  transform: translateY(-50%) rotate(-45deg) !important;
}

.services-v2 .sv2-staging-handle span::after {
  right: 12px !important;
  transform: translateY(-50%) rotate(135deg) !important;
}

/* keep right-side twilight image even and centered */
.services-v2 .sv2-additional-image.image-b {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.08)),
    url("/assets/Images/Services/night-time-image-additional.png") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 760px) {
  .services-v2 .sv2-additional-images {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: calc(100% - 30px) !important;
  }

  .services-v2 .sv2-staging-label {
    top: 10px !important;
    min-width: 66px !important;
    padding: 7px 10px 6px !important;
    font-size: 9px !important;
  }

  .services-v2 .sv2-staging-label--before {
    left: 10px !important;
  }

  .services-v2 .sv2-staging-label--after {
    right: 10px !important;
  }

  .services-v2 .sv2-staging-handle span {
    width: 40px !important;
    height: 40px !important;
  }
}

/* =========================================================
   SERVICES — STATIC FLOATING IPAD FEATURE
   Removes carousel dots/arrows and lets the iPad image show uncropped.
========================================================= */

/* Remove the premium section ellipses/arrows for now */
.services-v2 .sv2-premium > .sv2-slider-ui {
  display: none !important;
}

/* Desktop: black feature band with iPad vertically centered and slightly breaking out */
@media (min-width: 761px) {
  .services-v2 .sv2-premium {
    position: relative !important;
    padding: 78px 0 72px !important;
    overflow: visible !important;
    background: #000 !important;
  }

  .services-v2 .sv2-premium-grid {
    width: min(calc(100% - 30px), 1240px) !important;
    min-height: 360px !important;

    display: grid !important;
    grid-template-columns: 0.82fr 1.18fr !important;
    align-items: center !important;
    gap: 88px !important;
  }

  .services-v2 .sv2-premium-title {
    align-self: center !important;
  }

  .services-v2 .sv2-premium-title h2 {
    max-width: 520px !important;
    margin: 0 !important;
    color: #fff !important;
    text-align: left !important;
  }

  .services-v2 .sv2-video-panel {
    position: relative !important;
    justify-self: end !important;
    align-self: center !important;

    width: min(100%, 710px) !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
    height: auto !important;

    margin-top: -44px !important;
    margin-bottom: -34px !important;
    padding: 0 !important;

    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    background:
      url("/assets/Images/Services/services-ipad-image.png")
      center / contain no-repeat !important;
  }

  .services-v2 .sv2-video-panel::before,
  .services-v2 .sv2-video-panel::after {
    display: none !important;
    content: none !important;
  }

  .services-v2 .sv2-video-panel:hover,
  .services-v2 .sv2-video-panel:focus-visible {
    filter: brightness(1.04) !important;
  }
}

/* Mobile: iPad overlaps the bottom of the hero/header image, title sits underneath */
@media (max-width: 760px) {
  .services-v2 .sv2-premium {
    position: relative !important;
    padding: 0 0 34px !important;
    overflow: visible !important;
    background: #000 !important;
  }

  .services-v2 .sv2-premium-grid {
    width: calc(100% - 30px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    align-items: start !important;
  }

  .services-v2 .sv2-video-panel {
    order: 1 !important;
    justify-self: center !important;

    width: min(100%, 350px) !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
    height: auto !important;

    margin-top: -42px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;

    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    background:
      url("/assets/Images/Services/services-ipad-image.png")
      center / contain no-repeat !important;
  }

  .services-v2 .sv2-video-panel::before,
  .services-v2 .sv2-video-panel::after {
    display: none !important;
    content: none !important;
  }

  .services-v2 .sv2-premium-title {
    order: 2 !important;
    width: 100% !important;
  }

  .services-v2 .sv2-premium-title h2 {
    max-width: 330px !important;
    margin: 0 !important;
    color: #fff !important;
    text-align: left !important;
  }

  .services-v2 .sv2-play {
    width: 44px !important;
    height: 44px !important;
  }
}

/* =========================================================
   SERVICES — IPAD FEATURE BAND COMPRESSION PASS
   Desktop: shorter black band.
   Mobile: larger iPad, still inside live rails.
========================================================= */

@media (min-width: 761px) {
  .services-v2 .sv2-premium {
    padding: 46px 0 42px !important;
    overflow: visible !important;
  }

  .services-v2 .sv2-premium-grid {
    width: min(calc(100% - 30px), 1240px) !important;
    min-height: 285px !important;
    grid-template-columns: 0.82fr 1.18fr !important;
    align-items: center !important;
    gap: 76px !important;
  }

  .services-v2 .sv2-premium-title h2 {
    max-width: 520px !important;
    margin: 0 !important;
  }

  .services-v2 .sv2-video-panel {
    width: min(100%, 650px) !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
    height: auto !important;

    margin-top: -32px !important;
    margin-bottom: -26px !important;

    background:
      url("/assets/Images/Services/services-ipad-image.png")
      center / contain no-repeat !important;
  }
}

@media (max-width: 760px) {
  .services-v2 .sv2-premium {
    padding: 0 0 34px !important;
    overflow: visible !important;
  }

  .services-v2 .sv2-premium-grid {
    width: calc(100% - 30px) !important;
    gap: 24px !important;
  }

  .services-v2 .sv2-video-panel {
    width: min(360px, calc(100vw - 30px)) !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 0 !important;
    height: auto !important;

    margin-top: -42px !important;
    margin-bottom: 4px !important;

    background:
      url("/assets/Images/Services/services-ipad-image.png")
      center / contain no-repeat !important;
  }

  .services-v2 .sv2-premium-title h2 {
    margin-top: 0 !important;
  }
}

/* =========================================================
   UNIVERSAL NAV LOGIN ICON
   Uses /assets/Icons/login-icon.svg
========================================================= */

.site-header .nav-login,
.site-header .mobile-nav-login {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
}

.site-header .nav-login-icon {
  display: inline-block !important;
  flex: 0 0 auto !important;

  width: 13px !important;
  height: 13px !important;

  background-color: currentColor !important;

  mask-image: url("/assets/Icons/login-icon.svg") !important;
  -webkit-mask-image: url("/assets/Icons/login-icon.svg") !important;

  mask-repeat: no-repeat !important;
  mask-position: center !important;
  mask-size: contain !important;

  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  -webkit-mask-size: contain !important;
}

/* Desktop: icon sits tight to the right edge of Client Login text */
@media (min-width: 761px) {
  .site-header .desktop-nav .nav-login {
    height: var(--header-height-desktop) !important;
    color: #fff !important;
  }

  .site-header .desktop-nav .nav-login:hover,
  .site-header .desktop-nav .nav-login:focus-visible {
    color: var(--red) !important;
  }

  .site-header .desktop-nav .nav-login .nav-login-icon {
    width: 13px !important;
    height: 13px !important;
    transform: translateY(-1px) !important;
  }
}

/* Mobile: keep login icon available inside the expanded menu only */
@media (max-width: 760px) {
  .site-header .mobile-nav-login {
    justify-content: flex-start !important;
  }

  .site-header .mobile-nav-login .nav-login-icon {
    width: 14px !important;
    height: 14px !important;
    margin-left: 2px !important;
  }
}

/* =========================================================
   NAV LOGIN ICON — REAL THICKER VISUAL WEIGHT
   Uses drop-shadow offsets because pseudo-layer thickening
   gets clipped by the same SVG mask.
========================================================= */

.site-header .desktop-nav .nav-login .nav-login-icon,
.site-header .mobile-nav-login .nav-login-icon {
  width: 15px !important;
  height: 15px !important;

  display: inline-block !important;
  flex: 0 0 15px !important;

  background-color: currentColor !important;

  mask-image: url("/assets/Icons/login-icon.svg") !important;
  -webkit-mask-image: url("/assets/Icons/login-icon.svg") !important;

  mask-repeat: no-repeat !important;
  mask-position: center !important;
  mask-size: contain !important;

  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  -webkit-mask-size: contain !important;

  filter:
    drop-shadow(0.45px 0 0 currentColor)
    drop-shadow(-0.45px 0 0 currentColor)
    drop-shadow(0 0.45px 0 currentColor)
    drop-shadow(0 -0.45px 0 currentColor) !important;
}

/* Slightly stronger only on desktop, where the nav type is tiny */
@media (min-width: 761px) {
  .site-header .desktop-nav .nav-login .nav-login-icon {
    width: 14px !important;
    height: 14px !important;
    flex-basis: 14px !important;

    filter:
      drop-shadow(0.6px 0 0 currentColor)
      drop-shadow(-0.6px 0 0 currentColor)
      drop-shadow(0 0.6px 0 currentColor)
      drop-shadow(0 -0.6px 0 currentColor) !important;
  }
}

/* =========================================================
   SERVICES — ADDITIONAL SERVICES DRONE BLEED FIX
   Larger drone, no gray oval fallback, slight section overlap.
========================================================= */

.services-v2 .sv2-additional {
  position: relative !important;
  overflow: visible !important;
  padding-bottom: 128px !important;
}

.services-v2 .sv2-drone {
  position: absolute !important;
  z-index: 8 !important;

  right: clamp(-155px, -5vw, -70px) !important;
  bottom: -78px !important;

  width: clamp(520px, 36vw, 760px) !important;
  height: clamp(190px, 15vw, 285px) !important;

  margin: 0 !important;
  opacity: 1 !important;
  pointer-events: none !important;

  background: url("/assets/Images/Services/drone.png") center / contain no-repeat !important;
}

/* make sure no old oval/radial fallback survives */
.services-v2 .sv2-drone::before,
.services-v2 .sv2-drone::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 760px) {
  .services-v2 .sv2-additional {
    padding-bottom: 96px !important;
  }

  .services-v2 .sv2-drone {
    right: -110px !important;
    bottom: -54px !important;

    width: 360px !important;
    height: 145px !important;

    background: url("/assets/Images/Services/drone.png") center / contain no-repeat !important;
  }
}

/* =========================================================
   SERVICES — FINAL IPAD PLAY BUTTON + STATIC PREVIEW MODAL
========================================================= */

/* Use the same play button image system as homepage videos */
.services-v2 .sv2-video-panel .sv2-ipad-play {
  position: absolute !important;
  z-index: 8 !important;
  left: 50% !important;
  top: 50% !important;

  width: 72px !important;
  height: 72px !important;

  display: block !important;
  transform: translate(-50%, -50%) !important;

  background: transparent url("/assets/Images/Home/Video-UI/Play-button-inactive.png") center / contain no-repeat !important;

  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

.services-v2 .sv2-video-panel:hover .sv2-ipad-play,
.services-v2 .sv2-video-panel:focus-visible .sv2-ipad-play {
  background: transparent url("/assets/Images/Home/Video-UI/Play-button-hover.png") center / contain no-repeat !important;
}

/* Kill the older CSS triangle/circle play style inside this specific iPad feature */
.services-v2 .sv2-video-panel .sv2-ipad-play::before,
.services-v2 .sv2-video-panel .sv2-ipad-play::after {
  display: none !important;
  content: none !important;
}

/* Make sure the iPad button remains a clean static image holder */
.services-v2 .sv2-video-panel {
  position: relative !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important;
}

/* Horizontal iPad/image modal */
.services-ipad-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: grid;
  place-items: center;
  padding: 24px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.services-ipad-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.services-ipad-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
}

.services-ipad-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100vw - 42px));
}

.services-ipad-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 4;

  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;

  font-size: 22px;
  line-height: 1;
}

.services-ipad-modal-frame {
  width: 100%;
  aspect-ratio: 16 / 9;

  display: grid;
  place-items: center;

  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.72);
}

.services-ipad-modal-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #000;
}

body.services-ipad-modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .services-v2 .sv2-video-panel .sv2-ipad-play {
    width: 56px !important;
    height: 56px !important;
  }

  .services-ipad-modal {
    padding: 14px;
  }

  .services-ipad-modal-dialog {
    width: calc(100vw - 24px);
  }

  .services-ipad-modal-close {
    right: -6px;
  }
}

/* =========================================================
   SERVICES — FINAL DRONE SCALE / BLEED PASS
   Larger drone, no gray oval fallback, overlaps section edge.
========================================================= */

.services-v2 .sv2-additional {
  position: relative !important;
  overflow: visible !important;
  padding-bottom: 140px !important;
}

.services-v2 .sv2-drone {
  position: absolute !important;
  z-index: 12 !important;

  right: clamp(-260px, -8vw, -125px) !important;
  bottom: -104px !important;

  width: clamp(760px, 46vw, 1040px) !important;
  height: clamp(265px, 20vw, 390px) !important;

  margin: 0 !important;
  opacity: 1 !important;
  pointer-events: none !important;

  background: url("/assets/Images/Services/drone.png") center / contain no-repeat !important;
}

/* force-remove old oval/radial fallback */
.services-v2 .sv2-drone::before,
.services-v2 .sv2-drone::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 760px) {
  .services-v2 .sv2-additional {
    overflow: visible !important;
    padding-bottom: 106px !important;
  }

  .services-v2 .sv2-drone {
    right: -140px !important;
    bottom: -62px !important;

    width: 440px !important;
    height: 170px !important;

    background: url("/assets/Images/Services/drone.png") center / contain no-repeat !important;
  }
}

/* =========================================================
   SERVICES — FINAL DRONE LARGER + IPAD MODAL UNCROPPED
========================================================= */

/* Bigger drone on desktop */
@media (min-width: 761px) {
  .services-v2 .sv2-additional {
    overflow: visible !important;
    padding-bottom: 150px !important;
  }

  .services-v2 .sv2-drone {
    position: absolute !important;
    z-index: 14 !important;

    right: clamp(-330px, -11vw, -170px) !important;
    bottom: -126px !important;

    width: clamp(920px, 56vw, 1260px) !important;
    height: clamp(320px, 24vw, 470px) !important;

    margin: 0 !important;
    opacity: 1 !important;
    pointer-events: none !important;

    background: url("/assets/Images/Services/drone.png") center / contain no-repeat !important;
  }
}

/* Bigger drone on mobile */
@media (max-width: 760px) {
  .services-v2 .sv2-additional {
    overflow: visible !important;
    padding-bottom: 118px !important;
  }

  .services-v2 .sv2-drone {
    position: absolute !important;
    z-index: 14 !important;

    right: -170px !important;
    bottom: -72px !important;

    width: 535px !important;
    height: 205px !important;

    margin: 0 !important;
    opacity: 1 !important;
    pointer-events: none !important;

    background: url("/assets/Images/Services/drone.png") center / contain no-repeat !important;
  }
}

/* Remove any old fallback oval/art completely */
.services-v2 .sv2-drone::before,
.services-v2 .sv2-drone::after {
  display: none !important;
  content: none !important;
}

/* Ipad modal: show the full PNG, never cropped */
.services-ipad-modal {
  padding: 44px 24px !important;
  align-items: center !important;
  overflow-y: auto !important;
}

.services-ipad-modal-dialog {
  width: min(980px, calc(100vw - 48px)) !important;
  max-height: calc(100vh - 88px) !important;
  display: grid !important;
  place-items: center !important;
}

.services-ipad-modal-frame {
  width: 100% !important;
  height: auto !important;
  max-height: calc(100vh - 96px) !important;

  aspect-ratio: auto !important;
  overflow: visible !important;

  display: grid !important;
  place-items: center !important;

  background: transparent !important;
  box-shadow: none !important;
}

.services-ipad-modal-frame img {
  width: 100% !important;
  height: auto !important;
  max-height: calc(100vh - 96px) !important;

  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;

  background: transparent !important;
}

/* Keep close button pinned to the image/modal corner */
.services-ipad-modal-close {
  top: -18px !important;
  right: -18px !important;
}

@media (max-width: 760px) {
  .services-ipad-modal {
    padding: 48px 12px 24px !important;
  }

  .services-ipad-modal-dialog {
    width: calc(100vw - 24px) !important;
    max-height: calc(100vh - 72px) !important;
  }

  .services-ipad-modal-frame,
  .services-ipad-modal-frame img {
    max-height: calc(100vh - 82px) !important;
  }

  .services-ipad-modal-close {
    top: -20px !important;
    right: 0 !important;
  }
}

/* =========================================================
   SERVICES — MOBILE DRONE SIZE BUMP ONLY
========================================================= */

@media (max-width: 760px) {
  .services-v2 .sv2-drone {
    right: -205px !important;
    bottom: -82px !important;

    width: 610px !important;
    height: 235px !important;

    background: url("/assets/Images/Services/drone.png") center / contain no-repeat !important;
  }

  .services-v2 .sv2-additional {
    padding-bottom: 128px !important;
  }
}

/* =========================================================
   HOMEPAGE HERO — 2-LINE HEADLINE FLOW CORRECTION
   Keeps the 2-line headline, but preserves the old 4-line
   hero/media spacing so the background image does not collapse.
========================================================= */

@media (min-width: 1200px) {
  .home-v2 .hv2-hero {
    height: 930px !important;
    min-height: 930px !important;
  }

  .home-v2 .hv2-hero-bg {
    height: 675px !important;
  }

  /* Return headline to the older/cleaner top position */
  .home-v2 .hv2-hero-copy {
    padding-top: 138px !important;
  }

  /*
    This replaces the missing vertical height from the old 4-line headline.
    It prevents the phones / black band / white transition from jumping upward
    just because the headline is now only 2 lines.
  */
  .home-v2 .hv2-hero-copy::after {
    content: "";
    display: block;
    height: 62px;
  }

  .home-v2 .hv2-hero-copy p {
    margin-top: 12px !important;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel {
    margin-top: 78px !important;
  }
}

@media (min-width: 951px) and (max-width: 1199px) {
  .home-v2 .hv2-hero-copy {
    padding-top: 120px !important;
  }

  .home-v2 .hv2-hero-copy::after {
    content: "";
    display: block;
    height: 46px;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel {
    margin-top: 62px !important;
  }
}

@media (min-width: 761px) and (max-width: 950px) {
  .home-v2 .hv2-hero-copy {
    padding-top: 88px !important;
  }

  .home-v2 .hv2-hero-copy::after {
    content: "";
    display: block;
    height: 30px;
  }
}

/* =========================================================
   HOME PACKAGES — 3-CARD CLIENT PACKAGE UPDATE
========================================================= */

.home-v2 .hv2-package-grid.package-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1260px;
  margin-inline: auto;
}

@media (min-width: 1200px) {
  .home-v2 .hv2-package-grid.package-grid-3 > .package-card:nth-child(1),
  .home-v2 .hv2-package-grid.package-grid-3 > .package-card:nth-child(2) {
    margin-top: 18px;
  }

  .home-v2 .hv2-package-grid.package-grid-3 > .package-card.is-featured {
    margin-top: -8px;
  }
}

@media (max-width: 1199px) {
  .home-v2 .hv2-package-grid.package-grid-3 {
    max-width: none;
  }
}

/* =========================================================
   HOME PACKAGES — FINAL 3-CARD RESPONSIVE LAYOUT
   Desktop: centered + wider
   Mobile: stacked in order
========================================================= */

/* Desktop / large tablet */
.home-v2 .hv2-packages .live-area {
  width: min(calc(100% - 80px), 1440px) !important;
  max-width: 1440px !important;
  margin-inline: auto !important;
}

.home-v2 .hv2-package-grid.package-grid-4.package-grid-3 {
  width: 100% !important;
  max-width: 1320px !important;
  margin-inline: auto !important;

  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(24px, 2.2vw, 38px) !important;

  align-items: start !important;
  justify-content: center !important;
  overflow: visible !important;
}

/* Kill the old overlapping 4-card behavior for the new 3-card setup */
.home-v2 .hv2-package-grid.package-grid-4.package-grid-3 > .package-card,
.home-v2 .hv2-package-grid.package-grid-4.package-grid-3 > .hv2-package-card {
  margin-left: 0 !important;
  width: 100% !important;
}

/* Keep the featured card slightly proud, but not aggressively displaced */
@media (min-width: 1200px) {
  .home-v2 .hv2-package-grid.package-grid-4.package-grid-3 > .package-card.is-featured,
  .home-v2 .hv2-package-grid.package-grid-4.package-grid-3 > .hv2-package-card.is-featured {
    margin-top: -18px !important;
  }
}

/* Mobile stack */
@media (max-width: 760px) {
  .home-v2 .hv2-packages {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .home-v2 .hv2-packages .live-area {
    width: min(calc(100% - 30px), 430px) !important;
    max-width: 430px !important;
    margin-inline: auto !important;
  }

  .home-v2 .hv2-package-grid.package-grid-4.package-grid-3 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    max-width: 430px !important;
    margin-inline: auto !important;
  }

  .home-v2 .hv2-package-grid.package-grid-4.package-grid-3 > .package-card,
  .home-v2 .hv2-package-grid.package-grid-4.package-grid-3 > .hv2-package-card {
    width: 100% !important;
    max-width: 430px !important;
    margin: 0 auto !important;
  }

  .home-v2 .hv2-package-grid.package-grid-4.package-grid-3 > .package-card.is-featured,
  .home-v2 .hv2-package-grid.package-grid-4.package-grid-3 > .hv2-package-card.is-featured {
    margin-top: 0 !important;
  }
}

/* =========================================================
   HOME PACKAGES — TIGHT 10PX CARD GUTTERS
   Desktop: 10px between package card borders.
   Mobile: 10px vertical spacing between stacked cards.
========================================================= */

.home-v2 .hv2-package-grid.package-grid-4.package-grid-3 {
  gap: 10px !important;
}

/* Keep the 3-card desktop set centered while tightening the gutters */
@media (min-width: 761px) {
  .home-v2 .hv2-package-grid.package-grid-4.package-grid-3 {
    gap: 10px !important;
    max-width: 1320px !important;
    margin-inline: auto !important;
  }
}

/* Mobile stack: 10px between card borders vertically */
@media (max-width: 760px) {
  .home-v2 .hv2-package-grid.package-grid-4.package-grid-3 {
    gap: 10px !important;
  }
}

/* =========================================================
   HOME PACKAGES — DROPDOWN SUBCOPY REGULAR WEIGHT
   Keeps row titles intact; only softens opened dropdown body text.
========================================================= */

.home-v2 .package-accordion .package-service p,
.home-v2 .package-service p {
  font-weight: 400 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
  letter-spacing: 0.01em !important;
}

/* In case any dropdown body copy has nested bold tags */
.home-v2 .package-accordion .package-service p strong,
.home-v2 .package-accordion .package-service p b,
.home-v2 .package-service p strong,
.home-v2 .package-service p b {
  font-weight: 400 !important;
}

/* =========================================================
   HOME SUCCESS COPY UPDATE
   New client-facing committed section copy.
========================================================= */

.home-v2 .hv2-success h2 {
  max-width: 1040px !important;
}

.home-v2 .hv2-success-copy {
  max-width: 940px !important;
  margin-bottom: 36px !important;
  line-height: 1.72 !important;
}

@media (max-width: 760px) {
  .home-v2 .hv2-success h2 {
    max-width: 360px !important;
  }

  .home-v2 .hv2-success-copy {
    max-width: 335px !important;
    line-height: 1.72 !important;
  }
}

/* =========================================================
   HOME — DAY OR NIGHT VIDEO BACKGROUND UPDATE
   R2 video background + fallback image + larger icons
========================================================= */

.home-v2 .hv2-availability {
  position: relative !important;
  overflow: hidden !important;
  background:
    #000 url("/assets/Images/Home/Day-or-night-bg.png")
    center / cover no-repeat !important;
}

.home-v2 .hv2-availability-video {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center center !important;

  pointer-events: none !important;
}

/* This is now only the dark overlay, not the background image */
.home-v2 .hv2-availability-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.34) 0%,
      rgba(0, 0, 0, 0.58) 48%,
      rgba(0, 0, 0, 0.82) 100%
    ) !important;

  pointer-events: none !important;
}

.home-v2 .hv2-availability .live-area {
  position: relative !important;
  z-index: 2 !important;
}

/* Client requested larger icons */
.home-v2 .hv2-benefits span {
  width: 96px !important;
  height: 96px !important;
}

@media (max-width: 760px) {
  .home-v2 .hv2-benefits span {
    width: 78px !important;
    height: 78px !important;
  }
}

/* =========================================================
   WORKING WITH VIZIMAGE — CLIENT TEAM + STATS UPDATE
   Append at the very bottom of /css/style.css
========================================================= */

/* Five-person team grid: keeps existing headshot style, but makes the added
   people fit cleanly without changing the rest of the page. */

.working-v2 .wv2-team-photos {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 48px 54px !important;
  align-items: start !important;
}

.working-v2 .wv2-team-photos article {
  text-align: center !important;
}

.working-v2 .wv2-team-photos .wv2-headshot {
  height: 278px !important;
  min-height: 0 !important;
}

.working-v2 .wv2-team-photos .wv2-headshot img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Last odd team member sits neatly on the left instead of stretching. */
@media (min-width: 761px) {
  .working-v2 .wv2-team-photos article:last-child {
    grid-column: 1 / 2 !important;
  }
}

/* Stats: allow 300+ and 10,000+ to breathe without wrapping/cramping. */
.working-v2 .wv2-stats strong {
  white-space: nowrap !important;
}

@media (max-width: 760px) {
  .working-v2 .wv2-team-photos {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
    max-width: 260px !important;
    margin: 0 auto !important;
  }

  .working-v2 .wv2-team-photos .wv2-headshot {
    height: 250px !important;
    min-height: 0 !important;
  }

  .working-v2 .wv2-team-photos p {
    margin-top: 22px !important;
  }

  .working-v2 .wv2-stats strong {
    font-size: 64px !important;
  }
}

/* =========================================================
   WORKING WITH VIZIMAGE — BULLET + STATS REFINEMENT
   - Aligns red diamond bullets to their text lines
   - Tightens/evenly balances 300+ / 10,000+ stats
   - Slightly reduces stat numbers for new plus signs
   - Scales both stat icons up consistently
========================================================= */

/* Diamond bullets: vertically center against first text line */
.working-v2 .wv2-founder-copy li {
  position: relative !important;
  padding-left: 32px !important;
}

.working-v2 .wv2-founder-copy li::before {
  left: 0 !important;
  top: 0.72em !important;
  width: 10px !important;
  height: 10px !important;
  transform: translateY(-50%) rotate(45deg) !important;
}

/* Stats spacing and sizing */
@media (min-width: 761px) {
  .working-v2 .wv2-stats {
    width: min(calc(100% - 80px), 1320px) !important;
    max-width: 1320px !important;
    margin: 92px auto 0 !important;
  }

  .working-v2 .wv2-stats article {
    min-height: 260px !important;
    padding-inline: clamp(34px, 4vw, 72px) !important;
  }

  .working-v2 .wv2-stat-icon-img {
    height: 74px !important;
    width: auto !important;
    margin: 0 0 24px !important;
  }

  .working-v2 .wv2-stat-icon-img--houses {
    height: 70px !important;
  }

  .working-v2 .wv2-stats strong {
    font-size: clamp(82px, 6.5vw, 124px) !important;
    line-height: 0.86 !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
  }

  .working-v2 .wv2-stats p {
    margin-top: 18px !important;
    font-size: clamp(20px, 1.45vw, 25px) !important;
  }
}

/* Mobile: keep stats stacked, but make icons larger and numbers less cramped */
@media (max-width: 760px) {
  .working-v2 .wv2-founder-copy li {
    padding-left: 26px !important;
  }

  .working-v2 .wv2-founder-copy li::before {
    top: 0.76em !important;
    width: 9px !important;
    height: 9px !important;
  }

  .working-v2 .wv2-stat-icon-img {
    height: 54px !important;
    width: auto !important;
    margin: 0 0 14px !important;
  }

  .working-v2 .wv2-stat-icon-img--houses {
    height: 52px !important;
  }

  .working-v2 .wv2-stats strong {
    font-size: 66px !important;
    line-height: 0.9 !important;
    white-space: nowrap !important;
  }

  .working-v2 .wv2-stats p {
    margin-top: 14px !important;
  }
}

/* =========================================================
   WWV STATS — AGENTS ICON OPTICAL MATCH
   Slightly enlarges the 300+ icon so its stroke weight
   feels closer to the Homes Marketed icon.
========================================================= */

@media (min-width: 761px) {
  .working-v2 .wv2-stats article:first-child .wv2-stat-icon-img {
    height: 72px !important;
    width: auto !important;
    margin-bottom: 18px !important;
  }
}

@media (max-width: 760px) {
  .working-v2 .wv2-stats article:first-child .wv2-stat-icon-img {
    height: 54px !important;
    width: auto !important;
    margin-bottom: 12px !important;
  }
}

/* =========================================================
   SERVICES — ADDITIONAL SERVICES 3-COLUMN FINAL
   Swaps before/after slider logic and aligns all three cards.
========================================================= */

.services-v2 .sv2-additional {
  position: relative !important;
  padding: 96px 0 126px !important;
  overflow: hidden !important;
  background: #000 !important;
  color: #fff !important;
  text-align: center !important;
}

.services-v2 .sv2-additional .live-area {
  width: min(calc(100% - 30px), 1440px) !important;
  max-width: 1440px !important;
}

.services-v2 .sv2-additional h2 {
  max-width: 1040px !important;
  margin: 0 auto 26px !important;
}

.services-v2 .sv2-additional .sv2-redline {
  max-width: 920px !important;
  margin: 0 auto 54px !important;
}

.services-v2 .sv2-additional-grid-3 {
  width: 100% !important;
  max-width: 1320px !important;
  margin: 0 auto !important;

  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
  align-items: start !important;
}

.services-v2 .sv2-additional-feature {
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.services-v2 .sv2-additional-feature figcaption {
  margin: 12px 0 0 !important;
  color: #ffffff !important;

  font-family: var(--font-display) !important;
  font-size: 13px !important;
  line-height: 1.1 !important;
  letter-spacing: 0.065em !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  text-align: center !important;

  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}

.services-v2 .sv2-additional-image,
.services-v2 .sv2-staging-compare,
.services-v2 .sv2-drone-photo-card {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #111 !important;
}

.services-v2 .sv2-drone-photo-card img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* remove old floating drone permanently in this layout */
.services-v2 .sv2-drone {
  display: none !important;
}

/* keep slider imagery locked to the card */
.services-v2 .sv2-staging-compare {
  position: relative !important;
  display: block !important;
  cursor: ew-resize !important;
  user-select: none !important;
  touch-action: none !important;
}

.services-v2 .sv2-staging-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  pointer-events: none !important;
}

.services-v2 .sv2-staging-after-wrap {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  overflow: hidden !important;
  clip-path: inset(0 calc(100% - var(--staging-position, 50%)) 0 0) !important;
}

/* mobile: stack cleanly rather than crushing three across */
@media (max-width: 760px) {
  .services-v2 .sv2-additional {
    padding: 54px 0 72px !important;
  }

  .services-v2 .sv2-additional-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: calc(100% - 30px) !important;
    max-width: 430px !important;
  }

  .services-v2 .sv2-additional-feature figcaption {
    margin-top: 10px !important;
    font-size: 11px !important;
  }
}

/* =========================================================
   FINAL HERO / SERVICES TYPE / LENS ALIGNMENT PATCH
   - Services premium headline hierarchy
   - Home + WWV headline distance from nav
   - Homepage lens clipped exactly to black band
========================================================= */

/* 1. Services page: make the premium headline smaller/natural */
@media (min-width: 761px) {
  .services-v2 .sv2-premium-title h2 {
    max-width: 680px !important;
    font-size: clamp(34px, 3.25vw, 54px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0.045em !important;
  }
}

@media (max-width: 760px) {
  .services-v2 .sv2-premium-title h2 {
    max-width: 330px !important;
    font-size: 27px !important;
    line-height: 1.12 !important;
    letter-spacing: 0.045em !important;
  }
}

/* 2. Homepage: move headline down like Services,
   but compensate the invisible spacer so the carousel does not drift down */
@media (min-width: 1200px) {
  .home-v2 .hv2-hero-copy {
    padding-top: 170px !important;
  }

  .home-v2 .hv2-hero-copy::after {
    height: 30px !important;
  }
}

@media (min-width: 951px) and (max-width: 1199px) {
  .home-v2 .hv2-hero-copy {
    padding-top: 148px !important;
  }

  .home-v2 .hv2-hero-copy::after {
    height: 18px !important;
  }
}

/* 3. Working with Vizimage: move hero title down,
   but pull the content margin back so the rest of the hero stays composed */
@media (min-width: 761px) {
  .working-v2 .wv2-hero-title {
    padding-top: 158px !important;
  }

  .working-v2 .wv2-hero-content {
    margin-top: 52px !important;
  }
}

/* 4. Homepage lens: bind the lens crop to the exact black rectangle */
@media (min-width: 1200px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    --hero-band-top: 132px;
    --hero-band-height: 320px;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel::before {
    top: var(--hero-band-top) !important;
    height: var(--hero-band-height) !important;
  }

  .home-v2 .hv2-lens-clip {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: var(--hero-band-top) !important;
    height: var(--hero-band-height) !important;
    z-index: 6 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .home-v2 .hv2-lens-image {
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    right: clamp(-95px, -2vw, -34px) !important;

    width: auto !important;
    height: calc(var(--hero-band-height) + 76px) !important;
    max-width: none !important;

    transform: translateY(-50%) !important;
    pointer-events: none !important;
  }
}

@media (min-width: 951px) and (max-width: 1199px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    --hero-band-top: 112px;
    --hero-band-height: 280px;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel::before {
    top: var(--hero-band-top) !important;
    height: var(--hero-band-height) !important;
  }

  .home-v2 .hv2-lens-clip {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: var(--hero-band-top) !important;
    height: var(--hero-band-height) !important;
    z-index: 6 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  .home-v2 .hv2-lens-image {
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    right: clamp(-165px, -10vw, -95px) !important;

    width: auto !important;
    height: calc(var(--hero-band-height) + 66px) !important;
    max-width: none !important;

    transform: translateY(-50%) !important;
    pointer-events: none !important;
  }
}

/* =========================================================
   HOMEPAGE HERO LENS — FINAL HARD LOCK
   Lens is now clipped by the exact same black band area.
   This does not move phones, carousel, iMac, text, or packages.
========================================================= */

@media (min-width: 951px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    --lens-band-top: 132px;
    --lens-band-height: 320px;
    --lens-bleed: 42px;
  }

  /* The visible black rectangle */
  .home-v2 .hv2-media-stage.video-feature-carousel::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: var(--lens-band-top) !important;
    height: var(--lens-band-height) !important;
    z-index: 1 !important;
    background: #000 !important;
    pointer-events: none !important;
  }

  /* The lens crop window must be IDENTICAL to the black rectangle */
  .home-v2 .hv2-lens-clip {
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: var(--lens-band-top) !important;
    height: var(--lens-band-height) !important;
    z-index: 6 !important;

    overflow: hidden !important;
    pointer-events: none !important;
  }

  /* The lens scales from the black band height, not viewport width */
  .home-v2 .hv2-lens-image {
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    right: clamp(-125px, -4.8vw, -56px) !important;

    width: auto !important;
    height: calc(var(--lens-band-height) + var(--lens-bleed) * 2) !important;
    max-width: none !important;
    max-height: none !important;

    transform: translateY(-50%) !important;
    object-fit: contain !important;
    object-position: center center !important;

    pointer-events: none !important;
  }
}

/* Large desktop / mock-size desktop */
@media (min-width: 1200px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    --lens-band-top: 132px;
    --lens-band-height: 320px;
    --lens-bleed: 38px;
  }

  .home-v2 .hv2-lens-image {
    right: clamp(-145px, -5.6vw, -72px) !important;
  }
}

/* Narrow desktop / laptop */
@media (min-width: 951px) and (max-width: 1199px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    --lens-band-top: 112px;
    --lens-band-height: 280px;
    --lens-bleed: 34px;
  }

  .home-v2 .hv2-lens-image {
    right: clamp(-155px, -8vw, -92px) !important;
  }
}

/* Tablet and mobile: keep lens hidden like current approved layout */
@media (max-width: 950px) {
  .home-v2 .hv2-lens-clip,
  .home-v2 .hv2-lens-image {
    display: none !important;
  }
}

/* =========================================================
   HOMEPAGE LENS — FINAL DETERMINISTIC CROP SYSTEM
   Uses the existing HTML:
   .hv2-lens-clip > .hv2-lens-image
   But renders the lens as clipped background art so scaling/cropping
   does not depend on the intrinsic PNG/img behavior.
========================================================= */

@media (min-width: 951px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    /*
      These two values control the black band.
      The lens crop window uses the exact same top/height.
    */
    --hv2-band-top: 132px;
    --hv2-band-height: 320px;

    /*
      Lens controls:
      - window width = how much horizontal room the lens is allowed to occupy
      - art size = actual circle size before cropping
      - art right = how far it bleeds off the right edge
    */
    --hv2-lens-window-width: clamp(360px, 27vw, 560px);
    --hv2-lens-art-size: calc(var(--hv2-band-height) * 1.42);
    --hv2-lens-art-right: calc(var(--hv2-lens-art-size) * -0.34);
  }

  /* The black band itself */
  .home-v2 .hv2-media-stage.video-feature-carousel::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: var(--hv2-band-top) !important;
    height: var(--hv2-band-height) !important;
    z-index: 1 !important;
    display: block !important;
    background: #000 !important;
    pointer-events: none !important;
  }

  /* Right-side crop window, exactly aligned to the black band */
  .home-v2 .hv2-lens-clip {
    display: block !important;
    position: absolute !important;

    left: auto !important;
    right: 0 !important;
    top: var(--hv2-band-top) !important;
    bottom: auto !important;

    width: var(--hv2-lens-window-width) !important;
    height: var(--hv2-band-height) !important;

    z-index: 7 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    transform: none !important;
  }

  /* Render lens as deterministic background art */
  .home-v2 .hv2-lens-clip::before {
    content: "" !important;
    position: absolute !important;

    top: 50% !important;
    right: var(--hv2-lens-art-right) !important;

    width: var(--hv2-lens-art-size) !important;
    height: var(--hv2-lens-art-size) !important;

    transform: translateY(-50%) !important;

    background-image: url("/assets/Images/Home/Vizimage_Lens.png") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: contain !important;

    pointer-events: none !important;
  }

  /* Hide the real img so it cannot double-render or obey old img rules */
  .home-v2 .hv2-lens-image {
    display: none !important;
  }
}

/* Large desktop / mock desktop */
@media (min-width: 1200px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    --hv2-band-top: 132px;
    --hv2-band-height: 320px;
    --hv2-lens-window-width: clamp(390px, 28vw, 600px);
    --hv2-lens-art-size: calc(var(--hv2-band-height) * 1.44);
    --hv2-lens-art-right: calc(var(--hv2-lens-art-size) * -0.36);
  }
}

/* Narrow desktop / laptop */
@media (min-width: 951px) and (max-width: 1199px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    --hv2-band-top: 112px;
    --hv2-band-height: 280px;
    --hv2-lens-window-width: clamp(330px, 31vw, 470px);
    --hv2-lens-art-size: calc(var(--hv2-band-height) * 1.44);
    --hv2-lens-art-right: calc(var(--hv2-lens-art-size) * -0.38);
  }
}

/* Keep hidden on tablet/mobile, matching the approved mock behavior */
@media (max-width: 950px) {
  .home-v2 .hv2-lens-clip,
  .home-v2 .hv2-lens-clip::before,
  .home-v2 .hv2-lens-image {
    display: none !important;
    content: none !important;
  }
}

/* =========================================================
   HEADER SOCIAL ICONS — FINAL ALIGNMENT
   Instagram / TikTok / Facebook / Phone
========================================================= */

.site-header .nav-contact {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  height: var(--header-height-desktop) !important;
  transform: none !important;
}

.site-header .nav-social-link {
  width: 21px !important;
  height: 21px !important;
  flex: 0 0 21px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: var(--red) !important;
  line-height: 0 !important;
}

.site-header .nav-social-icon {
  width: 21px !important;
  height: 21px !important;
  display: block !important;
  background-color: var(--red) !important;

  mask-repeat: no-repeat !important;
  mask-position: center !important;
  mask-size: contain !important;

  -webkit-mask-repeat: no-repeat !important;
  -webkit-mask-position: center !important;
  -webkit-mask-size: contain !important;
}

.site-header .nav-social-icon--instagram {
  mask-image: url("/assets/Icons/social-instagram-icon.svg") !important;
  -webkit-mask-image: url("/assets/Icons/social-instagram-icon.svg") !important;
}

.site-header .nav-social-icon--tiktok {
  mask-image: url("/assets/Icons/social-tiktok-icon.svg") !important;
  -webkit-mask-image: url("/assets/Icons/social-tiktok-icon.svg") !important;
}

.site-header .nav-facebook img {
  width: 21px !important;
  height: 21px !important;
  display: block !important;
  object-fit: contain !important;
}

.site-header .nav-phone {
  height: 21px !important;
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  margin-left: 4px !important;
  line-height: 1 !important;
  transform: none !important;
}

.site-header .nav-phone .inline-icon {
  flex: 0 0 auto !important;
}

.site-header .nav-phone span:last-child {
  display: block !important;
  line-height: 1 !important;
}

/* Desktop spacing adjustment for 3 social icons + phone */
@media (min-width: 761px) {
  .site-header .nav-inner {
    grid-template-columns: 154px 330px 1fr !important;
    gap: 22px !important;
  }
}

/* Mobile: icons sit left of hamburger, phone stays in red phone bar */
@media (max-width: 760px) {
  .site-header .nav-contact {
    height: var(--header-height-mobile) !important;
    margin-left: auto !important;
    margin-right: 14px !important;
    gap: 10px !important;
  }

  .site-header .nav-contact .nav-phone {
    display: none !important;
  }

  .site-header .nav-social-link,
  .site-header .nav-social-icon,
  .site-header .nav-facebook img {
    width: 20px !important;
    height: 20px !important;
    flex-basis: 20px !important;
  }
}

/* =========================================================
   MOBILE HEADER FINAL POLISH
   - Instagram/TikTok hover/press turns white like Facebook
   - Slightly roomier, better-centered mobile logo/header row
========================================================= */

/* Instagram + TikTok hover / focus / press state */
.site-header .nav-social-link:hover .nav-social-icon,
.site-header .nav-social-link:focus-visible .nav-social-icon,
.site-header .nav-social-link:active .nav-social-icon {
  background-color: #ffffff !important;
  color: #ffffff !important;
}

/* Keep Facebook matching the same hover / press behavior */
.site-header .nav-facebook:hover img,
.site-header .nav-facebook:focus-visible img,
.site-header .nav-facebook:active img {
  filter: brightness(0) invert(1) !important;
}

/* Mobile nav logo/header breathing room */
@media (max-width: 760px) {
  .site-header {
    --header-height-mobile: 74px !important;
  }

  .site-header .nav-inner {
    height: 48px !important;
    align-items: center !important;
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }

  .site-header .site-logo {
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    transform: translateY(1px) !important;
  }

  .site-header .site-logo img {
    max-height: 34px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .site-header .nav-contact {
    height: 48px !important;
    align-items: center !important;
  }

  .site-header .mobile-menu-button {
    height: 48px !important;
    align-items: center !important;
  }

  .site-header .mobile-phone-bar {
    height: 26px !important;
  }
}

/* =========================================================
   MOBILE PAGE HERO TITLE CONSISTENCY
   Home / Services / Working with Vizimage
   Same visual distance from nav, same title scale, centered hero treatment.
========================================================= */

@media (max-width: 760px) {
  /* Shared mobile hero title scale */
  .home-v2 .hv2-hero-copy h1,
  .services-v2 .sv2-hero h1,
  .working-v2 .wv2-hero-title h1 {
    font-size: 24px !important;
    line-height: 1.02 !important;
    letter-spacing: 0.045em !important;
    text-align: center !important;
    max-width: calc(100vw - 30px) !important;
    margin-inline: auto !important;
  }

  /* HOME: lock title into same top title zone */
  .home-v2 .hv2-hero-copy {
    width: calc(100% - 30px) !important;
    padding-top: 52px !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  .home-v2 .hv2-hero-copy p {
    margin-top: 12px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    padding: 8px 12px !important;
  }

  /* SERVICES: same vertical title zone as Home/WWV */
  .services-v2 .sv2-hero {
    height: 235px !important;
    min-height: 235px !important;
    padding-top: var(--header-height-mobile) !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }

  .services-v2 .sv2-hero-image {
    inset: var(--header-height-mobile) 0 0 !important;
    background-position: center center !important;
  }

  .services-v2 .sv2-hero-inner {
    position: relative !important;
    z-index: 2 !important;
    padding-top: 52px !important;
    display: flex !important;
    justify-content: center !important;
  }

  .services-v2 .sv2-premium {
    padding-top: 34px !important;
  }

  .services-v2 .sv2-video-panel {
    margin-top: 0 !important;
  }

  /* WORKING: title matches Home/Services title zone */
  .working-v2 .wv2-hero {
    min-height: 760px !important;
    padding-top: var(--header-height-mobile) !important;
  }

  .working-v2 .wv2-hero-bg {
    inset: var(--header-height-mobile) 0 auto !important;
    height: 390px !important;
    background-position: center top !important;
  }

  .working-v2 .wv2-hero-title {
    width: calc(100% - 30px) !important;
    padding-top: 52px !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  .working-v2 .wv2-hero-content {
    margin-top: 62px !important;
  }
}

/* =========================================================
   MOBILE HOME HERO / CAROUSEL / PACKAGE RHYTHM — TRUE FINAL
   Fixes:
   - black carousel field restored
   - center phone sits on black field
   - dots/arrows sit below the phone, not on it
   - package section starts lower with clean white breathing room
========================================================= */

@media (max-width: 760px) {
  /*
    The hero is now normal-flow again.
    Black is only assigned to the media stage, not the whole hero,
    so the dots and packages can sit on white like the mock.
  */
  .home-v2 .hv2-hero {
    height: auto !important;
    min-height: 0 !important;
    padding-top: var(--header-height-mobile) !important;
    padding-bottom: 50px !important;
    overflow: visible !important;
    background: #ffffff !important;
  }

  .home-v2 .hv2-hero-bg {
    inset: var(--header-height-mobile) 0 auto !important;
    height: 250px !important;
  }

  .home-v2 .hv2-hero-copy {
    width: calc(100% - 30px) !important;
    padding-top: 44px !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  /*
    The black carousel band.
    Height equals the center phone height, so the dots begin below it.
  */
  .home-v2 .hv2-media-stage.video-feature-carousel {
    position: relative !important;
    z-index: 20 !important;

    width: 100% !important;
    height: 345px !important;

    margin: 22px 0 0 !important;
    padding: 0 !important;

    overflow: visible !important;
    background: #000000 !important;
  }

  .home-v2 .hv2-media-stage.video-feature-carousel::before,
  .home-v2 .hv2-media-stage.video-feature-carousel::after,
  .home-v2 .hv2-lens-clip,
  .home-v2 .hv2-lens-image,
  .home-v2 .hv2-desktop-showcase {
    content: none !important;
    display: none !important;
  }

  .home-v2 .video-feature-stage {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 345px !important;

    margin: 0 !important;
    display: block !important;
  }

  .home-v2 .video-card {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .home-v2 .video-card[data-position="center"] {
    width: 175px !important;
    height: 345px !important;
    z-index: 36 !important;
    transform: translateX(-50%) translateY(0) rotate(0deg) !important;
  }

  .home-v2 .video-card[data-position="left"] {
    width: 112px !important;
    height: 220px !important;
    z-index: 34 !important;
    transform: translateX(calc(-50% - 145px)) translateY(62px) rotate(0deg) !important;
  }

  .home-v2 .video-card[data-position="right"] {
    width: 112px !important;
    height: 220px !important;
    z-index: 34 !important;
    transform: translateX(calc(-50% + 145px)) translateY(62px) rotate(0deg) !important;
  }

  .home-v2 .video-card-media {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    border-width: 5px !important;
  }

  .home-v2 .video-card[data-position="center"] .video-card-media {
    border-radius: 28px !important;
  }

  .home-v2 .video-card[data-position="left"] .video-card-media,
  .home-v2 .video-card[data-position="right"] .video-card-media {
    border-radius: 22px !important;
  }

  .home-v2 .hv2-zillow {
    width: 86px !important;
    height: 36px !important;
    right: 22px !important;
    top: -40px !important;
    z-index: 40 !important;
  }

  /*
    30px below center phone.
    Since the media stage is 345px tall and the center phone is 345px tall,
    this margin is now an actual clean 30px gap.
  */
  .home-v2 .hv2-carousel-ui,
  .home-v2 .hv2-carousel-ui.video-carousel-controls,
  .home-v2 .video-carousel-controls {
    position: relative !important;
    z-index: 80 !important;

    margin-top: 30px !important;
    margin-bottom: 0 !important;

    transform: none !important;
    gap: 8px !important;
  }

  .home-v2 .hv2-dots {
    margin: 0 !important;
    gap: 9px !important;
  }

  .home-v2 .hv2-arrows {
    margin-top: 6px !important;
    gap: 24px !important;
  }

  /*
    The 50px gap above packages now comes from hero padding-bottom.
    So packages do not need their own top padding.
  */
  .home-v2 .hv2-packages {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 58px !important;
    background: #ffffff !important;
  }

  .home-v2 .hv2-packages .live-area,
  .home-v2 .hv2-package-grid,
  .home-v2 .hv2-package-grid.package-grid-4,
  .home-v2 .hv2-package-grid.package-grid-4.package-grid-3 {
    margin-top: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  .home-v2 .hv2-package-card:first-child,
  .home-v2 .hv2-package-grid.package-grid-4.package-grid-3 > .package-card:first-child {
    margin-top: 0 !important;
    transform: none !important;
  }
}

/* =========================================================
   MOBILE HOME CAROUSEL BLACK BAND CENTERING
   Turns the full black media-stage into a centered black band
   behind the phones, closer to the mock.
========================================================= */

@media (max-width: 760px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    height: 345px !important;
    margin-top: 22px !important;
    overflow: visible !important;

    /* remove full-height black fill */
    background: transparent !important;
  }

  /* centered black band behind the phone carousel */
  .home-v2 .hv2-media-stage.video-feature-carousel::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;

    left: 0 !important;
    right: 0 !important;

    /* controls vertical centering of the black band */
    top: 54px !important;
    height: 252px !important;

    z-index: 0 !important;
    background: #000000 !important;
    pointer-events: none !important;
  }

  .home-v2 .video-feature-stage {
    z-index: 5 !important;
  }

  .home-v2 .video-card {
    z-index: 10 !important;
  }

  .home-v2 .video-card[data-position="center"] {
    z-index: 14 !important;
  }

  .home-v2 .hv2-zillow {
    z-index: 16 !important;
  }
}

/* =========================================================
   DESKTOP HOME LENS — TRUE BLACK-BAND CROP ONLY
   The lens is clipped ONLY by the black band.
   No smaller internal crop window.
========================================================= */

@media (min-width: 951px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    --viz-lens-band-top: 132px;
    --viz-lens-band-height: clamp(310px, 19.5vw, 385px);

    --viz-lens-size: clamp(430px, 28vw, 560px);
    --viz-lens-right: clamp(-155px, -6.6vw, -86px);
  }

  /* Black band: source of truth */
  .home-v2 .hv2-media-stage.video-feature-carousel::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;

    left: 0 !important;
    right: 0 !important;
    top: var(--viz-lens-band-top) !important;
    height: var(--viz-lens-band-height) !important;

    z-index: 1 !important;
    background: #000000 !important;
    pointer-events: none !important;
  }

  /*
    CRITICAL FIX:
    This is now the full black band, not a small right-side lens crop box.
  */
  .home-v2 .hv2-lens-clip {
    display: block !important;
    position: absolute !important;

    left: 0 !important;
    right: 0 !important;
    top: var(--viz-lens-band-top) !important;
    bottom: auto !important;

    width: 100% !important;
    height: var(--viz-lens-band-height) !important;

    overflow: hidden !important;
    z-index: 7 !important;
    pointer-events: none !important;

    transform: none !important;
    clip-path: none !important;
    mask: none !important;
    -webkit-mask: none !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  /* Do not let the real img compete with the controlled pseudo-art */
  .home-v2 .hv2-lens-image {
    display: none !important;
  }

  /*
    Lens artwork floats inside the full black band.
    It can only be clipped by the black band boundaries.
  */
  .home-v2 .hv2-lens-clip::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;

    top: 50% !important;
    right: var(--viz-lens-right) !important;

    width: var(--viz-lens-size) !important;
    height: var(--viz-lens-size) !important;

    transform: translateY(-50%) !important;

    background-image: url("/assets/Images/Home/Vizimage_Lens.png") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: contain !important;

    pointer-events: none !important;
  }
}

@media (min-width: 951px) and (max-width: 1199px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    --viz-lens-band-top: 112px;
    --viz-lens-band-height: 280px;

    --viz-lens-size: 410px;
    --viz-lens-right: -150px;
  }
}

@media (max-width: 950px) {
  .home-v2 .hv2-lens-clip,
  .home-v2 .hv2-lens-clip::before,
  .home-v2 .hv2-lens-image {
    display: none !important;
    content: none !important;
  }
}

/* =========================================================
   DESKTOP HOME LENS — FINAL RESPONSIVE LOCK
   - Hidden whenever desktop side art is hidden
   - No separate lens crop window
   - Lens is drawn on the full black band layer
   - Scales down at medium desktop widths
========================================================= */

/* Kill all old / competing lens systems first */
.home-v2 .hv2-lens,
.home-v2 .hv2-lens-clip,
.home-v2 .hv2-lens-clip::before,
.home-v2 .hv2-lens-image {
  display: none !important;
  content: none !important;
}

/* Lens stays gone below real desktop, matching the iMac side-art behavior */
@media (max-width: 1199px) {
  .home-v2 .hv2-media-stage.video-feature-carousel::after,
  .home-v2 .hv2-lens,
  .home-v2 .hv2-lens-clip,
  .home-v2 .hv2-lens-clip::before,
  .home-v2 .hv2-lens-image {
    display: none !important;
    content: none !important;
    background-image: none !important;
  }
}

/* Real desktop only */
@media (min-width: 1200px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    --viz-band-top: 132px;
    --viz-band-height: clamp(300px, 18vw, 345px);

    /*
      Size is tied to the black band height, not viewport width.
      This prevents medium-width pixelation / ballooning.
    */
    --viz-lens-size: calc(var(--viz-band-height) * 1.02);

    /*
      Negative means it can tuck toward/right past the edge,
      like the iMac does on the left.
    */
    --viz-lens-right: clamp(-42px, -2.2vw, -12px);
  }

  /* Black band */
  .home-v2 .hv2-media-stage.video-feature-carousel::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: var(--viz-band-top) !important;
    height: var(--viz-band-height) !important;
    z-index: 1 !important;
    background: #000 !important;
    pointer-events: none !important;
  }

  /*
    Lens is now drawn directly on the full black band.
    No .hv2-lens-clip box. No second crop.
  */
  .home-v2 .hv2-media-stage.video-feature-carousel::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: var(--viz-band-top) !important;
    height: var(--viz-band-height) !important;
    z-index: 2 !important;
    pointer-events: none !important;

    background-image: url("/assets/Images/Home/Vizimage_Lens.png") !important;
    background-repeat: no-repeat !important;
    background-size: var(--viz-lens-size) var(--viz-lens-size) !important;
    background-position: right var(--viz-lens-right) center !important;
  }
}

/* Medium desktop: smaller, cleaner, not pixelated */
@media (min-width: 1200px) and (max-width: 1499px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    --viz-band-top: 126px;
    --viz-band-height: 300px;
    --viz-lens-size: 300px;
    --viz-lens-right: -8px;
  }
}

/* Large desktop: a bit larger, still not huge */
@media (min-width: 1500px) and (max-width: 1999px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    --viz-band-top: 132px;
    --viz-band-height: 330px;
    --viz-lens-size: 330px;
    --viz-lens-right: -18px;
  }
}

/* Ultra-wide: move in slightly so it mirrors the iMac side-art weight */
@media (min-width: 2000px) {
  .home-v2 .hv2-media-stage.video-feature-carousel {
    --viz-band-top: 132px;
    --viz-band-height: 345px;
    --viz-lens-size: 345px;
    --viz-lens-right: 42px;
  }
}

/* =========================================================
   DESKTOP LENS — UNIVERSAL 350PX LEFT SHIFT
   Keeps current lens sizing / breakpoints.
   Only moves the lens left by exactly 350px from current stack.
========================================================= */

@media (min-width: 1200px) {
  .home-v2 .hv2-media-stage.video-feature-carousel::after {
    background-position:
      right calc(var(--viz-lens-right, 0px) + 350px)
      center !important;
  }
}

/* =========================================================
   HOMEPAGE DESKTOP SIDE ART — FINAL VISIBILITY + OFFSET
   - Lens shifts 150px back to the right from the current +350px left shift
   - Desktop/iMac image shifts 100px right
   - Both disappear below 1600px
========================================================= */

/* Hide both side-art elements below 1600px */
@media (max-width: 1599px) {
  .home-v2 .hv2-desktop-showcase,
  .home-v2 .hv2-media-stage.video-feature-carousel::after,
  .home-v2 .hv2-lens,
  .home-v2 .hv2-lens-clip,
  .home-v2 .hv2-lens-clip::before,
  .home-v2 .hv2-lens-image {
    display: none !important;
    content: none !important;
    background-image: none !important;
  }
}

/* 1600px+ only: show/offset side art */
@media (min-width: 1600px) {
  /*
    Lens:
    Previous universal left shift was +350px.
    Moving it 150px back right = +200px final offset.
  */
  .home-v2 .hv2-media-stage.video-feature-carousel::after {
    display: block !important;
    content: "" !important;
    background-position:
      right calc(var(--viz-lens-right, 0px) + 200px)
      center !important;
  }

  /*
    Desktop/iMac image:
    Shift 100px right without touching its size.
  */
}

/* =========================================================
   HOMEPAGE DESKTOP/iMAC — SAFE 100PX RIGHT OFFSET
   Keeps original vertical placement intact.
   Only adds horizontal movement.
========================================================= */

@media (max-width: 1599px) {
  .home-v2 .hv2-desktop-showcase,
  .home-v2 .hv2-media-stage.video-feature-carousel::after,
  .home-v2 .hv2-lens,
  .home-v2 .hv2-lens-clip,
  .home-v2 .hv2-lens-clip::before,
  .home-v2 .hv2-lens-image {
    display: none !important;
    content: none !important;
    background-image: none !important;
  }
}

@media (min-width: 1600px) {
  /* Lens stays on the current corrected system */
  .home-v2 .hv2-media-stage.video-feature-carousel::after {
    display: block !important;
    content: "" !important;
    background-position:
      right calc(var(--viz-lens-right, 0px) + 200px)
      center !important;
  }

  /*
    iMac:
    Do NOT set left.
    Do NOT set bottom.
    Do NOT set transform.
    This is the clean 100px right shift only.
  */
  .home-v2 .hv2-desktop-showcase {
    display: block !important;
    translate: -100px 0 !important;
  }
}

/* =========================================================
   FINAL DESKTOP BOOK NOW PILL
   Inline with navigation, compact red pill.
========================================================= */

@media (min-width: 761px) {
  .site-header .desktop-nav .nav-book {
    position: static !important;
    inset: auto !important;
    z-index: auto !important;

    width: auto !important;
    height: 28px !important;
    min-height: 28px !important;

    margin: 0 !important;
    padding: 0 13px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    transform: translateY(6px) !important;

    border: 0 !important;
    border-radius: 999px !important;
    background: var(--red) !important;
    box-shadow: none !important;

    color: #ffffff !important;

    font-family: var(--font-display) !important;
    font-size: inherit !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: inherit !important;
    white-space: nowrap !important;
  }

  .site-header .desktop-nav .nav-book:hover,
  .site-header .desktop-nav .nav-book:focus-visible {
    background: #f11d27 !important;
    color: #ffffff !important;
  }
}

@media (max-width: 760px) {
  .footer-contact {
    scroll-margin-top: calc(var(--header-height-mobile) + 12px);
  }
}

@media (max-width: 760px) {
  .site-header > .mobile-phone-bar {
    height: 24px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;

    gap: 0;
    padding: 0 15px;

    background: var(--red);
    color: #ffffff;

    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .home-v2 .video-feature-carousel .hv2-zillow {
    right: max(14px, env(safe-area-inset-right));
    top: -12px;
  }
}

@media (max-width: 390px) {
  .home-v2 .video-feature-carousel .hv2-zillow {
    right: max(12px, env(safe-area-inset-right));
    transform: scale(0.9);
    transform-origin: top right;
  }
}

/* =========================================================
   SERVICES — FINAL VERTICAL PHONE FEATURE
   Desktop: phone left, copy right.
   Mobile: centered and slightly larger.
========================================================= */

.services-v2 .sv2-premium,
.services-v2 .sv2-premium-grid {
  position: relative !important;
  overflow: visible !important;
}

.services-v2 .sv2-premium > .sv2-slider-ui {
  display: none !important;
}

/* -------------------------
   Phone device
------------------------- */

.services-v2 .sv2-services-phone {
  position: relative;
  z-index: 20;

  width: 330px;
  aspect-ratio: 9 / 16;

  display: block;
  overflow: hidden;

  border: 8px solid #090909;
  border-radius: 46px;
  background: #000;

  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.72),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Dynamic Island */
.services-v2 .sv2-services-phone::after {
  content: "";
  position: absolute;
  z-index: 3;

  left: 50%;
  top: 10px;

  width: 82px;
  height: 22px;

  transform: translateX(-50%);

  border-radius: 999px;
  background: #030303;

  pointer-events: none;
}

.services-v2 .sv2-services-phone-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
  object-position: center center;

  border: 0;
  background: #000;

  pointer-events: none;
}

/* -------------------------
   Play / pause control
   Matches homepage carousel button
------------------------- */

.services-v2 .sv2-services-video-toggle {
  position: absolute !important;
  z-index: 8 !important;

  left: 50% !important;
  top: 50% !important;

  width: 58px !important;
  height: 58px !important;

  display: block !important;
  transform: translate(-50%, -50%) !important;

  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;

  background:
    transparent
    url("/assets/Images/Home/Video-UI/Play-button-inactive.png")
    center / contain
    no-repeat !important;

  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px !important;

  box-shadow: none !important;
  opacity: 1;

  /*
    The entire phone is the click target,
    matching the homepage video cards.
  */
  pointer-events: none !important;

  transition: opacity 180ms ease !important;
}

/* Same hover image used by homepage carousel phones */
.services-v2 .sv2-services-phone:hover
  .sv2-services-video-toggle,
.services-v2 .sv2-services-phone:focus-within
  .sv2-services-video-toggle {
  background:
    transparent
    url("/assets/Images/Home/Video-UI/Play-button-hover.png")
    center / contain
    no-repeat !important;
}

/* Remove the old handmade triangle and pause bars */
.services-v2 .sv2-services-control-icon {
  display: none !important;
}

/*
  While the video plays, hide the button.
  Clicking anywhere on the video pauses it,
  and the play button returns.
*/
.services-v2 .sv2-services-phone.is-playing
  .sv2-services-video-toggle {
  opacity: 0 !important;
}

/* Match the homepage carousel’s smaller mobile button */
@media (max-width: 760px) {
  .services-v2 .sv2-services-video-toggle {
    width: 46px !important;
    height: 46px !important;
  }
}

/* -------------------------
   Desktop composition
------------------------- */

@media (min-width: 761px) {
  .services-v2 .sv2-premium {
    padding: 76px 0 72px !important;
  }

  .services-v2 .sv2-premium-grid {
    width: min(calc(100% - 30px), 1080px) !important;

    display: grid !important;
    grid-template-columns: 330px minmax(0, 570px) !important;
    grid-template-areas: "phone copy" !important;

    justify-content: center !important;
    align-items: center !important;

    gap: 76px !important;
  }

  .services-v2 .sv2-services-phone {
    grid-area: phone;

    justify-self: start !important;
    align-self: center !important;

    margin: -90px 0 -76px !important;
    transform: none !important;
  }

  .services-v2 .sv2-premium-title {
    grid-area: copy;

    width: 100% !important;
    max-width: 570px !important;

    justify-self: start !important;
    align-self: center !important;

    margin: 0 !important;
    text-align: left !important;
  }

  .services-v2 .sv2-premium-title h2,
  .services-v2 .sv2-premium-title p,
  .services-v2 .sv2-premium-subline {
    width: 100% !important;
    max-width: 570px !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    text-align: left !important;
  }
}

/* -------------------------
   Mobile composition
------------------------- */

@media (max-width: 760px) {
  .services-v2 .sv2-premium {
    padding: 0 0 42px !important;
    overflow: visible !important;
  }

  .services-v2 .sv2-premium-grid {
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    gap: 0 !important;
  }

  .services-v2 .sv2-services-phone {
    order: 1;

    width: min(60vw, 230px);

    margin: -12px auto 38px !important;

    border-width: 6px;
    border-radius: 34px;
  }

  .services-v2 .sv2-premium-title {
    order: 2;

    width: calc(100% - 30px) !important;
    max-width: 390px !important;

    margin-inline: auto !important;

    text-align: center !important;
  }

  .services-v2 .sv2-premium-title h2,
  .services-v2 .sv2-premium-title p,
  .services-v2 .sv2-premium-subline {
    width: 100% !important;
    max-width: 370px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    text-align: center !important;
  }

  .services-v2 .sv2-services-phone::after {
    top: 7px;
    width: 56px;
    height: 15px;
  }

  .services-v2 .sv2-services-video-toggle {
    width: 58px;
    height: 58px;
  }

  .services-v2 .sv2-services-phone.is-playing
    .sv2-services-video-toggle {
    opacity: 0.5;
  }
}