/* ===========================
   ROOTED BLOOM MARKETING
   styles.css
   =========================== */

/* ---- Variables ---- */
:root {
  --green-dark:    #1D3B2F;
  --green-mid:     #2D5A3D;
  --green-light:   #52876A;
  --sage:          #A8C5B0;
  --cream:         #FAF7F2;
  --cream-dark:    #F0EAE0;
  --terracotta:    #C9622F;
  --terra-dark:    #A74E25;
  --charcoal:      #2D2D2D;
  --dark:          #1A1A1A;
  --white:         #FFFFFF;
  --text-body:     #3D3D3D;
  --text-light:    #6B6B6B;
  --shadow-sm:     0 2px 10px rgba(29,59,47,.08);
  --shadow-md:     0 8px 30px rgba(29,59,47,.13);
  --shadow-lg:     0 20px 60px rgba(29,59,47,.18);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.3s cubic-bezier(0.16,1,0.3,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-body); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.bg-cream { background: var(--cream); }
.bg-dark-green { background: var(--green-dark); }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; color: var(--green-dark); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { line-height: 1.75; color: var(--text-body); }
.lead-p { font-size: 1.15rem; font-weight: 500; color: var(--green-dark); }

/* ---- Section Header ---- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header p { color: var(--text-light); margin-top: 16px; }
.section-header.light h2, .section-header.light p { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.75); }

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(201,98,47,.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label.light { color: var(--sage); background: rgba(168,197,176,.15); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

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

.btn-terracotta { background: var(--terracotta); color: var(--white); }
.btn-terracotta:hover { background: var(--terra-dark); }

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

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

/* ---- TOP BAR ---- */
.top-bar { background: var(--green-dark); color: rgba(255,255,255,.85); font-size: .82rem; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; padding-bottom: 10px; gap: 12px; flex-wrap: wrap; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-left a, .top-bar-right a { color: rgba(255,255,255,.85); transition: color .2s; }
.top-bar-left a:hover, .top-bar-right a:hover { color: var(--white); }
.top-bar-left i, .top-bar-right i { margin-right: 5px; color: var(--sage); }
.top-bar-location { color: rgba(255,255,255,.7); }
.hours-tag { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); }
.top-social { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; transition: background .2s; font-size: .8rem; }
.top-social:hover { background: var(--terracotta); color: var(--white); }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(29,59,47,.1);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; gap: 32px; padding-top: 14px; padding-bottom: 14px; }
.nav-logo { flex-shrink: 0; }
.logo-img { height: 56px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a { font-size: .92rem; font-weight: 500; color: var(--charcoal); transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--terracotta); transition: width .2s; }
.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { flex-shrink: 0; }
.hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--green-dark); padding: 6px; }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(29,59,47,.1);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .hamburger { display: block; margin-left: auto; }
  .nav-cta { display: none; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(14,33,24,.88) 0%, rgba(14,33,24,.65) 60%, rgba(14,33,24,.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex: 1;
  padding-top: 100px;
  padding-bottom: 40px;
}
.hero-text { max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,197,176,.2);
  border: 1px solid rgba(168,197,176,.4);
  color: var(--sage);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero h1 { color: var(--white); margin-bottom: 22px; letter-spacing: -.02em; }
.accent-text { color: var(--sage); }
.hero-sub { color: rgba(255,255,255,.8); font-size: 1.1rem; line-height: 1.7; margin-bottom: 36px; max-width: 560px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats-bar {
  position: relative;
  z-index: 2;
  background: rgba(14,33,24,.75);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(168,197,176,.2);
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 20px 0;
}
.stat-item { display: flex; align-items: center; gap: 12px; padding: 12px 36px; }
.stat-icon { color: var(--sage); font-size: 1.3rem; }
.stat-text { display: flex; flex-direction: column; }
.stat-num { color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; line-height: 1; }
.stat-label { color: rgba(255,255,255,.6); font-size: .75rem; font-weight: 500; margin-top: 3px; }
.stat-divider { width: 1px; height: 40px; background: rgba(168,197,176,.25); }

/* ---- ABOUT ---- */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-float-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(29,59,47,.08);
}
.about-float-badge i { font-size: 1.6rem; color: #4285F4; }
.about-float-badge strong { display: block; font-size: .95rem; font-weight: 700; color: var(--green-dark); }
.about-float-badge span { font-size: .78rem; color: var(--text-light); }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-body); margin-bottom: 16px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0; }
.highlight-row { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; color: var(--charcoal); }
.highlight-row i { color: var(--green-light); font-size: 1rem; flex-shrink: 0; }
.about-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

