/*
 * Aventador Cleaning
 * Premium Luxury Design System
 * Toronto's Premier Home Cleaning Service
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ==========================================
   DESIGN TOKENS
   ========================================== */

:root {
  --black:          #0A0A0A;
  --black-soft:     #141414;
  --black-card:     #1C1C1C;
  --green:          #1B4332;
  --green-mid:      #2D6A4F;
  --green-hover:    #40916C;
  --gold:           #C9A96E;
  --gold-light:     #DDBB84;
  --white:          #FFFFFF;
  --off-white:      #FAFAF8;
  --cream:          #F5F1EB;
  --cream-dark:     #E8E3D9;
  --gray-100:       #F3F4F6;
  --gray-200:       #E5E7EB;
  --gray-400:       #9CA3AF;
  --gray-500:       #6B7280;
  --gray-700:       #374151;
  --gray-900:       #111827;

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Inter', system-ui, -apple-system, sans-serif;

  --max-w:          1320px;
  --pad-x:          clamp(20px, 5vw, 80px);
  --section-py:     clamp(80px, 10vw, 130px);

  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:       cubic-bezier(0.0, 0.0, 0.2, 1);
  --shadow-sm:      0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:      0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg:      0 24px 70px rgba(0,0,0,0.16);
  --shadow-green:   0 8px 30px rgba(27,67,50,0.32);
}

/* ==========================================
   RESET
   ========================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ==========================================
   LAYOUT
   ========================================== */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section { padding: var(--section-py) 0; }
.section--dark  { background: var(--black);   color: var(--off-white); }
.section--green { background: var(--green);   color: var(--white); }
.section--cream { background: var(--cream); }
.section--off-white { background: var(--off-white); }

/* ==========================================
   TYPOGRAPHY
   ========================================== */

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 16px;
}
.eyebrow--white { color: rgba(255,255,255,0.55); }
.eyebrow--gold  { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
}

.headline-xl {
  font-size: clamp(46px, 6.5vw, 92px);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.06;
}

.headline-lg {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.headline-md {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.2;
}

.headline-sm {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
}

.subheadline {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-500);
  max-width: 640px;
}
.subheadline--white { color: rgba(255,255,255,0.65); }

.section-header         { margin-bottom: 72px; }
.section-header--center { text-align: center; }
.section-header--center .subheadline { margin: 0 auto; }

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--green);
  margin: 20px 0;
}
.section-divider--center { margin: 20px auto; }
.section-divider--gold   { background: var(--gold); }

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--black-card);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn--nav {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  padding: 11px 24px;
  font-size: 11px;
}
.btn--nav:hover { background: var(--green-mid); }

.btn--lg { padding: 20px 48px; font-size: 13px; }

/* ==========================================
   NAVIGATION
   ========================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease);
}

.nav--transparent { background: transparent; }

.nav--scrolled {
  background: var(--white);
  box-shadow: 0 1px 30px rgba(0,0,0,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 80px;
}

.nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav__logo-mark {
  flex-shrink: 0;
  color: var(--white);
  transition: color 0.3s ease;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav__logo-main {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  transition: color 0.3s ease;
}
.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.nav--scrolled .nav__logo-mark { color: var(--green); }
.nav--scrolled .nav__logo-main { color: var(--black); }
.nav--scrolled .nav__logo-sub  { color: var(--gray-500); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__links > li > a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.25s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.nav__links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1px;
  background: currentColor;
  transition: right 0.3s var(--ease);
}
.nav__links > li > a:hover::after { right: 0; }

.nav--scrolled .nav__links > li > a { color: var(--gray-700); }
.nav--scrolled .nav__links > li > a:hover { color: var(--green); }

/* Dropdown */
.nav__item--dropdown { position: relative; }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: -20px;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
}
.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 11px 24px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  transition: all 0.2s ease;
}
.nav__dropdown a:hover {
  background: var(--cream);
  color: var(--green);
  padding-left: 32px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}
.nav--scrolled .nav__hamburger span { background: var(--black); }

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 40px var(--pad-x) 60px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  z-index: 999;
  border-top: 1px solid var(--gray-200);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--black);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  transition: color 0.2s ease;
}
.nav__mobile a:hover { color: var(--green); }
.nav__mobile .btn {
  margin-top: 32px;
  align-self: flex-start;
}

/* ==========================================
   HERO
   ========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}
.hero__bg img.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.62) 50%,
    rgba(8,8,8,0.28) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 100px;
  max-width: 800px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.015em;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
}
.hero__trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 1;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.9; }
}

/* ==========================================
   TRUST STRIP
   ========================================== */

