/* ============================================================
   Slither Me Timbers — Brand Design System
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --green-darkest:  #0F2318;
  --green-dark:     #1B3A27;
  --green-mid:      #2A5C3F;
  --green-accent:   #3D7A56;
  --green-light:    #6BAE88;
  --earth-dark:     #6B5744;
  --earth-mid:      #A08060;
  --earth-light:    #C4A882;
  --cream:          #FAF7F2;
  --cream-mid:      #F0E8DC;
  --cream-dark:     #E4D8C8;
  --orange:         #D4A017;
  --orange-hover:   #B8870A;
  --orange-light:   #F0C040;
  --gold:           #D4A017;
  --white:          #FFFFFF;
  --text-dark:      #0F1A0F;
  --text-body:      #2D3E2D;
  --text-muted:     #5A7060;
  --shadow-sm:      0 1px 3px rgba(15,35,24,0.08), 0 1px 2px rgba(15,35,24,0.04);
  --shadow-md:      0 4px 12px rgba(15,35,24,0.10), 0 2px 6px rgba(15,35,24,0.06);
  --shadow-lg:      0 10px 30px rgba(15,35,24,0.14), 0 4px 12px rgba(15,35,24,0.08);
  --shadow-xl:      0 20px 50px rgba(15,35,24,0.18), 0 8px 20px rgba(15,35,24,0.10);
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --transition:     150ms ease;
  --transition-md:  250ms ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--cream);
  color: var(--text-body);
  line-height: 1.65;
  min-height: 100vh;
}

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

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { max-width: 68ch; line-height: 1.75; }
p.wide { max-width: none; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem;   } }

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 5.5rem 0; } }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }

/* ── Colors ─────────────────────────────────────────────────── */
.bg-green-dark    { background-color: var(--green-dark);    }
.bg-green-mid     { background-color: var(--green-mid);     }
.bg-green-darkest { background-color: var(--green-darkest); }
.bg-cream         { background-color: var(--cream);         }
.bg-cream-mid     { background-color: var(--cream-mid);     }
.bg-orange        { background-color: var(--orange);        }
.bg-white         { background-color: var(--white);         }
.text-white       { color: var(--white) !important;         }
.text-green-dark  { color: var(--green-dark);               }
.text-orange      { color: var(--orange);                   }
.text-gold        { color: var(--gold);                     }
.text-muted       { color: var(--text-muted);               }
.text-earth       { color: var(--earth-mid);                }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.75rem;
  min-height: 52px;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 2px;
}

.btn-emergency {
  background-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,160,23,0.35);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.btn-emergency:hover {
  background-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.45);
}

.btn-emergency:active { transform: translateY(0); }

.btn-primary {
  background-color: var(--green-dark);
  color: var(--white);
}

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

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

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

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

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

.btn-lg {
  font-size: 1.1rem;
  padding: 1rem 2.25rem;
  min-height: 60px;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0.6rem 1.25rem;
  min-height: 40px;
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--green-dark);
  box-shadow: 0 2px 12px rgba(15,35,24,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

@media (min-width: 768px) { .nav-inner { height: 80px; } }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo span.sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--earth-light);
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background-color: rgba(255,255,255,0.1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone-desktop {
  display: none;
}

@media (min-width: 768px) { .nav-phone-desktop { display: inline-flex; } }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}

.hamburger:hover { background-color: rgba(255,255,255,0.1); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-md), opacity var(--transition-md);
}

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

@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: var(--green-darkest);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.open { display: block; }

.mobile-menu-inner {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--white);
  background-color: rgba(255,255,255,0.08);
}

.mobile-menu .mobile-cta {
  margin: 0.75rem 1.25rem 0.5rem;
  text-align: center;
}

/* ── Sticky Mobile Call Bar ─────────────────────────────────── */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: var(--orange);
  padding: 0.875rem 1.25rem;
  padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(212,160,23,0.4);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
/* Fill any sub-pixel gap between bar and screen edge */
.sticky-call-bar::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background-color: var(--orange);
}

.sticky-call-bar a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 768px) { .sticky-call-bar { display: none; } }

/* Spacer to prevent sticky bar from covering content */
.sticky-bar-spacer {
  height: calc(56px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 768px) { .sticky-bar-spacer { display: none; } }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-dark) 55%, var(--green-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
}

@media (min-width: 768px) { .hero { padding: 5.5rem 0 7rem; } }

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(74,124,92,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(196,168,130,0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Snake scale texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.02'%3E%3Cellipse cx='30' cy='30' rx='28' ry='18'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr 380px;
    gap: 3.5rem;
  }
}

