/* ============================================================
   2Easy Home Solutions — Premium CSS
   ============================================================ */

/* ── Self-hosted fonts (variable) ── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/inter-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('fonts/fraunces-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/fraunces-italic-var.woff2') format('woff2');
}

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

:root {
  --navy:       #0d0d0d;
  --navy-soft:  #161616;
  --ink:        #111111;
  --paper:      #f7f6f3;
  --paper-soft: #efede8;
  --gold:       #c9a24b;
  --gold-soft:  #e8d6a8;
  --gold-dim:   rgba(201,162,75,.12);
  --text:       #111111;
  --muted:      #6b7280;
  --line:       #e8e5de;
  --white:      #ffffff;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 4px 24px -8px rgba(0,0,0,.18);
  --shadow-lg:  0 16px 48px -12px rgba(0,0,0,.28);
  --container:  1180px;
  --ease:       cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Custom Cursor ── */
.cursor {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,162,75,.6);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s, opacity .3s;
  mix-blend-mode: normal;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
}
body:not(:hover) .cursor,
body:not(:hover) .cursor-dot { opacity: 0; }
.cursor.is-hovering { width: 56px; height: 56px; border-color: var(--gold); background: rgba(201,162,75,.06); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: .95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s, opacity .2s;
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 4px 16px -4px rgba(0,0,0,.4); }
.btn--primary:hover { box-shadow: 0 8px 24px -6px rgba(0,0,0,.5); }

.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 4px 20px -4px rgba(201,162,75,.5); }
.btn--gold:hover { box-shadow: 0 8px 28px -4px rgba(201,162,75,.55); }

.btn--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--ghost-white { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn--ghost-white:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }

.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ── Typography helpers ── */
.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow--gold { color: var(--gold); }

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.1; font-weight: 600; }
h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }
em { font-style: italic; color: var(--gold); }

/* ── Section base ── */
.section { padding: 120px 0; }
.section--alt { background: var(--paper); }
.section--dark { background: var(--navy); }

.section__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section__head--light h2 { color: #fff; }
.section__lead { font-size: 1.1rem; color: var(--muted); margin-top: 16px; line-height: 1.7; }
.section__footer { text-align: center; margin-top: 56px; }

/* ── Preloader ── */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { text-align: center; }
.loader__logo-wrap { animation: loaderPulse 1.8s ease-in-out infinite; margin-bottom: 32px; }
.loader__logo { width: min(400px, 70vw); height: auto; margin: 0 auto; }
.loader__bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px; margin: 0 auto 20px; overflow: hidden;
}
.loader__bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), #f0d080);
  border-radius: 2px;
  animation: loaderFill 2.4s var(--ease) forwards;
}
.loader__text { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); }

@keyframes loaderPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(.97)} }
@keyframes loaderFill { to{width:100%} }

