/* ============================================================
   Linden Tax and Ledger — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ── Custom Properties ── */
:root {
  --green:        #4E7C5F;
  --green-dark:   #3A5E47;
  --green-light:  #7AAF8E;
  --sage:         #B5CEBC;
  --sage-pale:    #E8F2EB;
  --cream:        #FAF7F2;
  --cream-dark:   #EDE5D8;
  --walnut:       #7A5640;
  --walnut-light: #A8836B;
  --gold:         #C97436;
  --gold-hover:   #B5622A;
  --text:         #2C2416;
  --text-muted:   #6B5E50;
  --white:        #FFFFFF;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:   0.375rem;
  --radius-md:   0.75rem;
  --radius-lg:   1.25rem;
  --radius-xl:   2rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(44, 36, 22, 0.07);
  --shadow-md: 0 4px 16px rgba(44, 36, 22, 0.10);
  --shadow-lg: 0 8px 32px rgba(44, 36, 22, 0.12);

  --transition: 0.2s ease;

  --max-width: 1140px;
  --section-gap: 5rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

p { color: var(--text-muted); }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-header p {
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: var(--section-gap) 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-leaf { width: 28px; height: 28px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  transition: color var(--transition), background var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--green-dark);
  background: var(--sage-pale);
}
.site-nav a.active { font-weight: 600; }

.header-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--cream);
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--cream-dark);
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--green-dark);
  background: var(--sage-pale);
}
.mobile-nav .btn { margin-top: 0.5rem; justify-content: center; }
.mobile-nav.open { display: flex; }

/* ── Footer ── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0 1.5rem;
}

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

.footer-brand .logo { color: var(--white); margin-bottom: 0.75rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 1.25rem; }

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.3rem;
}

.social-links { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.footer-bottom {
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p {
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0.75rem auto 2rem;
  font-size: 1.05rem;
}
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 8rem 0 7rem;
  overflow: hidden;
  background: url('tree-hero.jpg') center center / cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
}
.hero-content {
  max-width: 480px;
  text-align: left;
  background: rgba(250, 247, 242, 0.86);
  padding: 2.25rem 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.hero-label { margin-bottom: 1rem; color: var(--green-dark); }
.hero-heading { margin-bottom: 1.25rem; color: var(--text); }
.hero-sub {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text);
  max-width: 440px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-start; }
.hero .btn-secondary { background: var(--white); border-color: var(--white); box-shadow: var(--shadow-sm); }
.hero .btn-secondary:hover { background: var(--sage-pale); border-color: var(--sage-pale); }

/* ── Home — What We Do ── */
.what-we-do { background: var(--white); }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.highlight-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.highlight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-card h3 { font-size: 1rem; font-weight: 600; color: var(--text); }
.highlight-card p { font-size: 0.875rem; }
.highlight-card .card-link {
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition);
}
.highlight-card .card-link:hover { gap: 0.5rem; }

/* ── Trust section ── */
.trust-section { background: var(--sage-pale); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.trust-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.trust-card cite {
  font-size: 0.8rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

/* ── Services page — horizontal list ── */
.service-list { display: flex; flex-direction: column; }
.service-list-group { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.service-list-group:last-child { margin-bottom: 0; }

.service-group-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.service-row {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  border-left: 4px solid transparent;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-row:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-row.service-primary { border-left-color: var(--green); }

.service-row-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-row-body { flex: 1; min-width: 0; }
.service-row-body h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; }
.service-row-body > p { font-size: 0.9rem; }
.service-row-body .service-best-for { font-size: 0.875rem; margin-top: 0.75rem; }

.service-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.5rem; }

.service-omit-note {
  background: var(--sage-pale);
  border: 1px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

/* ── Pricing page ── */
.pricing-section { background: var(--white); }
.pricing-section + .pricing-section { background: var(--cream); }

.pricing-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.pricing-tab {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--sage);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.pricing-tab.active,
.pricing-tab:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--sage);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pricing-card-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.pricing-card h3 { margin-bottom: 0.25rem; }

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
  margin: 0.75rem 0 0.1rem;
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
}

.price-unit {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-heading);
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.pricing-includes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.pricing-includes li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.pricing-includes li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.pricing-includes li.excluded::before {
  content: '—';
  color: var(--walnut-light);
  font-weight: 400;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.pricing-table th, .pricing-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}
.pricing-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--sage-pale);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:last-child {
  font-weight: 600;
  color: var(--green-dark);
  white-space: nowrap;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 0.75rem 1rem;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--sage);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.addon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.addon-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1.15rem;
}
.addon-card h4 { color: var(--text); }
.addon-card p { font-size: 0.8rem; }

.out-of-scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.scope-tag {
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  background: var(--cream-dark);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  border: 1px solid var(--sage);
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.policy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 3px solid var(--green);
  box-shadow: var(--shadow-sm);
}
.policy-card h4 {
  color: var(--green-dark);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.policy-card p { font-size: 0.85rem; }

/* ── About page ── */
.about-hero { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.about-portrait {
  background: var(--sage-pale);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  justify-content: center;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.value-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.value-card h4 { font-size: 0.9rem; color: var(--text); margin-bottom: 0.35rem; }
.value-card p { font-size: 0.8rem; }

/* ── FAQ page ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--sage-pale); }
.faq-question.open { background: var(--sage-pale); color: var(--green-dark); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--green);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-section, .contact-info-section { }

#cal-booking-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 600px;
  background: var(--sage-pale);
  border: 1px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(78, 124, 95, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.contact-info-block h4 {
  color: var(--green-dark);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.contact-detail-icon {
  width: 32px;
  height: 32px;
  background: var(--sage-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-detail p { font-size: 0.875rem; }
.contact-detail a { color: var(--green); transition: color var(--transition); }
.contact-detail a:hover { color: var(--green-dark); }

.section-divider {
  border: none;
  border-top: 1px solid var(--cream-dark);
  margin: 2rem 0;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='60' cy='60' rx='55' ry='50' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") center/200px repeat;
  pointer-events: none;
}
.page-hero .section-label { color: var(--sage); }
.page-hero h1, .page-hero h2 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 580px; margin: 0.75rem auto 0; font-size: 1.05rem; }

/* ── Breadcrumb / page nav hint ── */
.page-nav-strip {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0.75rem 0;
}
.page-nav-strip a {
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.page-nav-strip a:hover { color: var(--green); }
.page-nav-strip span { font-size: 0.8rem; color: var(--text-muted); margin: 0 0.35rem; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-green { color: var(--green-dark); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .highlight-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 3.5rem; }

  .site-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 5rem 0 4rem; }
  .hero-inner { justify-content: center; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .service-row { flex-direction: column; gap: 1rem; padding: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .pricing-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .highlight-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 1.75rem; }
}