.hero-text { color: var(--white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,160,23,0.2);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--orange-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--earth-light); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 56ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
}

.trust-item svg { color: var(--earth-light); flex-shrink: 0; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-header h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin: 0;
}

.hero-card-header p {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  margin: 0;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-stat {
  text-align: center;
  padding: 0.875rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
}

.hero-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--earth-light);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Trust Badges Section ───────────────────────────────────── */
.trust-badges {
  background: var(--white);
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.trust-badges-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-body);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}

.badge-item .badge-icon {
  width: 36px;
  height: 36px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  transition: box-shadow var(--transition-md), transform var(--transition-md);
}

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

.card-body { padding: 1.75rem; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}

.card-icon-green  { background: rgba(42,92,63,0.1);  color: var(--green-mid);  }
.card-icon-orange { background: rgba(212,160,23,0.1);  color: var(--orange);     }
.card-icon-earth  { background: rgba(160,128,96,0.1); color: var(--earth-dark); }
.card-icon-gold   { background: rgba(212,160,23,0.1); color: var(--gold);       }

.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); font-size: 0.9rem; }

/* Equal-height Learn More buttons across grid-4 service cards */
.grid-4 .card { display: flex; flex-direction: column; }
.grid-4 .card-body { flex: 1; display: flex; flex-direction: column; }
.grid-4 .card-body p { flex: 1; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── Section Headers ────────────────────────────────────────── */
.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 0.75rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--earth-light);
  border-radius: 2px;
}

.section-header h2 { margin-bottom: 0.875rem; }

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Service Areas ──────────────────────────────────────────── */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  color: var(--text-body);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  transition: border-color var(--transition), background-color var(--transition);
}

.area-tag:hover {
  border-color: var(--green-accent);
  background-color: rgba(61,122,86,0.05);
}

.area-tag svg { color: var(--green-accent); }

/* ── Emergency CTA Band ─────────────────────────────────────── */
.emergency-band {
  background: linear-gradient(135deg, var(--orange) 0%, #B8870A 100%);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.emergency-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.03) 20px,
    rgba(0,0,0,0.03) 40px
  );
}

.emergency-band > * { position: relative; z-index: 1; }
.emergency-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.emergency-band p  { color: rgba(255,255,255,0.88); margin: 0 auto 1.75rem; max-width: 52ch; font-size: 1.05rem; }

/* ── About Preview ──────────────────────────────────────────── */
.about-split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.photo-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  text-align: center;
  padding: 2rem;
  max-height: 480px;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(15,35,24,0.5), transparent);
}

.photo-placeholder-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
}

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-dark) 100%);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,124,92,0.25) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.875rem;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 58ch;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--earth-light);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--white); }

.breadcrumb-sep { color: rgba(255,255,255,0.35); }

/* ── Services Detail ────────────────────────────────────────── */
.service-row {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

@media (min-width: 900px) {
  .service-row { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .service-row.reverse .service-content { order: -1; }
}

.service-row:last-child { border-bottom: none; }

.service-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 5rem;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.service-icon-large {
  width: 64px;
  height: 64px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--text-body);
  font-size: 0.9rem;
}

.feature-list li svg {
  color: var(--green-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Service visual placeholder */
.service-visual {
  background: linear-gradient(135deg, var(--cream-mid) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--earth-light);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 2rem;
}

/* ── Pricing Box ────────────────────────────────────────────── */
.pricing-box {
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
}

.pricing-box h3 { color: var(--white); margin-bottom: 1.5rem; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price-row:last-of-type { border-bottom: none; }

.price-label { font-size: 0.925rem; color: rgba(255,255,255,0.8); }

.price-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--earth-light);
  font-size: 1rem;
}

.pricing-note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── Snake Guide ────────────────────────────────────────────── */
.snake-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  transition: box-shadow var(--transition-md), transform var(--transition-md);
}

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

.snake-card-header {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.snake-card-header.safe {
  background: linear-gradient(135deg, rgba(42,92,63,0.12) 0%, rgba(107,174,136,0.2) 100%);
  border-bottom: 3px solid var(--green-accent);
}

.snake-card-header.venomous {
  background: linear-gradient(135deg, rgba(212,160,23,0.1) 0%, rgba(184,135,10,0.15) 100%);
  border-bottom: 3px solid var(--orange);
}

.snake-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.snake-tag.safe    { background: var(--green-accent); color: var(--white); }
.snake-tag.danger  { background: var(--orange);       color: var(--white); }

.snake-card-body { padding: 1.5rem; }
.snake-card-body h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.snake-name-latin {
  font-style: italic;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}

.id-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.id-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-body);
}

