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

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

  --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 BUTTON (global)
   ============================================================ */
.booking-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-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: 40px;
  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;
}

.hero__content {
  position: absolute;
  left: var(--section-pad-x);
  transform: translateY(-120%);
  z-index: 2;
  display: flex;
  gap: 1rem;
  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: 0.8;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.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(--blue-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);
}

/* ============================================================
   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: clamp(3.2rem, 6vw, 5.5rem);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--blue-dark);
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.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 THE HANDYMAN
   ============================================================ */
.meet {
  position: relative;
  height: 100svh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.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(100%);
  padding: 0 clamp(24px, 6vw, 120px);
}

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

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

.meet__quote-wrap {
  max-width: 55ch;
  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: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 48px;
}

.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: #D0D0D0;
  align-self: stretch;
  flex-shrink: 0;
}

/* ============================================================
   SECTION 4 – RENOVATIONS
   ============================================================ */
.renovations {
  background: var(--blue-4);
  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__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 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(--black);
  color: var(--white);
}

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

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

.accordion-item__body p {
  padding: 0 20px 20px;
  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;
}

.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(--blue-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: clamp(3.2rem, 4vw, 5.5rem);
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.8;
  letter-spacing: -0.02em;
  color: var(--blue-dark);
}

.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: 24px;
  /* padding-top: 8px; */
}

.renovations__body-copy p {
  /* line-height: 1.7; */
  color: var(--black);
  /* max-width: 47ch; */
}
.renovations__copy.mobile-only{
  margin-top: var(--section-pad-y) ;
}

/* ============================================================
   SECTION 5 – FAQ
   ============================================================ */
.faq {
  background: var(--blue-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(--white);
  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(--blue-dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}


.faq-item__icon {
  font-size: 2rem;
  font-weight: 400;
  color: var(--blue-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(--blue-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: 0.75;
  letter-spacing: -0.05em;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  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(--blue-light);
}

.footer__link {
  color: var(--white);
  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); }
}

/* ============================================================
   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: 9vw;
    line-height: 1;
  }

  /* Show per-accordion-item label + embedded video (overrides global mobile-only) */
  .accordion-item__video-label,
  .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;
  }

  /* Hero mobile gradient */
  .hero {
    position: relative;
    height: 125svh;
    max-height: none;

  }
  .hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
  }

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


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

  .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 call: column layout */
  .one-call {
    flex-direction: column;
  }
  .one-call__text {
    width: 100%;
    padding: var(--section-pad-y) 20px 32px;
  }
  .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(--black);
  }
  .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: 28px;
    padding-top: 48px;
    padding-bottom: 100px;
    font-size: 1.5rem;
  }
  .footer__logo{
    height: 150px;
  }
  .footer {
    padding-top: 100px;
  }
}
