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

:root {
  --sage: #8a9e71;
  --sage-dark: #6e8158;
  --sage-darker: #4f5e3d;
  --sage-light: #b8c9a0;
  --cream: #faf7f0;
  --cream-warm: #f3eee3;
  --ink: #1f2419;
  --ink-soft: #4a5240;
  --gray: #6b7065;
  --gray-light: #d8dbd2;
  --white: #ffffff;
  --whatsapp: #25d366;
  --shadow-sm: 0 1px 3px rgba(31, 36, 25, 0.06), 0 4px 14px rgba(31, 36, 25, 0.04);
  --shadow-md: 0 4px 12px rgba(31, 36, 25, 0.08), 0 12px 32px rgba(31, 36, 25, 0.06);
  --shadow-lg: 0 12px 40px rgba(31, 36, 25, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 5; }

/* ================ DRIFTING LEAVES (page-wide ambient) ================ */
.leaf-drift {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.leaf-drift-item {
  position: absolute;
  top: -60px;
  width: 32px;
  height: 32px;
  color: var(--sage);
  opacity: 0;
  animation: leaf-fall 22s linear infinite;
}
.leaf-drift-item svg { width: 100%; height: 100%; display: block; }
@keyframes leaf-fall {
  0%   { transform: translate(0, -60px) rotate(0deg); opacity: 0; }
  8%   { opacity: 0.30; }
  50%  { transform: translate(40px, 50vh) rotate(220deg); opacity: 0.28; }
  92%  { opacity: 0.22; }
  100% { transform: translate(-30px, 110vh) rotate(540deg); opacity: 0; }
}
.leaf-drift-item:nth-child(1) { left: 6%;  width: 28px; height: 28px; animation-duration: 24s; animation-delay: 0s; }
.leaf-drift-item:nth-child(2) { left: 22%; width: 36px; height: 36px; animation-duration: 28s; animation-delay: 6s; }
.leaf-drift-item:nth-child(3) { left: 42%; width: 24px; height: 24px; animation-duration: 26s; animation-delay: 12s; }
.leaf-drift-item:nth-child(4) { left: 60%; width: 32px; height: 32px; animation-duration: 30s; animation-delay: 3s; }
.leaf-drift-item:nth-child(5) { left: 78%; width: 26px; height: 26px; animation-duration: 25s; animation-delay: 16s; }
.leaf-drift-item:nth-child(6) { left: 92%; width: 34px; height: 34px; animation-duration: 27s; animation-delay: 9s; }

/* ================ HERO PARALLAX LAYERS ================ */
.hero-parallax {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.parallax-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.parallax-layer .leaf-deco {
  position: absolute;
  color: var(--sage);
}
.parallax-layer .leaf-deco svg { width: 100%; height: 100%; display: block; }
.parallax-layer.layer-back  .leaf-deco { opacity: 0.18; }
.parallax-layer.layer-mid   .leaf-deco { opacity: 0.32; }
.parallax-layer.layer-front .leaf-deco { opacity: 0.5; }

/* Accessibility — kill motion if the user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .leaf-drift-item { animation: none; opacity: 0.25; }
  .parallax-layer { transform: none !important; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ================ NAV ================ */
.nav {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
  padding: 6px 0;
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
}
.logo-img-footer { height: 96px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--sage-dark); }
.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--sage-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

/* ================ HERO ================ */
.hero {
  position: relative;
  padding: 160px 24px 96px;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(138, 158, 113, 0.18), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(184, 201, 160, 0.25), transparent 50%),
    var(--cream);
  z-index: -1;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.hero-tag {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--gray-light);
  color: var(--sage-darker);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  padding: 18px 28px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sage-dark);
}
.trust-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--gray-light);
}

/* ================ SECTION HEADER ================ */
.section-header {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-header p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ================ SERVICES ================ */
.services {
  padding: 96px 0;
  background: var(--cream);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.service-card:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card-accent {
  background: linear-gradient(180deg, var(--sage-light) 0%, var(--cream-warm) 100%);
  border-color: var(--sage);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-warm);
  color: var(--sage-dark);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  transition: background 0.2s, color 0.2s;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { background: var(--sage); color: var(--white); }
.service-card-accent .service-icon {
  background: rgba(255,255,255,0.55);
  color: var(--sage-darker);
}
.service-card-accent:hover .service-icon { background: var(--white); color: var(--sage-darker); }
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 16px;
  flex: 1;
}
.service-cta {
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 0.9rem;
}
.service-cta:hover { color: var(--sage-darker); }

/* ================ AREAS ================ */
.areas {
  padding: 96px 0;
  background: var(--cream-warm);
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.area-tile {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--gray-light);
}
.area-tile-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.area-tile-primary h3, .area-tile-primary li { color: var(--white); }
.area-tile h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.area-tile ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.area-tile li {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.area-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
}
.area-note a {
  color: var(--sage-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ================ WHY ================ */
.why {
  padding: 96px 0;
  background: var(--cream);
}
.why-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 16px 0 20px; }
.why-lead { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 32px; }
.why-points {
  display: grid;
  gap: 22px;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--cream-warm);
  color: var(--sage-dark);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 22px; height: 22px; }
.why-point strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.why-point p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.portrait-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
}
.portrait-img {
  height: 380px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  position: relative;
}
.portrait-img::after {
  content: "Photo of Stephanie";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-style: italic;
}
.portrait-caption {
  padding: 20px 24px;
}
.portrait-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.portrait-caption span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ================ TESTIMONIALS ================ */
.testimonials {
  padding: 96px 0;
  background: var(--cream-warm);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
}
.stars {
  color: #e6a91a;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial p {
  font-style: italic;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.6;
}
.testimonial-by {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}

