/* =========================================================
   V&N JANITOR PRO SERVICES — Premium Stylesheet
   ========================================================= */

/* -----------------------
   1. Design Tokens
----------------------- */
:root {
  --green-900: #073d28;
  --green-800: #0B5E3C;
  --green-700: #0f7048;
  --green-600: #178356;
  --green-50:  #f0f7f3;

  --gold-700: #a88726;
  --gold:     #D4AF37;
  --gold-300: #e8cf7a;
  --gold-50:  #fbf6e6;

  --ink:      #0d1410;
  --ink-700:  #2a3530;
  --ink-500:  #5a665f;
  --ink-300:  #8a958f;
  --line:     #e3e7e4;
  --line-2:   #eef1ee;
  --bg:       #fafaf7;
  --bg-2:     #f4f4ee;
  --paper:    #ffffff;
  --cream:    #f7f5ec;

  --serif: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(11, 94, 60, 0.04), 0 1px 3px rgba(11, 94, 60, 0.06);
  --shadow:    0 8px 24px -8px rgba(11, 94, 60, 0.12), 0 2px 6px rgba(11, 94, 60, 0.04);
  --shadow-lg: 0 30px 60px -20px rgba(11, 94, 60, 0.18), 0 16px 30px -10px rgba(11, 94, 60, 0.08);
  --shadow-gold: 0 12px 30px -10px rgba(212, 175, 55, 0.45);

  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: 180ms;
  --t: 320ms;
  --t-slow: 600ms;
}

/* -----------------------
   2. Reset & Base
----------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

::selection { background: var(--green-800); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -----------------------
   3. Layout helpers
----------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 18px;
}
.eyebrow--gold { color: var(--gold-700); }
.eyebrow--center { color: var(--green-800); }
.eyebrow__line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}

.section-head {
  margin-bottom: clamp(40px, 6vw, 72px);
  max-width: 720px;
}
.section-head--split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: end;
  max-width: none;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head--center .eyebrow { justify-content: center; }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 24px;
}
.section-title em {
  font-style: italic;
  color: var(--green-800);
  font-weight: 500;
}
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--gold); }

.section-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-500);
  margin: 0;
  max-width: 56ch;
}

/* -----------------------
   4. Buttons
----------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              background var(--t) var(--ease),
              color var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--lg { padding: 16px 30px; font-size: 15px; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--green-800);
  color: var(--cream);
  box-shadow: 0 6px 18px -8px rgba(11, 94, 60, .45);
}
.btn--primary:hover {
  background: var(--green-900);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(11, 94, 60, .5);
}
.btn--primary:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: var(--green-900);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--gold-300);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--green-800);
  color: var(--green-800);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 245, 236, 0.3);
}
.btn--ghost-light:hover {
  background: rgba(247, 245, 236, 0.08);
  border-color: var(--gold);
}

/* -----------------------
   5. Announce + Header
----------------------- */
.announce {
  background: var(--green-900);
  color: var(--cream);
  font-size: 13px;
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.announce__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212, 175, 55, .18); }
  50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, .04); }
}
.announce__link {
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast) var(--ease);
}
.announce__link:hover { border-color: var(--gold); }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(11, 94, 60, 0.06);
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 18px -10px rgba(11, 94, 60, .08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-800);
}
.brand__mark {
  width: 56px;
  height: 42px;
  flex-shrink: 0;
  object-fit: contain;
}
/* Footer dark version: invert green to gold/cream */
.brand__mark--light {
  filter: brightness(0) saturate(100%) invert(96%) sepia(8%) saturate(450%) hue-rotate(20deg) brightness(105%) contrast(95%);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand__sub {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 3px;
  font-weight: 500;
}
.brand--light .brand__name { color: var(--cream); }
.brand--light .brand__sub { color: rgba(247, 245, 236, 0.55); }

/* Nav */
.nav {
  display: flex;
  gap: 4px;
}
.nav a {
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: 999px;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav a:hover {
  color: var(--green-800);
  background: var(--green-50);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
}
.header__phone:hover { color: var(--green-800); }
.header__phone svg { color: var(--gold); }

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t-fast) var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px var(--gutter) 28px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  gap: 4px;
}
.mobile-menu a {
  padding: 14px 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu__phone { color: var(--green-800) !important; }
.mobile-menu .btn { margin-top: 16px; }
.mobile-menu.is-open { display: flex; }

/* -----------------------
   6. Hero
----------------------- */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fafaf7 0%, #f4f4ee 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11, 94, 60, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 94, 60, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}
.hero__orb {
  position: absolute;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .5;
  animation: float 18s ease-in-out infinite;
}
.hero__orb--green {
  top: -150px;
  left: -180px;
  background: radial-gradient(circle, rgba(11, 94, 60, .35) 0%, transparent 70%);
}
.hero__orb--gold {
  bottom: -200px;
  right: -160px;
  background: radial-gradient(circle, rgba(212, 175, 55, .25) 0%, transparent 70%);
  animation-delay: -9s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  padding-bottom: clamp(50px, 8vw, 90px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 28px;
}
.hero__eyebrow .eyebrow__line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--green-800);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
}
.hero__title em {
  display: block;
  font-style: italic;
  color: var(--green-800);
  font-weight: 500;
}

