/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --blue-light:   #188CFF;
  --blue-lightest:#9FC2F0;
  --blue-4:       #EBF0FF;
  --cream:        #F7F7F7;
  --orange-light: #F68E52;
  --blue-dark:    #2F3693;
  --gray-dark:    #515C61;
  --black:        #0D0D0D;
  --white:        #FFFFFF;

  --font-main:    'Spline Sans', sans-serif;
  --font-display: 'Spline Sans', sans-serif;
  --font-karla: 'Karla', sans-serif;

  /* Shared display-heading size. .one-call__heading is the guideline;
     .expect__heading and .renovations__big-text must match it. */
  --heading-display: clamp(3.2rem, 6vw, 5.5rem);

  --max-width: 1280px;
  --section-pad-x: 24px;
  --section-pad-y: 80px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black);
  overflow-x: clip;
}

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

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

.mobile-only  { display: none !important; }
.booking-btn.mobile-alt  { display: none !important; }

/* ============================================================
   BOOKING BUTTON (global)
   ============================================================ */
.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  padding: 8px 8px;
  /* border-radius: 4px; */
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.booking-btn:hover { background: var(--blue-dark); }

.btn-arrow {
  color: var(--white);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.meet__cta {
  /* background: var(--white); */
  /* color: var(--blue-light); */
}
  

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: clamp(24px, 6vw, 120px);
  padding-right: clamp(24px, 6vw, 120px);
  background: transparent;
  transition: background 0.4s ease;
}
.navbar.scrolled { background: rgba(33, 34, 33, 0.35); backdrop-filter: blur(8px); }

.navbar__inner {
  /* max-width: var(--max-width); */
  /* margin: 0 auto; */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.navbar__contact{
  display: flex;
}

.navbar__logo img {
  height: 80px;
  width: auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  max-height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,rgba(0,0,0,0.25),rgba(0,0,0,0), transparent);
  z-index: 1;
}

/* Scrim so the hero copy stays legible: black at the bottom, clear at the top.
   Sits IN FRONT of the video — z-index 3 clears .hero__video-wrapper (z-index 2).
   It still sits BEHIND the copy: .hero__bg is its own stacking context at
   z-index 0, while .hero__content and .hero__stats are z-index 2 on .hero itself,
   so nothing inside .hero__bg can ever paint over them.
   Tune the stops and opacities below to taste. */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,    /* bottom — darkest */
    rgba(0, 0, 0, 0.55) 25%,
    rgba(0, 0, 0, 0)    60%    /* fades out before the top */
  );
  pointer-events: none;
}

.hero__content {
  position: absolute;
  left: var(--section-pad-x);
  transform: translateY(-120px);
  z-index: 2;
  display: flex;
  gap: 0rem;
  flex-direction: row;
  align-items: flex-end;
  justify-content: start;
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  /* text-transform: uppercase; */
  letter-spacing: -0.05em;
}

.hero__cta-desktop {
  /* display: inline-block; */
  margin-bottom: 5px;
}

/* Frosted glass stats row */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: row;
  text-transform: uppercase;
}

.hero__stats > :first-child {
  padding-left: clamp(24px, 6vw, 120px);
}
.hero__stats > :last-child {
  padding-right: clamp(24px, 6vw, 120px);
}

.hero__stat {
  flex: 1;
  padding: 20px 20px;
  background: rgba(33, 34, 33, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.2;
}

.hero__stat-headline {
  font-weight: 700;
  color: var(--orange-light);
}

.hero__stat-headline--dark {
  color: var(--blue-dark);
  font-weight: 600;
}

.hero__stat-sub {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile shows one line per cell instead of the orange/white pair,
   so it carries the emphasis on its own. */
.hero__stat-sub--solo {
  /* font-weight: 700; */
  color: var(--white);
}


/* Container for the whole hero background */
.hero__bg {
  /* position: relative; */
  width: 100%;
  /* height: 125svh; */
  overflow: hidden;
  background-color: #000; /* Optional: smooth transition color */
}

/* 1. Fallback Image Styling */
.hero__fallback, 
.hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Keeps image at the very back */
}

.hero__img {
  object-fit: cover; /* Ensures the image scales properly */
}

/* 2. Video Wrapper Styling */
.hero__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* Places video on top of the image */
  pointer-events: none; /* Prevents users from clicking/pausing the video */
  overflow: hidden;
}