/* ── Header ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s;
}
.header__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 140px; gap: 24px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 112px; width: auto; }

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: .875rem; font-weight: 600;
  color: rgba(255,255,255,.72);
  position: relative; padding-bottom: 2px;
  transition: color .2s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .25s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header__cta .btn { white-space: nowrap; }
.header__phone {
  display: flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: .875rem;
  color: rgba(255,255,255,.8);
  transition: color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.header__phone:hover { color: var(--gold); }

.burger {
  display: none; flex-direction: column;
  justify-content: center; gap: 6px;
  width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: #fff; margin: 0 auto;
  transition: transform .3s var(--ease), opacity .3s, width .3s;
}
.burger.is-active span:first-child { transform: translateY(7.5px) rotate(45deg); }
.burger.is-active span:last-child  { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 80px; left: 0; right: 0;
  z-index: 99; background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
  padding: 20px 32px 28px; gap: 4px;
  transform: translateY(-110%);
  transition: transform .4s var(--ease);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.8); font-weight: 500;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { margin-top: 10px; }
.mobile-nav .btn--outline { border-color: rgba(255,255,255,.25); color: #fff; }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
  color: #fff;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 2;
}
.hero__photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.is-loaded .hero__photo { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 55%, rgba(0,0,0,.5) 100%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,.6) 100%);
}
.hero__inner {
  position: relative; z-index: 3;
  display: flex; align-items: center;
  padding: 140px 32px 120px;
  min-height: 100vh;
}
.hero__content { max-width: 640px; }

.hero__eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0; transform: translateY(16px);
}
.hero__content h1 {
  color: #fff;
  margin-bottom: 24px;
  opacity: 0; transform: translateY(20px);
}
.hero__lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
}
.hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 20px;
  opacity: 0; transform: translateY(20px);
}
.hero__trust li {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .02em;
}
.hero__trust li svg { color: var(--gold); flex-shrink: 0; }

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__scroll-text {
  font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
@keyframes scrollPulse {
  0%,100%{opacity:.5;transform:scaleY(1)}
  50%{opacity:1;transform:scaleY(1.15)}
}

/* ── Trust Strip ── */
.strip {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.strip__track { width: 100%; overflow: hidden; }
.strip__inner {
  display: flex; align-items: center; gap: 32px;
  width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.strip__inner span {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy);
}
.strip__dot { opacity: .4; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 44px 36px 40px;
  position: relative;
  transition: background .3s, transform .3s var(--ease);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: #fdfcfa; transform: translateY(-4px); }

.service-card__num {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; color: var(--gold);
  margin-bottom: 20px;
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: background .3s, color .3s;
}
.service-card:hover .service-card__icon { background: var(--gold); color: var(--navy); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--navy); }
.service-card p { font-size: .92rem; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 700;
  color: var(--navy);
  transition: gap .2s var(--ease), color .2s;
}
.service-card__link:hover { gap: 10px; color: var(--gold); }

/* ── Stats ── */
.stats { background: var(--navy); padding: 80px 0; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
}
.stat {
  padding: 48px 32px;
  text-align: center;
  background: var(--navy);
  position: relative;
}
.stat::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.07);
}
.stat:last-child::after { display: none; }
.stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat span {
  font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ── Why Choose Us ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.why-grid__visual { position: relative; height: 500px; }
.why-photo {
  position: absolute; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
  transition: transform .6s var(--ease);
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-photo--1 { width: 76%; height: 76%; top: 0; left: 0; }
.why-photo--2 { width: 58%; height: 52%; bottom: 0; right: 0; border: 4px solid #fff; }
.why-grid__visual:hover .why-photo--1 { transform: translate(-4px, -4px); }
.why-grid__visual:hover .why-photo--2 { transform: translate(4px, 4px); }

.why-stat {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--navy); color: #fff;
  border-radius: 14px; padding: 20px 26px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.why-stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.why-stat span { font-size: .78rem; color: rgba(255,255,255,.6); font-weight: 500; margin-top: 4px; display: block; }

.why-grid__content .eyebrow { margin-bottom: 12px; }
.why-grid__content h2 { margin-bottom: 32px; }

.why-list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.why-list li { display: flex; gap: 18px; align-items: flex-start; }
.why-list__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}
.why-list h4 { font-size: 1rem; margin-bottom: 6px; color: var(--navy); }
.why-list p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* ── Before & After ── */
.ba-wrap { margin-bottom: 48px; }
.ba-wrap:last-child { margin-bottom: 0; }
.ba-slider {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
  user-select: none; cursor: ew-resize;
}
.ba-slider__after, .ba-slider__before { position: absolute; inset: 0; overflow: hidden; }
.ba-slider__before { clip-path: inset(0 50% 0 0); }
.ba-slider__after img, .ba-slider__before img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ba-slider__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 0; transform: translateX(-50%);
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.ba-slider__line {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 2px; background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}
.ba-slider__grip {
  position: relative;
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px -4px rgba(0,0,0,.4);
}
.ba-slider__tag {
  position: absolute; top: 16px;
  background: rgba(0,0,0,.7); color: #fff;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  backdrop-filter: blur(6px); z-index: 2;
}
.ba-slider__tag--before { left: 16px; }
.ba-slider__tag--after  { right: 16px; }
.ba-slider__input {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize;
  -webkit-appearance: none; appearance: none;
}
.ba-caption {
  text-align: center; margin-top: 16px;
  font-weight: 600; font-size: .9rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gallery__item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--paper-soft);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff; font-size: .82rem; font-weight: 600;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.gallery__item:hover figcaption { transform: translateY(0); }

/* ── Process ── */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process__line {
  position: absolute;
  top: 28px; left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,75,.3), var(--gold), rgba(201,162,75,.3), transparent);
  z-index: 0;
}
.process__step {
  padding: 0 32px 0;
  text-align: center;
  position: relative; z-index: 1;
}
.process__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,162,75,.4);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800;
  letter-spacing: .1em;
  color: var(--gold);
  margin: 0 auto 28px;
  transition: background .3s, border-color .3s;
}
.process__step:hover .process__num { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.process__step h3 { font-size: 1.1rem; color: #fff; margin-bottom: 12px; }
.process__step p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ── Reviews ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 40px;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-card__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 20px; }
.review-card blockquote {
  font-size: .95rem; line-height: 1.7;
  color: var(--text); margin-bottom: 28px;
  font-style: italic;
}
.review-card__author { display: flex; align-items: center; gap: 14px; }
.review-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; color: var(--gold);
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: .9rem; font-family: 'Inter', sans-serif; color: var(--navy); }
.review-card__author span { font-size: .8rem; color: var(--muted); }

