/* ============================================================
   Levitations Cleansed & Purified — Stylesheet v2
   Font: Inter (matches original site)
   Palette: sage greens from logo + original brand
============================================================ */

:root {
  /* Brand greens (from logo + original site) */
  --sage-900: #3a4f38;
  --sage-800: #4a6545;
  --sage-700: #626E61;   /* original site primary */
  --sage-600: #7a8f77;
  --sage-500: #93ae8d;   /* original site accent */
  --sage-400: #aec4a9;
  --sage-300: #c9d8c4;
  --sage-200: #e0e8dc;
  --sage-100: #eff3ec;

  /* Neutrals */
  --cream-50:  #fbfaf6;
  --cream-100: #f5f2e9;
  --cream-200: #ece7d6;
  --ink-900: #171a16;
  --ink-800: #252a23;
  --ink-700: #3a4236;
  --ink-500: #5f6b5b;
  --ink-400: #8a937f;
  --ink-300: #b5bbad;

  /* Accents — all pulled from the sage logo palette (no gold, no warm tones) */
  --accent-on-dark: #c9d8c4;    /* light sage for text/icons on dark bg */
  --accent-mid:     #93ae8d;    /* mid sage for subtle highlights */
  --accent-soft:    #e0e8dc;    /* pale sage for chips/pills */

  /* Legacy alias to avoid breaking downstream selectors — all map to sage */
  --gold-500: #93ae8d;
  --gold-400: #aec4a9;
  --gold-300: #c9d8c4;
  --white: #ffffff;

  /* Effects */
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(23,26,22,.06);
  --shadow:    0 12px 32px rgba(23,26,22,.12);
  --shadow-lg: 0 24px 60px rgba(23,26,22,.20);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-700);
  background: var(--cream-50);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { padding: 0; list-style: none; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--ink-900);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); font-weight: 600; letter-spacing: 0; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0; }
em { font-style: italic; color: var(--sage-700); }

.container { width: min(1240px, 92%); margin: 0 auto; }
.section { padding: clamp(70px, 9vw, 120px) 0; position: relative; }