/* 3. The "object-fit: cover" trick for iframes (assumes a standard 16:9 video) */
.hero__video-wrapper iframe {
  width: 100vw;
  height: 56.25vw; /* 100vw * 9/16 */
  min-height: 100vh;
  min-width: 177.77vh; /* 100vh * 16/9 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centers the video perfectly */
}

/* Mobile plays a vertical 9:16 cut and .hero is set to that same ratio,
   so the iframe just fills its container — no cover math and no centring
   offset needed. The desktop rule's viewport units and translate are
   reset here, since they assume a full-viewport 16:9 hero. */
@media (max-width: 767px) {
  .hero__video-wrapper iframe {
    top:        0;
    left:       0;
    width:      100%;
    height:     100%;
    min-width:  0;
    min-height: 0;
    transform:  none;
  }
}

/* ============================================================
   SECTION 1 – ONE CALL
   ============================================================ */
.one-call {
  background: var(--cream);
  display: flex;
  flex-direction: row;
  max-width: 100%;
}

.one-call__text {
  width: 50%;
  padding: var(--section-pad-y) var(--section-pad-y) var(--section-pad-y) clamp(24px, 6vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.one-call__heading {
  font-size: var(--heading-display);
  font-family: var(--font-display);
  font-weight: 700;
  /* text-transform: uppercase; */
  color: var(--blue-dark);
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  /* align-items: center; */
  font-size: 1.2rem;
}

.service-item__icon {
  width: 60px;
  height: 100%;
  padding: 0px 4px 4px 4px;
  flex-shrink: 0;
  /* margin-top: 2px; */
}

.service-item__title {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--black);
}

.service-item__desc {
  color: #555;
  line-height: 1;
}

.one-call__reviews-btn {
  align-self: flex-start;
  /* margin-left: 76px; */
}

.one-call__image {
  width: 50%;
  overflow: hidden;
  position: relative;
}

.one-call__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.one-call__image-credit {
  position: absolute;
  bottom: 40px;
  right: 16px;
  /* color: var(--blue-lightest) !important; */
}

/* ============================================================
   SECTION 2 – MEET SECTION
   ============================================================ */
.meet {
  position: relative;
  /* height: 80svh; */
  aspect-ratio: 1440 / 740;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  /* align-items: center; */
  align-items: flex-end;
}


.meet__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.meet__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark overlay for readability */
.meet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.45));
  z-index: 1;
}

.meet__overlay {
  position: relative;
  z-index: 2;
  /* max-width: 680px; */
  transform: translateY(-6vw);
  padding: 0 clamp(24px, 6vw, 120px);
}

.meet__heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color:var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.1;
}

.meet__quote {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  font-style: normal;
  padding-bottom: 10px;
}

.meet__quote-wrap {
  max-width: 68ch;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.meet__attribution-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-align: right;
}

/* ============================================================
   SECTION 3 – WHAT TO EXPECT
   ============================================================ */
.expect {
  background: var(--cream);
  padding: var(--section-pad-y) clamp(24px, 6vw, 120px);
}

.expect__heading {
  font-family: var(--font-display);
  font-size: var(--heading-display);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 48px;
  letter-spacing: -0.05em;
}

.expect__grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

.expect__item {
  flex: 1;
  padding: 0 32px;
}

.expect__item:first-child { padding-left: 0; }
.expect__item:last-child  { padding-right: 0; }

.expect__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}

.expect__title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--black);
}

.expect__desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}

.expect__divider {
  width: 1px;
  background: #6D95A9;
  align-self: stretch;
  flex-shrink: 0;
}

/* ============================================================
   SECTION 4 – RENOVATIONS
   ============================================================ */