.hero__lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
  color: var(--ink-500);
  max-width: 56ch;
  margin: 0 0 36px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  max-width: 540px;
}
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1;
}
.hero__trust span {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* Hero panel */
.hero__panel { position: relative; }
.panel__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.panel__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-800), var(--gold), var(--green-800));
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 8px;
}
.panel__pill {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-800);
  background: var(--green-50);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.panel__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}
.panel__rating svg { color: var(--gold); }

.panel__card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
}
.panel__cities {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.panel__cities li {
  font-size: 14px;
  color: var(--ink-700);
  padding-left: 18px;
  position: relative;
}
.panel__cities li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.panel__divider {
  height: 1px;
  background: var(--line);
  margin: 4px 0 22px;
}
.panel__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.panel__stats > div { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.4;
}

.panel__badge {
  position: absolute;
  bottom: -28px;
  right: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  transform: rotate(-8deg);
  border: 6px solid var(--bg);
}
.panel__badge svg { width: 24px; height: 24px; margin-bottom: 4px; }
.panel__badge span { font-weight: 500; line-height: 1.3; }

/* Trusted strip */
.trusted {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}
.trusted__label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 18px;
}
.trusted__logos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-300);
  letter-spacing: 0.04em;
}
.trusted__logos span {
  white-space: nowrap;
  transition: color var(--t) var(--ease);
}
.trusted__logos span:hover { color: var(--green-800); }

/* -----------------------
   7. Trust section
----------------------- */
.trust { padding: clamp(80px, 11vw, 140px) 0; }
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust__card {
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.trust__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 94, 60, 0.15);
}
.trust__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-50);
  color: var(--green-800);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  position: relative;
}
.trust__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.15));
  pointer-events: none;
}
.trust__icon svg { width: 22px; height: 22px; }
.trust__card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.trust__card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-500);
  margin: 0;
}

/* -----------------------
   8. Services
----------------------- */
.services {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--paper);
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 94, 60, 0.18);
}
.service-card:hover .service-card__pattern {
  transform: scale(1.08) rotate(2deg);
  opacity: .9;
}
.service-card:hover .service-card__num {
  color: var(--gold);
  transform: translateY(-2px);
}

.service-card__visual {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 70%, var(--green-700) 100%);
  overflow: hidden;
}
.service-card__num {
  position: absolute;
  top: 22px;
  left: 26px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  z-index: 2;
  letter-spacing: 0.05em;
  transition: color var(--t) var(--ease), transform var(--t) var(--ease);
}
.service-card__pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 50%);
  opacity: .7;
  transition: transform var(--t-slow) var(--ease), opacity var(--t) var(--ease);
}
.service-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(212, 175, 55, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 70% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 30%, transparent 70%);
}

