/* ============================================================
   Consumer Core Solutions — styles.css
   Single source of truth. Do NOT edit inline <style> tags.
   Edit this file only. Upload to /public_html/styles.css
   ============================================================ */

/* Fonts loaded via <link> in HTML head */

/* ── Variables ── */
:root {
  --navy: #1a2744;
  --navy-dark: #0f1a2e;
  --navy-mid: #162235;
  --green-dark: #125041;
  --green-mid: #3ec19f;
  --cream: #f8f6f0;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --border: #e8e4dc;
  --off-white: #f8f6f0;
  --navy-dark: #0f1a2e;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  padding-top: 70px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   NAV — hamburger drawer, all screen sizes
   ============================================================ */
nav#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  z-index: 900;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.logo-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.logo-mark span { color: var(--green-mid); }
.logo-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.4;
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  z-index: 10001;
}
.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links.open {
  display: flex;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: auto;
  width: 320px;
  background: #162235;
  transform: translateZ(0);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 80px 0 2rem 0;
  z-index: 10000;
  box-shadow: -6px 0 30px rgba(0,0,0,0.4);
}
.nav-links.open li {
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-links.open li a {
  display: block;
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links.open li a:hover {
  background: rgba(255,255,255,0.06);
}
.nav-links.open li:last-child {
  border-bottom: none;
  padding: 1.5rem 2rem;
}
.nav-links.open li:last-child a {
  display: inline-block;
  width: auto;
  padding: 0.75rem 1.5rem;
  background: #3ec19f;
  color: #fff;
  border-radius: 2px;
}
.drawer-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

/* ============================================================
   HERO
   ============================================================ */
#home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}
.hero-left {
  background: var(--navy);
  padding: 5rem 8% 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}
.hero-title em {
  font-style: italic;
  color: var(--green-mid);
  font-weight: 300;
}
.hero-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 420px;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 1px;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--white); }
/* ── Hero class name aliases (HTML uses these) ── */
.hero-tag { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--green-mid); }
.hero-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 300; color: var(--white); line-height: 1.15; }
.hero-headline em { font-style: italic; color: var(--green-mid); font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-ghost { border: 1px solid rgba(255,255,255,0.4); color: var(--white); padding: 0.9rem 2rem; font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; display: inline-block; transition: border-color 0.2s; }
.btn-ghost:hover { border-color: var(--white); }

.hero-right {
  background: var(--cream);
  padding: 5rem 8% 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* ── PEARLS ── */
.pearls-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.pearls-stack {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pearl-item {
  display: flex;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.pearl-item:last-child { border-bottom: none; }
.pearl-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  width: 2rem;
  flex-shrink: 0;
}
.pearl-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-text {
  padding: 6rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 500;
}
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
}
.about-text h2 em { font-style: italic; color: var(--green-mid); }
.about-text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 480px;
}
.about-text p strong { color: var(--navy); font-weight: 500; }
.stat-row { display: flex; gap: 2rem; margin-top: 0.5rem; }
.stat-item { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--green-mid);
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.btn-secondary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 1px;
  align-self: flex-start;
  transition: background 0.2s;
}
.btn-secondary:hover { background: var(--navy-dark); }
.about-visual {
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.about-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  z-index: 1;
  max-width: 380px;
  width: 100%;
}
.about-card::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(62,193,159,0.2);
  border-radius: 2px;
  pointer-events: none;
}
.logo-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: block;
}
.logo-large span { color: rgba(62,193,159,0.3); }
.about-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
}
.about-card-body {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

/* ============================================================
   MID-PAGE CTA
   ============================================================ */
#cta-mid {
  background: var(--navy-dark);
  padding: 3rem 8%;
  text-align: center;
}

/* ============================================================
   WHY US
   ============================================================ */