/* ---- PAIN POINTS ---- */
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(29,59,47,.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pain-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(201,98,47,.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.pain-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.pain-card p { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

/* ---- SERVICES ---- */
.services-list { display: flex; flex-direction: column; gap: 72px; }
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-img-wrap { position: relative; }
.service-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.service-img-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--terracotta);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}
.service-content .service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(29,59,47,.1);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.service-content h3 { margin-bottom: 14px; }
.service-content p { color: var(--text-body); margin-bottom: 20px; line-height: 1.7; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-feature { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 500; color: var(--charcoal); }
.service-feature i { color: var(--green-light); font-size: .85rem; }

/* ---- HOW IT WORKS ---- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(168,197,176,.2);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  transition: background var(--transition);
  position: relative;
}
.step-card:hover { background: rgba(255,255,255,.1); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(168,197,176,.25);
  line-height: 1;
  margin-bottom: 14px;
}
.step-icon-wrap {
  width: 46px; height: 46px;
  background: rgba(168,197,176,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--sage);
  margin-bottom: 18px;
}
.step-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 12px; }
.step-card p { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.65; }

/* ---- AUDIT CTA ---- */
.audit-cta { position: relative; padding: 100px 0; }
.audit-bg { position: absolute; inset: 0; }
.audit-bg-img { width: 100%; height: 100%; object-fit: cover; }
.audit-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,33,24,.93) 0%, rgba(14,33,24,.8) 100%); }
.audit-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.audit-text h2 { color: var(--white); margin-bottom: 18px; }
.audit-text p { color: rgba(255,255,255,.8); margin-bottom: 28px; font-size: 1.05rem; }
.audit-promises { display: flex; flex-direction: column; gap: 12px; }
.promise { display: flex; align-items: center; gap: 10px; color: var(--sage); font-size: .92rem; font-weight: 500; }
.promise i { color: var(--terracotta); }
.audit-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.audit-form-card h3 { margin-bottom: 24px; color: var(--green-dark); }

/* ---- FORMS ---- */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--charcoal); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(29,59,47,.2);
  border-radius: 8px;
  font-size: .92rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(82,135,106,.15);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .78rem; color: var(--text-light); text-align: center; margin-top: 12px; }
.form-note i { color: var(--green-light); margin-right: 4px; }
.form-success {
  text-align: center;
  padding: 32px 24px;
}
.form-success i { font-size: 2.5rem; color: var(--green-light); margin-bottom: 14px; }
.form-success h4 { font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--text-light); font-size: .95rem; }

/* ---- TESTIMONIALS ---- */
.testimonials-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; margin-bottom: 48px; }
.testimonial-featured {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--terracotta);
}
.quote-mark { color: var(--terracotta); font-size: 1.8rem; margin-bottom: 14px; opacity: .5; }
.stars { color: #F4B400; font-size: 1rem; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-featured blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.author-avatar {
  width: 48px; height: 48px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.author-info strong { display: block; font-size: .95rem; color: var(--green-dark); }
.author-info span { font-size: .82rem; color: var(--text-light); }
.google-verified { font-size: .8rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.google-verified i { color: #4285F4; }
.outcomes-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(29,59,47,.08);
}
.outcomes-card h3 { margin-bottom: 24px; font-size: 1.35rem; }
.outcome-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(29,59,47,.07); }
.outcome-item:last-child { border-bottom: none; }
.outcome-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(82,135,106,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light); font-size: .95rem;
}
.outcome-item strong { display: block; font-size: .92rem; color: var(--green-dark); margin-bottom: 4px; }
.outcome-item p { font-size: .83rem; color: var(--text-light); line-height: 1.5; margin: 0; }
.rating-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.rating-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1.5px solid rgba(29,59,47,.15);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}
.rating-badge i { color: var(--terracotta); }