.id-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--earth-mid);
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* Safety steps */
.steps-list {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step-item {
  counter-increment: steps;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h4 { margin-bottom: 0.3rem; font-size: 1rem; }
.step-content p  { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ── About Page ─────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--green-accent);
}

.value-card .value-icon {
  width: 46px;
  height: 46px;
  background: rgba(42,92,63,0.1);
  color: var(--green-mid);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.value-card h4 { margin-bottom: 0.5rem; }
.value-card p  { color: var(--text-muted); font-size: 0.875rem; margin: 0; }

/* Blockquote */
.pullquote {
  border-left: 4px solid var(--green-accent);
  padding: 1.25rem 1.5rem;
  background: rgba(42,92,63,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
}

.pullquote p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
}

.contact-info-card {
  background: var(--green-dark);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  color: var(--white);
}

.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }

.contact-method {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-method:last-of-type { border-bottom: none; }

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--earth-light);
}

.contact-method-text h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.contact-method-text a {
  color: var(--earth-light);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color var(--transition);
  text-decoration: none;
}

.contact-method-text a:hover { color: var(--white); }

.contact-method-text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  margin: 0;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-feedback {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
.form-feedback--success {
  background: rgba(42,92,63,0.08);
  border: 1px solid rgba(42,92,63,0.25);
  color: var(--green-mid);
}
.form-feedback--error {
  background: rgba(212,160,23,0.07);
  border: 1px solid rgba(212,160,23,0.25);
  color: var(--orange);
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-accent);
  box-shadow: 0 0 0 3px rgba(61,122,86,0.12);
}

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

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 480px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

/* Map placeholder */
.map-placeholder {
  background: linear-gradient(135deg, var(--cream-mid) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed var(--earth-light);
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
  max-height: 360px;
}

/* Hours table */
.hours-table { width: 100%; }

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-day   { font-weight: 600; color: var(--text-dark); }
.hours-time  { color: var(--text-muted); }
.hours-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--orange);
  color: var(--white);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-darkest);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
}

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.875rem;
  text-decoration: none;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.55);
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth-light);
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-contact-item {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.875rem;
}

.footer-contact-item svg {
  color: var(--earth-light);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

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

.divider {
  height: 1px;
  background: var(--cream-dark);
  border: none;
  margin: 0;
}

.text-center { text-align: center; }
.flex-center  { display: flex; align-items: center; justify-content: center; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.pill-orange { background: rgba(212,160,23,0.1); color: var(--orange); border: 1px solid rgba(212,160,23,0.25); }
.pill-green  { background: rgba(42,92,63,0.1);  color: var(--green-mid); border: 1px solid rgba(42,92,63,0.25); }

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

/* ══ IMPROVEMENTS ══════════════════════════════════════════════ */

/* Anchor scroll offset so sticky nav doesn't cover targets */
html { scroll-padding-top: 90px; }

/* Cursor utility class used in HTML */
.cursor-pointer { cursor: pointer; }

/* Custom select dropdown arrow */
.form-group select {
  appearance: none;
  -webkit-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='%235A7060' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6%209%2012%2015%2018%209'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

/* Softer placeholder text */
::placeholder { color: var(--text-muted); opacity: 0.6; }

/* Active nav link — underline indicator */
.nav-links a { position: relative; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: var(--earth-light);
  border-radius: 2px;
}

/* Pulsing availability dot in hero eyebrow */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
.hero-eyebrow svg { animation: pulse-dot 2.5s ease-in-out infinite; }

/* Hero content fade-up on load */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fade-up 0.5s ease both; }

/* Extra radial accents on inner page heroes */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(196,168,130,0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 88% 15%, rgba(61,122,86,0.18) 0%, transparent 45%);
  pointer-events: none;
}

/* Pullquote — decorative opening quote */
.pullquote { position: relative; overflow: hidden; }
.pullquote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 5rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--green-accent);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Hours row hover highlight */
.hours-row {
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  margin: 0 -0.25rem;
}
.hours-row:hover { background-color: rgba(196,168,130,0.1); }