#why-us {
  padding: 6rem 8%;
  background: var(--white);
}
#why-us > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 3rem;
  line-height: 1.2;
}
#why-us > h2 em { font-style: italic; color: var(--green-mid); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  background: var(--cream);
}
.why-card-icon {
  width: 48px; height: 48px;
  background: rgba(62,193,159,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 6rem 8%;
  background: var(--cream);
}
#testimonials > h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 3rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid var(--border);
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.testimonial-role {
  font-size: 0.72rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.15rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 6rem 8%;
  background: var(--navy-dark);
}
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}
.services-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}
.services-intro h2 em { font-style: italic; color: var(--green-mid); }
.services-intro p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #ffffff;
  border: 1px solid #e8e4dc;
  border-radius: 4px;
  padding: 2rem;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  background: #ffffff;
  border-color: #3ec19f;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.service-icon {
  width: 44px; height: 44px;
  background: rgba(62,193,159,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a2744;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.82rem;
  font-weight: 300;
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.service-link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.service-link:hover { color: var(--white); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.contact-info {
  background: var(--navy);
  padding: 6rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}
.contact-info h2 em { font-style: italic; color: var(--green-mid); }
.contact-info p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 380px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}
.contact-detail-icon {
  width: 36px; height: 36px;
  background: rgba(62,193,159,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-form {
  background: var(--cream);
  padding: 6rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.8rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  border-radius: 2px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green-mid); }
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  background: var(--green-dark);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--navy); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-dark);
  padding: 2rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo span { color: rgba(62,193,159,0.5); }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--green-mid); }
.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--green-dark);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(18,80,65,0.3);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   MOBILE — max-width: 900px
   ============================================================ */
@media (max-width: 900px) {
  html, body { overflow-x: hidden !important; max-width: 100% !important; }
  *, *::before, *::after { box-sizing: border-box !important; }

  /* Hero */
  #home {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
  }
  .hero-left {
    padding: 3rem 6% 2rem !important;
    width: 100% !important;
    min-height: 0 !important;
  }
  .hero-right {
    padding: 1.5rem 6% 2rem !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    min-height: 0 !important;
    height: auto !important;
  }
  .hero-title { font-size: clamp(1.9rem, 6vw, 2.8rem) !important; }
  .hero-ctas { flex-wrap: wrap !important; gap: 0.75rem !important; }

  /* PEARLS — show as inline pills */
  .pearls-stack {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
  }
  .pearl-item {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 0.3rem 0.9rem !important;
    background: white !important;
    border-radius: 99px !important;
    border: 1px solid rgba(54,193,159,0.3) !important;
    white-space: nowrap !important;
  }
  .pearl-letter {
    font-size: 1rem !important;
    display: inline !important;
    width: auto !important;
    font-weight: 600 !important;
  }
  .pearl-word {
    font-size: 1rem !important;
    display: inline !important;
  }

  /* About */
  #about {
    display: flex !important;
    flex-direction: column !important;
  }
  .about-text {
    padding: 3rem 6% !important;
    order: 1;
    width: 100% !important;
  }
  .about-visual {
    order: 2;
    width: 100% !important;
    min-height: 300px;
    padding: 2rem !important;
  }
  .about-card::after { display: none !important; }
  .stat-row { flex-wrap: wrap !important; gap: 1.2rem !important; }

  /* Grids — single column */
  .why-grid { grid-template-columns: 1fr !important; }
  .services-intro { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .services-grid { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; }

  /* Contact */
  #contact {
    display: flex !important;
    flex-direction: column !important;
  }
  .contact-info { padding: 3rem 6% !important; width: 100% !important; }
  .contact-form { padding: 3rem 6% !important; width: 100% !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px !important;
    -webkit-appearance: none !important;
  }
  .btn-submit { width: 100% !important; }

  /* Section padding */
  #why-us { padding: 3rem 6% !important; }
  #services { padding: 3rem 6% !important; }
  #testimonials { padding: 3rem 6% !important; }
  #back-to-top { bottom: 1.5rem !important; right: 1.5rem !important; }
  .btn-outline { border-color: var(--navy) !important; color: var(--navy) !important; }
}

/* ============================================================
   MOBILE — max-width: 600px
   ============================================================ */