/* ---- BLOG PREVIEW ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 44px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(29,59,47,.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 24px; }
.blog-tag {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p { font-size: .87rem; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.blog-meta { font-size: .78rem; color: var(--text-light); display: flex; align-items: center; justify-content: space-between; }
.blog-meta a { color: var(--terracotta); font-weight: 600; font-size: .82rem; }
.blog-footer-cta { text-align: center; }

/* ---- CONTACT ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border-radius: var(--radius);
  padding: 20px 22px; margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(29,59,47,.07);
}
.cc-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(29,59,47,.08);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); font-size: 1rem;
}
.contact-card h4 { font-size: .88rem; color: var(--text-light); font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 4px; }
.contact-card > div:last-child { min-width: 0; }
.contact-card a, .contact-card span { font-size: .93rem; color: var(--charcoal); font-weight: 500; overflow-wrap: break-word; word-break: break-word; }
.contact-card a:hover { color: var(--terracotta); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 20px; height: 220px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.contact-form-col h3 { margin-bottom: 24px; }
.contact-form-col .form-group { margin-bottom: 16px; }

/* ---- FOOTER ---- */
.footer { background: var(--green-dark); color: rgba(255,255,255,.75); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 56px; width: auto; object-fit: contain; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.65); max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; color: rgba(255,255,255,.75);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--terracotta); color: var(--white); }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a, .footer-col li span { font-size: .88rem; color: rgba(255,255,255,.65); transition: color .2s; overflow-wrap: break-word; word-break: break-word; }
.footer-col li a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { text-align: center; font-size: .82rem; color: rgba(255,255,255,.4); }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 500;
  font-size: .85rem;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--terracotta); transform: translateY(-3px); }

/* ---- Utility ---- */
.hidden { display: none !important; }

