/* ============================================
   FLAMINGO PROPERTY MANAGEMENT — IMMERSIVE
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Typography */
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', -apple-system, sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Content */
  --content-default: 960px;
  --content-wide: 1200px;
}

/* --- Light Mode (default) --- */
:root, [data-theme="light"] {
  --color-bg: #f0f0eb;
  --color-surface: #eaeae5;
  --color-surface-2: #f5f5f2;
  --color-border: rgba(0,0,0,0.06);
  --color-divider: rgba(0,0,0,0.05);

  --color-text: #1a2e1a;
  --color-text-muted: #5a6e5a;
  --color-text-faint: #8a9a8a;
  --color-text-inverse: #f0f0eb;

  --color-primary: #1B5E20;
  --color-primary-hover: #145218;
  --color-primary-active: #0e3e12;

  --color-accent: #F8BBD0;
  --color-accent-hover: #f48fb1;
  --color-accent-active: #f06292;
  --color-accent-highlight: #fce4ec;

  --shadow-sm: 0 1px 3px rgba(26, 46, 26, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 46, 26, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 46, 26, 0.12);
  --shadow-xl: 0 20px 60px rgba(26, 46, 26, 0.16);

  --hero-overlay: rgba(15, 26, 15, 0.55);
  --card-bg: #ffffff;
  --nav-bg: rgba(240, 240, 235, 0.88);

  /* Neumorphic shadows — light mode */
  --neu-raised: 6px 6px 16px rgba(0,0,0,0.08), -6px -6px 16px rgba(255,255,255,0.9);
  --neu-raised-hover: 8px 8px 22px rgba(0,0,0,0.1), -8px -8px 22px rgba(255,255,255,0.95);
  --neu-pressed: inset 3px 3px 6px rgba(0,0,0,0.08), inset -3px -3px 6px rgba(255,255,255,0.7);
  --neu-soft: 3px 3px 8px rgba(0,0,0,0.05), -3px -3px 8px rgba(255,255,255,0.7);
  --neu-inset: inset 3px 3px 7px rgba(0,0,0,0.07), inset -3px -3px 7px rgba(255,255,255,0.65);
}

/* --- Dark Mode --- */
[data-theme="dark"] {
  --color-bg: #121d12;
  --color-surface: #152015;
  --color-surface-2: #1a2a1a;
  --color-border: #2a3d2a;
  --color-divider: #223322;

  --color-text: #d4e4d4;
  --color-text-muted: #8aaa8a;
  --color-text-faint: #5a7a5a;
  --color-text-inverse: #0f1a0f;

  --color-primary: #4CAF50;
  --color-primary-hover: #66BB6A;
  --color-primary-active: #81C784;

  --color-accent: #f48fb1;
  --color-accent-hover: #F8BBD0;
  --color-accent-active: #f06292;
  --color-accent-highlight: #3a2030;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);

  --hero-overlay: rgba(10, 18, 10, 0.65);
  --card-bg: #152015;
  --nav-bg: rgba(18, 29, 18, 0.92);

  /* Neumorphic shadows — dark mode */
  --neu-raised: 6px 6px 14px rgba(0,0,0,0.5), -6px -6px 14px rgba(50,75,50,0.12);
  --neu-raised-hover: 8px 8px 18px rgba(0,0,0,0.55), -8px -8px 18px rgba(50,75,50,0.15);
  --neu-pressed: inset 4px 4px 8px rgba(0,0,0,0.45), inset -4px -4px 8px rgba(50,75,50,0.1);
  --neu-soft: 3px 3px 8px rgba(0,0,0,0.35), -3px -3px 8px rgba(50,75,50,0.08);
  --neu-inset: inset 3px 3px 7px rgba(0,0,0,0.4), inset -3px -3px 7px rgba(50,75,50,0.07);
}