.section-head { max-width: 740px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head p { color: var(--ink-500); font-size: 1.05rem; margin-top: 14px; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head.light h2, .section-head.light p, .section-head.light .eyebrow { color: var(--white); }
.section-head.light p { color: rgba(251,250,246,.82); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-700);
  font-weight: 700;
  margin-bottom: 14px;
  padding: 6px 14px;
  background: var(--sage-100);
  border-radius: 100px;
}
.section-head.light .eyebrow { background: rgba(147,174,141,.18); color: var(--gold-300); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .94rem;
  letter-spacing: .01em;
  transition: all .25s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .12em;
}
.btn-primary {
  background: var(--sage-700);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(98,110,97,.35);
}
.btn-primary:hover {
  background: var(--sage-900);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(98,110,97,.45);
}
.btn-gold {
  background: var(--white);
  color: var(--sage-900);
  box-shadow: 0 8px 20px rgba(255,255,255,.2);
}
.btn-gold:hover { background: var(--cream-100); transform: translateY(-2px); }
.btn-ghost {
  border-color: var(--sage-700);
  color: var(--sage-700);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--sage-700);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--ink-900);
}
.btn-white:hover { background: var(--cream-100); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn .arrow {
  display: inline-block;
  transition: transform .25s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ==================== Top bar ==================== */
.topbar {
  background: var(--ink-900);
  color: var(--cream-100);
  font-size: .82rem;
  padding: 10px 0;
}
.topbar-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.topbar-group { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: .85;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
a.topbar-item:hover { opacity: 1; color: var(--sage-400); }
.topbar-item svg { width: 14px; height: 14px; stroke: var(--sage-400); }
.topbar-social { gap: 12px; display: flex; }
.topbar-social a {
  color: var(--cream-100);
  opacity: .7;
  transition: opacity .2s;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
}
.topbar-social a:hover { opacity: 1; color: var(--sage-400); }
.topbar-social svg { width: 15px; height: 15px; }
@media (max-width: 860px) {
  .topbar-inner { justify-content: center; gap: 14px; }
  .topbar-item:nth-child(3) { display: none; }
}

/* ==================== Nav ==================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--sage-200);
  transition: all .3s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(23,26,22,.08);
  border-bottom-color: transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 30px;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 62px; width: auto; transition: height .3s var(--ease); }
.nav.scrolled .nav-logo img { height: 52px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
}
.nav-menu > a {
  padding: 10px 14px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-800);
  position: relative;
}
.nav-menu > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--sage-700);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
}
.nav-menu > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-menu > a:hover { color: var(--sage-700); }
.nav-menu > a.active { color: var(--sage-700); }
.nav-menu > a.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 12px;
  background: var(--sage-700);
  color: var(--white) !important;
  padding: 13px 24px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: .82rem !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(98,110,97,.3);
  transition: all .25s var(--ease);
}
.nav-cta:hover { background: var(--sage-900); transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::before {
  content: "▾";
  font-size: .65em;
  opacity: .7;
  margin-left: 4px;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  min-width: 240px;
  padding: 10px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sage-200);
  opacity: 0;
  visibility: hidden;
  transition: all .2s var(--ease);
  z-index: 100;
}
.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown:focus-within > .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--ink-700);
  font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--sage-100); color: var(--sage-800); }

.nav-toggle { display: none; width: 44px; height: 44px; position: relative; }
.nav-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--ink-900);
  transition: .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu > a {
    padding: 16px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--sage-100);
  }
  .nav-dropdown > a::before { display: none; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    background: var(--cream-100);
    margin: 6px 0;
    padding: 6px;
  }
  .nav-cta {
    margin: 20px 0 0 !important;
    text-align: center;
    padding: 16px !important;
  }
}

/* ==================== Hero ==================== */
.hero {
  position: relative;
  min-height: 720px;
  color: var(--white);
  overflow: hidden;
  background: var(--ink-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.62) 50%, rgba(0,0,0,.4) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 720px;
}
.hero-text .eyebrow {
  background: rgba(147,174,141,.18);
  color: var(--gold-300);
  border: 1px solid rgba(147,174,141,.3);
}
.hero-text h1 {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 22px;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--white);
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: rgba(251,250,246,.82);
  font-weight: 400;
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero-cta .btn-ghost {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.hero-cta .btn-ghost:hover {
  background: var(--white);
  color: var(--sage-900);
}
.hero-trust {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
  max-width: 560px;
}
.hero-trust > div { display: flex; flex-direction: column; }
.hero-trust strong {
  font-size: 2.2rem;
  color: var(--gold-300);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-trust span {
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(251,250,246,.7);
  margin-top: 8px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}
.hero-card {
  position: absolute;
  background: var(--white);
  color: var(--ink-900);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 280px;
  animation: float 5s ease-in-out infinite;
}
.hero-card-1 { top: 20%; right: 0; }
.hero-card-2 { bottom: 15%; left: 0; animation-delay: -2s; }
.hero-card-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--sage-100);
  color: var(--sage-700);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}
.hero-card strong { display: block; font-size: 1rem; color: var(--ink-900); margin-bottom: 2px; }
.hero-card small { color: var(--ink-500); font-size: .82rem; }

.hero-img-wrap {
  position: relative;
  height: 100%;
  min-height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 8px rgba(147,174,141,.2);
  pointer-events: none;
  z-index: 1;
}

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; min-height: auto; padding-top: 70px; }
  .hero-visual { min-height: 480px; }
  .hero-img-wrap { min-height: 480px; }
}
@media (max-width: 560px) {
  .hero-trust { gap: 20px; }
  .hero-trust strong { font-size: 1.7rem; }
  .hero-card { max-width: 220px; padding: 16px 18px; }
  .hero-card-icon { width: 40px; height: 40px; font-size: 1.1rem; }
}

/* ==================== Feature strip (under hero) ==================== */
.feature-strip {
  background: var(--white);
  padding: 0;
  margin-top: -60px;
  position: relative;
  z-index: 3;
}
.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-strip-item {
  padding: 36px 28px;
  border-right: 1px solid var(--sage-100);
  display: flex;
  gap: 18px;
  align-items: center;
  transition: background .25s;
}
.feature-strip-item:last-child { border-right: 0; }
.feature-strip-item:hover { background: var(--cream-50); }
.feature-strip-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: var(--sage-100);
  color: var(--sage-700);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  transition: all .25s;
}
.feature-strip-item:hover .feature-strip-icon { background: var(--sage-700); color: var(--white); }
.feature-strip-item strong { display: block; color: var(--ink-900); font-weight: 700; margin-bottom: 2px; font-size: 1rem; }
.feature-strip-item span { color: var(--ink-500); font-size: .85rem; line-height: 1.4; }

@media (max-width: 900px) {
  .feature-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-strip-item:nth-child(2) { border-right: 0; }
  .feature-strip-item:nth-child(1), .feature-strip-item:nth-child(2) { border-bottom: 1px solid var(--sage-100); }
}
@media (max-width: 560px) {
  .feature-strip { margin-top: -30px; }
  .feature-strip-inner { grid-template-columns: 1fr; }
  .feature-strip-item { border-right: 0 !important; border-bottom: 1px solid var(--sage-100); }
  .feature-strip-item:last-child { border-bottom: 0; }
}

/* ==================== Intro / About split ==================== */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.intro-media { position: relative; }
.intro-media-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.intro-media-main img { width: 100%; height: 100%; object-fit: cover; }
.intro-media-accent {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 55%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 8px solid var(--cream-50);
  box-shadow: var(--shadow-lg);
}
.intro-media-accent img { width: 100%; height: 100%; object-fit: cover; }
.intro-media-badge {
  position: absolute;
  top: 30px; left: -30px;
  background: var(--sage-700);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 3;
  text-align: left;
}
.intro-media-badge strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.intro-media-badge span {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .9;
  margin-top: 4px;
  display: block;
  font-weight: 600;
}

