:root {
  --brand: #0d5b40;
  --muted: #f2f6f3;
  --text: #0b2b23;
  --max-width: 1100px;
  --radius: 10px;
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inclusive Sans", sans-serif;
  color: var(--text);
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }

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

/* HEADER */
#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--brand);
  color: white;
  transition: all 0.25s ease;
  z-index: 1000;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease;
}
.logo img { height: 48px; transition: height 0.3s ease; }
.nav-toggle {
  background: transparent;
  border: 0px solid white;
  border-radius: 6px;
  color: white;
  width: 44px;
  height: 36px;
  font-size: 1.9rem;
  cursor: pointer;
  align-items: center;
}
#site-header.shrink .header-inner { padding: 12px 20px; }
#site-header.shrink .logo img { height: 36px; }
.mobile-nav {
  display: none;
  background: var(--brand);
  padding: 10px 20px;
}
.mobile-nav a {
  color: white;
  display: block;
  padding: 8px 0;
}

/* HERO */
main { padding-top: 96px; }
.hero {
  background: var(--muted);
  padding: 90px 20px 70px;
  display: flex;
  justify-content: center;
}
.hero-inner {
  max-width: var(--max-width);
  display: flex;
  gap: 48px;
}
.hero-left { flex: 1; }
.hero-right { flex: 1; display: flex; justify-content: flex-end; }
.hero h1 {
  font-size: clamp(1.5rem, 2.7vw, 3.1rem);
  margin: 0 0 25px;
  color: #0d5b40;
  font-weight: 700;
}
.hero p { margin: 0 0 50px; color: #0b2b23; font-size:clamp(1rem, 2vw, 1.3rem); }
.button-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  max-width: 1000px;
}

.btn,
.cta-btn,
.right-btn {
  max-width: 220px;
}
.left-buttons { display: flex; gap: 16px; }
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { transform: translateY(-3px); }
.btn-secondary { background: #fff; color: var(--brand); }
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  padding: 10px 16px;

}

/* QUOTE BAR */
.quote-bar {
  background: #d6e5dd;
  padding: 100px 0px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 70px; /* keeps height stable as quotes change */
}

.quote {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  opacity: 0;
  transition: opacity 0.9s ease;
  font-size:clamp(1.1rem, 2vw, 1.7rem);
  color: #214b3c;
}

.quote.active {
  opacity: 1;
  position: absolute;
}

.quote small {
  display: block;
  margin-top: 10px;
  color: var(--brand);
  font-weight: 600;
}

/* CONTACT */
.contact-section {
  max-width: var(--max-width);
  margin: 40px auto;
  padding: 24px 20px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.9rem;
}
/* form takes 70%, image 30% */
.contact-left {
  flex: 0 0 70%;
}

.contact-right {
  flex: 0 0 30%;
  text-align: center;
}

.contact-right img {
  width: 100%;
  max-width: 400px;
  border-radius: 30px;
  object-fit: cover;
  margin-bottom: 20px;
  margin-left: 35px;
}

.contact-caption {
  font-size: 0.9rem;
  color: var(--brand);
  margin: 0 auto;
  max-width: 100%;
  text-align:left;
  color: #0b2b23
}
.contact-section h2 {
  color: #0d5b40;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  margin: 8px 0 6px;
  color:#0b2b23;
  font-size: .9 rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid #dfeee8;
  border-radius: 3px;
  padding: 9px 10px;
  font-family: inherit;
}
.contact-form textarea { min-height: 110px; }
.contact-form .submit {
  margin-top: 12px;
  background: var(--brand);
  color: white;
  border: none;
  padding: 10px 16px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
}
.contact-right img {
  border-radius: 350px;
  width: 220px;
  height: auto;
  object-fit: fill;
}

/* INFO CARDS */
.info-cards {
  max-width: var(--max-width);
  margin: 20px auto 60px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  padding: 18px;
}
.info-card h3 { color: var(--brand); }
.info-card p { color:#0b2b23; font-size: 0.9rem; }
.see-more {
  display: none;
  background: transparent;
  border: none;
  color: var(--brand);
  font-weight: 600;
  cursor: pointer;
}
.info-card .collapsed { display: none; }

/* --- PAGE OVERLAY --- */
.color-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 182, 193, 0.25); /* light pink default */
  z-index: 999; /* below the header (which is 1000) */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;

    background:
    rgba(255, 182, 193, 0.25)
    url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAKklEQVQoU2NkYGD4z0AEYBxVSFIAEyiAqIYMA4R9JoAAGosgAgwEAF9DEbqA1J1QAAAAASUVORK5CYII=")
    repeat;
  background-size: 150px 150px;
  background-blend-mode: multiply; /* blend softly */
}

.color-overlay.active {
  opacity: 1;
  pointer-events: none;
}


/* --- FORM PAGE STYLING --- */
.form-page {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #f2f6f3;
  min-height: 100vh;
}

.form-container {
  max-width: 850px;
  margin: 0 auto 0px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 3px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.form-page h1 {
  color: #0d5b40;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.form-page p.intro {
  color: #0b2b23;
  margin-bottom: 30px;
}

.styled-form label {
  display: block;
  font-weight: 400;
  margin: 12px 0 6px;
  color:#0b2b23;
}

.styled-form input,
.styled-form textarea {
  width: 100%;
  border: 2px solid #a7c4b3;
  border-radius: 6px;
  padding: 8px 10px;
  background: #f0f7f3;
  font-family: inherit;
}

.styled-form h2 {
  color: #0d5b40;
  margin-top: 40px;
  font-size: 1.2rem;
}

/* --- MULTI-QUESTION FIELDSETS --- */
.multi-question {
  border: none;
  padding: 0px 0;
  margin-left: 10px;
  margin-bottom: 10px;
  margin-top: 30px;
}

.multi-question legend {
  font-weight: 600;
  color: #0d5b40;
  font-size: 1.2rem;
  margin-bottom: 10px;
  margin-top:10px ;
}

.multi-question hr {
  border: none;
  margin-bottom: 10px;
}

.question {
  margin-bottom: 10px;
}

.question label {
  font-weight: 600;
  color: #0d5b40;
  display: block;
  margin-bottom: 6px;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.options label {
  font-weight: 500;
  background: #f0f7f3;
  border: 1.5px solid #6a8375;
  border-radius: 3px;
  padding: 6px 12px;
  color: #0d5b40;
  cursor: pointer;
  transition: all 0.2s ease;
}

.options input {
  display: none;
}

.options input:checked + span,
.options label:has(input:checked) {
  background: #0d5b40;
  color: white;
  border-color: #0d5b40;
}

.options label:hover {
  background: #dcebe3;
}

@media (max-width: 700px) {
  .options {
    flex-direction: column;
    align-items: flex-start;
  }
}
.styled-form .submit {
  margin-top: 12px;
  background: var(--brand);
  color: white;
  border: none;
  padding: 10px 16px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
}

.form-success {
  margin-top: 16px;
  padding: 10px 14px;
  background: #e9f0ec;
  color: #0d5b40;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: none;
}

.form-success.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
.site-footer {
  background: var(--brand);
  color: white;
  text-align: center;
  padding: 36px 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-section { flex-direction: column; }
  .info-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .hero-inner { flex-direction: column; }
  .button-group { flex-direction: column; align-items: stretch; }
  .info-cards { grid-template-columns: 1fr; }
  .see-more { display: inline-block; }
  .info-card p { display: none; }
  .info-card .collapsed { display: none; }
  .mobile-nav { display: none; }
}