/* System preference fallback */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #121d12;
    --color-surface: #152015;
    --color-surface-2: #1a2a1a;
    --color-border: #2a3d2a;
    --color-divider: #223322;
    --color-text: #d4e4d4;
    --color-text-muted: #8aaa8a;
    --color-text-faint: #5a7a5a;
    --color-text-inverse: #0f1a0f;
    --color-primary: #4CAF50;
    --color-primary-hover: #66BB6A;
    --color-primary-active: #81C784;
    --color-accent: #f48fb1;
    --color-accent-hover: #F8BBD0;
    --color-accent-active: #f06292;
    --color-accent-highlight: #3a2030;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.6);
    --hero-overlay: rgba(10,18,10,0.65);
    --card-bg: #152015;
    --nav-bg: rgba(18,29,18,0.92);
    --neu-raised: 6px 6px 14px rgba(0,0,0,0.5), -6px -6px 14px rgba(50,75,50,0.12);
    --neu-raised-hover: 8px 8px 18px rgba(0,0,0,0.55), -8px -8px 18px rgba(50,75,50,0.15);
    --neu-pressed: inset 4px 4px 8px rgba(0,0,0,0.45), inset -4px -4px 8px rgba(50,75,50,0.1);
    --neu-soft: 3px 3px 8px rgba(0,0,0,0.35), -3px -3px 8px rgba(50,75,50,0.08);
    --neu-inset: inset 3px 3px 7px rgba(0,0,0,0.4), inset -3px -3px 7px rgba(50,75,50,0.07);
  }
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
body {
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section {
  position: relative;
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  overflow: hidden;
}

/* ============================================
   SVG PATTERN OVERLAYS
   ============================================ */
.svg-pattern-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: radial-gradient(circle, var(--color-accent) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.svg-dot-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, var(--color-primary) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  pointer-events: none;
}

.svg-lines-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.025;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--color-primary) 0,
    var(--color-primary) 1px,
    transparent 1px,
    transparent 20px
  );
  pointer-events: none;
}

/* ============================================
   FLOATING PARTICLES
   ============================================ */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) rotate(0deg);
  }
  10% {
    opacity: 0.35;
  }
  90% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) rotate(360deg);
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--color-divider);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-4) var(--space-6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  font-size: var(--text-lg);
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: var(--space-8);
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-active);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Active nav link */
.nav-links a.active {
  color: var(--color-primary);
  font-weight: 700;
}

.nav-links a.active::after {
  width: 100%;
  background: var(--color-primary);
}

/* ── Services Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0 0 2px 0;
}

.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-active);
  transition: width 0.3s var(--ease-out);
}

.nav-dropdown-toggle:hover {
  color: var(--color-text);
}

.nav-dropdown-toggle:hover::after {
  width: 100%;
}

.nav-dropdown-toggle.active {
  color: var(--color-primary);
  font-weight: 700;
}

.nav-dropdown-toggle.active::after {
  width: 100%;
  background: var(--color-primary);
}

.nav-dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--color-card-bg, #ffffff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2) 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: var(--color-bg, #f0f0eb);
  color: var(--color-primary);
}

.nav-dropdown-menu a .dropdown-icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  opacity: 0.7;
}

.nav-dropdown-menu a:hover .dropdown-icon {
  opacity: 1;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-2) var(--space-4);
}

.nav-dropdown-menu .dropdown-view-all {
  color: var(--color-primary);
  font-weight: 600;
}

/* Mobile menu services accordion */
.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
}

.mobile-services-toggle .mobile-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease-out);
}

.mobile-services-toggle.open .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-services-sub {
  display: none;
  padding-left: var(--space-4);
  margin-top: var(--space-2);
}

.mobile-services-sub.open {
  display: block;
}

.mobile-services-sub a {
  display: block;
  padding: var(--space-2) 0;
  font-size: 0.9em;
  opacity: 0.85;
}

.mobile-services-sub a:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  box-shadow: var(--neu-inset);
  background: var(--color-bg);
  transition: color var(--transition-interactive), background var(--transition-interactive), box-shadow var(--transition-interactive);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-bg);
  box-shadow: var(--neu-soft);
}

.theme-toggle:active {
  box-shadow: var(--neu-pressed);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-5);
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background var(--transition-interactive), transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.nav-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.nav-cta:active {
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  transform: translateY(0);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 110;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  text-align: center;
}

.mobile-menu-content ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.mobile-link {
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--text-xl);
  font-weight: 700;
}