.trust-strip {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s ease;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.02); }

.trust-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(27,67,50,0.25);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.trust-item__icon svg { width: 20px; height: 20px; }

.trust-item__text h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3px;
}
.trust-item__text p {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.45;
}

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

.services-section {
  padding: 0;
}

.services-header {
  padding: var(--section-py) 0 72px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--gray-200);
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--black);
}
.service-card--featured {
  grid-column: span 2;
  aspect-ratio: 21/9;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .service-card__img { transform: scale(1.05); }

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.45) 45%,
    rgba(8,8,8,0.08) 100%
  );
  transition: background 0.4s ease;
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(
    to top,
    rgba(27,67,50,0.94) 0%,
    rgba(27,67,50,0.55) 45%,
    rgba(27,67,50,0.15) 100%
  );
}

.service-card__badge {
  position: absolute;
  top: 28px;
  left: 28px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 5px 14px;
}

.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 36px 40px;
}

.service-card__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  display: block;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s var(--ease);
}
.service-card:hover .service-card__desc {
  opacity: 1;
  transform: translateY(0);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s var(--ease) 0.05s;
}
.service-card:hover .service-card__link {
  opacity: 1;
  transform: translateY(0);
}
.service-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.service-card__link:hover svg { transform: translateX(4px); }

/* ==========================================
   WHY AVENTADOR
   ========================================== */

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why__visual { position: relative; }

.why__img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.why__img-accent {
  position: absolute;
  bottom: -44px;
  right: -44px;
  width: 54%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid var(--off-white);
  box-shadow: var(--shadow-lg);
}

.why__stat-box {
  position: absolute;
  top: 40px;
  left: -20px;
  background: var(--green);
  padding: 24px 28px;
  box-shadow: var(--shadow-green);
}
.why__stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: block;
}
.why__stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  display: block;
}

.why__content { padding-top: 12px; }

.why__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.why__item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}
.why__item:first-child { border-top: 1px solid var(--gray-200); }

.why__item-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1.1;
  min-width: 36px;
  user-select: none;
  transition: color 0.3s ease;
}
.why__item:hover .why__item-num { color: var(--green); opacity: 0.5; }

.why__item-content h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}
.why__item-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ==========================================
   PROCESS
   ========================================== */

.process {
  background: var(--black);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.07);
  margin-top: 72px;
}

.process-step {
  padding: 56px 44px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: background 0.35s ease;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(27,67,50,0.08); }

.process-step__bg-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
}

.process-step__icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201,169,110,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 28px;
  transition: all 0.3s ease;
}
.process-step:hover .process-step__icon {
  background: rgba(201,169,110,0.08);
  border-color: var(--gold);
}
.process-step__icon svg { width: 24px; height: 24px; }

.process-step__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}

.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials { background: var(--cream); }

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

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-left: 2px solid var(--green);
  transition: all 0.35s var(--ease);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  user-select: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: var(--gold);
}
.testimonial-card__stars svg { width: 14px; height: 14px; fill: currentColor; }

.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 28px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--green);
}

.testimonial-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  display: block;
}
.testimonial-card__meta {
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 0.05em;
}

/* ==========================================
   FAQ
   ========================================== */

.faq__list {
  max-width: 860px;
  margin: 64px auto 0;
}

.faq-item { border-bottom: 1px solid var(--gray-200); }

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  background: none;
}

.faq-item__q-text {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
  transition: color 0.2s ease;
  text-align: left;
}
.faq-item__question:hover .faq-item__q-text { color: var(--green); }

.faq-item__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all 0.3s ease;
}
.faq-item.is-open .faq-item__icon {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-item__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s var(--ease);
}
.faq-item.is-open .faq-item__answer { height: auto; }
.faq-item__answer-inner { padding: 0 0 28px; }
.faq-item__answer p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 700px;
}

/* ==========================================
   FINAL CTA
   ========================================== */

.cta-final {
  background: var(--green);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.12;
}
.cta-final h2 em { font-style: italic; }

.cta-final p {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 48px;
  line-height: 1.75;
}

.cta-final__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: var(--black);
  padding: 88px 0 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__brand-tag {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
  display: block;
}
.footer__brand-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.36);
  max-width: 280px;
  margin-bottom: 28px;
}

.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: all 0.25s ease;
}
.footer__social-link:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}
.footer__social-link svg { width: 15px; height: 15px; }