.google-banner {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 36px;
}
.google-banner__rating { display: flex; align-items: center; gap: 20px; }
.google-banner__score {
  font-family: 'Fraunces', serif;
  font-size: 3rem; font-weight: 600;
  color: var(--navy); line-height: 1;
}
.google-banner__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 6px; }
.google-banner__rating span { font-size: .82rem; color: var(--muted); }

/* ── Areas ── */
.areas-grid {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center;
  max-width: 680px; margin: 0 auto;
}
.area-chip {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-size: .85rem; font-weight: 600;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, color .2s, background .2s;
  cursor: default;
}
.area-chip:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* ── FAQ ── */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  font-family: 'Fraunces', serif;
  font-size: 1.08rem; font-weight: 600;
  color: var(--navy);
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color .2s;
}
.faq__item summary:hover { color: var(--gold); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.4rem; font-weight: 300; font-family: 'Inter', sans-serif;
  color: var(--gold); flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding-bottom: 24px; }
.faq__body p { color: var(--muted); line-height: 1.75; font-size: .95rem; }

/* ── CTA / Contact ── */
.cta { background: var(--navy); padding: 120px 0; }
.cta__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.cta__content .eyebrow { color: var(--gold); margin-bottom: 16px; }
.cta__content h2 { color: #fff; margin-bottom: 20px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.cta__content p { color: rgba(255,255,255,.6); margin-bottom: 36px; line-height: 1.75; }

.cta__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.cta__list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; font-weight: 600;
  color: rgba(255,255,255,.8);
}
.cta__list li svg { color: var(--gold); flex-shrink: 0; }

.cta__contact-methods { display: flex; flex-direction: column; gap: 12px; }
.cta__contact {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,.07);
  transition: padding-left .2s var(--ease);
}
.cta__contact:hover { padding-left: 6px; }
.cta__contact strong { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.cta__contact span { font-size: .9rem; color: rgba(255,255,255,.7); }

/* Form */
.cta__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: 0 32px 80px -16px rgba(0,0,0,.35);
}
.cta__form h3 {
  font-size: 1.5rem; color: var(--navy);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem; color: var(--text);
  background: var(--paper);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form__note {
  text-align: center; margin-top: 14px;
  font-size: .78rem; color: var(--muted);
}

/* ── Footer ── */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,.06); padding: 80px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
}
.footer__brand p {
  font-size: .88rem; color: rgba(255,255,255,.65);
  line-height: 1.7; margin: 20px 0 24px;
  max-width: 280px;
}
.footer__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  transition: border-color .2s, color .2s, background .2s;
}
.footer__social:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.logo--footer img { height: 140px; width: auto; }
.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 20px;
}
.footer__col a,
.footer__col span {
  display: block; font-size: .875rem;
  color: rgba(255,255,255,.55); margin-bottom: 12px;
  transition: color .2s;
}
.footer__col a:hover { color: rgba(255,255,255,.9); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .78rem; color: rgba(255,255,255,.55);
}

/* ── Sticky Mobile CTA ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200;
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 20px;
  gap: 10px;
}
.sticky-cta__call {
  flex: 1; display: flex; align-items: center;
  justify-content: center; gap: 8px;
  padding: 13px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff; font-weight: 600; font-size: .9rem;
  transition: background .2s;
}
.sticky-cta__call:hover { background: rgba(255,255,255,.08); }
.sticky-cta__quote {
  flex: 1.5; display: flex; align-items: center;
  justify-content: center;
  padding: 13px;
  border-radius: 12px;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .9rem;
  transition: opacity .2s;
}
.sticky-cta__quote:hover { opacity: .9; }

/* ── Why intro (founder story) ── */
.why-intro {
  color: var(--muted);
  line-height: 1.75;
  margin: 20px 0 36px;
  font-size: .97rem;
}
.why-intro em {
  font-family: 'Fraunces', serif;
  color: var(--navy);
}

