/* ============================================================
   MY HOME AGAIN — Complete Stylesheet
   Brand: Warm · Calm · Compassionate · Professional
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  color-scheme: light dark; /* supports both; dark mode handled below */
  /* Brand Colors */
  --sage:          #7B9E87;
  --sage-light:    #A4BEA8;
  --sage-dark:     #5C7D68;
  --sage-pale:     #EAF2EB;
  --sage-xpale:    #F3F8F4;

  /* Neutrals */
  --ivory:         #FAF7F2;
  --cream:         #EDE6D9;
  --beige:         #C8B49C;
  --taupe:         #9E8A78;
  --taupe-light:   #D4C5B5;

  /* Text */
  --charcoal:      #2C2927;
  --charcoal-mid:  #4A4440;
  --charcoal-light:#78706A;
  --white:         #FFFFFF;

  /* Functional */
  --shadow-sm:     0 2px 12px rgba(44, 41, 39, 0.07);
  --shadow-md:     0 6px 28px rgba(44, 41, 39, 0.11);
  --shadow-lg:     0 16px 48px rgba(44, 41, 39, 0.14);
  --shadow-hover:  0 10px 40px rgba(123, 158, 135, 0.22);

  /* Radius */
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --radius-pill:   999px;

  /* Transitions */
  --transition:    all 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing */
  --section-py:    100px;
  --container:     1180px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--charcoal);
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; font-family: 'Nunito', sans-serif; font-weight: 700; }

p { color: var(--charcoal-mid); font-size: 1.05rem; margin-bottom: 0; }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--charcoal-mid);
  line-height: 1.75;
}

.text-sage   { color: var(--sage); }
.text-taupe  { color: var(--taupe); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-italic { font-style: italic; }

.eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
  display: block;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

.section-sm {
  padding: 60px 0;
}

.section-ivory  { background-color: var(--ivory); }
.section-white  { background-color: var(--white); }
.section-cream  { background-color: var(--cream); }
.section-sage   { background-color: var(--sage-xpale); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  border-radius: var(--radius-pill);
  margin: 20px auto 0;
}

.divider-left {
  margin-left: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
  box-shadow: 0 4px 18px rgba(123, 158, 135, 0.35);
}

.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(123, 158, 135, 0.45);
}

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

.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

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

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

.btn-lg {
  padding: 18px 42px;
  font-size: 1.08rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Navigation ---- */

/* Global: mobile menu always hidden unless .open is applied via JS */
.nav-mobile-menu {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

/* Header stays transparent on mobile until scrolled — same as desktop.
   Hero content is pushed down on mobile so it clears the nav (see hero-content mobile rule). */

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #000;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  transition: var(--transition);
  line-height: 1.0;
}

.site-header.scrolled .nav-logo-name { color: var(--charcoal); }
.site-header:not(.scrolled) .nav-logo-name { color: var(--white); }

.nav-logo-tagline {
  font-size: 0.7rem;
  color: var(--sage-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.site-header:not(.scrolled) .nav-logo-tagline { color: rgba(255,255,255,0.75); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.93rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  color: var(--white);
}

.site-header.scrolled .nav-links a {
  color: var(--charcoal-mid);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active {
  background: var(--sage-pale);
  color: var(--sage-dark);
}

.nav-cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: 0 3px 14px rgba(123, 158, 135, 0.4);
}

.nav-cta:hover {
  background: var(--sage-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(123, 158, 135, 0.5) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.site-header.scrolled .nav-toggle span {
  background: var(--charcoal);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero Sections ---- */
.hero {
  position: relative;
  min-height: 100vh;       /* fallback for old browsers */
  min-height: 100dvh;      /* fills the actual visible viewport on iOS (accounts for floating browser UI) */
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 41, 39, 0.78) 0%,
    rgba(44, 41, 39, 0.55) 50%,
    rgba(92, 125, 104, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--sage-light);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero h1 em {
  font-style: italic;
  color: var(--sage-light);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 42px;
  line-height: 1.75;
  max-width: 580px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat-item {
  color: var(--white);
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  font-weight: 500;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #3d3830 60%, var(--sage-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(123,158,135,0.06)"/><circle cx="80" cy="80" r="50" fill="rgba(123,158,135,0.04)"/></svg>') no-repeat center;
  background-size: cover;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 18px;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.82);
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--cream);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal-mid);
  font-size: 0.93rem;
  font-weight: 600;
}

.trust-icon {
  width: 38px;
  height: 38px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}

/* ---- Service Cards ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card-img {
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-tag {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.service-card-body h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.service-card-body p {
  font-size: 0.97rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 22px;
}

.service-includes {
  margin: 16px 0 22px;
}

.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--charcoal-mid);
  border-bottom: 1px solid var(--cream);
}

.service-includes li:last-child { border-bottom: none; }

.service-includes li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.outcome-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-xpale);
  border-left: 3px solid var(--sage);
  padding: 10px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 22px;
  font-size: 0.9rem;
  color: var(--sage-dark);
  font-weight: 600;
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--sage-pale);
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-mid);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sage-light), var(--beige));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.testimonial-location {
  font-size: 0.82rem;
  color: var(--charcoal-light);
}

.testimonial-stars {
  color: #E8B84B;
  font-size: 0.85rem;
  margin-top: 3px;
  letter-spacing: 0.05em;
}

/* ---- FAQ Accordion ---- */
.faq-item {
  border: 1px solid var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: left;
  transition: var(--transition);
}

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

.faq-item.open .faq-question { color: var(--sage-dark); }

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--sage);
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--sage);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--charcoal-mid);
  font-size: 0.98rem;
  line-height: 1.78;
}

