/* ============================================================
   SO FLO PRO — Official Website Stylesheet v2.0
   Prepared by Paez Media Services
   Brand-locked per SoFlo Pro Brand Standards v1.0
   ============================================================ */

/* ---------- BRAND TOKENS ---------- */
:root {
  --turf-green: #3FAE2A;
  --deep-green: #1F5F1A;
  --sunset-orange: #F7931E;
  --palm-yellow: #FFC72C;
  --sky-blue: #3FA9F5;
  --charcoal: #1A1A1A;
  --off-white: #F5F5F5;
  --concrete-gray: #CFCFCF;
  --white: #FFFFFF;

  --font-headline: 'Bebas Neue', Impact, sans-serif;
  --font-subhead: 'Oswald', Arial, sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --pad-page: 32px;
  --gap-section-lg: 88px;
  --pad-card: 24px;
  --max-width: 1240px;
  --radius: 4px;
  --ease: 0.25s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--charcoal);
  line-height: 0.95;
  margin: 0 0 16px;
}
h1 { font-size: clamp(3rem, 9vw, 6.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.125rem); }
h4 {
  font-family: var(--font-subhead);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.0625rem;
  margin: 0 0 12px;
  color: var(--charcoal);
}
p { margin: 0 0 16px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-subhead);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8125rem;
  color: var(--turf-green);
  margin: 0 0 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--turf-green);
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-page);
}
section { padding: var(--gap-section-lg) 0; position: relative; }

/* ---------- ACCENT CORNER BRACKETS (brand guide layout system) ---------- */
.accent-corners { position: relative; }
.accent-corners::before,
.accent-corners::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--turf-green);
  transition: border-color var(--ease), width var(--ease), height var(--ease);
  pointer-events: none;
}
.accent-corners::before {
  top: -2px;
  left: -2px;
  border-right: 0;
  border-bottom: 0;
}
.accent-corners::after {
  bottom: -2px;
  right: -2px;
  border-left: 0;
  border-top: 0;
}
.accent-corners:hover::before,
.accent-corners:hover::after {
  border-color: var(--sunset-orange);
  width: 26px;
  height: 26px;
}
.accent-orange::before,
.accent-orange::after { border-color: var(--sunset-orange) !important; }

/* ---------- TICK DIVIDER ---------- */
.tick-divider {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 1px;
  background: var(--concrete-gray);
  margin: 56px auto;
}
.tick-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--turf-green);
}
.tick-divider.on-dark { background: rgba(255,255,255,0.15); }
.tick-divider.on-dark::after { background: var(--sunset-orange); }

/* ---------- ORANGE PILL BADGE ---------- */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sunset-orange);
  color: var(--white);
  font-family: var(--font-subhead);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8125rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.pill-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.3); }
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--turf-green);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 64px;
  width: auto;
  border-radius: var(--radius);
}
.nav-primary {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-primary a {
  font-family: var(--font-subhead);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.875rem;
  color: var(--charcoal);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}
.nav-primary a:hover {
  color: var(--turf-green);
  border-bottom-color: var(--turf-green);
}
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.lang-toggle {
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  padding: 8px 12px;
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  background: var(--white);
  transition: background var(--ease), color var(--ease);
}
.lang-toggle:hover { background: var(--turf-green); color: var(--white); border-color: var(--turf-green); }

/* ---------- SOCIAL ICONS (header) ---------- */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  color: var(--charcoal);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  background: var(--turf-green);
  color: var(--white);
  border-color: var(--turf-green);
  transform: translateY(-2px);
}
.social-icon:hover svg { color: var(--white); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--charcoal);
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-subhead);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--turf-green);
  color: var(--white);
  box-shadow: 0 0 0 2px var(--turf-green);
}
.btn-primary:hover { background: var(--sunset-orange); box-shadow: 0 0 0 2px var(--sunset-orange); }
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-ghost:hover { background: var(--white); color: var(--charcoal); }
.btn-sm { padding: 10px 18px; font-size: 0.8125rem; }
.btn-block { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 110px;
  isolation: isolate;
}
/* Left green accent bar */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 14px;
  background: linear-gradient(var(--turf-green), var(--deep-green));
  z-index: 2;
}
/* Diagonal green geometric accent */
.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, transparent 35%, var(--deep-green) 35%, var(--deep-green) 38%, transparent 38%, transparent 52%, var(--turf-green) 52%, var(--turf-green) 54%, transparent 54%);
  opacity: 0.35;
  z-index: 1;
}
/* Palm silhouettes */
.hero-palm {
  position: absolute;
  color: var(--turf-green);
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}
.hero-palm.left { bottom: -30px; left: 30px; width: 220px; }
.hero-palm.right { top: -40px; right: -30px; width: 280px; transform: rotate(15deg); }

