/* ============================================================
   Yabusa Projects, Supplies & Pest Control Services
   styles.css — Complete Design System
   ============================================================ */

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

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --white:        #FAFAF7;
  --cream:        #F6F2EB;
  --sand:         #EDE7D8;
  --sand-deep:    #DDD4C0;
  --stone:        #CAC0AA;

  --forest:       #1E4D3A;
  --forest-dark:  #122E23;
  --forest-mid:   #2F7055;
  --forest-pale:  #B4D5C4;
  --forest-mist:  #E6F2EC;

  --brass:        #B5893A;
  --brass-light:  #CCA458;
  --brass-pale:   #F0E6D0;

  --ink:          #1A1A14;
  --ink-mid:      #3D3A2E;
  --ink-soft:     #726C5E;
  --ink-muted:    #A09880;
  --ink-faint:    #D4CFC4;
  --white-pure:   #FFFFFF;

  --ff-display:   'Lora', Georgia, serif;
  --ff-body:      'Nunito Sans', 'Helvetica Neue', sans-serif;
  --nav-h:        80px;

  --r-sm:         8px;
  --r-md:         12px;
  --r-lg:         16px;
  --r-xl:         24px;
  --r-2xl:        32px;
  --r-full:       9999px;

  --pad-section:  96px;
  --pad-section-sm: 64px;

  --shadow-sm:    0 2px 12px rgba(26,26,20,0.06);
  --shadow-md:    0 6px 32px rgba(26,26,20,0.10);
  --shadow-lg:    0 16px 56px rgba(26,26,20,0.13);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--ink-mid);
  background-color: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.87' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
  background-repeat: repeat;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Typography
   ============================================================ */
h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.14;
  color: var(--ink);
}

h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

h4 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

p {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.lead {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink-soft);
}

em.forest { font-style: italic; color: var(--forest); }
em.brass  { font-style: italic; color: var(--brass); }
em.ink    { font-style: italic; color: var(--ink); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
}

.label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: var(--forest);
  flex-shrink: 0;
}

.label-white {
  color: rgba(255, 255, 255, 0.7);
}

.label-white::before {
  background: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--pad-section) 0;
}

.section-header {
  margin-bottom: 56px;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: var(--sand);
  box-shadow: 0 1px 20px rgba(26,26,20,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
  text-decoration: none;
}

.nav-logo-name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.logo-y {
  color: var(--brass);
}

.nav-logo-sub {
  font-family: var(--ff-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--forest);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
}

.nav-link[aria-current="page"] {
  color: var(--ink);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-phone:hover {
  color: var(--forest);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-link {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s ease;
}

.nav-mobile-link:hover,
.nav-mobile-link[aria-current="page"] {
  color: var(--forest);
}

.nav-mobile-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  padding: 14px 30px;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.8rem;
}

.btn-forest {
  background: var(--forest);
  color: var(--white-pure);
  box-shadow: 0 6px 24px rgba(30, 77, 58, 0.28);
}

.btn-forest:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(30, 77, 58, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--white-pure);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white-pure);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white-pure);
  color: var(--forest);
  box-shadow: 0 4px 20px rgba(26, 26, 20, 0.12);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  padding-bottom: calc(var(--pad-section) + 6vw);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  background:
    radial-gradient(ellipse 70% 75% at 68% 32%, rgba(30, 77, 58, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 60% at 18% 72%, rgba(181, 137, 58, 0.05), transparent 50%),
    var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 0 0 0 clamp(40px, 8vw, 120px);
  max-width: 660px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-mist);
  border: 1px solid var(--forest-pale);
  border-radius: var(--r-full);
  padding: 7px 16px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--forest);
  animation: pulse-dot 2.5s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  opacity: 0;
  animation: fadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards;
  margin-bottom: 24px;
}

.hero-desc {
  opacity: 0;
  animation: fadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.44s forwards;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.58s forwards;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  animation: fadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.72s forwards;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid var(--sand-deep);
  border-radius: var(--r-full);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.6);
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 75%;
  padding: 0;
  display: flex;
  align-items: stretch;
  opacity: 0;
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(250,250,247,1) 0%,
    rgba(250,250,247,1) 25%,
    rgba(250,250,247,0.85) 35%,
    rgba(250,250,247,0.55) 45%,
    rgba(250,250,247,0.25) 55%,
    rgba(250,250,247,0.08) 65%,
    transparent 78%);
  z-index: 1;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-medallion {
  width: clamp(260px, 34vw, 460px);
  aspect-ratio: 1;
}