.intro-text h2 { margin-bottom: 20px; }
.intro-text .lead {
  font-size: 1.1rem;
  color: var(--ink-700);
  margin-bottom: 20px;
  line-height: 1.7;
}
.intro-text p { color: var(--ink-500); margin-bottom: 20px; }
.intro-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}
.intro-points li {
  padding: 14px 18px 14px 46px;
  position: relative;
  background: var(--cream-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage-700);
  color: var(--ink-900);
  font-weight: 600;
  font-size: .94rem;
}
.intro-points li::before {
  content: "✓";
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: var(--sage-700);
  color: var(--white);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

@media (max-width: 960px) {
  .intro-split { grid-template-columns: 1fr !important; gap: 40px !important; align-items: stretch !important; }
  .intro-media { max-width: 480px; margin: 0 auto; width: 100%; order: 2 !important; }
  .intro-text  { order: 1 !important; }
  .intro-points { grid-template-columns: 1fr; }
}

/* ==================== Service cards (photo-backed) ==================== */
.services { background: var(--cream-50); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.service-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .4s var(--ease);
  cursor: default;
}
/* Only anchor-wrapped service cards (Residential/Commercial split) are clickable */
a.service-card { cursor: pointer; }
a.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
/* Static article service cards still get a subtle visual hover, but no click affordance */
article.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card-img {
  position: absolute;
  inset: 0;
  transition: transform .8s var(--ease);
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-card:hover .service-card-img { transform: scale(1.08); }
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(23,26,22,.55) 65%, rgba(23,26,22,.9) 100%);
  transition: background .3s;
}
.service-card:hover::after {
  background: linear-gradient(180deg, rgba(58,79,56,.2) 0%, rgba(23,26,22,.65) 55%, rgba(23,26,22,.95) 100%);
}
.service-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 28px;
  color: var(--white);
  z-index: 2;
}
.service-card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px; height: 48px;
  background: var(--sage-700);
  color: var(--white);
  border-radius: 10px;
  font-size: 1.3rem;
  margin-bottom: 14px;
  transition: background .25s;
}
.service-card:hover .service-card-icon { background: var(--gold-500); color: var(--ink-900); }
.service-card h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.service-card p {
  color: rgba(255,255,255,.85);
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s var(--ease), opacity .3s var(--ease), margin .4s var(--ease);
}
.service-card:hover p {
  max-height: 200px;
  opacity: 1;
  margin-top: 0;
}
.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-300);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s var(--ease);
}
.service-card:hover .service-link { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid, .service-grid.cols-2 { grid-template-columns: 1fr; } .service-card { aspect-ratio: 5/4; } }

/* ==================== Why Us / dark band ==================== */
.why {
  background:
    linear-gradient(135deg, rgba(58,79,56,.92), rgba(23,26,22,.92)),
    url('assets/images/lysa-new-5.jpg') center/cover fixed;
  color: var(--cream-100);
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.why-item {
  padding: 40px 28px;
  background: rgba(23,26,22,.35);
  transition: all .3s var(--ease);
  position: relative;
}
.why-item:hover {
  background: var(--sage-700);
  transform: scale(1.02);
  z-index: 2;
}
.why-num {
  font-size: 2.8rem;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  transition: color .3s;
}
.why-item:hover .why-num { color: var(--white); }
.why-item h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; font-weight: 700; }
.why-item p { color: rgba(251,250,246,.75); font-size: .9rem; margin: 0; line-height: 1.55; }
.why-item:hover p { color: rgba(255,255,255,.9); }

@media (max-width: 1000px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* ==================== Team spotlight ==================== */
.team-section {
  background: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.team-portrait {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}
.team-portrait-glow {
  position: absolute;
  inset: -40px -60px;
  background:
    radial-gradient(ellipse at center, rgba(147,174,141,.35) 0%, transparent 70%),
    radial-gradient(ellipse at 30% 30%, rgba(147,174,141,.2) 0%, transparent 60%);
  filter: blur(20px);
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  0%   { transform: scale(1);   opacity: .85; }
  100% { transform: scale(1.08); opacity: 1; }
}
.team-portrait-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(23,26,22,.22);
  z-index: 1;
  aspect-ratio: 4/5;
  max-width: 520px;
  margin: 0 auto;
}
.team-portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 6px rgba(147,174,141,.4);
  pointer-events: none;
  z-index: 2;
}
.team-portrait-frame::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1.5px solid var(--sage-500);
  border-radius: calc(var(--radius-xl) + 14px);
  pointer-events: none;
  opacity: .6;
  z-index: -1;
}
.team-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
}
.team-portrait-frame:hover img { transform: scale(1.05); }
.team-portrait-caption {
  text-align: center;
  color: var(--sage-800);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}
@media (max-width: 560px) {
  .team-portrait { padding: 20px 10px; }
  .team-portrait-frame { max-width: 100%; }
  .team-portrait-glow { inset: -20px -30px; }
  .team-portrait-caption { font-size: .72rem; letter-spacing: .1em; margin-top: 22px; }
}

/* ==================== Video ==================== */
.video-section { background: var(--cream-100); }
.video-frame {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink-900);
  position: relative;
}
.video-frame video { width: 100%; display: block; }