/* ---- Pricing Cards ---- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: linear-gradient(145deg, var(--sage-dark) 0%, var(--sage) 100%);
  color: var(--white);
  border-color: transparent;
}

.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-period {
  color: var(--white);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--beige);
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-name {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-name {
  color: rgba(255,255,255,0.8);
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  margin-bottom: 18px;
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--charcoal-mid);
  margin-bottom: 28px;
  line-height: 1.65;
}

.pricing-card.featured .pricing-desc {
  color: rgba(255,255,255,0.85);
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.94rem;
  color: var(--charcoal-mid);
  border-bottom: 1px solid var(--cream);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.9);
  border-bottom-color: rgba(255,255,255,0.15);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
  color: var(--sage-light);
}

.pricing-card.featured .btn-white {
  background: var(--white);
  color: var(--sage-dark);
}

/* ---- Contact Form ---- */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--taupe-light);
  border-radius: var(--radius-md);
  font-size: 0.97rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123, 158, 135, 0.12);
}

.form-control::placeholder {
  color: var(--charcoal-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--taupe-light);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-check-label {
  font-size: 0.95rem;
  color: var(--charcoal-mid);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--sage-xpale);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sage-light);
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* ---- CTA Sections ---- */
.cta-section {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* ---- Feature/Value Cards ---- */
.value-card {
  text-align: center;
  padding: 36px 24px;
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.value-card h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.value-card p {
  font-size: 0.95rem;
}

/* ---- Founder Section ---- */
.founder-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.founder-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 3px rgba(123, 158, 135, 0.15);
}

.founder-img-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

.founder-credential {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.credential-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.credential-text h5 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--charcoal);
}

.credential-text p {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  margin-top: 2px;
}

/* ---- Process Steps ---- */
.process-steps {
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--cream);
  position: relative;
}

.process-step:last-child { border-bottom: none; }

.step-number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(123, 158, 135, 0.3);
}

.step-content h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.step-content p { font-size: 0.95rem; }

/* ---- Comparison / Transform Section ---- */
.transform-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
}

.transform-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.transform-card.after {
  background: linear-gradient(145deg, var(--sage-xpale) 0%, var(--white) 100%);
  border: 1px solid var(--sage-light);
}

.transform-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.transform-card.before .transform-label { color: var(--taupe); }
.transform-card.after  .transform-label { color: var(--sage-dark); }

.transform-items li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--charcoal-mid);
  border-bottom: 1px solid var(--cream);
}

.transform-card.after .transform-items li {
  border-bottom-color: rgba(123, 158, 135, 0.15);
}

.transform-items li:last-child { border-bottom: none; }

.transform-items li .icon {
  flex-shrink: 0;
  font-size: 1rem;
}