.medallion-spin {
  animation: rotateCW 65s linear infinite;
  transform-origin: 240px 240px;
}

.medallion-contra {
  animation: rotateCW 85s linear infinite reverse;
  transform-origin: 240px 240px;
}

@keyframes rotateCW {
  to { transform: rotate(360deg); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Trust Bar
   ============================================================ */
.trust-bar {
  background: var(--forest-dark);
  padding: 18px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 28px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.trust-item strong {
  color: white;
  font-weight: 600;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ============================================================
   Service Cards
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.services-grid:has(.svc-card-lg) {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--white-pure);
  border: 1px solid var(--sand);
  border-radius: 20px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--forest-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--forest-mist);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.svc-icon svg,
.svc-icon i {
  color: var(--forest);
}

.svc-card h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 18px;
}

.svc-card-lg {
  padding: 36px 28px;
}

.svc-card-sub {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: 12px;
}

.svc-card-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.svc-card-points li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.5;
}

.svc-card-points li i {
  color: var(--forest);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

.svc-card-unified {
  padding: 44px 40px;
}

.svc-card-unified:hover {
  transform: none;
}

.svc-unified-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.svc-unified-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.svc-unified-item .svc-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}

.svc-unified-item h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.svc-unified-item p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .svc-card-unified {
    padding: 28px 20px;
  }
  .svc-unified-item {
    flex-direction: column;
    gap: 10px;
  }
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.svc-link:hover {
  gap: 10px;
}

/* ============================================================
   Process
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(33.33% + 20px);
  right: calc(33.33% + 20px);
  height: 1px;
  background: var(--sand-deep);
  pointer-events: none;
}

.process-step {
  padding: 40px 40px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 0;
  height: 1px;
  width: 40px;
  background: var(--sand-deep);
}

.process-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 18px;
}

.process-step h3 {
  font-size: 1.35rem;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 14px;
}

.process-step p {
  font-size: 0.9rem;
}

/* ============================================================
   Split Panels (Residential / Commercial)
   ============================================================ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.split-panel {
  padding: 80px 64px;
}

.split-panel-cream {
  background: var(--cream);
}

.split-panel-mist {
  background: var(--forest-mist);
}

.split-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(30, 77, 58, 0.1);
  border-radius: var(--r-full);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 20px;
}

.split-panel h3 {
  margin-bottom: 16px;
}

.split-panel .lead {
  margin-bottom: 28px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-soft);
}

.check-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-circle svg,
.check-circle i {
  color: white;
  font-size: 10px;
}

/* ============================================================
   Pest Coverage Grid
   ============================================================ */
.pest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pest-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white-pure);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-mid);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.pest-chip:hover {
  border-color: var(--forest-pale);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.pest-chip-icon {
  width: 36px;
  height: 36px;
  background: var(--forest-mist);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pest-note {
  text-align: center;
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-top: 28px;
}

/* ============================================================
   Plan Cards
   ============================================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  border-radius: var(--r-xl);
  padding: 40px 32px;
  border: 1.5px solid var(--sand);
  background: var(--white-pure);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-card-featured {
  background: var(--forest);
  border-color: var(--forest);
  color: white;
}

.plan-ribbon {
  position: absolute;
  top: 20px;
  right: -8px;
  background: var(--brass);
  color: white;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px 0 0 4px;
}

.plan-ribbon::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  border-left: 8px solid var(--brass-light);
  border-bottom: 8px solid transparent;
}

.plan-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.plan-card-featured .plan-name {
  color: white;
}

.plan-cadence {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: 6px;
}

.plan-card-featured .plan-cadence {
  color: rgba(255, 255, 255, 0.65);
}

.plan-subtitle {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--sand);
}

.plan-card-featured .plan-subtitle {
  color: rgba(255, 255, 255, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.plan-card-featured .plan-feature {
  color: rgba(255, 255, 255, 0.8);
}

.plan-feature-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--forest-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-card-featured .plan-feature-dot {
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  margin-bottom: -40px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(47, 112, 85, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 15% 80%, rgba(18, 46, 35, 0.4) 0%, transparent 55%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero h1 {
  color: white;
  margin-bottom: 20px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.page-hero .hero-btns {
  opacity: 1;
  animation: none;
}

/* ============================================================
   Service Detail (services.html)
   ============================================================ */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--sand);
}

.svc-detail:last-child {
  border-bottom: none;
}

.svc-detail.reverse {
  direction: rtl;
}