@media (max-width: 900px) {

  /* Force hero text colors explicitly */
  .hero-eyebrow, .hero-tag { color: #3ec19f !important; }
  .hero-title, .hero-headline { color: #ffffff !important; }
  .hero-title em, .hero-headline em { color: #3ec19f !important; }
  .hero-body { color: rgba(255,255,255,0.72) !important; }
  /* Fix CTA buttons to stack on mobile */
  .hero-ctas, .hero-btns { flex-direction: column !important; align-items: flex-start !important; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: auto !important; }
  .btn-outline, .btn-ghost { border-color: rgba(255,255,255,0.5) !important; color: #ffffff !important; }

}
@media (max-width: 600px) {
  html, body { overflow-x: hidden !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .hero-ctas { flex-direction: column !important; }
  .hero-ctas a { width: 100% !important; text-align: center !important; }
  footer { flex-direction: column !important; text-align: center !important; }
  .footer-nav { justify-content: center; }
}


/* ============================================================
   HTML CLASS NAME FIXES
   The actual HTML uses different class names than initially
   expected. These rules cover the real class names.
   ============================================================ */

/* Shared label used across sections */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #3ec19f;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Shared headline used across sections */
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Section backgrounds that were transparent */
#about { background: #ffffff; }
#why-us { background: #ffffff; }
#contact { background: #1a2744; }

/* About section headline color */
#about .section-headline { color: #1a2744; }

/* Why Us section headline */
#why-us .section-headline { color: #1a2744; }

/* Services section headline (on dark bg) */
#services .section-headline { color: #ffffff; }
#services .section-label { color: #3ec19f; }

/* Contact section (on navy bg) */
#contact .section-label { color: #3ec19f; }
#contact .section-headline { color: #ffffff; }
.contact-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 1.5rem;
}

/* Contact info block inside contact div */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-info a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Contact form on cream background */
form.contact-form {
  background: #f8f6f0;
  padding: 4rem 8%;
}

/* Form submit button */
.form-submit {
  background: #125041;
  color: #ffffff;
  padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: #1a2744; }

/* Testimonials section */
#testimonials { background: #f8f6f0; }
#testimonials .section-headline { color: #1a2744; }

/* CTA mid section text */
#cta-mid .section-label { color: #3ec19f; }
#cta-mid h2 { color: #ffffff; font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 400; margin-bottom: 1rem; }
#cta-mid p { color: rgba(255,255,255,0.72); font-size: 0.95rem; font-weight: 300; line-height: 1.75; max-width: 560px; margin: 0 auto 2rem; }
#cta-mid a { display: inline-block; background: #3ec19f; color: #fff; font-family: 'Jost', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 1rem 2.5rem; border-radius: 2px; }

/* Why Us cards text readability */
.why-card h3 { color: #1a2744; }
.why-card p { color: #5a5a5a; }

/* Service cards text on dark bg */
.service-card h3 { color: #ffffff; }
.service-card p { color: rgba(255,255,255,0.65); }

/* Testimonial text */
.testimonial-quote, blockquote { color: #1a2744; }

/* Mobile fixes for new class names */
@media (max-width: 900px) {
  #contact { display: flex !important; flex-direction: column !important; }
  #contact > div, #contact > form { width: 100% !important; }
  #contact > div { padding: 3rem 6% !important; }
  form.contact-form { padding: 2.5rem 6% !important; }
  .form-row { display: flex !important; flex-direction: column !important; gap: 1rem !important; }
  .form-submit { width: 100% !important; padding: 1rem !important; }
  .section-headline { font-size: clamp(1.7rem, 5vw, 2.4rem) !important; }
}

/* ============================================================
   MISSING VARIABLE & SECTION BACKGROUND FIXES
   ============================================================ */

/* Section backgrounds */
#why-us { background: var(--off-white) !important; padding: 6rem 8%; }
#contact { background: var(--navy-dark) !important; display: grid; grid-template-columns: 1fr 1fr; }
#testimonials { background: #f0f4f3; padding: 6rem 8%; }

/* Contact section - left info panel has no bg set inline */
#contact > div.reveal {
  background: var(--navy-dark);
  padding: 6rem 8%;
}

/* Contact info text */
#contact .section-label { color: #3ec19f; }
#contact .section-headline { color: #ffffff; font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3vw,2.8rem); font-weight: 300; line-height: 1.2; margin-bottom: 1rem; }
#contact .contact-body { color: rgba(255,255,255,0.72); font-size: 0.9rem; font-weight: 300; line-height: 1.8; }

/* Contact form */
form.contact-form { background: var(--off-white); padding: 6rem 8%; }

/* Form submit button */
.form-submit, button[type="submit"] {
  background: #125041 !important;
  color: #ffffff !important;
  padding: 1rem 2.5rem !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  border: none !important;
  cursor: pointer !important;
  border-radius: 2px !important;
  transition: background 0.2s !important;
  margin-top: 0.5rem !important;
  display: inline-block !important;
}
.form-submit:hover, button[type="submit"]:hover { background: #1a2744 !important; }

/* Why us section text */
#why-us > div > div:first-child { 
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; 
  color: #3ec19f; font-weight: 600; margin-bottom: 0.8rem; 
}
#why-us h2 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: clamp(2rem,3.5vw,2.8rem); 
  font-weight: 300; color: #0f1a2e; line-height: 1.2; 
}

/* Testimonials */
#testimonials h2 { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: clamp(2rem,3vw,2.8rem); 
  font-weight: 300; color: #1a2744; margin-bottom: 2rem; 
}

/* Services section visible text */
#services h2, #services .services-intro h2 { color: #ffffff !important; }
#services .services-intro p { color: rgba(255,255,255,0.7) !important; }

/* Mobile: contact stacks */
@media (max-width: 900px) {
  #contact { grid-template-columns: 1fr !important; display: flex !important; flex-direction: column !important; }
  #contact > div.reveal { padding: 3rem 6% !important; }
  form.contact-form { padding: 3rem 6% !important; }
  #why-us { padding: 3rem 6% !important; }
  #testimonials { padding: 3rem 6% !important; }
  .form-submit, button[type="submit"] { width: 100% !important; }
}
/* Service card actual class names */
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a2744 !important;
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: #5a5a5a !important;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.service-link { color: #3ec19f !important; }

#services .service-card .service-title { color: #1a2744 !important; }
#services .service-card .service-desc { color: #5a5a5a !important; }
#services .service-card p { color: #5a5a5a !important; }

/* ── About Card — readable on dark navy background ── */
.about-card {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 6px !important;
  padding: 2.5rem !important;
}

/* C|C|S large logo — bright and visible */
.logo-large {
  color: rgba(255,255,255,0.85) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 3.5rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.12em !important;
  display: block !important;
  margin-bottom: 0.5rem !important;
}
.logo-large span { color: #3ec19f !important; }

/* Subtitle text */
.logo-sub {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
}

/* Stats inside card */
.stat-num { color: #3ec19f !important; }
.stat-label { color: rgba(255,255,255,0.6) !important; }
.stat { color: rgba(255,255,255,0.8) !important; }

/* Contact info items — email, phone etc on dark navy background */
.contact-info-item,
.contact-info-item span,
.contact-info-item a,
#contact .contact-info * {
  color: rgba(255,255,255,0.85) !important;
}
.contact-info-item a:hover {
  color: #3ec19f !important;
}

/* Footer nav links — dark on dark, needs to be light */
footer a {
  color: rgba(255,255,255,0.55) !important;
}
footer a:hover {
  color: #3ec19f !important;
}

/* About section mobile — text first, card below */
@media (max-width: 900px) {
  #about {
    display: flex !important;
    flex-direction: column !important;
  }
  #about .about-text {
    order: 1 !important;
    width: 100% !important;
    padding: 3rem 6% !important;
  }
  #about .about-visual {
    order: 2 !important;
    width: 100% !important;
    min-height: 280px !important;
    padding: 2.5rem 6% !important;
  }
}

/* Why Us — 4 cards grid: 1 column on mobile */
@media (max-width: 900px) {
  #why-us > div:last-child,
  #why-us div[style*="grid"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  #why-us > div:last-child > div,
  #why-us div[style*="grid"] > div {
    width: 100% !important;
  }
}

/* Why Us card headings — remove aggressive all-caps from inline styles */
#why-us div div div[style*="text-transform"] {
  text-transform: none !important;
}
#why-us div div div:first-child {
  text-transform: none !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  color: #1a2744 !important;
}

/* Why Us cards — remove uppercase from all headings and body text */
#why-us div[style*="uppercase"] {
  text-transform: none !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  color: #1a2744 !important;
  letter-spacing: 0.02em !important;
}
#why-us p[style*="uppercase"] {
  text-transform: none !important;
}

/* Why Us card headings — force sentence case (remove uppercase from card titles) */
#why-us div[style*="border-left"] > div[style*="1.3rem"],
#why-us div[style*="border-left"] > div:first-child {
  text-transform: none !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  color: #0f1a2e !important;
}
#why-us div[style*="border-left"] p {
  text-transform: none !important;
}