/* ==================== Testimonials ==================== */
.testimonials { background: var(--cream-100); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  padding: 36px 32px 32px;
  border-radius: var(--radius-lg);
  margin: 0;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
  border-top: 4px solid var(--sage-700);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-top-color: var(--gold-500); }
.testimonial::before {
  content: "“";
  position: absolute;
  top: 10px; right: 24px;
  font-size: 6rem;
  color: var(--sage-200);
  line-height: 1;
  font-weight: 900;
  font-family: Georgia, serif;
}
.stars { color: #FFC107; font-size: 1rem; letter-spacing: .14em; margin-bottom: 16px; }
.testimonial blockquote {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-700);
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.testimonial figcaption {
  font-size: .88rem;
  color: var(--sage-800);
  font-weight: 700;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--sage-100);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sage-700);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: 0;
  flex-shrink: 0;
}

@media (max-width: 900px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ==================== Page header (inner pages) ==================== */
.page-header {
  background:
    linear-gradient(120deg, rgba(23,26,22,.86) 0%, rgba(58,79,56,.78) 100%),
    url('assets/images/lysa-new-5.jpg') center/cover;
  color: var(--cream-100);
  padding: 110px 0 90px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Video-backed page header variant */
.page-header.has-video {
  background: #0a0f09;
}
.page-header-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.page-header.has-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}
.page-header.has-video .container { position: relative; z-index: 2; }
.page-header.has-video {
  padding: 140px 0 120px;
}
@media (max-width: 560px) {
  .page-header.has-video { padding: 90px 0 80px; }
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  margin-bottom: 16px;
}
.page-header p {
  color: rgba(251,250,246,.85);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 18px;
  font-weight: 600;
}
.breadcrumb a { color: var(--gold-300); opacity: .85; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { opacity: .5; }

/* ==================== Pricing ==================== */
.pricing { background: var(--cream-100); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pricing-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sage-200);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-700), var(--sage-500));
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--sage-500);
}
.pricing-card h3 {
  font-size: 1.4rem;
  color: var(--sage-900);
  margin-bottom: 4px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.pricing-card .pricing-subtitle {
  color: var(--ink-500);
  font-size: .88rem;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--sage-100);
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--sage-200);
}
.pricing-row:last-child { border-bottom: 0; }
.pricing-row .label { color: var(--ink-700); font-weight: 500; }
.pricing-row .price {
  font-size: 1.5rem;
  color: var(--sage-700);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pricing-row .price small { font-size: .72rem; color: var(--ink-400); font-weight: 500; margin-left: 2px; }
.pricing-note {
  text-align: center;
  color: var(--ink-500);
  font-size: .95rem;
  margin-top: 40px;
}

@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ==================== Specializations ==================== */
.spec-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 90px;
}
.spec-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.spec-img img { width: 100%; height: 100%; object-fit: cover; }
.spec-features {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}
.spec-features li {
  padding: 16px 22px 16px 56px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage-700);
  box-shadow: var(--shadow-sm);
  position: relative;
  font-weight: 600;
  color: var(--ink-900);
}
.spec-features li::before {
  content: "✓";
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  background: var(--sage-700);
  color: var(--white);
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spec-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sage-200);
  text-align: center;
  transition: all .3s var(--ease);
}
.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--sage-500);
}
.spec-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: var(--sage-100);
  color: var(--sage-700);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  transition: all .3s var(--ease);
}
.spec-card:hover .spec-icon {
  background: var(--sage-700);
  color: var(--white);
  transform: scale(1.05) rotate(-5deg);
}
.spec-card h3 {
  margin-bottom: 8px;
  color: var(--ink-900);
  font-size: 1.2rem;
  font-weight: 700;
}
.spec-card p {
  color: var(--ink-500);
  font-size: .94rem;
  margin: 0;
}

@media (max-width: 900px) {
  .spec-intro { grid-template-columns: 1fr; gap: 50px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) { .spec-grid { grid-template-columns: 1fr; } }

/* ==================== Hire cards ==================== */
.hire-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.hire-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sage-200);
  display: flex;
  gap: 24px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.hire-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--sage-700), var(--sage-500));
}
.hire-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.hire-icon {
  width: 64px; height: 64px;
  flex-shrink: 0;
  background: var(--sage-100);
  color: var(--sage-700);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  transition: all .25s;
}
.hire-card:hover .hire-icon { background: var(--sage-700); color: var(--white); transform: scale(1.05); }
.hire-card h3 {
  font-size: 1.3rem;
  color: var(--sage-900);
  margin-bottom: 8px;
  font-weight: 700;
}
.hire-card p { color: var(--ink-500); margin: 0; font-size: .98rem; line-height: 1.6; }

@media (max-width: 780px) { .hire-grid { grid-template-columns: 1fr; } .hire-card { padding: 28px; gap: 18px; } }