/* ---- ANIMATIONS ---- */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate].animated { opacity: 1; transform: translate(0, 0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-float-badge { bottom: -20px; right: -8px; }
  .about-photo { height: 420px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse { direction: ltr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-layout { grid-template-columns: 1fr; }
  .audit-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .section-pad { padding: 64px 0; }
  .section-header { margin-bottom: 44px; }
  .pain-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-row { justify-content: center; }
  .stat-item { padding: 10px 18px; }
  .stat-divider { display: none; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .top-bar-location { display: none; }
  .top-bar-left a[href^="mailto:"] { display: none; }
  .rating-badges { gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .audit-inner { grid-template-columns: 1fr; }
  .audit-cta { padding: 64px 0; }
  .audit-form-card { padding: 28px 22px; }
  .services-list { gap: 40px; }
  .service-img { height: 280px; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.3rem; }
  .section-pad { padding: 48px 0; }
  .section-header { margin-bottom: 36px; }
  .hero-content { padding-top: 80px; }
  .about-photo { height: 300px; }
  .hours-tag { display: none; }
  .stat-item { padding: 8px 14px; }
  .service-img { height: 220px; }
  .audit-cta { padding: 52px 0; }
  .audit-form-card { padding: 24px 16px; }
  .testimonial-featured { padding: 28px 24px; }
  .step-card { padding: 28px 20px; }
  .pain-card { padding: 28px 22px; }
  .about-ctas { flex-direction: column; }
  .about-ctas .btn { width: 100%; justify-content: center; }
  .rating-badges { flex-direction: column; align-items: stretch; }
  .rating-badge { font-size: .8rem; padding: 8px 14px; justify-content: center; }
  .outcomes-card { padding: 28px 22px; }
  .back-to-top { bottom: 20px; right: 20px; }
  .logo-img { height: 44px; }
  .btn-lg { padding: 14px 22px; font-size: .95rem; }
  .nav-inner { gap: 16px; }
}

/* ===========================
   SERVICE HUB + SERVICE PAGES
   =========================== */

/* Homepage: Learn More link on service cards */
.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--terracotta);
  font-weight: 600;
  font-size: .95rem;
  transition: gap var(--transition);
}
.service-learn-more:hover { gap: 14px; color: var(--terra-dark); }

.services-hub-cta {
  text-align: center;
  margin-top: 50px;
}

/* Page hero (used by hub) */
.page-hero {
  background: var(--cream);
  padding: 140px 0 70px;
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}
.page-hero h1 { margin: 14px 0 18px; }
.page-hero .lead-p { max-width: 720px; margin: 0 auto; }

/* Service hero (used by individual service pages) */
.service-hero {
  background: var(--cream);
  padding: 140px 0 70px;
  border-bottom: 1px solid var(--cream-dark);
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 18px;
  transition: gap var(--transition);
}
.service-breadcrumb:hover { gap: 12px; }
.service-hero h1 { margin-bottom: 18px; }
.service-hero .lead-p { margin-bottom: 28px; }
.service-hero-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Service body */
.service-content-narrow {
  max-width: 820px;
  margin: 0 auto;
}
.service-body h2 {
  margin-top: 50px;
  margin-bottom: 18px;
}
.service-body h2:first-child { margin-top: 0; }
.service-body p { margin-bottom: 20px; }

.included-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 14px;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--cream);
  padding: 16px 20px;
  border-radius: var(--radius);
  line-height: 1.55;
}
.included-list li i {
  color: var(--green-mid);
  margin-top: 4px;
  flex-shrink: 0;
}
.included-list strong { color: var(--green-dark); }

/* Inline social proof block */
.service-proof {
  background: var(--green-dark);
  color: var(--white);
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  margin-top: 60px;
  text-align: center;
}
.service-proof .stars {
  color: #f5b942;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.service-proof blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 18px;
  font-weight: 500;
  font-style: italic;
}
.service-proof cite {
  font-style: normal;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  display: block;
}
.service-proof .verified {
  display: inline-block;
  margin-left: 6px;
  color: var(--sage);
}

/* Bottom CTA on service page */
.service-cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px 30px;
  background: var(--cream);
  border-radius: var(--radius-lg);
}
.service-cta-bottom h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.service-cta-bottom p {
  margin-bottom: 22px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.back-to-hub {
  text-align: center;
  margin-top: 40px;
}
.back-to-hub a {
  color: var(--text-light);
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.back-to-hub a:hover { color: var(--green-dark); }

/* Hub page grid */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.hub-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  color: inherit;
}
.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.hub-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(45,90,61,.1);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.hub-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.hub-card p {
  color: var(--text-body);
  margin-bottom: 18px;
}
.hub-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}
.hub-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-body);
  margin-bottom: 8px;
}
.hub-card ul li i {
  color: var(--green-mid);
  font-size: .85rem;
}
.hub-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
  font-weight: 600;
  font-size: .95rem;
  transition: gap var(--transition);
}
.hub-card:hover .hub-cta { gap: 14px; color: var(--terra-dark); }