.footer__col-heading {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.36);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.36);
  margin-bottom: 16px;
  line-height: 1.5;
  align-items: flex-start;
}
.footer__contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer__contact-icon svg { width: 14px; height: 14px; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.footer__legal a:hover { color: rgba(255,255,255,0.5); }

/* ==========================================
   FORM STYLES
   ========================================== */

.form-field { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,67,50,0.08);
}
.form-textarea { height: 130px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ==========================================
   PAGE HERO (Interior Pages)
   ========================================== */

.page-hero {
  background: var(--black);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.page-hero__content { position: relative; z-index: 1; }

.page-hero__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-hero p {
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255,255,255,0.58);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease;
}
.breadcrumb a:hover { color: rgba(255,255,255,0.6); }
.breadcrumb__sep { color: rgba(255,255,255,0.15); }

/* ==========================================
   STATS ROW
   ========================================== */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gray-200);
  gap: 1px;
  border: 1px solid var(--gray-200);
}
.stat-item {
  background: var(--white);
  padding: 52px 40px;
  text-align: center;
  transition: background 0.3s ease;
}
.stat-item:hover { background: var(--cream); }
.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.stat-item__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ==========================================
   VALUES GRID
   ========================================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--gray-200);
  margin-top: 64px;
}
.value-card {
  background: var(--off-white);
  padding: 44px 36px;
  transition: background 0.3s ease;
}
.value-card:hover { background: var(--cream); }
.value-card__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: var(--green);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}
.value-card p { font-size: 14px; color: var(--gray-500); line-height: 1.75; }

/* ==========================================
   AREAS GRID
   ========================================== */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 2px;
  background: var(--gray-200);
  margin-top: 64px;
}
.area-card {
  background: var(--off-white);
  padding: 32px 28px;
  border-left: 2px solid transparent;
  transition: all 0.3s var(--ease);
}
.area-card:hover {
  border-left-color: var(--green);
  background: var(--white);
  transform: translateX(3px);
}
.area-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
}
.area-card p { font-size: 12px; color: var(--gray-500); letter-spacing: 0.05em; }

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact__info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--gray-200);
}
.contact__info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.contact__info-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.contact__info-icon svg { width: 20px; height: 20px; }
.contact__info-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-bottom: 4px;
}
.contact__info-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
}

.quote-form {
  background: var(--off-white);
  padding: 52px;
  border-top: 3px solid var(--green);
}
.quote-form__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}
.quote-form__sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 36px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.form-privacy {
  font-size: 11px;
  color: var(--gray-400);
  line-height: 1.55;
  max-width: 260px;
}

/* ==========================================
   FEATURE SECTION (Service pages)
   ========================================== */

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split--reverse { direction: rtl; }
.feature-split--reverse > * { direction: ltr; }

.feature-split__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.feature-split__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.feature-split__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-split__item-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 2px;
}
.feature-split__item-icon svg { width: 12px; height: 12px; }
.feature-split__item p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ==========================================
   FLOATING CTA (Mobile)
   ========================================== */

.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 16px 20px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.floating-cta a { width: 100%; justify-content: center; }

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }

/* ==========================================
   MEDIA QUERIES
   ========================================== */

@media (max-width: 1100px) {
  .why__inner { gap: 52px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .contact__layout { gap: 52px; }
}

@media (max-width: 960px) {
  .nav__links, .btn--nav { display: none; }
  .nav__hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; background: none; gap: 3px; }
  .service-card--featured { grid-column: span 1; aspect-ratio: 4/3; }

  .why__inner { grid-template-columns: 1fr; }
  .why__img-accent { display: none; }
  .why__stat-box { left: 16px; }

  .process__grid { grid-template-columns: 1fr; }
  .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .process-step:last-child { border-bottom: none; }

  .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }

  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; background: none; gap: 3px; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split--reverse { direction: ltr; }

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

@media (max-width: 640px) {
  :root {
    --section-py: 72px;
    --pad-x: 20px;
  }

  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__trust { gap: 18px; }

  .trust-strip__inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-item:last-child { border-bottom: none; }

  .service-card__content { padding: 24px; }
  .service-card__desc { opacity: 1; transform: none; }
  .service-card__link { opacity: 1; transform: none; }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 36px 20px; }

  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 20px; }

  .cta-final__btns { flex-direction: column; align-items: center; }
  .cta-final__btns .btn { width: 100%; justify-content: center; }

  .floating-cta { display: block; }

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

  .process-step { padding: 36px 24px; }
  .why__stat-box { display: none; }
}