/* ---- Image Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-1 { grid-column: span 5; height: 320px; }
.gallery-item-2 { grid-column: span 4; height: 320px; }
.gallery-item-3 { grid-column: span 3; height: 320px; }
.gallery-item-4 { grid-column: span 3; height: 240px; }
.gallery-item-5 { grid-column: span 4; height: 240px; }
.gallery-item-6 { grid-column: span 5; height: 240px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand .nav-logo-name {
  color: var(--white) !important;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.93rem;
  line-height: 1.75;
  max-width: 300px;
}

.footer-col h5 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--sage-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(123, 158, 135, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-contact-text strong {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--sage-light); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.65);
}

.social-link:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Scroll Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ---- Utility ---- */
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.img-round {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.full-width-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.badge-sage { background: var(--sage-pale); color: var(--sage-dark); }
.badge-beige { background: rgba(200, 180, 156, 0.2); color: var(--taupe); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-item-1 { grid-column: span 3; height: 240px; }
  .gallery-item-2 { grid-column: span 3; height: 240px; }
  .gallery-item-3 { grid-column: span 3; height: 200px; }
  .gallery-item-4 { grid-column: span 2; height: 200px; }
  .gallery-item-5 { grid-column: span 2; height: 200px; }
  .gallery-item-6 { grid-column: span 2; height: 200px; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }

  .nav-links { display: none; }

  .nav-toggle { display: flex; }

  /* Mobile menu — always rendered as flex but hidden via opacity/visibility for animation */
  .nav-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ivory);
    z-index: 999;
    display: flex !important; /* override the global display:none on mobile only */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 40px;
    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px) scale(0.98);
    transition:
      opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.38s cubic-bezier(0.34, 1.1, 0.64, 1),
      visibility 0.38s;
  }

  .nav-mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  /* Staggered link entrance */
  .nav-mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    padding: 10px 20px;
    text-align: center;
    border-radius: var(--radius-pill);
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.32s ease,
      transform 0.32s ease,
      color 0.28s,
      background 0.28s;
  }

  .nav-mobile-menu.open a:nth-child(2)  { opacity: 1; transform: none; transition-delay: 0.06s; }
  .nav-mobile-menu.open a:nth-child(3)  { opacity: 1; transform: none; transition-delay: 0.10s; }
  .nav-mobile-menu.open a:nth-child(4)  { opacity: 1; transform: none; transition-delay: 0.14s; }
  .nav-mobile-menu.open a:nth-child(5)  { opacity: 1; transform: none; transition-delay: 0.18s; }
  .nav-mobile-menu.open a:nth-child(6)  { opacity: 1; transform: none; transition-delay: 0.22s; }
  .nav-mobile-menu.open a:nth-child(7)  { opacity: 1; transform: none; transition-delay: 0.26s; }

  .nav-mobile-menu a:hover {
    color: var(--sage-dark);
    background: var(--sage-pale);
  }

  .nav-mobile-cta {
    margin-top: 14px;
    background: var(--sage) !important;
    color: var(--white) !important;
    padding: 14px 40px !important;
    border-radius: var(--radius-pill) !important;
    font-family: 'Nunito', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
    box-shadow: 0 4px 18px rgba(123,158,135,0.35) !important;
  }

  .mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cream);
  }

  /* Push homepage hero content below the transparent fixed nav on mobile.
     The nav is ~70px tall; 100px top padding gives comfortable breathing room
     so the hero-badge "Serving the Bronx" never overlaps the header. */
  .hero {
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .trust-items {
    gap: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .founder-img-wrap img {
    height: 380px;
  }

  /* Remove sticky on the about-page founder photo when grid collapses to 1-col */
  .founder-img-wrap {
    position: static !important;
    top: auto !important;
  }

  /* Inner page heroes: reduce top padding on mobile since nav is smaller */
  .page-hero {
    padding: 110px 0 60px;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-1, .gallery-item-2, .gallery-item-3,
  .gallery-item-4, .gallery-item-5, .gallery-item-6 {
    grid-column: span 1;
    height: 180px;
  }

  .hero-stats {
    gap: 16px;
  }

  .pricing-card { padding: 28px; }
  .card { padding: 24px; }
  .testimonial-card { padding: 28px; }
}

/* ---- Print ---- */
@media print {
  .site-header, .cta-section, .site-footer { display: none; }
}

/* ============================================================
   DARK MODE
   Embraces the system preference with a warm, deep palette.
   Light mode is completely unaffected.
   ============================================================ */
@media (prefers-color-scheme: dark) {

  /* ---- Palette overrides ---- */
  :root {
    --sage:          #88B895;
    --sage-light:    #A5C8AE;
    --sage-dark:     #6CA07A;
    --sage-pale:     rgba(136, 184, 149, 0.14);
    --sage-xpale:    rgba(136, 184, 149, 0.08);

    --ivory:         #101009;   /* page background */
    --cream:         #1C1B14;   /* subtle section tint */
    --beige:         #3A3728;
    --taupe:         #7A7060;
    --taupe-light:   rgba(255, 255, 255, 0.12);

    --charcoal:      #EDE8DF;   /* primary text → warm white */
    --charcoal-mid:  #C5BEAF;
    --charcoal-light:#8E877A;
    --white:         #1C1B14;   /* surfaces that say "white" → dark card */

    --shadow-sm:  0 2px 12px rgba(0, 0, 0, 0.45);
    --shadow-md:  0 6px 28px rgba(0, 0, 0, 0.55);
    --shadow-lg:  0 16px 48px rgba(0, 0, 0, 0.65);
  }

  /* ---- Base ---- */
  body {
    background-color: #101009;
    color: #EDE8DF;
  }

  /* ---- Navigation ---- */
  /* Scrolled header: match the logo's black, not ivory */
  .site-header.scrolled {
    background: rgba(10, 10, 8, 0.97);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  /* Nav links when scrolled → light on dark header */
  .site-header.scrolled .nav-links a { color: #EDE8DF; }
  .site-header.scrolled .nav-links a:hover,
  .site-header.scrolled .nav-links a.active {
    background: rgba(136, 184, 149, 0.18);
    color: var(--sage-light);
  }
  .site-header.scrolled .nav-logo-name  { color: #EDE8DF; }
  .site-header.scrolled .nav-logo-tagline { color: var(--sage-light); }

  /* Hamburger bars always white in dark mode */
  .nav-toggle span                       { background: #EDE8DF; }
  .site-header.scrolled .nav-toggle span { background: #EDE8DF; }

  /* Mobile menu */
  .nav-mobile-menu { background: #0E0D0B; }
  .nav-mobile-menu a { color: #EDE8DF; }
  .nav-mobile-menu a:hover { background: rgba(136, 184, 149, 0.14); color: var(--sage-light); }
  .mobile-close { background: #252420; color: #EDE8DF; }
  .nav-mobile-cta {
    background: var(--sage) !important;
    color: #fff !important;
  }

  /* ---- Section backgrounds ---- */
  .section-white  { background: #101009; }
  .section-ivory  { background: #101009; }
  .section-cream  { background: #161510; }
  .section-sage   { background: #131a12; }

  /* ---- Trust bar ---- */
  .trust-bar {
    background: #161510;
    border-bottom-color: rgba(255, 255, 255, 0.07);
  }
  .trust-icon { background: rgba(136, 184, 149, 0.14); }

  /* ---- Buttons ---- */
  .btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #EDE8DF;
  }
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
  }

  /* ---- Cards & surfaces ---- */
  .card,
  .testimonial-card,
  .transform-card,
  .service-card {
    background: #1C1B14;
    border-color: rgba(255, 255, 255, 0.06);
  }

  /* testimonial quote mark — very subtle so it never fights the text */
  .testimonial-card::before {
    color: rgba(136, 184, 149, 0.10);
  }

  .transform-card.after {
    background: linear-gradient(145deg, rgba(136,184,149,0.10) 0%, #1C1B14 100%);
    border-color: rgba(136, 184, 149, 0.22);
  }
  .transform-section { background: #0E0D0B; }

  /* Service cards */
  .service-card-body { background: #1C1B14; }

  /* ---- Pricing ---- */
  .pricing-card {
    background: #1C1B14;
    border-color: rgba(255, 255, 255, 0.07);
  }
  .pricing-card:hover { border-color: var(--sage); }
  .pricing-card.featured {
    background: linear-gradient(145deg, #3a5442 0%, #2e4436 100%);
    border-color: transparent;
  }
  .pricing-features li { border-bottom-color: rgba(255, 255, 255, 0.07); }

  /* Pricing page banner */
  .pricing-intro-banner {
    background: linear-gradient(135deg, rgba(136,184,149,0.09), rgba(136,184,149,0.04)) !important;
    border: 1px solid rgba(136, 184, 149, 0.15);
  }
  .includes-item { background: #1C1B14 !important; }
  .reassurance-item { background: rgba(136, 184, 149, 0.09) !important; }

  /* ---- FAQ ---- */
  .faq-item {
    background: #1C1B14;
    border-color: rgba(255, 255, 255, 0.07);
  }
  .faq-question { color: #EDE8DF; }
  .faq-icon { color: var(--sage-light); }

  /* ---- Process steps ---- */
  .process-step { border-bottom-color: rgba(255, 255, 255, 0.07); }

  /* ---- Timeline (about page) ---- */
  .timeline-item { border-left-color: rgba(136, 184, 149, 0.3); }

  /* ---- Promise section (about page) ---- */
  .promise-section {
    background: linear-gradient(135deg, #1C1B14, #181710) !important;
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  /* ---- Founder credential box ---- */
  .founder-credential {
    background: rgba(10, 10, 8, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .credential-text h5 { color: #EDE8DF; }
  .credential-text p  { color: #8E877A; }

  /* ---- Contact page ---- */
  .contact-info-card,
  .form-card {
    background: #1C1B14 !important;
    border: 1px solid rgba(255, 255, 255, 0.07);
  }
  .contact-method { border-bottom-color: rgba(255, 255, 255, 0.07); }
  .contact-method-icon { background: rgba(136, 184, 149, 0.14); }
  .contact-method-value,
  .contact-method-value a { color: #EDE8DF; }
  .service-area-box {
    background: rgba(136, 184, 149, 0.08) !important;
    border-color: rgba(136, 184, 149, 0.2);
  }
  .area-tag {
    background: #252420 !important;
    border-color: rgba(136, 184, 149, 0.25);
    color: var(--sage-light);
  }
  .reassurance-note {
    background: rgba(136, 184, 149, 0.08) !important;
    color: var(--sage-light);
  }

  /* ---- Forms ---- */
  .form-control {
    background: #252420;
    border-color: rgba(255, 255, 255, 0.12);
    color: #EDE8DF;
  }
  .form-control:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(136, 184, 149, 0.18);
  }
  .form-control::placeholder { color: #6A635C; }
  .form-label { color: #C5BEAF; }
  .form-check-label { color: #C5BEAF; }
  .radio-option span { color: #C5BEAF; }
  .form-success { background: rgba(136, 184, 149, 0.1); border-color: var(--sage); }

  /* ---- Testimonial avatars ---- */
  .testimonial-avatar {
    background: linear-gradient(135deg, var(--sage-dark), #3A3728);
    color: #EDE8DF;
  }
  .testimonial-name { color: #EDE8DF; }

  /* ---- Hero badge ---- */
  .hero-badge {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
  }

  /* ---- Page hero (inner pages) already has dark bg — keep it, just adjust ---- */
  .page-hero {
    background: linear-gradient(135deg, #0A0908 0%, #1C1B14 60%, #1a2c20 100%);
  }

  /* ---- Divider ---- */
  .divider { background: var(--sage); opacity: 0.5; }

  /* ---- Value cards (why choose us) ---- */
  .values-grid .value-card,
  .values-grid > div { color: #EDE8DF; }

  /* ---- Section headers ---- */
  .eyebrow { color: var(--sage-light); }

  /* ---- Badges ---- */
  .badge-sage  { background: rgba(136, 184, 149, 0.15); color: var(--sage-light); }
  .badge-beige { background: rgba(122, 112, 96, 0.25);  color: #C5BEAF; }

  /* ---- Footer: already dark, just adjust borders/tints ---- */
  .site-footer { background: #0A0908; }
  .footer-bottom { border-top-color: rgba(255, 255, 255, 0.06); }

  /* ---- Floating call button ---- */
  .float-cta {
    background: var(--sage-dark) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
  }
}