.mobile-cta {
  display: inline-flex;
  padding: var(--space-4) var(--space-8);
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-size: var(--text-lg);
  font-weight: 600;
  border-radius: var(--radius-full);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Animated gradient mesh */
.hero-gradient-mesh {
  position: absolute;
  inset: -50%;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(27, 94, 32, 0.3), transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(244, 143, 177, 0.2), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(27, 94, 32, 0.15), transparent 60%);
  animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-3%, 2%) scale(1.02); }
  66% { transform: translate(2%, -2%) scale(0.98); }
  100% { transform: translate(-1%, 1%) scale(1.01); }
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--hero-overlay);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
  padding: var(--space-8) var(--space-6);
  padding-top: calc(var(--space-16) + 60px);
}

.hero-tagline {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1rem + 3.5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: var(--space-6);
  line-height: 1.08;
}

/* Splitting.js character styles */
.hero-heading .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: charReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--char-index) * 35ms + 300ms);
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-heading .whitespace {
  width: 0.3em;
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

/* --- Stats --- */
.hero-stats {
  display: flex;
  gap: var(--space-10);
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #ffffff;
  font-variant-numeric: tabular-nums lining-nums;
}

.stat-suffix {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-accent);
}

.stat-label {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-1);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-line {
  width: 2px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color-accent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive),
    border-color var(--transition-interactive),
    transform var(--transition-interactive),
    box-shadow var(--transition-interactive);
}

.btn-primary {
  background: var(--color-accent-active);
  color: #1a2e1a;
  border-color: var(--color-accent-active);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.16), 0 2px 6px rgba(0,0,0,0.1);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-active);
  margin-bottom: var(--space-4);
}

[data-theme="dark"] .section-label {
  color: var(--color-accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
}

.section-header {
  margin-bottom: var(--space-12);
}

.section-header .section-desc {
  margin-top: var(--space-2);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-12);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal-section {
  opacity: 0;
  clip-path: inset(8% 0 0 0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), clip-path 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-section.revealed {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

/* Staggered children delay */
.reveal-section[style*="--stagger"] {
  transition-delay: calc(var(--stagger, 0) * 80ms);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--neu-raised);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--neu-raised-hover);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
  box-shadow: var(--neu-inset);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--color-accent-highlight);
  transform: scale(1.05);
  box-shadow: var(--neu-soft);
}

.service-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.service-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.service-card-link:hover {
  text-decoration: underline;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  position: relative;
  background: var(--color-surface);
}

.parallax-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.parallax-layer {
  position: absolute;
  inset: -20%;
  will-change: transform;
}

.parallax-layer-1 {
  background: radial-gradient(ellipse 60% 50% at 20% 40%, rgba(27, 94, 32, 0.06), transparent 60%);
}

.parallax-layer-2 {
  background: radial-gradient(ellipse 50% 60% at 80% 60%, rgba(244, 143, 177, 0.05), transparent 60%);
}

.parallax-layer-3 {
  background: radial-gradient(ellipse 80% 40% at 50% 30%, rgba(27, 94, 32, 0.04), transparent 60%);
}

.why-us-content {
  position: relative;
  z-index: 1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.value-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  box-shadow: var(--neu-raised);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--neu-raised-hover);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  color: var(--color-primary);
  box-shadow: var(--neu-inset);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--color-accent-highlight);
  box-shadow: var(--neu-soft);
}

.value-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   ABOUT / QUOTE
   ============================================ */
.about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-role {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent-active);
  margin-bottom: var(--space-6);
}

[data-theme="dark"] .about-role {
  color: var(--color-accent);
}

.about-text p:last-child {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.quote-block {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  border-left: 4px solid var(--color-accent-active);
  box-shadow: var(--neu-raised);
}

.quote-marks {
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.quote-text {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: var(--space-6);
  position: relative;
}

/* Word-by-word reveal */
.quote-text .word {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.quote-text .word.word-visible {
  opacity: 1;
}

.quote-cite {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ============================================
   CONTACT (Homepage Section)
   ============================================ */
.contact {
  background: var(--color-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: var(--text-sm);
}

.contact-detail-item:hover {
  color: var(--color-primary);
}

.contact-detail-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent-active);
  flex-shrink: 0;
}

[data-theme="dark"] .contact-detail-item svg {
  color: var(--color-accent);
}

.contact-form {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--neu-raised);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.required {
  color: var(--color-accent-active);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  box-shadow: var(--neu-inset);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
  appearance: auto;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--neu-pressed), 0 0 0 2px rgba(27, 94, 32, 0.12);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-faint);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-status {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  min-height: 1.5em;
}

.form-status.success {
  color: var(--color-primary);
}

.form-status.error {
  color: #c62828;
}

.form-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
  text-align: center;
}

/* ============================================
   SERVICE AREAS PREVIEW (Homepage)
   ============================================ */
.service-areas-preview {
  background: var(--color-bg);
}

/* ============================================
   AREA CARDS (Homepage + Contact)
   ============================================ */
.area-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.area-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--neu-raised);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--neu-raised-hover);
}