/* ── Global focus ring (a11y) ── */
:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── GSAP CDN failure fallback: never leave content invisible ── */
html.no-gsap [data-reveal],
html.no-gsap [data-service-card],
html.no-gsap [data-gallery-item],
html.no-gsap [data-review-card],
html.no-gsap [data-process-step],
html.no-gsap [data-why-item],
html.no-gsap [data-stat],
html.no-gsap [data-section-head] {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Reveal animations (GSAP) ── */
[data-reveal] { opacity: 0; }
[data-service-card] { opacity: 0; transform: translateY(40px); }
[data-gallery-item] { opacity: 0; transform: translateY(30px); }
[data-review-card] { opacity: 0; transform: translateY(30px); }
[data-process-step] { opacity: 0; transform: translateY(30px); }
[data-why-item] { opacity: 0; transform: translateX(-20px); }
[data-stat] { opacity: 0; transform: translateY(20px); }
[data-section-head] { opacity: 0; transform: translateY(24px); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid__visual { height: 380px; order: -1; margin-bottom: 28px; }
  .why-stat {
    bottom: -20px; left: 8px;
    padding: 14px 18px;
    border-radius: 12px;
  }
  .why-stat strong { font-size: 1.5rem; }
  .why-stat span { font-size: .7rem; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__line { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat::after { display: none; }
}

@media (max-width: 760px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .header__inner { height: 96px; }
  .logo img { height: 72px; }
  .header.is-shrunk .header__inner { height: 72px; }
  .header.is-shrunk .logo img { height: 54px; }
  .hero__inner { padding: 120px 20px 100px; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .service-card { padding: 32px 24px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--tall, .gallery__item--wide { grid-row: auto; grid-column: auto; }
  .process { grid-template-columns: 1fr; }
  .reviews-grid { gap: 16px; }
  .cta__form { padding: 32px 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .sticky-cta { display: flex; }
  .cursor, .cursor-dot { display: none; }
  .google-banner { flex-direction: column; gap: 20px; text-align: center; }
  .google-banner__rating { flex-direction: column; gap: 8px; }
  .ba-slider { aspect-ratio: 4/3; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── House Explorer ── */
.explorer { padding-bottom: 80px; overflow: hidden; }
.explorer .section__head--light h2 { color: #fff; }
.explorer .section__head--light .eyebrow { color: var(--gold); }

.explorer__wrap {
  position: relative;
  max-width: 960px;
  margin: 48px auto 0;
}

.house-svg {
  width: 100%;
  display: block;
  cursor: default;
}

/* Zone interaction */
.hs-zone {
  cursor: pointer;
  outline: none;
}
.hs-zone .hs-glow {
  transition: opacity .3s ease;
  pointer-events: none;
}
.hs-zone:hover .hs-glow,
.hs-zone:focus-visible .hs-glow {
  opacity: .18 !important;
}
.hs-zone:hover .win-inner {
  opacity: 1 !important;
  filter: drop-shadow(0 0 18px rgba(255,210,100,.6));
}
.hs-zone.is-discovered .hs-glow {
  opacity: .07 !important;
}

/* Door hover: panel swings open */
.hs-zone[data-zone="door"]:hover .door-panel {
  transform-origin: 574px 418px;
  transform: perspective(400px) rotateY(-22deg);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.hs-zone[data-zone="door"] .door-panel {
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}

/* Paint zone: wall tint on hover */
.hs-zone[data-zone="paint"]:hover .hs-glow {
  fill: #80c8e8;
  opacity: .13 !important;
}

/* Smoke animation */
@keyframes smoke-rise {
  0%   { opacity: 0;    transform: translateY(0) scaleX(1); }
  50%  { opacity: .4;   transform: translateY(-14px) scaleX(1.2); }
  100% { opacity: 0;    transform: translateY(-28px) scaleX(.9); }
}
.smoke-a { animation: smoke-rise 4s ease-in-out infinite; }
.smoke-b { animation: smoke-rise 4s ease-in-out 1.6s infinite; }

/* ── Service popup card ── */
.hs-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.16,1,.3,1);

  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(201,162,75,.4);
  box-shadow: 0 32px 80px -12px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
  padding: 36px 32px 32px;
  width: 320px;
  text-align: center;
  z-index: 40;
}
.hs-card.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.hs-card__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,.07);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: background .2s, color .2s;
}
.hs-card__close:hover { background: rgba(0,0,0,.14); color: var(--navy); }
.hs-card__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(201,162,75,.12);
  border: 1.5px solid rgba(201,162,75,.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
}
.hs-card__icon svg { width: 26px; height: 26px; }
.hs-card__title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.hs-card__desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.hs-card__btn {
  font-size: .88rem;
  padding: 12px 28px;
  display: inline-flex;
  border-radius: 999px;
  text-decoration: none;
}

/* Floating service labels */
.hs-label {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px 6px 9px;
  background: rgba(7,16,30,.8);
  border: 1px solid rgba(201,162,75,.45);
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  backdrop-filter: blur(10px);
  transition: background .2s, border-color .2s, color .2s, transform .25s;
  z-index: 10;
}
.hs-label:hover {
  background: rgba(201,162,75,.18);
  border-color: var(--gold);
  color: var(--gold);
  transform: translate(-50%, -50%) scale(1.06);
}
.hs-label__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-label 2s ease-in-out infinite;
}
@keyframes pulse-label {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,75,.6); }
  60%       { box-shadow: 0 0 0 5px rgba(201,162,75,0); }
}

/* Explorer responsive */
@media (max-width: 760px) {
  .hs-card { width: 280px; padding: 28px 24px 24px; }
  .explorer__progress { gap: 12px; }

  /* Smaller labels on mobile */
  .hs-label {
    font-size: .58rem !important;
    padding: 7px 10px 7px 8px !important;
    min-height: 30px !important;
    gap: 5px;
    letter-spacing: .06em;
  }
  .hs-label__dot { width: 6px; height: 6px; }

  /* Spread out crowded labels (gutter x window especially) */
  .hs-label[data-zone="roof"]   { top: 18% !important; }
  .hs-label[data-zone="gutter"] { top: 38% !important; left: 86% !important; }
  .hs-label[data-zone="window"] { top: 60% !important; left: 82% !important; }
  .hs-label[data-zone="door"]   { top: 70% !important; left: 54% !important; }
  .hs-label[data-zone="paint"]  { top: 52% !important; left: 15% !important; }
  .hs-label[data-zone="fence"]  { top: 82% !important; left: 10% !important; }
  .hs-label[data-zone="deck"]   { top: 96% !important; }
}

/* ── Skip link (a11y) ── */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 10000;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 22px;
  border-radius: 0 0 12px 12px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Header shrink on scroll ── */
.header__inner { transition: height .35s var(--ease); }
.logo img { transition: height .35s var(--ease); }
.header.is-shrunk .header__inner { height: 84px; }
.header.is-shrunk .logo img { height: 64px; }

/* ── WhatsApp floating button ── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 300;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px -6px rgba(37,211,102,.55);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 36px -6px rgba(37,211,102,.65);
}
@media (max-width: 760px) {
  .whatsapp-fab { bottom: 84px; right: 18px; width: 54px; height: 54px; }
}

/* ── Gallery lightbox ── */
.gallery__item { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0;
  z-index: 5000;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__figure {
  max-width: min(1100px, 88vw);
  max-height: 84vh;
  display: flex; flex-direction: column; gap: 14px;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(84vh - 40px);
  object-fit: contain;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}
.lightbox__caption {
  text-align: center;
  color: rgba(255,255,255,.75);
  font-size: .92rem;
}
.lightbox__close {
  position: absolute;
  top: 22px; right: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.14); border-color: var(--gold); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.lightbox__nav:hover { background: rgba(255,255,255,.14); border-color: var(--gold); }
.lightbox__nav--prev { left: 22px; }
.lightbox__nav--next { right: 22px; }
@media (max-width: 760px) {
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; }
}

/* ── Form validation errors ── */
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: #d64545;
  box-shadow: 0 0 0 3px rgba(214,69,69,.12);
}
.form-error {
  display: block;
  color: #d64545;
  font-size: .8rem;
  margin-top: 6px;
  font-weight: 500;
}

/* ── Touch target: house explorer labels ── */
.hs-label {
  padding: 11px 16px 11px 12px;
  min-height: 44px;
}

/* ── Touch target: mobile nav ── */
.mobile-nav a { padding: 12px 0; min-height: 44px; display: flex; align-items: center; }