.hero .container {
  position: relative;
  z-index: 3;
  max-width: 900px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3.5rem, 11vw, 8.5rem);
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero h1 .accent { color: var(--sunset-orange); }
.hero .subhead {
  font-family: var(--font-subhead);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--palm-yellow);
  font-size: clamp(0.875rem, 1.4vw, 1.125rem);
  margin-bottom: 28px;
}
.hero .offer {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  max-width: 620px;
  margin-bottom: 36px;
  opacity: 0.95;
  line-height: 1.55;
}
.hero .offer strong { color: var(--palm-yellow); font-weight: 700; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--charcoal);
  color: var(--white);
  padding: 18px 0;
  border-top: 4px solid var(--sunset-orange);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 30px;
  font-family: var(--font-subhead);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  text-align: center;
}
.trust-strip .sep {
  color: var(--turf-green);
  font-size: 1.25rem;
  line-height: 1;
}

/* ---------- SECTION HEADERS ---------- */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head p {
  color: var(--charcoal);
  opacity: 0.8;
  font-size: 1.0625rem;
}
.section-head.on-dark p { color: var(--off-white); opacity: 0.85; }
.section-head.on-dark h2, .section-head.on-dark h3 { color: var(--white); }
.section-head.on-dark .eyebrow { color: var(--palm-yellow); }
.section-head.on-dark .eyebrow::before { background: var(--palm-yellow); }

/* ---------- AUDIENCE SELECTOR ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--concrete-gray);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  text-align: left;
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.audience-card .icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--turf-green);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--ease);
}
.audience-card:hover .icon-wrap { background: var(--sunset-orange); }
.audience-card .icon-wrap svg { width: 34px; height: 34px; }
.audience-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.audience-card p { opacity: 0.82; margin-bottom: 24px; flex: 1; }
.audience-card .link {
  font-family: var(--font-subhead);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--turf-green);
  font-size: 0.875rem;
  padding-top: 16px;
  border-top: 1px solid var(--concrete-gray);
}
.audience-card:hover .link { color: var(--sunset-orange); }

/* ---------- SERVICES OVERVIEW ---------- */
.services-bg {
  background: var(--off-white);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.service-card .thumb {
  aspect-ratio: 16 / 9;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
}
.service-card .thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 35%, var(--turf-green) 35%, var(--turf-green) 38%, transparent 38%),
    linear-gradient(135deg, transparent 50%, var(--deep-green) 50%, var(--deep-green) 54%, transparent 54%),
    var(--charcoal);
}
.service-card .thumb-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--turf-green);
  width: 88px; height: 88px;
  opacity: 0.9;
}
.service-card .thumb-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-headline);
  font-size: 1.75rem;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.service-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { flex: 1; opacity: 0.85; }

/* ---------- GALLERY — before/after diagonal split ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform var(--ease);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    #4a4a4a 0%, #4a4a4a 48%,
    transparent 48%, transparent 52%,
    var(--turf-green) 52%, var(--deep-green) 100%);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 6px);
}
.gallery-item .label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: var(--font-subhead);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  z-index: 2;
}
.gallery-item .label .before { opacity: 0.8; }
.gallery-item .label .after { color: var(--palm-yellow); }

/* ---------- WHY SOFLO PRO (pillars) ---------- */
.pillars-bg {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.pillars-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--turf-green) 0%, var(--turf-green) 60%, var(--sunset-orange) 60%, var(--sunset-orange) 100%);
}
.pillars-bg h2 { color: var(--white); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.pillar {
  text-align: left;
  padding: 32px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  position: relative;
}
.pillar::before,
.pillar::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--sunset-orange);
}
.pillar::before {
  top: -2px; left: -2px;
  border-right: 0; border-bottom: 0;
}
.pillar::after {
  bottom: -2px; right: -2px;
  border-left: 0; border-top: 0;
}
.pillar .num {
  font-family: var(--font-headline);
  font-size: 4rem;
  color: var(--turf-green);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.pillar h3 { color: var(--white); margin-bottom: 12px; }
.pillar p { color: var(--off-white); opacity: 0.85; margin: 0; }

/* ---------- SERVICE AREA ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.area-map {
  aspect-ratio: 4 / 3;
  background: var(--off-white);
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.area-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.area-list h4 {
  color: var(--turf-green);
  margin-top: 24px;
  font-size: 1rem;
  border-bottom: 2px solid var(--concrete-gray);
  padding-bottom: 8px;
}
.area-list h4:first-child { margin-top: 0; }
.area-list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
}
.area-list li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--off-white);
}
.area-list li::before {
  content: "▸ ";
  color: var(--turf-green);
  font-weight: 700;
}
.area-list .more-cities {
  display: block;
  font-family: var(--font-subhead);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  color: var(--turf-green);
  margin: 8px 0 4px;
  font-style: italic;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-bg { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.testimonial .stars { color: var(--sunset-orange); letter-spacing: 3px; margin-bottom: 14px; font-size: 1.125rem; }
.testimonial p { font-style: italic; margin-bottom: 18px; opacity: 0.92; }
.testimonial .name {
  font-family: var(--font-subhead);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9375rem;
  color: var(--charcoal);
}
.testimonial .meta {
  font-size: 0.8125rem;
  opacity: 0.65;
  margin-top: 2px;
}

/* ---------- FORM / QUOTE ---------- */
.form-bg {
  background: var(--deep-green);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.form-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--sunset-orange);
}
.form-bg::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 260px; height: 260px;
  background: var(--turf-green);
  opacity: 0.2;
  border-radius: 50%;
}
.form-bg .container { position: relative; z-index: 2; }
.form-bg h2 { color: var(--white); }
.quote-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  color: var(--charcoal);
  padding: 44px 40px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.quote-form::before,