.area-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
  box-shadow: var(--neu-inset);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover .area-card-icon {
  background: var(--color-accent-highlight);
  box-shadow: var(--neu-soft);
}

.area-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.area-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.area-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.area-card-link:hover {
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-surface);
  border-top: none;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06), 0 -1px 4px rgba(0,0,0,0.04);
  padding-block: var(--space-12);
}

[data-theme="dark"] .site-footer {
  box-shadow: 0 -4px 20px rgba(0,0,0,0.35), 0 -1px 6px rgba(0,0,0,0.25);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--space-12);
  align-items: start;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.footer-tagline {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  max-width: 280px;
}

/* Footer Navigation */
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--transition-interactive);
}

.footer-nav a:hover {
  color: var(--color-primary);
}

.footer-legal-links {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}

.footer-legal-links a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-legal-links a:hover {
  color: var(--color-text-muted);
}

/* Footer Contact Block */
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-contact-heading {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-1);
}

.footer-contact-item {
  display: block;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-interactive);
}

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

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-6);
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
}

/* Legacy support for old footer links */
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
}

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

.footer-sep {
  color: var(--color-text-faint);
}

/* ============================================
   PAGE HERO (Inner Pages) — Image + Neumorphic
   ============================================ */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px; /* account for fixed nav */
  padding-bottom: var(--space-8);
}

/* When neumorphic cards are present, hero needs more height */
.page-hero:has(.hero-neu-cards) {
  min-height: max(65vh, 600px);
}

/* Background image layer */
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7) saturate(1.1);
  transition: filter 0.5s;
}

/* Animated gradient mesh — sits above image */
.page-hero-mesh {
  position: absolute;
  inset: -50%;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(27, 94, 32, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(244, 143, 177, 0.25), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(27, 94, 32, 0.2), transparent 60%);
  animation: meshShift 12s ease-in-out infinite alternate;
  mix-blend-mode: overlay;
}

/* Particles within page-hero (inner pages) */
.page-hero .particles {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(15,26,15,0.55) 0%, rgba(15,26,15,0.7) 100%);
}

/* Content wrapper: two-column on desktop */
.page-hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-8);
  align-items: center;
  max-width: var(--content-wide);
  width: 100%;
  padding: var(--space-12) var(--space-6);
}

/* Left: text column */
.page-hero-text {
  text-align: left;
}

/* Fallback: center text when no neumorphic cards present */
.page-hero-content:not(:has(.hero-neu-cards)) {
  grid-template-columns: 1fr;
  text-align: center;
}
.page-hero-content:not(:has(.hero-neu-cards)) .page-hero-text {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1rem + 2.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: var(--space-2);
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-location-tag {
  font-size: clamp(0.85rem, 0.7rem + 0.5vw, 1.05rem);
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-location-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Splitting.js on page titles */
.page-hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: charReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--char-index) * 28ms + 200ms);
}

.page-hero-title .whitespace {
  width: 0.3em;
}

.page-hero-sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.page-hero-content:not(:has(.hero-neu-cards)) .page-hero-sub {
  margin: 0 auto;
}

/* Hero CTA buttons row */
.hero-cta-row {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}
.page-hero-content:not(:has(.hero-neu-cards)) .hero-cta-row {
  justify-content: center;
}

/* ── Neumorphic Hero Cards (right column) ── */
.hero-neu-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.hero-neu-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  box-shadow:
    6px 6px 18px rgba(0,0,0,0.2),
    -4px -4px 12px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.hero-neu-card:hover {
  transform: translateY(-2px);
  box-shadow:
    8px 8px 24px rgba(0,0,0,0.25),
    -6px -6px 16px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Stat card variant */
.hero-neu-stat {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hero-neu-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(27,94,32,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.15), inset -2px -2px 5px rgba(255,255,255,0.08);
}

.hero-neu-stat-icon svg {
  width: 22px;
  height: 22px;
}

.hero-neu-stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2px;
}

