@charset "utf-8";
/* CSS Document */

/* --- BASE & VARIABLES --- */
:root {
  /* Brand Theme Colors (Derived from Logo) */
  --primary: #5A3348;          /* Deep Berry / Plum (Headings, primary headers, hero backgrounds) */
  --accent: #B76E79;           /* Rose Gold (Primary buttons, key highlights, active links) */
  --accent-hover: #9E5B65;     /* Darker Rose Gold (Button hover states) */
  
  /* Neutral & Background Tones */
  --bg-light: #FBF9F8;        /* Soft Cream (Matches logo background texture) */
  --text-dark: #2D232A;       /* High-contrast Charcoal-Plum for body text */
  --text-muted: #6E5C67;      /* Muted Plum-Grey for secondary descriptions */
  --white: #FFFFFF;           /* Card containers & white button elements */
  --border: #E8DFE3;          /* Soft Mauve-tinted border line */
  
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  /*--font-main: "Poppins", Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";*/
}

.bio * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

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

.btn-secondary:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

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

/* --- SECTION HEADINGS --- */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- HERO SECTION --- */
.hero-section {
    /* Blends from a deep plum shade into your primary Deep Berry color */
    background: linear-gradient(135deg, #3B1F2E 0%, var(--primary) 100%);
    color: var(--white);
    padding: 5rem 0 4rem;
    text-align: center;
}

.hero-container h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subhead {
  font-size: 1.2rem;
  color: #F3EAEF;
  max-width: 750px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-shopper-link {
  font-size: 0.95rem;
  color: #E8DFE3;
}

.hero-shopper-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.hero-shopper-link a:hover {
  text-decoration: underline;
}

/* --- TRUST BANNER --- */
.trust-banner {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.trust-stat {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}
/*
.trust-banner .trust-item:nth-child(4) span:nth-child(1) {
  line-height: 1.1;
}
*/
.trust-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- EMPATHY SECTION --- */
.empathy-section {
  padding: 4rem 0;
  background-color: var(--white);
}
body.services .empathy-section, 
body.sales .empathy-section, 
body.about .empathy-section {
  padding: 2rem 0;
}
body.sales .empathy-section {
  padding: 2rem 0 1rem 0;
}

.empathy-content {
  max-width: 800px;
  text-align: center;
}

.empathy-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.about .empathy-content h2 {
  margin-bottom: 0;
}

.empathy-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* --- SERVICES TEASER --- */
.services-teaser-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.card-link:hover {
  color: var(--accent-hover);
}


/* --- WHY CHOOSE US --- */
.why-us-section {
  padding: 4rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  background-color: var(--bg-light);
  border-radius: 0 6px 6px 0;
}

.why-card h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-style: italic;
}

.testimonial-card .quote {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.testimonial-card .author {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

/* --- CTA BANNER --- */
.cta-banner {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-container h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-container p {
  color: #E2E8F0;
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
  .hero-container h1 {
    font-size: 1.85rem;
  }
  .hero-subhead {
    font-size: 1.05rem;
  }
  .section-title h2 {
    font-size: 1.75rem;
  }
}

/* ==========================================================================
   MOBILE-FRIENDLY & RESPONSIVE OVERRIDES
   ========================================================================== */

/* 1. Global Container Spacing */
.container {
  width: 92%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 0.0rem;
}

/* 2. Responsive Typography */
h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.25;
}

h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.3;
}

.hero-subhead {
  font-size: clamp(0.98rem, 2.5vw, 1.2rem);
}

/* 3. Hero & Section Padding Adjustments */
.hero-section {
  padding: 3rem 1rem 2.5rem;
}

.empathy-section,
.services-teaser-section,
.why-us-section,
.testimonials-section,
.cta-banner {
  padding: 2.5rem 0;
}

/* 4. Full-Width Stacked Buttons on Mobile */
.hero-actions,
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 1.5rem;
}

.hero-actions .btn,
.cta-buttons .btn {
  width: 100%;
  text-align: center;
  padding: 0.9rem 1.25rem;
  box-sizing: border-box;
}

/* 5. Mobile Grid Layout Fixes (Single Column on Small Screens) */
.trust-grid,
.services-grid,
.why-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr; /* Force 1 column on mobile */
  gap: 1.25rem;
}

/* 6. Tablet & Desktop Media Queries */
@media (min-width: 640px) {
  .hero-actions,
  .cta-buttons {
    flex-direction: row;
    width: auto;
    max-width: none;
  }
  
  .hero-actions .btn,
  .cta-buttons .btn {
    width: auto;
  }

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

@media (min-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .hero-section {
    padding: 4rem 0 4rem;
  }

  .empathy-section,
  .services-teaser-section,
  .why-us-section,
  .testimonials-section,
  .cta-banner {
    padding: 4rem 0;
  }
}

/* ==========================================================================
   SERVICES PAGE STYLING (THE ESTATE CHICS THEME)
   ========================================================================== */

/* Lead Intro Paragraph */


/* Services Container Section */
.core-services-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
  width: 92%;
  margin: 0 auto;
}

/* Service Card Container */
.service-card {
  background-color: var(--white, #FFFFFF);
  border: 1px solid var(--border, #E8DFE3);
  border-left: 5px solid var(--accent, #B76E79); /* Rose Gold left accent bar */
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(45, 35, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(90, 51, 72, 0.08);
}

/* Card Headings */
.service-card h3 {
  color: var(--primary, #5A3348); /* Deep Berry */
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card h4 {
  color: var(--text-muted, #6E5C67); /* Muted Plum */
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* Bulleted Lists (Services) */
.service-card ul {
  list-style: none; /* Removed default browser bullet */
  padding-left: 0;
  margin: 0;
}

.service-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.85rem;
  line-height: 1.6;
  color: var(--text-dark, #2D232A);
}

.service-card ul li:last-child {
  margin-bottom: 0;
}

/* Custom Rose Gold Bullet Point */
.service-card ul li::before {
  content: "•";
  color: var(--accent, #B76E79);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

.service-card ul li strong {
  color: var(--primary, #5A3348);
}

/* Numbered List (4-Step Process Card) */
.service-card ol {
  padding-left: 1.25rem;
  margin: 0;
}

.service-card ol li {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-dark, #2D232A);
}

.service-card ol li:last-child {
  margin-bottom: 0;
}

.service-card ol li::marker {
  color: var(--accent, #B76E79); /* Rose Gold step numbers */
  font-weight: 700;
}

.service-card ol li strong {
  color: var(--primary, #5A3348);
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #3B1F2E 0%, var(--primary, #5A3348) 100%);
  color: var(--white, #FFFFFF);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 8px 20px rgba(90, 51, 72, 0.15);
}

.cta-box h3 {
  color: var(--white, #FFFFFF);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: #F3EAEF; /* Soft light mauve tint for readability */
  font-size: 1.05rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-box p:last-child {
  margin-bottom: 0;
}

.cta-box a {
  color: var(--accent, #B76E79);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.cta-box a:hover {
  color: #E8DFE3;
  text-decoration: underline;
}

/* Call Button Styling inside CTA Box */
.cta-box .btn {
  display: inline-block;
  background-color: var(--accent, #B76E79);
  color: var(--white, #FFFFFF) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none !important;
  margin-left: 0.3rem;
}

.cta-box .btn:hover {
  background-color: var(--accent-hover, #9E5B65);
}

/* Mobile Adjustments */
@media (max-width: 640px) {
  .service-card {
    padding: 1.25rem;
  }

  .cta-box {
    padding: 2rem 1.25rem;
  }

  .cta-box h3 {
    font-size: 1.35rem;
  }
}