.renovations {
  background: var(--white);
  padding: var(--section-pad-y) clamp(24px, 6vw, 120px);
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Row 1: Accordion + Video */
.renovations__panel {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.renovations__accordion {
  display: flex;
  flex-direction: column;
  flex: 0 0 340px;
  background: transparent;
  gap: 8px;
  /* justify-content: space-between; */
}

.accordion-item {
  background: var(--blue-lightest);
  border-radius: 8px;
  overflow: hidden;
}
.accordion-item.active{
  background-color: var(--blue-dark);
}

.accordion-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}

.accordion-item__icon {
  font-size: 1.25rem;
  font-weight: 400;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-item__trigger {
  background: var(--blue-dark);
  color: var(--white);
}

.accordion-item.active .accordion-item__icon {
  opacity: 0;
}

.accordion-item__body {
  max-height: 0;
  overflow: hidden;
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.8);
}

.accordion-item__body p {
  padding: 0 20px 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.accordion-item__video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  margin-top: 4px;
}

.accordion-item__video-label {
  padding: 8px 20px;
  padding-top: 0px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.renovations__video-wrap {
  flex: 1;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-radius: 8px;
  container-type: size;
}

.renovations__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 16 / 9;
  width: max(100%, calc(100cqh * 16 / 9));
  border: none;
}

/* ============================================================
   VIDEO CONTROLS — play/pause + mute/unmute overlaid bottom-right.
   Each control div holds both of its icons stacked; only one is
   visible at a time, reflecting the player's actual state.
   ============================================================ */
.video-control-container {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.play-pause,
.mute-unmute {
  position: relative;
  width: 38px;
  height: 39px;          /* 57:59 icon ratio */
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.play-pause:hover,
.mute-unmute:hover { opacity: 1; transform: scale(1.08); }
.play-pause:focus-visible,
.mute-unmute:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

/* Icons stack on top of each other and never take the click themselves —
   the wrapping div is the button. */
.control-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.control-icon.is-visible { opacity: 1; }

/* Mobile accordion videos need their own positioned parent */
.accordion-item__video-wrap {
  position: relative;
  margin-top: 4px;
  line-height: 0;        /* kills the inline-descender gap under the iframe */
}
.accordion-item__video-wrap .accordion-item__video-frame { margin-top: 0; }

.renovations__video-label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.video-label__loc {
  color: var(--orange-light);
}

/* Row 2: Heading + Copy */
.renovations__copy-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 7vw;
}

.renovations__big-heading {
  flex: 0 0 auto;
}

.renovations__big-text {
  font-size: var(--heading-display);
  font-family: var(--font-display);
  font-weight: 800;
  /* text-transform: uppercase; */
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--blue-dark);
}

.renovations__quote{
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.renovations__quote.mobile-only{
  margin-top: 16px;
}

.renovations__between {
  font-size: 3rem;
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.renovations__body-copy {
  font-size: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* justify-content: space-between; */
  gap: 18px;
  /* padding-top: 8px; */
}

.renovations__body-copy p {
  /* line-height: 1.7; */
  color: var(--black);
  font-size: 1.4rem;
  /* max-width: 47ch; */
}
.renovations__copy.mobile-only{
  margin-top: 2rem;
}

/* ============================================================
   SECTION 5 – FAQ
   ============================================================ */
.faq {
  background: var(--gray-dark);
  padding: var(--section-pad-y) clamp(24px, 6vw, 120px);
  display: flex;
  flex-direction: row;
  gap: 12vw;
  align-items: flex-start;
}

.faq__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq__heading {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--orange-light);
  line-height: 1.2;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  background: transparent;
  border: none;
  font-family: var(--font-main);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--gray-dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}


.faq-item__icon {
  font-size: 2rem;
  font-weight: 400;
  color: var(--gray-dark);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon { transform: rotate(45deg); }

.faq-item__body {
  max-height: 0;
  overflow: hidden;
}

.faq-item__body p {
  padding: 0 20px 25px;
  font-size: 1.1rem;
  color: var(--gray-dark);
}

.faq__right {
  flex: 0 0 380px;
  max-width: 380px;
}

.faq__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}

/* ============================================================
   SECTION 6 – CTA
   ============================================================ */
.cta-section {
  background: var(--cream);
  padding: var(--section-pad-y) clamp(24px, 6vw, 120px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-section__heading {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 800;
  /* text-transform: uppercase; */
  color: var(--blue-dark);
  line-height: 1;
  letter-spacing: -0.05em;
}

.cta-section__body {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  max-width: 84ch;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-dark);
  padding: 48px clamp(24px, 6vw, 120px);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  font-size: 1rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-weight: 700;
}

.footer__col--logo { flex: 0 0 auto; }

.footer__logo {
  height: 100px;
  width: auto;
}

.footer__label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-light);
}

.footer__link {
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.footer__link:hover { color: var(--blue-light); }
.footer__col--location:hover .footer__link { color: white; }

/* .footer__col--location { flex: 1; } */

.footer__col--social { flex: 0 0 auto; }

.footer__social {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 4px;
  justify-content: center;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.footer__social-link:hover { background: var(--blue-light); }

.footer__social-link img {
  width: 18px;
  height: 18px;
}

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  transition: bottom 0.4s ease;
}

.mobile-sticky-cta.visible {
  bottom: 20px;
}

.mobile-sticky-cta__btn {
    border-radius: 999px;
    padding: 16px 16px;
    width: 100vw;
    display: flex;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    justify-content: center;
    max-width: 200px;
}

/* ============================================================
   MOBILE: 480px (Mobile Landscape)
   ============================================================ */
@media (min-width: 480px) {
  .hero__stat-label { font-size: 0.75rem; }
}

/* ============================================================
   TABLET: 768px
   ============================================================ */
@media (min-width: 768px) {
  .mobile-sticky-cta { display: none !important; }
  .hero__content { left: clamp(24px, 6vw, 120px); }
  .hero__content { gap: 1rem; }
}

/* ============================================================
   DESKTOP: 992px
   ============================================================ */
@media (min-width: 992px) {
  .expect__grid { gap: 0; }
}








































































































/* ============================================================
   RENOVATIONS – wider mobile breakpoint (1040px)
   ============================================================ */
@media (max-width: 1040px) {
  .renovations {
    display: flex;
    flex-direction: column;
    padding: var(--section-pad-y) 20px;
    gap: 40px;
  }
  .renovations__between {
    margin-top: 0px;
    font-size: 9vw;
    display: block;
  }
  .renovations__panel {
    order: 2;
    gap: 0px;
    flex-direction: column;
    min-height: 0;
  }
  .renovations__accordion { flex: 0 0 auto; }
  .renovations__video-wrap { display: none; }
  .renovations__copy-row {
    order: 1;
    flex-direction: column;
    gap: 0px;
  }
  .renovations__big-text {
    /* font-size intentionally not set — inherits var(--heading-display)
       so it stays locked to .one-call__heading on mobile too. */
    line-height: 1;
  }

  /* Show per-accordion-item label + embedded video (overrides global mobile-only).
     The iframe now lives inside .accordion-item__video-wrap, which carries the
     mobile-only class — this breakpoint is 1040px, wider than the global
     mobile-only flip at 767px, so the wrapper must be listed here too. */
  .accordion-item__video-label,
  .accordion-item__video-wrap,
  .accordion-item__video-frame,
  .renovations__copy.mobile-only {
    display: block !important;
  }
}

/* ============================================================
   MOBILE OVERRIDES (max-width: 767px)
   ============================================================ */
@media (max-width: 767px) {

  :root {
    --section-pad-y: 56px;
  }

  .desktop-only{
    display: none !important;
  }
  .mobile-only{
    display: block !important;
  }
  .booking-btn.mobile-alt{
    display: flex !important;
  }

  /* Hero mobile gradient */
  .hero {
    position: relative;
    /* Match the 9:16 mobile video exactly so it fills the hero with no
       letterboxing and no gap. min-height is zeroed because the base
       600px floor would otherwise break the ratio on narrow phones. */
    aspect-ratio: 9 / 16;
    height: auto;
    max-height: none;
    min-height: 0;
  }

  /* Navbar */
  .navbar { padding: 16px 20px; }
  .navbar__logo img { height: 70px; }
  .hero__stats > :nth-child(3) {
    padding-left: clamp(24px, 6vw, 120px);
  }


  /* Hero */
  .hero__content {
    position: relative;
    transform: translateY(-80%);
  }

  .hero__h1 {
    font-size: 4rem;
    max-width: 10ch; /* forces mid-sentence wrap: "No job is" / "too small." */
  }

  /* Show inline pill CTA in hero; sticky slides in later */
  .hero__cta-desktop {
    display: inline-flex;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 1rem;
    align-self: flex-start;
    margin-top: 16px;
  }
  .hero__content { flex-direction: column; align-items: flex-start; }
  .mobile-sticky-cta { display: flex; }

  /* Stats: 2x2 grid */
  .hero__stats {
    flex-wrap: wrap;
  }
  .hero__stat {
    flex: 0 0 50%;
    max-width: 50%;
    /* One line per cell now, so `justify-content: end` (from the base rule,
       which suits the two-line desktop pair) leaves it hugging the bottom.
       Centre it instead. Revert this if you want it bottom-aligned. */
    justify-content: center;
  }

  /* One call: column layout */
  .one-call {
    flex-direction: column;
  }
  .one-call__text {
    width: 100%;
    padding: var(--section-pad-y) 20px var(--section-pad-y);
  }
  .one-call__image {
    width: 100%;
    height: auto;
    aspect-ratio: 393 / 433;
  }
  .one-call__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Meet: no background image, black bg */
  .meet {
    height: auto;
    min-height: 0;
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 0;
    background: var(--gray-dark);
    aspect-ratio: auto;
  }
  .meet::before { display: none; }
  .meet__bg {
    position: relative;
    width: 100%;
    /* height: 60vw; */
    min-height: 240px;
  }
  .meet__overlay {
    padding: var(--section-pad-y) 20px;
    max-width: 100%;
    transform: translateY(0%);
  }
  
  .meet__quote{
    margin-bottom: 0px;
  }

  .meet__quote-wrap {
    margin-bottom: 0px;
    gap: 20px;
  }

  /* Expect: 2x2 grid, no desc text */
  .expect { padding: var(--section-pad-y) 20px; }
  .expect__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1px;
    row-gap: 0;
    background: #D0D0D0;
  }
  .expect__divider { display: none; }
  .expect__item {
    flex: unset;
    max-width: unset;
    padding: 24px 16px;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* text-align: center; */
    height: 100%;
  }
  .expect__item:first-child { padding-left: 16px; }
  .expect__item:last-child  { padding-right: 16px; }

  /* Expect section */
  .service-item__title {
    font-size: 1.3rem;
  }
  .service-item__icon {
    margin-top: 5px;
  }

  .expect__item.service-item__title {
    max-width: 13ch;
  }

  /* FAQ: mobile order = heading, image, dropdowns */
  .faq {
    flex-direction: column;
    padding: var(--section-pad-y) 20px;
    gap: 32px;
  }
  .faq__right {
    flex: 0 0 auto;
    max-width: 100%;
    order: -1; /* image between heading and dropdowns via flexbox */
  }
  .faq__heading { order: -2; }
  .faq__list    { order: 0; }
  .faq__image { height: auto; width: 100%; }
  .faq__left { width: 100%; }

  .faq-item__trigger > span {
    max-width: 23ch;
  }

  /* CTA */
  .cta-section { padding: var(--section-pad-y) 20px; }
  /* .cta-section__heading { font-size: 2rem; } */

  /* Footer: column */
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding-top: 48px;
    padding-bottom: 100px;
    font-size: 1.5rem;
  }
  .footer__logo{
    height: 100px;
  }
  .footer {
    padding-top: 100px;
  }
}

/* ============================================================
   SKIP LINK — first focusable element on the page. Off-screen
   until focused, so keyboard users can Tab once and jump past
   the nav straight to <main>.
   ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--white);
  color: var(--blue-dark);
  outline: 2px solid var(--blue-dark);
  outline-offset: 2px;
}