.hero-neu-stat-value {
  font-size: var(--text-lg);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

/* CTA card variant */
.hero-neu-cta {
  background: rgba(27,94,32,0.35);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(76,175,80,0.3);
  text-align: center;
  padding: var(--space-5);
}

.hero-neu-cta-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-2);
}

.hero-neu-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Responsive: stack on smaller screens */
@media (max-width: 900px) {
  .page-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-hero-text {
    text-align: center;
  }
  .page-hero-sub {
    margin: 0 auto;
  }
  .hero-cta-row {
    justify-content: center;
  }
  .hero-neu-cards {
    flex-direction: row;
    overflow-x: auto;
    gap: var(--space-3);
    padding-bottom: var(--space-2);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-neu-cards::-webkit-scrollbar {
    display: none;
  }
  .hero-neu-card {
    min-width: 200px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 50vh;
  }
  .hero-neu-cards {
    flex-direction: column;
  }
  .hero-neu-card {
    min-width: auto;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: var(--space-5);
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumbs li {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  opacity: 0.5;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumbs a:hover {
  color: #ffffff;
}

.breadcrumbs li[aria-current="page"] {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ============================================
   CONTENT SECTIONS (Inner Pages)
   ============================================ */
.content-section {
  background: var(--color-bg);
}

.content-section--alt {
  background: var(--color-surface);
}

/* Intro Statement Block */
.intro-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-statement {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-weight: 500;
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */
.service-detail {
  position: relative;
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  overflow: hidden;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-12);
  align-items: start;
}

.service-detail-grid--reverse {
  direction: rtl;
}

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

.service-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--color-accent-highlight);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}

.service-detail-icon svg {
  width: 28px;
  height: 28px;
}

.service-detail-text h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.service-detail-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
  max-width: 65ch;
}

.service-detail-text h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  margin-top: var(--space-6);
}

.service-includes {
  list-style: none;
  margin: var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-includes li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
  max-width: none;
}

.service-includes li svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Fact Card (Service Detail Sidebar) */
.fact-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: sticky;
  top: 100px;
  box-shadow: var(--neu-raised);
}

.fact-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.fact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.fact-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: none;
}

.fact-list li strong {
  display: block;
  color: var(--color-text);
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  position: relative;
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  overflow: hidden;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--neu-raised);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--neu-raised-hover);
  transform: translateY(-1px);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: 100%;
  padding: var(--space-6) var(--space-6);
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  border: none;
  background: none;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-6);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--color-primary);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  overflow: hidden;
  background: var(--color-primary-active);
}

[data-theme="dark"] .cta-banner {
  background: var(--color-primary-active);
}

.cta-banner-mesh {
  position: absolute;
  inset: -50%;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 40%, rgba(244, 143, 177, 0.25), transparent 60%),
    radial-gradient(ellipse 60% 80% at 70% 60%, rgba(255, 255, 255, 0.05), transparent 60%);
  animation: meshShift 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner-inner h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: var(--space-4);
}

.cta-banner-inner p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
}

.cta-banner-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.about-story-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
  max-width: 60ch;
}

.about-story-text h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.about-quote-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.about-owner-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-5);
  box-shadow: var(--neu-raised);
}

.owner-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-full);
  background: var(--card-bg);
  color: var(--color-primary);
  box-shadow: var(--neu-inset);
}

.owner-name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.owner-title {
  font-size: var(--text-xs);
  color: var(--color-accent-active);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
}

[data-theme="dark"] .owner-title {
  color: var(--color-accent);
}

.owner-contact {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.owner-contact a {
  color: var(--color-primary);
  text-decoration: none;
}

/* Values Detail Grid (About page) */
.values-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.value-detail-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--neu-raised);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--neu-raised-hover);
}

.value-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  color: var(--color-primary);
  margin-bottom: var(--space-5);
  box-shadow: var(--neu-inset);
}

.value-detail-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.value-detail-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Why Local Section */
.why-local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.why-local-text h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.why-local-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
  max-width: 60ch;
}

.local-fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.local-fact {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--neu-soft);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.local-fact:hover {
  box-shadow: var(--neu-raised);
  transform: translateY(-2px);
}

.local-fact svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.local-fact h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.local-fact p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Coverage Block */
.coverage-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.coverage-text h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.coverage-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
  max-width: 55ch;
}