.svc-detail.reverse > * {
  direction: ltr;
}

.svc-detail-visual {
  background: var(--forest-mist);
  border-radius: var(--r-xl);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}

.svc-detail-visual svg {
  width: 80px;
  height: 80px;
  color: var(--forest);
  opacity: 0.6;
}

.svc-detail-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--forest-mist);
  border: 1px solid var(--forest-pale);
  border-radius: var(--r-full);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
}

.svc-detail h3 {
  margin-bottom: 14px;
}

.svc-detail > div > p {
  margin-bottom: 24px;
}

/* ============================================================
   Commercial Section
   ============================================================ */
.commercial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.biz-type-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.biz-card {
  padding: 22px 24px;
  background: var(--white-pure);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--forest);
}

.biz-card h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 6px;
}

.biz-card p {
  font-size: 0.85rem;
}

/* ============================================================
   Contact Form
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--white-pure);
  border: 1px solid var(--sand);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.info-card-featured {
  background: var(--forest);
  border-color: var(--forest);
  color: white;
}

.info-card-featured h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.info-card-featured p {
  color: rgba(255, 255, 255, 0.7);
}

.info-card h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
}

.info-card-featured h4 {
  color: rgba(255, 255, 255, 0.6);
}

.info-card p {
  font-size: 0.9rem;
}

.info-card .info-btns {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--sand);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 8px 0;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--ink-mid);
}

.hours-table td:last-child {
  text-align: right;
}

.hours-open {
  color: var(--forest);
  font-weight: 600;
}

.form-card {
  background: var(--white-pure);
  border: 1px solid var(--sand);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.form-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  margin-bottom: 8px;
}

.form-card-sub {
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ink-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(30, 77, 58, 0.1);
  background: var(--white-pure);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23726C5E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  margin-top: 20px;
}

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 12px;
}

.form-success {
  display: none;
  background: var(--forest-mist);
  border: 1.5px solid var(--forest-pale);
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.95rem;
  max-width: 360px;
  margin: 0 auto 20px;
}

/* ============================================================
   Map Card
   ============================================================ */
.map-card {
  background: var(--white-pure);
  border: 1px solid var(--sand);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-visual {
  height: 160px;
  background: var(--forest-mist);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(30,77,58,0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-pin {
  width: 48px;
  height: 48px;
  background: var(--forest);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(30,77,58,0.3);
  position: relative;
  z-index: 1;
}

.map-pin i {
  transform: rotate(45deg);
}

.map-pin::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 0;
}

.map-card-body {
  padding: 22px 24px;
}

.map-card-body h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 6px;
}

.map-card-body p {
  font-size: 0.875rem;
  margin-bottom: 14px;
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--sand);
  transition: background 0.25s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.open {
  border-color: var(--forest-pale);
  background: var(--forest-mist);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 0.25s ease;
}

.faq-item.open .faq-question {
  color: var(--forest);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.faq-item.open .faq-icon {
  background: var(--forest);
  transform: rotate(45deg);
}

.faq-icon svg,
.faq-icon i {
  color: var(--ink-soft);
  font-size: 12px;
  transition: color 0.3s ease;
}

.faq-item.open .faq-icon svg,
.faq-item.open .faq-icon i {
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ============================================================
   Areas Section
   ============================================================ */
.areas-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-chip {
  padding: 8px 18px;
  background: var(--forest-mist);
  border: 1px solid var(--forest-pale);
  border-radius: var(--r-full);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.area-chip:hover {
  background: var(--forest-pale);
  border-color: var(--forest);
}

.area-chip.primary {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}

.areas-card {
  background: var(--white-pure);
  border: 1px solid var(--sand);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.areas-card h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 20px;
}

.areas-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sand);
}

.areas-info-row:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.areas-info-icon {
  width: 36px;
  height: 36px;
  background: var(--forest-mist);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.areas-info-text p {
  font-size: 0.85rem;
}

.areas-info-text strong {
  display: block;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink-mid);
  margin-bottom: 2px;
}

/* ============================================================
   Final CTA Section
   ============================================================ */
.final-cta {
  background: var(--forest);
  padding: var(--pad-section) 0;
  clip-path: polygon(0 7%, 100% 0, 100% 93%, 0 100%);
  margin: 60px 0;
  text-align: center;
}

.final-cta h2 {
  color: white;
  margin-bottom: 16px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 36px;
}

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

/* ============================================================
   Why Cards (contact.html)
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white-pure);
  border: 1px solid var(--sand);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--forest-mist);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--cream);
  border-top: 2px solid var(--sand-deep);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo-name {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.footer-logo-sub {
  font-family: var(--ff-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-mid);
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--sand);
  border: 1px solid var(--sand-deep);
  border-radius: var(--r-full);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.footer-col-title {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-link:hover {
  color: var(--forest);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-icon {
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--sand-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* ============================================================
   Prep Steps
   ============================================================ */
.prep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.prep-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white-pure);
  border: 1px solid var(--sand);
  border-radius: var(--r-lg);
}