/* ================ PRICING ================ */
.pricing {
  padding: 96px 0;
  background: var(--cream);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-tile {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-tile-feature {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.pricing-tile-feature h3, .pricing-tile-feature li { color: var(--white); }
.pricing-tile-feature .pricing-meta { color: rgba(255,255,255,0.65); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--sage);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}
.pricing-tile h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.pricing-meta {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 24px;
  font-style: italic;
}
.pricing-tile-feature .pricing-meta { color: rgba(255,255,255,0.7); }
.pricing-tile ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.pricing-tile li {
  font-size: 0.92rem;
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
}
.pricing-tile li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}
.pricing-tile-feature li { color: rgba(255,255,255,0.85); }
.pricing-tile-feature li::before { color: var(--sage-light); }
.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 720px;
  margin: 0 auto;
}
.pricing-note a { color: var(--sage-dark); text-decoration: underline; font-weight: 600; }

/* ================ CTA BANNER ================ */
.cta-banner {
  padding: 80px 24px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

/* ================ CONTACT ================ */
.contact {
  padding: 96px 0;
  background: var(--cream-warm);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 16px 0 20px;
}
.contact-info > p {
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.contact-items {
  display: grid;
  gap: 22px;
}
.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}
.contact-item a:hover { color: var(--sage-dark); }

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
}
.contact-form textarea { resize: vertical; }
.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--gray);
}
.form-note a { color: var(--sage-dark); font-weight: 600; text-decoration: underline; }

/* ================ FOOTER ================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo-stack {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}
.logo-img-footer {
  height: 140px;
  filter: drop-shadow(0 0 14px rgba(184, 201, 160, 0.15));
  margin-bottom: -22px;
}
.footer-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-top: 0;
}
.footer-wordmark-main {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.footer-wordmark-sub {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.46em;
  text-indent: 0.46em;
  color: var(--sage-light);
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1;
}
.footer-tagline {
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--sage-light);
  text-align: center;
  opacity: 0.85;
}
.footer-brand { text-align: center; }
.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline;
}
.footer-links summary {
  list-style: none;
  margin-bottom: 14px;
}
.footer-links summary::-webkit-details-marker { display: none; }
.footer-links summary::marker { content: ""; }
.footer-links a {
  display: block;
  font-size: 0.92rem;
  padding: 4px 0;
  color: rgba(255,255,255,0.75);
}
.footer-links a:hover { color: var(--sage-light); }

@media (min-width: 769px) {
  .footer-links > *:not(summary) { display: block !important; }
  .footer-links summary { cursor: default; }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.footer-demo {
  margin-top: 6px;
  font-size: 0.75rem;
}
.footer-demo a { color: var(--sage-light); text-decoration: underline; font-weight: 600; }

/* ================ WHATSAPP FAB ================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ================ RESPONSIVE ================ */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 1100;
    padding: 24px;
    margin: 0;
  }
  .nav-links.active { display: flex; }
  .nav-links a {
    font-size: 1.4rem;
    color: var(--ink);
    font-weight: 600;
  }
  .nav-links .nav-cta {
    margin-top: 12px;
    font-size: 1.1rem !important;
  }
  .nav-toggle {
    display: flex;
    z-index: 1200;
    position: relative;
  }
  /* Hamburger morphs to X when menu open */
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  /* Lock body scroll when menu is open */
  body.menu-open { overflow: hidden; }
  .hero { padding: 130px 24px 80px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 14px; padding: 14px 18px; }
  .trust-num { font-size: 1.15rem; }

  /* Stack service cards 1-column on mobile */
  .service-grid { grid-template-columns: 1fr; }

  /* Center "Most Popular" badge on mobile */
  .pricing-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .area-grid, .pricing-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .area-tile ul { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-brand {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    margin-bottom: 8px;
  }
  .footer-brand .nav-logo { display: inline-flex; }
  .footer-links {
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding: 4px 0;
  }
  .footer-links summary {
    margin: 0;
    padding: 14px 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-links summary h4 { margin-bottom: 0; }
  .footer-links summary::after {
    content: "+";
    color: rgba(255,255,255,0.85);
    font-size: 1.4rem;
  }
  .footer-links[open] summary::after { content: "\2013"; }
  .footer-links a { padding: 6px 4px; }
  .footer-links a:last-child { padding-bottom: 12px; }

  .services, .areas, .why, .testimonials, .pricing, .contact { padding: 64px 0; }
  .section-header { margin-bottom: 48px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }

  /* Hero stats — clean column with horizontal dividers between items */
  .hero-trust {
    flex-direction: column;
    gap: 0;
    padding: 4px 28px;
    border-radius: var(--radius-lg);
    width: auto;
    max-width: 320px;
  }
  .trust-item {
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 28px;
    width: 100%;
  }
  .trust-num {
    font-size: 1.4rem;
    line-height: 1;
    min-width: 68px;
    text-align: left;
  }
  .trust-label {
    font-size: 0.7rem;
    margin-top: 0;
    text-align: left;
  }
  .trust-divider {
    display: block;
    width: 70%;
    height: 1px;
    background: var(--gray-light);
    margin: 0 auto;
  }

  /* Nav logo small, footer logo stays prominent + balanced wordmark */
  .logo-img { height: 50px; }
  .logo-img-footer { height: 110px; margin-bottom: -14px; }
  .footer-wordmark-main { font-size: 1.7rem; }
  .footer-wordmark-sub {
    font-size: 0.78rem;
    letter-spacing: 0.4em;
    text-indent: 0.4em;
    margin-top: 4px;
  }
  .footer-tagline { margin-top: 16px; font-size: 0.92rem; }
}