.coverage-cities {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.coverage-city {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--neu-soft);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.coverage-city:hover {
  box-shadow: var(--neu-raised);
  transform: translateY(-2px);
}

.coverage-city svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.coverage-city strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.coverage-city p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  max-width: none;
}

/* ============================================
   SERVICE AREAS PAGE STYLES
   ============================================ */
.area-quick-nav {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

.area-quick-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--card-bg);
  border-radius: var(--radius-full);
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: var(--neu-soft);
  transition: all var(--transition-interactive);
}

.area-quick-link:hover {
  color: var(--color-primary);
  background: var(--card-bg);
  box-shadow: var(--neu-raised);
}

.area-quick-link svg {
  width: 16px;
  height: 16px;
}

/* Area Section (full article) */
.area-section {
  position: relative;
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
  overflow: hidden;
}

.area-section-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-12);
  align-items: start;
}

.area-section-grid--reverse {
  direction: rtl;
}

.area-section-grid--reverse > * {
  direction: ltr;
}

.area-section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-accent-highlight);
  color: var(--color-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.area-section-badge svg {
  width: 14px;
  height: 14px;
}

.area-section-text h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.area-section-text h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  margin-top: var(--space-8);
}

.area-section-text p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-5);
  max-width: 65ch;
}

.area-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.area-services-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
  max-width: none;
}

.area-services-list li svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.area-services-list a {
  color: var(--color-text);
  text-decoration: none;
}

.area-services-list a:hover {
  color: var(--color-primary);
}

.area-section-sidebar {
  position: sticky;
  top: 100px;
}

.area-info-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--neu-raised);
}

.area-info-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.area-fact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-2);
}

.area-fact-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: none;
}

.area-fact-list li strong {
  display: block;
  color: var(--color-text);
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

/* Nearby Cities */
.also-serve-block {
  text-align: center;
}

.also-serve-block .section-title {
  margin-bottom: var(--space-4);
}

.also-serve-block .section-desc {
  margin: 0 auto var(--space-8);
}

.nearby-cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-4);
}

.nearby-city {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--card-bg);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
  box-shadow: var(--neu-soft);
}

.nearby-city svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-page-section {
  background: var(--color-surface);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-page-info h2 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-5);
}

.contact-page-info > p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 50ch;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--neu-raised);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-info-card:hover {
  box-shadow: var(--neu-raised-hover);
  transform: translateY(-2px);
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  color: var(--color-primary);
  box-shadow: var(--neu-inset);
}

.contact-info-body {
  flex: 1;
}

.contact-info-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
}

.contact-info-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  display: block;
}

a.contact-info-value:hover {
  color: var(--color-primary);
}

/* Map Placeholder */
.map-placeholder {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--neu-inset);
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(27, 94, 32, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(244, 143, 177, 0.05), transparent 70%);
}

.map-placeholder-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: var(--space-8);
}

.map-icon {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  margin: 0 auto var(--space-3);
}

.map-label {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.map-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.map-cta-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.map-cta-link:hover {
  text-decoration: underline;
}

/* Contact Form Container */
.contact-form-container {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--neu-raised);
}