/* ==================== Coverage ==================== */
.coverage-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.coverage-visual {
  background: linear-gradient(135deg, var(--sage-100), var(--cream-100));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.coverage-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 40% 50%, var(--sage-500) 0, transparent 3%),
    radial-gradient(circle at 50% 40%, var(--sage-700) 0, transparent 2.5%),
    radial-gradient(circle at 55% 60%, var(--sage-500) 0, transparent 2.5%),
    radial-gradient(circle at 35% 60%, var(--sage-500) 0, transparent 2.5%),
    radial-gradient(circle at 60% 45%, var(--sage-500) 0, transparent 2.5%),
    radial-gradient(circle at 45% 65%, var(--sage-500) 0, transparent 2.5%);
  opacity: .5;
}
.coverage-visual-radius {
  position: relative;
  z-index: 2;
  width: 70%;
  aspect-ratio: 1;
  border: 2px dashed var(--sage-700);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--sage-900);
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.coverage-visual-radius strong {
  font-size: 2.8rem;
  line-height: 1;
  display: block;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.coverage-visual-radius span {
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-700);
  margin-top: 6px;
  font-weight: 600;
  text-align: center;
}
.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}
.area-list li {
  padding: 16px 20px 16px 42px;
  background: var(--white);
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--ink-900);
  position: relative;
  transition: all .25s;
}
.area-list li::before {
  content: "";
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  background: var(--sage-700);
  border-radius: 50%;
}
.area-list li:hover {
  border-color: var(--sage-500);
  transform: translateX(4px);
  background: var(--sage-100);
}

@media (max-width: 900px) {
  .coverage-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .area-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) { .area-list { grid-template-columns: 1fr; } }