[data-service="commercial"] .service-card__visual { background: linear-gradient(135deg, #073d28, #0B5E3C); }
[data-service="medical"] .service-card__visual    { background: linear-gradient(135deg, #0a4a32, #0f7048); }
[data-service="flooring"] .service-card__visual   { background: linear-gradient(135deg, #0B5E3C, #178356); }
[data-service="carpet"] .service-card__visual     { background: linear-gradient(135deg, #073d28, #0a4a32); }
[data-service="porter"] .service-card__visual     { background: linear-gradient(135deg, #0a4a32, #0B5E3C); }

.service-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-card__body h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.service-card__body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-500);
  margin: 0 0 18px;
}
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--ink-700);
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.service-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-800);
  letter-spacing: 0.01em;
  transition: gap var(--t-fast) var(--ease), color var(--t) var(--ease);
}
.service-card__link:hover {
  gap: 12px;
  color: var(--gold-700);
}

.service-card--cta {
  background: linear-gradient(135deg, var(--cream) 0%, #f0ecde 100%);
  border-color: var(--gold);
  border-style: dashed;
}
.service-card--cta:hover {
  background: linear-gradient(135deg, #f0ecde 0%, var(--cream) 100%);
}
.service-card--cta .service-card__body { padding: 36px 32px; }

/* -----------------------
   9. About
----------------------- */
.about {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.about__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.about__visual { position: relative; }
.about__frame {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.about__pattern {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(11, 94, 60, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.about__quote {
  position: relative;
  padding: 24px 0 32px;
  border-bottom: 1px solid var(--line);
}
.about__quote svg { color: var(--gold); margin-bottom: 12px; }
.about__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 16px;
}
.about__quote span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.about__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0 0;
}
.about__metrics > div { text-align: center; }
.about__metrics dt {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 8px;
}
.about__metrics dd {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.4;
}

.about__bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  margin: 32px 0 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__bullets h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.about__bullets p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-500);
  margin: 0;
}

/* -----------------------
   10. Process
----------------------- */
.process {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--paper);
}
.process__timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.process__timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, var(--line) 0%, var(--gold) 50%, var(--line) 100%);
  z-index: 0;
}
.process__step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}
.process__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--green-800);
  position: relative;
  z-index: 1;
  transition: transform var(--t) var(--ease), background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.process__step:hover .process__num {
  transform: translateY(-4px);
  background: var(--green-800);
  color: var(--gold);
  border-color: var(--green-800);
  box-shadow: 0 12px 24px -10px rgba(11, 94, 60, 0.4);
}
.process__content h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
}
.process__content p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-500);
  margin: 0 auto;
  max-width: 26ch;
}

/* -----------------------
   11. Gallery (with real SVG illustrations)
----------------------- */
.gallery {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--bg);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--green-900);
  padding: 0;
  border: 0;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item--md { grid-column: span 2; }

.gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.gallery__item:hover img {
  transform: scale(1.06);
}

/* Dark gradient overlay at bottom for caption legibility */
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(7, 20, 16, 0) 40%,
    rgba(7, 20, 16, 0.55) 100%);
  pointer-events: none;
  transition: opacity var(--t) var(--ease);
}
.gallery__item:hover::after { opacity: .85; }

.gallery__caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: white;
  text-align: left;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.gallery__note {
  margin-top: 24px;
  font-size: 12.5px;
  color: var(--ink-300);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 20, 16, 0.92);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 24px;
  gap: 16px;
  animation: fadeIn var(--t) var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox[hidden] { display: none; }
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font-size: 26px;
  display: grid;
  place-items: center;
  transition: background var(--t) var(--ease);
  z-index: 2;
}
.lightbox__close:hover { background: rgba(212, 175, 55, 0.2); }

.lightbox__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: background var(--t) var(--ease);
}
.lightbox__nav:hover { background: rgba(212, 175, 55, 0.2); }

.lightbox__stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
}
.lightbox__img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #1a2520;
}
.lightbox__caption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--gold);
}

/* -----------------------
   12. Promise (replaced testimonials)
----------------------- */
.promise {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--paper);
  position: relative;
}
.promise::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}

.promise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.promise__card {
  position: relative;
  padding: 36px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  overflow: hidden;
}
.promise__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--green-800));
  transition: height var(--t) var(--ease);
}
.promise__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 94, 60, 0.15);
}
.promise__card:hover::before { height: 100%; }

.promise__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.promise__card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.promise__card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-500);
  margin: 0;
}

/* -----------------------
   13. CTA Band
----------------------- */
.cta-band {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--green-900);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 100% at 50% 50%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 100% at 50% 50%, #000 10%, transparent 70%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}
.cta-band__inner > div:first-child p {
  font-size: 16px;
  color: rgba(247, 245, 236, 0.7);
  margin: 0;
  max-width: 50ch;
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* -----------------------
   14. Contact
----------------------- */
.contact {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--bg-2);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact__details {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: grid;
  gap: 18px;
}
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--green-800);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.contact__icon svg { width: 18px; height: 18px; }
.contact__details strong {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact__details a, .contact__details span {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.contact__details a:hover { color: var(--green-800); }

/* -----------------------
   15. Real Map (OpenStreetMap iframe)
----------------------- */
.contact__map {
  margin-top: 24px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact__map iframe {
  display: block;
  filter: saturate(0.9) contrast(1.02);
  transition: filter var(--t) var(--ease);
}
.contact__map:hover iframe {
  filter: saturate(1.05) contrast(1.05);
}

/* Pin labels overlay */
.contact__map-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.map-pin {
  position: absolute;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green-800);
  color: var(--cream);
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(11, 94, 60, 0.35);
  pointer-events: auto;
}
.map-pin::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--green-800);
}
.map-pin--seattle  { top: 35%;  left: 28%; background: var(--gold); color: var(--green-900); }
.map-pin--seattle::after { background: var(--gold); }
.map-pin--bellevue { top: 38%;  left: 50%; }
.map-pin--tacoma   { top: 75%;  left: 22%; }
.map-pin--renton   { top: 56%;  left: 42%; }