.form-heading {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.form-subheading {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

/* ============================================
   ABOUT PAGE — ADDITIONAL
   ============================================ */

/* ============================================
   MAGNETIC BTN WRAPPER
   ============================================ */
.magnetic-btn {
  position: relative;
  will-change: transform;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Enhanced Mobile Fixes (768px) --- */
@media (max-width: 768px) {
  /* Make ALL grids single-column */
  .services-grid,
  .values-grid,
  .area-cards-grid,
  .about-grid,
  .contact-grid,
  .service-detail-grid,
  .mission-values-grid,
  .local-facts-grid,
  .nearby-cities-grid,
  .values-detail-grid,
  .about-story-grid,
  .why-local-grid,
  .coverage-block,
  .contact-page-grid,
  .local-fact-grid {
    grid-template-columns: 1fr;
  }

  /* Smaller section padding */
  .section {
    padding-block: clamp(3rem, 6vw, 5rem);
  }

  /* Footer stacks vertically */
  .footer-top {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  /* Page hero smaller */
  .page-hero {
    min-height: auto;
    padding-top: 80px;
  }

  /* Service detail cards stack */
  .service-detail {
    padding: 1.5rem;
  }

  /* FAQ full width */
  .faq-item {
    padding: 0;
  }

  /* CTA banner text smaller */
  .cta-banner h2 {
    font-size: var(--text-xl);
  }

  /* Contact info cards stack */
  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  /* Better touch targets */
  .btn {
    padding: 1rem 2rem;
    min-height: 48px;
  }

  /* Nav logo text hide */
  .nav-logo-text {
    display: none;
  }

  /* Neumorphic shadows lighter on mobile for performance */
  :root, [data-theme="light"] {
    --neu-raised: 4px 4px 10px rgba(0,0,0,0.09), -4px -4px 10px rgba(255,255,255,0.7);
    --neu-raised-hover: 6px 6px 14px rgba(0,0,0,0.11), -6px -6px 14px rgba(255,255,255,0.75);
  }
}

/* --- Narrow Mobile Fixes (480px) --- */
@media (max-width: 480px) {
  .hero-heading {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero-sub {
    font-size: var(--text-sm);
  }

  .hero-stats {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: var(--text-xl);
  }

  .stat-item {
    padding: var(--space-3) var(--space-4);
  }

  .section-title {
    font-size: var(--text-xl);
  }

  .container {
    padding-inline: 1rem;
  }

  .area-quick-nav {
    gap: var(--space-2);
  }

  .area-quick-link {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
  }

  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1100px) {
  .service-detail-grid,
  .area-section-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-grid--reverse,
  .area-section-grid--reverse {
    direction: ltr;
  }
  .fact-card,
  .area-section-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .area-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-story-grid,
  .why-local-grid,
  .coverage-block,
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .nav-cta {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .nav-actions {
    gap: var(--space-2);
  }
  .hero-heading {
    font-size: clamp(2rem, 1rem + 5vw, 3.5rem);
  }
  .hero-stats {
    gap: var(--space-6);
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .local-fact-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .area-cards-grid {
    grid-template-columns: 1fr;
  }
  .values-detail-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: var(--space-6) var(--space-4);
    padding-top: calc(var(--space-16) + 40px);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 300px;
  }
  .contact-form {
    padding: var(--space-6);
  }
  .quote-block {
    padding: var(--space-6);
  }
  .nav-logo-text {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .contact-form-container {
    padding: var(--space-6);
  }
  .page-hero {
    min-height: auto;
  }
}

/* ============================================
   SERVICE PAGES — Additional Styles
   ============================================ */

/* Process Steps (numbered steps for service deep-dives) */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  align-items: start;
}

.process-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.03em;
  flex-shrink: 0;
  text-align: center;
  line-height: 1.2;
}

.process-step-content h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 var(--space-3) 0;
}

.process-step-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0;
}

.process-step-content p + p {
  margin-top: var(--space-3);
}

/* Content Prose (flowing article content) */
.content-prose {
  max-width: 840px;
  margin: 0 auto;
}

.content-prose h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-heading);
  margin: var(--space-10) 0 var(--space-4) 0;
}

.content-prose h3:first-child {
  margin-top: var(--space-4);
}

.content-prose p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.85;
  margin: 0 0 var(--space-6) 0;
}

.content-prose p:last-child {
  margin-bottom: 0;
}

.content-prose strong {
  color: var(--color-text);
  font-weight: 600;
}

.content-prose a {
  color: var(--color-accent);
  text-underline-offset: 3px;
}

/* Mobile: process steps */
@media (max-width: 600px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .process-step-number {
    width: 56px;
    height: 56px;
    font-size: var(--text-xs);
  }
}


/* Featured Page Images */
.page-featured-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin: var(--space-8) 0;
  object-fit: cover;
  max-height: 480px;
}

.page-featured-image-full {
  width: 100%;
  object-fit: cover;
  max-height: 500px;
}

.blog-featured-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin: 0 0 var(--space-8) 0;
  object-fit: cover;
  max-height: 420px;
}

.service-page-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin: var(--space-6) 0 var(--space-8) 0;
  object-fit: cover;
  max-height: 440px;
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

@media (max-width: 768px) {
  .page-featured-image,
  .service-page-image,
  .blog-featured-image {
    max-height: 280px;
    border-radius: var(--radius-lg);
  }
  .blog-card-image {
    height: 180px;
  }
}