/* ==================== Blog index ==================== */
.blog-index { background: var(--cream-50); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sage-200);
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.blog-card .blog-img {
  aspect-ratio: 5/3;
  overflow: hidden;
  display: block;
}
.blog-card .blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-card .blog-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.blog-meta {
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-700);
  font-weight: 700;
}
.blog-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink-900);
  margin: 0;
  letter-spacing: -0.01em;
}
.blog-card h3 a:hover { color: var(--sage-700); }
.blog-card p {
  color: var(--ink-500);
  font-size: .95rem;
  margin: 0;
  flex: 1;
}
.blog-card .blog-link {
  color: var(--sage-700);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 4px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.blog-card .blog-link:hover { color: var(--sage-900); gap: 10px; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==================== Blog article ==================== */
.article-section { background: var(--cream-50); padding-top: 70px; padding-bottom: 90px; }
.article-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  padding: clamp(36px, 6vw, 70px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.article-wrap .blog-meta { margin-bottom: 14px; display: block; }
.article-wrap h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 26px;
}
.article-wrap h2 {
  font-size: 1.5rem;
  margin: 1.8em 0 .6em;
  color: var(--sage-900);
  font-weight: 800;
}
.article-wrap h3 {
  font-size: 1.2rem;
  color: var(--ink-900);
  margin: 1.4em 0 .4em;
  font-weight: 700;
}
.article-wrap p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-700);
  margin: 0 0 1.2em;
}
.article-wrap ul, .article-wrap ol {
  margin: 0 0 1.5em;
  padding: 0;
  display: grid;
  gap: 10px;
}
.article-wrap ul li, .article-wrap ol li {
  padding: 14px 18px 14px 52px;
  background: var(--cream-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage-500);
  position: relative;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.6;
}
.article-wrap ul li::before {
  content: "✓";
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: var(--sage-700);
  color: var(--white);
  border-radius: 50%;
  font-size: .74rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.article-wrap ol { counter-reset: num; }
.article-wrap ol li { counter-increment: num; }
.article-wrap ol li::before {
  content: counter(num);
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  background: var(--sage-700);
  color: var(--white);
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.article-wrap blockquote {
  margin: 1.6em 0;
  padding: 24px 28px;
  border-left: 4px solid var(--sage-700);
  background: var(--sage-100);
  font-size: 1.15rem;
  color: var(--ink-900);
  font-style: italic;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 500;
}
.article-share {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--sage-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.article-share a { color: var(--sage-700); }
.article-share a:hover { color: var(--sage-900); }

/* ==================== CTA band ==================== */
.cta-band {
  background:
    linear-gradient(135deg, rgba(58,79,56,.92), rgba(23,26,22,.92)),
    url('assets/images/lysa-new-4.jpg') center/cover;
  color: var(--cream-100);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); margin-bottom: 18px; font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.cta-band p { color: rgba(251,250,246,.85); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; font-size: 1.08rem; }
.cta-band .btn { font-size: .9rem; padding: 18px 36px; }

/* ==================== Contact ==================== */
.contact-hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}
.contact-hero-card {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sage-200);
  text-align: center;
  transition: all .3s var(--ease);
  position: relative;
}
.contact-hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.contact-hero-card .contact-icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  background: var(--sage-100);
  color: var(--sage-700);
  border-radius: 16px;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
}
.contact-hero-card h3 {
  font-size: 1.2rem;
  color: var(--sage-900);
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-hero-card a, .contact-hero-card p {
  color: var(--ink-700);
  font-size: .98rem;
  margin: 0;
  word-break: break-word;
}
.contact-hero-card a:hover { color: var(--sage-700); }

@media (max-width: 780px) { .contact-hero-info { grid-template-columns: 1fr; } }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info p { color: var(--ink-500); margin-bottom: 2em; }
.contact-info p strong { color: var(--sage-700); }
.contact-list { display: grid; gap: 16px; }
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--sage-200);
  transition: all .2s;
}
.contact-list li:hover { border-color: var(--sage-500); transform: translateX(4px); }
.contact-list .contact-icon {
  font-size: 1.3rem;
  width: 44px; height: 44px;
  background: var(--sage-100);
  color: var(--sage-700);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-list small {
  display: block;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-list a, .contact-list span {
  color: var(--ink-900);
  font-weight: 600;
  font-size: 1rem;
}
.contact-list a:hover { color: var(--sage-700); }

.contact-form {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  border: 1px solid var(--sage-100);
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
/* Honeypot block — invisible to humans, visible to bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.contact-form label { display: grid; gap: 8px; }
.contact-form label span {
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink-800);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--sage-200);
  border-radius: var(--radius-sm);
  background: var(--cream-50);
  font: inherit;
  color: var(--ink-900);
  transition: all .2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sage-700);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(98,110,97,.18);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .86rem; color: var(--ink-500); text-align: center; margin: 4px 0 0; }
.form-note a { color: var(--sage-700); font-weight: 700; }
.form-success {
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background: var(--sage-100);
  color: var(--sage-900);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: .95rem;
  font-weight: 600;
  transition: all .3s var(--ease);
}
.form-success.show { max-height: 100px; padding: 14px; margin-top: 4px; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-form { padding: 30px; }
}
@media (max-width: 520px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ==================== Footer ==================== */
.footer {
  background: var(--ink-900);
  color: rgba(251,250,246,.72);
  padding-top: 80px;
  font-size: .92rem;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-700), var(--gold-500), var(--sage-700));
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand img {
  height: 90px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1) drop-shadow(0 2px 6px rgba(0,0,0,.2));
}
.footer-brand p { max-width: 300px; line-height: 1.6; }
.footer-col h4 {
  color: var(--white);
  font-size: .86rem;
  margin-bottom: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-col a, .footer-col span {
  display: block;
  padding: 5px 0;
  color: rgba(251,250,246,.62);
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold-300); }
.footer-social-row { display: flex; gap: 12px; margin-top: 16px; }
.footer-social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: var(--cream-100);
  transition: all .2s;
}
.footer-social-row a:hover { background: var(--sage-700); transform: translateY(-2px); }
.footer-social-row svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .84rem;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ==================== Reveal on scroll ==================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== Icon system ==================== */
.icon {
  width: 1.4em;
  height: 1.4em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.hero-card-icon .icon,
.feature-strip-icon .icon,
.service-card-icon .icon,
.hire-icon .icon,
.spec-icon .icon,
.contact-hero-card .contact-icon .icon,
.contact-list .contact-icon .icon {
  width: 50%;
  height: 50%;
  stroke-width: 1.8;
}

/* ==================== Testimonial carousel ==================== */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
  padding: 10px 20px 80px;
}
.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 28px;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.testimonial-carousel .testimonial {
  margin: 0;
  min-width: 0;
}
.carousel-controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--sage-700);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sage-200);
  display: grid;
  place-items: center;
  transition: all .25s var(--ease);
  cursor: pointer;
}
.carousel-btn:hover {
  background: var(--sage-700);
  color: var(--white);
  border-color: var(--sage-700);
  transform: scale(1.1);
  box-shadow: var(--shadow);
}
.carousel-btn:disabled {
  opacity: .4;
  pointer-events: none;
}
.carousel-btn .icon { width: 20px; height: 20px; }
.carousel-dots {
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--sage-200);
  cursor: pointer;
  transition: all .25s var(--ease);
  padding: 0;
}
.carousel-dot:hover { background: var(--sage-500); }
.carousel-dot.active {
  background: var(--sage-700);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .testimonial-track { grid-auto-columns: calc((100% - 28px) / 2); }
}
@media (max-width: 600px) {
  .testimonial-track { grid-auto-columns: 100%; gap: 20px; }
}

/* ==================== Premium animations ==================== */

/* Hero load-in */
.hero-text > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp .9s var(--ease) forwards;
}
.hero-text .eyebrow { animation-delay: .1s; }
.hero-text h1         { animation-delay: .25s; }
.hero-text .hero-sub  { animation-delay: .4s; }
.hero-text .hero-cta  { animation-delay: .55s; }
.hero-text .hero-trust{ animation-delay: .7s; }
.hero-visual { animation: heroScaleIn 1.1s var(--ease) .3s both; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroScaleIn {
  from { opacity: 0; transform: scale(.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Subtle hero-bg Ken Burns */
.hero-bg {
  animation: kenBurns 22s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Floating dots in hero */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(147,174,141,.4) 0, transparent 1.2px),
    radial-gradient(circle at 85% 60%, rgba(147,174,141,.3) 0, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(147,174,141,.3) 0, transparent 1.2px),
    radial-gradient(circle at 70% 20%, rgba(147,174,141,.3) 0, transparent 1px);
  background-size: 300px 300px, 240px 240px, 200px 200px, 280px 280px;
  pointer-events: none;
  z-index: 1;
  animation: drift 30s linear infinite;
  opacity: .5;
}
@keyframes drift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to   { background-position: 300px 300px, -240px -240px, 200px -200px, -280px 280px; }
}

/* Stagger reveals */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .35s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .45s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: .55s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: .65s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: .75s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: .85s; }

/* Service-card image shimmer on hover */
.service-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .9s var(--ease);
  pointer-events: none;
}
.service-card:hover .service-card-img::after { transform: translateX(100%); }

