/* ── Brand Tokens ── */
:root {
  --teal-dark:   #0E4B51;
  --teal-mid:    #1C645A;
  --teal-bright: #217F76;
  --green-mid:   #478E46;
  --lime:        #9CBF3C;
  --white:       #FFFFFF;
  --off-white:   #F5FAF9;
  --text-dark:   #1a2e2d;
  --text-mid:    #2e4d4b;
}
 
/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
 
body {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}
 
/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal-dark);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
 
.nav-brand {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
 
.nav-links {
  display: flex;
  gap: 10px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}
 
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.2s;
}
 
.nav-links a:hover {
  background: var(--teal-bright);
}
 
/* ── HERO ── */
#home {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 60%, var(--teal-bright) 100%);
  color: var(--white);
  text-align: center;
  padding: 45px 8% 80px;
  position: relative;
  overflow: hidden;
}
 
#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,...");
  pointer-events: none;
}
 
#home h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 8px;
  margin-top: 42px;
  font-weight: 400;
}
 
.hero-subtitle {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-weight: 400;
  color: #b8e8c8;
   font-size: clamp(2.2rem, 2vw, 1.45rem);
  line-height: 1.2;
  margin-bottom: 28px;
  margin-top: 20px;
}
 
.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 44px;
  opacity: 0.92;
  font-weight: 300;
  margin-top: 50px;
  margin-bottom: -5px;
}

.hero-contact-strip {
  margin-top: -25px;
  font-size: 2rem;
  opacity: 0.82;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: center;
  align-items: center;
}
 
.hero-contact-strip a {
  color: var(--white);
  text-decoration: none;
}
 
.hero-contact-strip a:hover { text-decoration: underline; }
 
.btn-hero {
  display: inline-block;
  margin-top: 36px;
  background: var(--lime);
  color: var(--teal-dark);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.btn-hero:hover {
  background-color: #7f9d30 !important;
}
 
/* ── SECTION BASE ── */
section {
  padding: 80px 8%;
}
 
section:nth-child(odd) {
  background: var(--off-white);
}
 
.section-label {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 8px;
}

 
.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 3rem;
  color: var(--teal-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
}
 
.section-intro {
  font-size: 1.2rem;
  color: var(--text-mid);
  max-width: 720px;
  margin-bottom: 52px;
  font-weight: 300;
}
 
 
#services {
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
/* HEADER */
.services-header {
  width: 92%;
  max-width: 1100px;
  text-align: left;
  margin-bottom: 20px;
}
 
/* CARD */
.service-card {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
 
  display: flex;
  align-items: center;
  gap: 20px;
 
  background: var(--white);
  border-top: 5px solid var(--teal-bright);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(14,75,81,0.08);

  font-size: 0.5rem;
}

#services li {
  margin-bottom: 10px;
}
 
/* IMAGE */
.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
}
 
.image-container img {
  width: 180px;
  height: auto;
}
 
/* TEXT */
.service-card ul {
  flex: 1;
  margin: 0;
  padding-left: 20px;
 
  list-style: none;
 
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
/* TEXT STYLE */
.service-card li {
  font-size: 1.4rem;
  line-height: 1.5;
  position: relative;
  padding-left: 24px;
}
 
/* CHECKMARKS */
.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
}
 
/* ── WHO WE HELP ── */
#serve {
  background: var(--teal-dark);
  color: var(--white);
}
 
#serve .section-intro {
  max-width: 900px;
  margin: 0 0 20px 0; 
  line-height: 1.6;
}
 
#serve .section-label {
  color: var(--lime);
}
 
#serve .section-title {
  color: var(--white);
}
 
#serve .section-intro {
  color: rgba(255,255,255,0.8);
  text-align: left;
}
 
.serve-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px; /* smaller spacing between cards */
}
 
.serve-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-left: 5px solid var(--lime);
  border-radius: 8px;
 
  padding: 35px 30px; 
 
  transition: background 0.2s;
}
 
.serve-card:hover {
  background: rgba(255,255,255,0.13);
}
 
.serve-card .serve-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
  margin-top: -20px;
}
 
.serve-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.5;
}
 
.serve-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  margin-top: 10px;
  line-height: 1.6;
  line-height: 1.3;
}
 
 
/* ── ABOUT ── */
.about-section-label {
    font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 8px;
  margin-top: 45px;
  margin-left: 25px;
}

.about-section-title {
    font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  color: var(--teal-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
  margin-left: 25px;
}

.about-container {
display: flex;
gap: 150px;
align-items: flex-start;
}
 
.about-text {
flex: 1;
}
 
.about-images {
width: 300px;
margin-top: 50px;
display: flex;
flex-direction: column;
gap: 20px;
margin-right: 40px;
}
 
.about-images img {
width: 100%;
border-radius: 12px;
}
 
@media (max-width: 900px) {
.about-container {
flex-direction: column;
}
 
.about-images {
width: 100%;
margin-top: 20px;
}
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-left: 25px;
}
 
 
/* ── CTA ── */
#contact {
  background: linear-gradient(135deg, var(--teal-mid) 0%, var(--teal-dark) 100%);
  color: var(--white);
  text-align: center;
}
 
#contact .section-label {
  color: var(--lime);
}
 
#contact .section-title {
  color: var(--white);
}
 
.contact-intro {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.88);
  max-width: 920px;
  margin: 0 auto 52px;
  font-weight: 300;
}

.contact-text {
  font-size: 1.5rem;
  color: var(--lime);
  max-width: 720px;
  margin: 0 auto 52px;
  font-weight: 400;
  line-height: 1.2;
}
 
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 52px;
}
 
.contact-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 30px 36px;
  min-width: 220px;
}
 
.contact-card .cc-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
}
 
.contact-card .cc-label {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 700;
  margin-bottom: 6px;
}
 
.contact-card a,
.contact-card span {
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  display: block;
  font-size: 1.5rem;
}
 
.contact-card a:hover { text-decoration: underline; }
 
/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 32px 8%;
  font-size: 0.95rem;
}
 
footer strong {
  color: var(--white);
}
 
/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  nav { height: auto; padding: 14px 5%; flex-direction: column; gap: 12px; }
  .nav-links { gap: 6px; }
  .nav-links a { font-size: 0.88rem; padding: 6px 10px; }
  section { padding: 60px 6%; }
}
 
/* ── SMOOTH SCROLL OFFSET for sticky nav ── */
[id] { scroll-margin-top: 20px; }
 