.prep-num {
  width: 40px;
  height: 40px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.prep-step h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.prep-step p {
  font-size: 0.85rem;
}

/* ============================================================
   Gallery Grid & Lightbox
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  cursor: pointer;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white-pure);
  border: 1px solid var(--sand);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-thumb img {
  transform: scale(1.05);
}

.gallery-card-caption {
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Empty state */
.gallery-empty {
  text-align: center;
  padding: 60px 20px;
}

.gallery-empty-icon {
  width: 64px;
  height: 64px;
  background: var(--forest-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--forest);
}

.gallery-empty h3 {
  margin-bottom: 10px;
}

.gallery-empty p {
  max-width: 420px;
  margin: 0 auto;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: background 0.25s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: background 0.25s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-content {
  position: relative;
  z-index: 5;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-body img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--r-sm);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 400;
  margin-top: 16px;
  text-align: center;
  max-width: 600px;
}

/* ============================================================
   WhatsApp Float
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s ease infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============================================================
   Reveal Animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ============================================================
   Misc Utility
   ============================================================ */
.bg-white    { background: var(--white); }
.bg-cream    { background: var(--cream); }
.bg-sand     { background: var(--sand); }
.bg-mist     { background: var(--forest-mist); }
.bg-forest   { background: var(--forest); }

.plans-note {
  text-align: center;
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-top: 32px;
}

.section-cta {
  text-align: center;
  margin-top: 44px;
}

.divider-line {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
}

.divider-line span {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.divider-line::before,
.divider-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sand-deep);
}

.commercial-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ============================================================
   Responsive — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================================
   Responsive — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad-section: 72px; }

  .container { padding: 0 28px; }
  .nav-inner  { padding: 0 28px; }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-bottom: calc(var(--pad-section) + 4vw);
  }

  .hero-content {
    padding: 60px 28px 0;
    max-width: 100%;
  }

  .hero-btns, .hero-chips { justify-content: center; }

  .hero-visual { display: none; }

  .split-grid    { grid-template-columns: 1fr; }
  .split-panel   { padding: 56px 28px; }

  .process-grid  { grid-template-columns: 1fr; }
  .process-step  { padding: 32px 28px; }

  .plans-grid    { grid-template-columns: 1fr; gap: 18px; }
  .commercial-split { grid-template-columns: 1fr; gap: 40px; }

  .areas-layout  { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }

  .svc-detail    { grid-template-columns: 1fr; gap: 36px; }
  .svc-detail.reverse { direction: ltr; }

  .why-grid      { grid-template-columns: 1fr; gap: 16px; }
  .commercial-checklist { grid-template-columns: 1fr; }

  .gallery-grid  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ============================================================
   Responsive — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --pad-section: 56px; }

  .container  { padding: 0 20px; }
  .nav-inner  { padding: 0 20px; }

  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }

  .services-grid,
  .services-grid:has(.svc-card-lg) { grid-template-columns: 1fr; }
  .pest-grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-nav  { width: 40px; height: 40px; font-size: 16px; }
  .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; }

  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }

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

  .trust-bar-inner { flex-direction: column; gap: 0; }
  .trust-divider   { display: none; }

  .final-cta { clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%); }

  .page-hero { clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%); }

  h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
}

/* ============================================================
   Responsive — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-btns   { flex-direction: column; align-items: center; }
  .pest-grid   { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .info-card .info-btns { flex-direction: column; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .wa-float    { bottom: 20px; right: 20px; }
}

/* ============================================================
   Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal              { opacity: 1; transform: none; }
  .hero-badge,
  .hero h1,
  .hero-desc,
  .hero-btns,
  .hero-chips,
  .hero-medallion,
  .hero-visual         { opacity: 1; animation: none; }
  .medallion-spin,
  .medallion-contra    { animation: none; }
  .gallery-lightbox    { transition-duration: 0.01ms; }
  .gallery-thumb img   { transition-duration: 0.01ms; }
  .gallery-card        { transition-duration: 0.01ms; }
}