.quote-form::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid var(--sunset-orange);
}
.quote-form::before {
  top: -3px; left: -3px;
  border-right: 0; border-bottom: 0;
}
.quote-form::after {
  bottom: -3px; right: -3px;
  border-left: 0; border-top: 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.full { grid-template-columns: 1fr; }
.field label {
  display: block;
  font-family: var(--font-subhead);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8125rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--concrete-gray);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--turf-green);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-guarantee {
  text-align: center;
  margin-top: 22px;
  font-size: 0.9375rem;
  color: var(--charcoal);
  opacity: 0.85;
  font-family: var(--font-subhead);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.form-guarantee strong { color: var(--turf-green); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 72px 0 28px;
  font-size: 0.9375rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--turf-green), var(--sunset-orange));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand .logo img {
  height: 80px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.footer-brand .tagline {
  font-family: var(--font-headline);
  font-size: 1.75rem;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-brand p { opacity: 0.85; }
.footer-brand .credentials {
  display: inline-block;
  font-family: var(--font-subhead);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8125rem;
  color: var(--palm-yellow);
  margin-top: 6px;
}
.footer-col h4 {
  color: var(--sunset-orange);
  font-size: 0.875rem;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { transition: color var(--ease); }
.footer-col a:hover { color: var(--turf-green); }
.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  font-size: 0.8125rem;
  opacity: 0.85;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer .legal a {
  color: var(--turf-green);
  font-weight: 600;
  transition: color var(--ease);
}
.site-footer .legal a:hover { color: var(--sunset-orange); }

/* ---------- SERVICE LIST GRID (sub-pages) ---------- */
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-list-item {
  background: var(--white);
  padding: 32px 26px;
  border: 1px solid var(--concrete-gray);
  border-radius: var(--radius);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.service-list-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
  border-color: var(--turf-green);
}
.service-list-item .icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--turf-green);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--ease);
}
.service-list-item:hover .icon-wrap { background: var(--sunset-orange); }
.service-list-item .icon-wrap svg { width: 26px; height: 26px; }
.service-list-item h4 {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.service-list-item p {
  margin: 0;
  font-size: 0.9375rem;
  opacity: 0.82;
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .service-list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .service-list-grid { grid-template-columns: 1fr; }
}

/* ---------- PROCESS GRID (service pages) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-step {
  text-align: center;
  padding: 16px 8px;
}
.process-step .step-num {
  width: 64px;
  height: 64px;
  background: var(--charcoal);
  color: var(--turf-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 1.875rem;
  margin: 0 auto 20px;
  border: 3px solid var(--turf-green);
  letter-spacing: 0.02em;
}
.process-step h4 {
  margin-bottom: 10px;
  font-size: 1.0625rem;
}
.process-step p {
  font-size: 0.9375rem;
  opacity: 0.82;
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- SUB-PAGE HERO (lighter than homepage) ---------- */
.hero.subpage { padding: 96px 0 80px; }
.hero.subpage h1 { font-size: clamp(2.75rem, 8vw, 5.5rem); }

/* ---------- LANGUAGE TOAST ---------- */
.lang-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 60px);
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-family: var(--font-subhead);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border-left: 4px solid var(--sunset-orange);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  z-index: 200;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  max-width: 90%;
  text-align: center;
}
.lang-toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .audience-grid, .pillars-grid, .testimonials-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-palm.right { width: 220px; opacity: 0.08; }
}
@media (max-width: 768px) {
  :root { --pad-page: 20px; --gap-section-lg: 64px; }
  .site-header .container { height: 72px; }
  .logo img { height: 52px; }
  .nav-primary {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 20px var(--pad-page);
    border-bottom: 2px solid var(--turf-green);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-120%);
    transition: transform var(--ease);
  }
  .nav-primary.open { transform: translateY(0); }
  .nav-primary a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--off-white);
  }
  .nav-toggle { display: block; }
  .services-grid, .audience-grid, .pillars-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 88px 0 72px; }
  .hero-palm.left { width: 160px; bottom: -10px; left: 10px; }
  .hero-palm.right { display: none; }
  .hero-accent { width: 60%; }
  .area-list ul { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .trust-strip .container { gap: 6px 18px; font-size: 0.75rem; }
  .hero-actions .btn { width: 100%; }
  .audience-card h3 { font-size: 1.625rem; }
  .lang-toggle { padding: 6px 10px; font-size: 0.75rem; }
  .social-icon { width: 36px; height: 36px; }
  .social-icon svg { width: 16px; height: 16px; }
}

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.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;
}