.hub-bottom-cta {
  margin-top: 70px;
  text-align: center;
  padding: 50px 30px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
}
.hub-bottom-cta h2 { color: var(--white); margin-bottom: 14px; }
.hub-bottom-cta p {
  color: rgba(255,255,255,.85);
  margin-bottom: 26px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .service-hero { padding: 110px 0 50px; }
  .service-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-hero { padding: 110px 0 50px; }
  .hub-grid { grid-template-columns: 1fr; gap: 22px; }
  .hub-card { padding: 28px 24px; }
  .service-proof { padding: 28px 24px; }
  .service-proof blockquote { font-size: 1.15rem; }
  .service-cta-bottom { padding: 32px 22px; }
  .service-cta-bottom h3 { font-size: 1.4rem; }
  .hub-bottom-cta { padding: 36px 22px; }
  .included-list li { padding: 14px 16px; font-size: .95rem; }
}

/* ===========================
   BLOG HUB + BLOG POSTS
   =========================== */

.blog-card-title-link { color: var(--green-dark); transition: color var(--transition); }
.blog-card-title-link:hover { color: var(--terracotta); }
.blog-card-link { display: block; overflow: hidden; }

.blog-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 920px;
  margin: 0 auto;
}
.blog-hub-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.blog-hub-card > a { display: block; overflow: hidden; }
.blog-hub-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}
.blog-hub-card:hover img { transform: scale(1.04); }
.blog-hub-body {
  padding: 30px 30px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-hub-body h2 {
  font-size: 1.7rem;
  margin: 12px 0 12px;
  line-height: 1.25;
}
.blog-hub-body h2 a {
  color: var(--green-dark);
  transition: color var(--transition);
}
.blog-hub-body h2 a:hover { color: var(--terracotta); }
.blog-hub-body p { color: var(--text-body); margin-bottom: 16px; }
.blog-hub-body .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9rem;
  color: var(--text-light);
}
.blog-hub-body .blog-meta a {
  color: var(--terracotta);
  font-weight: 600;
  transition: color var(--transition);
}
.blog-hub-body .blog-meta a:hover { color: var(--terra-dark); }

/* Blog post page */
.blog-post-hero {
  padding-top: 130px;
  padding-bottom: 30px;
}
.blog-post-hero .service-breadcrumb { margin-bottom: 14px; }
.blog-post-hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.blog-byline {
  color: var(--text-light);
  font-size: .95rem;
  margin-bottom: 28px;
}
.blog-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 8;
  object-fit: cover;
  margin-top: 10px;
}

.blog-prose h2 {
  margin-top: 44px;
  margin-bottom: 16px;
  font-size: 1.7rem;
}
.blog-prose h2:first-child { margin-top: 0; }
.blog-prose p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.78;
}
.blog-prose .lead-p {
  font-size: 1.2rem;
  margin-bottom: 28px;
}
.blog-prose a:not(.btn) {
  color: var(--terracotta);
  text-decoration: underline;
  text-decoration-color: rgba(201,98,47,.35);
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.blog-prose a:not(.btn):hover { color: var(--terra-dark); }

/* Button text inside prose stays white — fully visible on terracotta bg */
.blog-prose .btn-terracotta,
.blog-prose .btn-primary {
  color: var(--white);
  text-decoration: none;
}
.blog-prose .btn-outline {
  color: var(--green-dark);
  text-decoration: none;
}

/* Back-to-blog link below the CTA — keep it muted gray, not terracotta */
.blog-prose .back-to-hub a {
  color: var(--text-light);
  text-decoration: none;
}
.blog-prose .back-to-hub a:hover { color: var(--green-dark); }

/* CTA box on blog pages — extra contrast against the surrounding prose */
.blog-prose .service-cta-bottom h3 { color: var(--green-dark); }
.blog-prose .service-cta-bottom p {
  color: var(--text-body);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .blog-hub-card { grid-template-columns: 1fr; gap: 0; }
  .blog-hub-card img { min-height: 200px; aspect-ratio: 16 / 9; }
  .blog-hub-body { padding: 24px; }
  .blog-hub-body h2 { font-size: 1.4rem; }
  .blog-post-hero { padding-top: 110px; }
  .blog-prose p { font-size: 1rem; }
  .blog-hero-img { aspect-ratio: 16 / 10; }
}