/* Feature strip lift-in */
.feature-strip-item {
  opacity: 0;
  transform: translateY(16px);
  animation: featureLift .7s var(--ease) forwards;
}
.feature-strip-item:nth-child(1) { animation-delay: .85s; }
.feature-strip-item:nth-child(2) { animation-delay: .95s; }
.feature-strip-item:nth-child(3) { animation-delay: 1.05s; }
.feature-strip-item:nth-child(4) { animation-delay: 1.15s; }
@keyframes featureLift {
  to { opacity: 1; transform: translateY(0); }
}

/* Number count-up baseline */
.hero-trust strong { display: inline-block; transition: color .3s; }

/* Icon tile lift */
.feature-strip-icon,
.hire-icon,
.spec-icon,
.contact-hero-card .contact-icon,
.service-card-icon {
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
}
.feature-strip-item:hover .feature-strip-icon { transform: rotate(-8deg) scale(1.08); }
.hire-card:hover .hire-icon { transform: rotate(-8deg) scale(1.08); }
.spec-card:hover .spec-icon { transform: rotate(-8deg) scale(1.08); }
.contact-hero-card:hover .contact-icon { transform: rotate(-8deg) scale(1.08); }
.service-card:hover .service-card-icon { transform: scale(1.1) rotate(-6deg); }

/* Button hover arrow */
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(6px); }

/* Testimonial card lift */
.testimonial { transition: all .4s var(--ease), box-shadow .3s; }

/* Blog card image pan on hover (already partially done, amplify) */
.blog-card .blog-img { position: relative; overflow: hidden; }
.blog-card .blog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(23,26,22,.25));
  opacity: 0;
  transition: opacity .3s;
}
.blog-card:hover .blog-img::after { opacity: 1; }

/* Nav-link underline elastic */
.nav-menu > a:not(.nav-cta)::after { transition: transform .35s cubic-bezier(.34, 1.56, .64, 1); }

/* Why item number swell */
.why-num { transition: transform .3s var(--ease), color .3s; }
.why-item:hover .why-num { transform: scale(1.1) translateY(-2px); }

/* ============================================================
   Mobile polish — consolidated refinements for small screens
============================================================ */

/* Tablet & below */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }

  .page-header { padding: 70px 0 60px; }
  .page-header h1 { font-size: clamp(1.9rem, 6vw, 2.4rem); }
  .page-header p { font-size: .98rem; }

  /* Ensure all buttons are at least 44px tall for thumb tap */
  .btn { padding: 14px 24px; min-height: 44px; }

  /* Hero tweaks for tablets */
  .hero { min-height: auto; }
  .hero-inner { padding: 60px 0 80px; }
  .hero-card { max-width: 240px; padding: 14px 18px; }
  .hero-card small { font-size: .78rem; }
}