/* Animated pulse ring on each pin */
.map-pin::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  transform: translate(-50%, -50%);
  animation: mapPulse 2.8s ease-out infinite;
  z-index: -1;
}
.map-pin--bellevue::before { animation-delay: 0.4s; }
.map-pin--tacoma::before   { animation-delay: 0.8s; }
.map-pin--renton::before   { animation-delay: 1.2s; }

@keyframes mapPulse {
  0%   { width: 8px; height: 8px; opacity: 0.4; }
  100% { width: 60px; height: 60px; opacity: 0; }
}

.contact__map-note {
  margin: 12px 0 0;
  font-size: 12.5px;
  text-align: right;
}
.contact__map-note a {
  color: var(--green-800);
  font-weight: 500;
  transition: color var(--t) var(--ease);
}
.contact__map-note a:hover { color: var(--gold-700); }

/* -----------------------
   16. Form
----------------------- */
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.form::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-800), var(--gold));
}
.form__head { margin-bottom: 28px; }
.form__head h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.form__head p {
  font-size: 13px;
  color: var(--ink-500);
  margin: 0;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form__field:last-of-type { margin-bottom: 0; }
.form__field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.form__field label span[aria-hidden="true"] { color: var(--gold-700); }

.form__field input,
.form__field select,
.form__field textarea {
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  width: 100%;
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: var(--ink-300);
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: 0;
  border-color: var(--green-800);
  box-shadow: 0 0 0 3px rgba(11, 94, 60, 0.1);
}
.form__field textarea { resize: vertical; min-height: 100px; }
.form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%230B5E3C' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  padding-right: 40px;
}

.form__field--check label {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}
.form__field--check input { width: auto; margin-top: 3px; }

.form__success {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--green-50);
  color: var(--green-800);
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.4s var(--ease-out);
}
[hidden] {
  display: none !important;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -----------------------
   17. Footer
----------------------- */
.footer {
  background: #062919;
  color: rgba(247, 245, 236, 0.65);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 0 60px;
}
.footer__brand p {
  margin: 20px 0 24px;
  max-width: 38ch;
  line-height: 1.65;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease);
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--green-900);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: rgba(247, 245, 236, 0.65);
  font-size: 14px;
  transition: color var(--t-fast) var(--ease);
}
.footer__col a:hover { color: var(--gold); }

.footer__bar {
  border-top: 1px solid rgba(247, 245, 236, 0.08);
  padding: 22px 0;
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(247, 245, 236, 0.45);
}
.footer__bar-inner p { margin: 0; }
.footer__creds { letter-spacing: 0.06em; }

/* -----------------------
   18. Reveal animations
----------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------
   19. Responsive
----------------------- */
@media (max-width: 1100px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header__phone { display: none; }
  .services__grid,
  .trust__grid,
  .promise__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process__timeline {
    grid-template-columns: repeat(5, 220px);
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
  }
  .process__step { scroll-snap-align: start; }
  .process__timeline::before { display: none; }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero__panel { max-width: 480px; }
  .panel__badge { display: none; }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .section-head--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .cta-band__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery__item--lg,
  .gallery__item--md {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  .container { padding-left: 20px; padding-right: 20px; }
  html { scroll-padding-top: 70px; }
  .announce span:not(.announce__dot) { display: none; }
  .announce__inner { padding: 8px 0; }

  .hero { padding-top: 50px; }
  .hero__title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__trust {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .services__grid,
  .trust__grid,
  .promise__grid,
  .about__bullets,
  .form__row {
    grid-template-columns: 1fr;
  }
  .about__metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about__metrics > div { text-align: left; }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery__item--lg,
  .gallery__item--md {
    grid-column: span 1;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .footer__bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .trusted__logos { gap: 18px; font-size: 14px; }

  .brand__sub { display: none; }
  .footer__brand {

    display: flex;
    flex-direction: column;

    align-items: center;

    text-align: center;
  }

  .map-pin { font-size: 9px; padding: 4px 8px; }
}