/* Value card — hover lift */
.value-card {
  transition: box-shadow var(--transition-md), transform var(--transition-md);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* Hero stat cell hover */
.hero-stat { transition: background-color var(--transition); }
.hero-stat:hover { background-color: rgba(255,255,255,0.1); }

/* Step number scale on hover */
.step-number { transition: transform var(--transition-md), background-color var(--transition-md); }
.step-item:hover .step-number { transform: scale(1.08); }

/* Trust badge icon hover */
.badge-item .badge-icon { transition: background-color var(--transition-md), transform var(--transition-md); }
.badge-item:hover .badge-icon { background-color: var(--green-mid); transform: scale(1.08); }

/* Service visual — clean border instead of dashed */
.service-visual { border-style: solid; border-width: 1px; border-color: var(--cream-dark); }

/* Snake card header brightness on hover */
.snake-card-header { transition: filter var(--transition-md); }
.snake-card:hover .snake-card-header { filter: brightness(1.07) saturate(1.08); }

/* Contact method row hover */
.contact-method {
  transition: background-color var(--transition);
  border-radius: var(--radius-md);
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.contact-method:hover { background-color: rgba(255,255,255,0.05); }

/* Footer link hover — subtle underline */
.footer-links a { text-underline-offset: 3px; }
.footer-links a:hover { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }

/* Better global focus ring */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Pill links (snake guide jump links) — pointer cursor */
a.pill { cursor: pointer; }
a.pill:hover { opacity: 0.85; }

/* Pricing "Free" value highlight */
.price-value { letter-spacing: 0.01em; }

/* Emergency inline promo box — responsive button layout */
.emergency-inline-box {
  background: var(--cream-mid);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .emergency-inline-box {
    flex-direction: column;
    align-items: stretch;
  }
  .emergency-inline-box .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Service row separator — softer */
.service-row { border-bottom-color: var(--cream-mid); }

/* ── Phone numbers: never wrap ──────────────────────────────── */
a[href^="tel"],
a[href^="sms"] {
  white-space: nowrap;
}

.contact-method-text a[href^="tel"],
.contact-method-text a[href^="sms"],
.footer-contact-item a[href^="tel"],
.nav-phone-desktop {
  white-space: nowrap;
}

/* ── Service coverage tags: centered ───────────────────────── */
.areas-grid { justify-content: center; }

/* ══ MOBILE OVERFLOW & SIZING FIXES ════════════════════════════ */

@media (max-width: 767px) {
  /* ── Page hero: center text on mobile ───────────────────────── */
  .page-hero { text-align: center; }
  .page-hero p { margin-left: auto; margin-right: auto; }
  .breadcrumb { justify-content: center; }

  /* ── Hero section: center on mobile ────────────────────────── */
  .hero-text { text-align: center; }
  .hero-eyebrow { align-self: center; }
  .hero-trust { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-card { max-width: 480px; margin-left: auto; margin-right: auto; }

  /* ── Footer: center columns on mobile ──────────────────────── */
  .footer-grid > div { text-align: center; }
  .footer-contact-list { align-items: center; }
  .footer-contact-item { justify-content: center; }
  .footer-links { align-items: center; }
  .footer-brand { align-items: center; display: flex; flex-direction: column; }
}

@media (max-width: 640px) {
  /* ── Trust badges: stack vertically with aligned icons ─────── */
  .trust-badges-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0 0.5rem;
  }
  .badge-item { align-items: flex-start; }
  .badge-item .badge-icon { flex-shrink: 0; margin-top: 1px; }

  /* ── Phone/SMS buttons: always keep on one line ─────────────── */
  .btn[href^="tel"],
  .btn[href^="sms"] {
    white-space: nowrap;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
  }

  /* ── Buttons: allow other text to wrap + tighter padding ────── */
  .btn {
    white-space: normal;
    padding: 0.75rem 1.25rem;
    min-height: 48px;
  }
  .btn-lg {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
    min-height: 52px;
  }

  /* ── Hero CTAs: stack vertically, fill width ────────────────── */
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-ctas .btn { justify-content: center; }

  /* ── Emergency band buttons: always fill width ──────────────── */
  .emergency-band .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Pricing box: reduce horizontal padding ─────────────────── */
  .pricing-box { padding: 1.5rem 1.1rem; }

  /* ── Price rows: let label shrink and wrap ──────────────────── */
  .price-row { align-items: flex-start; flex-wrap: wrap; gap: 0.15rem 0.75rem; }
  .price-label { flex: 1 1 auto; min-width: 0; }
  .price-value { flex-shrink: 0; }

  /* ── Contact info card: tighter padding ─────────────────────── */
  .contact-info-card { padding: 1.5rem 1.25rem; }

  /* ── Grid / flex children: prevent content overflow ─────────── */
  .grid-2 > *,
  .grid-3 > *,
  .grid-4 > *,
  .about-split > *,
  .hero-content > *,
  .footer-grid > * { min-width: 0; }

  /* ── Email addresses: break at @ to fit container ───────────── */
  .footer-contact-item a[href^="mailto"],
  .contact-method-text a[href^="mailto"] {
    word-break: break-all;
    overflow-wrap: break-word;
  }

  /* ── Sticky call bar: tighter padding on narrow screens ──────── */
  .sticky-call-bar {
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }
  .sticky-call-bar a { font-size: 0.875rem; letter-spacing: 0.01em; }

  /* ── Pill links: allow shrinking ─────────────────────────────── */
  .pill { white-space: normal; }

  /* ── Section padding: slightly tighter on mobile ─────────────── */
  .section { padding: 3rem 0; }

  /* ── Emergency-inline-box: already handled but reinforce ─────── */
  .emergency-inline-box { padding: 1.5rem; }

  /* ── Hero stat labels: prevent wrapping ─────────────────────── */
  .hero-stat-label { white-space: nowrap; font-size: 0.65rem; }
}

@media (max-width: 400px) {
  /* Extra-small screens: further reduce spacing */
  .hero-card { padding: 1.25rem; }
  .pricing-box { padding: 1.25rem 1rem; }
  .contact-info-card { padding: 1.25rem 1rem; }
  .sticky-call-bar a { font-size: 0.8rem; }
}

/* ══ MOBILE ACCORDIONS ═════════════════════════════════════════ */

@keyframes hint-bounce {
  0%, 70%, 100% { transform: translateY(0); }
  40%           { transform: translateY(5px); }
}

/* ── Snake card name plate — hidden everywhere ──────────────── */
.snake-card-nameplate { display: none; }

/* ── Snake card expand hint bar ─────────────────────────────── */
.snake-expand-hint { display: none; }

@media (max-width: 767px) {
  .snake-expand-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--green-dark);
    color: rgba(255,255,255,0.92);
    transition: filter var(--transition);
  }
  .snake-card-header.venomous + .snake-expand-hint { background: #b84400; }
  .snake-expand-hint:hover { filter: brightness(1.15); }

  .expand-chevron { transition: transform 0.3s ease; flex-shrink: 0; }
  .snake-card:not(.expanded) .expand-chevron { animation: hint-bounce 2.8s ease-in-out infinite; }
  .snake-card.expanded .expand-chevron { transform: rotate(180deg); animation: none; }

  .snake-card .snake-card-body {
    overflow: hidden;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.4s ease, padding-top 0.4s ease, padding-bottom 0.4s ease;
  }
  .snake-card.expanded .snake-card-body {
    max-height: 2000px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* ── Service accordion trigger ──────────────────────────────── */
.service-accordion-trigger { display: none; }

@media (max-width: 767px) {
  .service-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 1.25rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    background: var(--green-dark);
    color: white;
    text-align: left;
    transition: background-color var(--transition);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
  }
  .service-accordion-trigger:hover { background: var(--green-mid); }

  .service-accordion-left { display: flex; align-items: center; gap: 0.875rem; }

  .service-accordion-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--earth-light);
    line-height: 1;
    flex-shrink: 0;
  }

  .service-accordion-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    line-height: 1.25;
  }

  .service-accordion-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 0.2rem;
  }

  .service-accordion-chevron {
    flex-shrink: 0;
    color: var(--earth-light);
    transition: transform 0.3s ease;
  }
  .service-accordion-trigger[aria-expanded="false"] .service-accordion-chevron {
    animation: hint-bounce 2.8s ease-in-out infinite;
  }
  .service-accordion-trigger[aria-expanded="true"] .service-accordion-chevron {
    transform: rotate(180deg);
    animation: none;
  }

  /* Collapse service rows on mobile — revealed by trigger */
  .service-row {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s ease;
    padding: 0;
    border-bottom: none;
    margin-bottom: 0;
  }
  .service-row.expanded {
    max-height: 5000px;
    border-bottom: 1px solid var(--cream-mid);
    margin-bottom: 1.5rem;
  }

  /* Hide the big decorative numbers inside rows on mobile (shown in trigger) */
  .service-number { display: none; }
}