/* Phone */
@media (max-width: 560px) {
  .container { width: 94%; }
  .section { padding: 50px 0; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Compact topbar on phones */
  .topbar { padding: 8px 0; font-size: .76rem; }
  .topbar-inner { gap: 10px; }
  .topbar-group { gap: 14px; justify-content: center; }

  /* Nav — smaller logo, tighter spacing */
  .nav-inner { padding: 10px 0; }
  .nav-logo img { height: 50px; }
  .nav.scrolled .nav-logo img { height: 44px; }

  /* Hero — remove floating overlay cards on tight screens, they clutter the photo */
  .hero-card { display: none; }
  .hero-img-wrap { min-height: 380px; }
  .hero-visual { min-height: 380px; }
  .hero-inner { padding-bottom: 50px; }
  .hero-text h1 em::after { height: 6px; bottom: 1px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { justify-content: center; width: 100%; }
  .hero-trust { gap: 14px; padding-top: 22px; }
  .hero-trust strong { font-size: 1.4rem; }
  .hero-trust span { font-size: .66rem; letter-spacing: .1em; }

  /* Feature strip tighter */
  .feature-strip-item { padding: 22px 20px; }

  /* Intro/about stacks */
  .intro-split { gap: 60px; }
  .intro-media { max-width: 100%; }
  .intro-media-accent { width: 60%; bottom: -24px; right: -12px; }
  .intro-media-badge { top: 18px; left: -14px; padding: 14px 18px; }
  .intro-media-badge strong { font-size: 1.4rem; }
  .intro-points { grid-template-columns: 1fr !important; }
  .intro-points li { font-size: .92rem; }

  /* Service cards: slightly shorter on mobile */
  .service-card { aspect-ratio: 5/4; }
  .service-card-body { padding: 22px 22px; }
  .service-card h3 { font-size: 1.15rem; }

  /* Why-us items — slightly compressed */
  .why-item { padding: 28px 22px; }
  .why-num { font-size: 2.2rem; margin-bottom: 12px; }

  /* Testimonials — full width carousel */
  .testimonial { padding: 28px 24px 24px; }
  .testimonial blockquote { font-size: .98rem; }
  .testimonial-carousel { padding-bottom: 70px; }
  .carousel-btn { width: 42px; height: 42px; }
  .carousel-controls { gap: 12px; }

  /* Blog cards — tighter body */
  .blog-card .blog-body { padding: 22px; }
  .blog-card h3 { font-size: 1.15rem; }

  /* Hire cards stack nicely already — tighten padding */
  .hire-card { padding: 24px; flex-direction: column; gap: 14px; }
  .hire-card > div:last-child h3 { font-size: 1.15rem; }

  /* Spec cards */
  .spec-card { padding: 28px 22px; }
  .spec-icon { width: 60px; height: 60px; margin-bottom: 14px; }

  /* Pricing */
  .pricing-card { padding: 30px 26px; }
  .pricing-card h3 { font-size: 1.25rem; }
  .pricing-row .price { font-size: 1.3rem; }

  /* Contact */
  .contact-grid { gap: 40px; }
  .contact-form { padding: 26px; border-radius: 14px; }
  .contact-hero-card { padding: 26px 22px; }

  /* Form inputs: bigger tap targets + iOS-safe font size */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 14px 14px;
    font-size: 16px; /* prevents iOS Safari zoom-on-focus */
    min-height: 46px;
  }

  /* CTA band */
  .cta-band { padding: 56px 0; }

  /* Coverage visual smaller */
  .coverage-visual-radius strong { font-size: 2.2rem; }

  /* Article readability */
  .article-wrap { padding: 28px 22px; border-radius: 14px; }
  .article-wrap h1 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .article-wrap p, .article-wrap li { font-size: 1rem; }

  /* Footer — stack, centered */
  .footer { padding-top: 56px; }
  .footer-brand img { height: 72px; }
  .footer-col h4 { margin-bottom: 12px; }

  /* Nav toggle must be easy to tap */
  .nav-toggle { width: 48px; height: 48px; }
}

/* Very narrow (small phones, folded displays) */
@media (max-width: 380px) {
  .container { width: 95%; }
  .topbar { display: none; } /* topbar info is already in nav/footer; reclaim vertical space */
  .hero-trust { flex-wrap: wrap; }
  .hero-trust > div { flex: 1 1 calc(50% - 10px); }
  .feature-strip-item strong { font-size: .95rem; }
  .feature-strip-item span { font-size: .8rem; }
  .nav-cta { padding: 12px 16px !important; font-size: .76rem !important; }
}

/* ================================================
   Overflow safeguards — absolute no horizontal scroll
=================================================== */
html {
  overflow-x: hidden !important;
  max-width: 100vw;
}
body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
  position: relative;
}
img, video, iframe { max-width: 100%; height: auto; display: block; }

/* Neutralize honeypot absolute positioning — never affects layout */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* Prevent any decorative absolute-positioned element from overflowing on mobile */
@media (max-width: 960px) {
  .intro-media-accent {
    right: 0 !important;
    bottom: -16px !important;
    width: 58% !important;
  }
  .intro-media-badge {
    left: 0 !important;
    top: 10px !important;
    right: auto !important;
  }
}
@media (max-width: 560px) {
  .testimonial-carousel {
    margin: 0 !important;
    padding: 10px 0 70px !important;
  }
  .hero-card {
    right: 0 !important;
    left: auto !important;
    max-width: calc(100% - 20px) !important;
  }
  .hero-img-wrap {
    margin: 0;
  }
  .intro-media {
    overflow: visible;
  }
  .intro-media-accent {
    width: 55% !important;
    bottom: -12px !important;
    border-width: 6px !important;
  }
  .intro-media-badge {
    padding: 12px 16px !important;
  }
  .intro-media-badge strong { font-size: 1.15rem !important; }
  .intro-media-badge span   { font-size: .66rem !important; }
  /* Grid items can sometimes exceed viewport due to min-content sizing — let them shrink */
  .service-grid > *, .testimonial-track > *,
  .pricing-grid > *, .spec-grid > *, .hire-grid > *,
  .blog-grid > *, .contact-hero-info > *, .why-grid > * {
    min-width: 0;
  }
  /* Long email in topbar — allow it to wrap/ellipsis */
  .topbar-item { max-width: 100%; word-break: break-word; }
}

/* Disable parallax fixed backgrounds on touch (perf + rendering bug on iOS) */
@media (hover: none), (max-width: 900px) {
  .why,
  .page-header,
  .cta-band { background-attachment: scroll; }
}

/* ==================== Copy-to-clipboard toast (for tel: links on desktop) ==================== */
.copy-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink-900);
  color: var(--cream-50);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

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