header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  background: rgba(210, 180, 140, 0.874);
  box-sizing: border-box;
  max-height: 120px;
   z-index: 1000;
}

.header-container {
  max-width: 1280px;         
  margin: 0 auto;             
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  max-height: 90px;
  height: auto;
  width: auto;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.15));
  image-rendering: -webkit-optimize-contrast;
  transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.logo img:hover {
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.18));
}

nav {
  flex: 1 1 auto;
  min-width: 0;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}
nav a {
  text-decoration: none;
  color: #556b2f;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  text-shadow: #444343da 1px 1px 2px;
    position: relative;
  transition: color var(--dur) var(--ease), text-shadow var(--dur) var(--ease);
}
nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  height: 2px; width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
nav a:hover::after,
nav a:focus-visible::after { transform: scaleX(1); }
nav a:focus-visible {
  outline: none;
  text-shadow: 0 0 0; 
  box-shadow: 0 2px 0 0 currentColor;
}

@media (max-width: 900px) {
  .logo img {
    max-height: 64px;
  }
  header {
    padding: 0.4rem 1rem;
  }
  nav ul {
    gap: 1rem;
  }
}
@media (max-width: 700px) {
  .logo img {
    max-height: 52px;
  }
  nav ul {
    gap: 0.75rem;
  }
  nav a {
    font-size: 0.95rem;
  }
}
@media (max-width: 520px) {
  .logo img {
    max-height: 44px;
  }
  nav ul {
    gap: 0.5rem;
  }
  nav a {
    font-size: 0.9rem;
    letter-spacing: 0;
  }
}

:root {
  --tan: tan;
  --sage: #556b2f;
  --sage-rgb: 85, 107, 47;
  --ink: #1b501c;
  --paper: #fff;
   --ease: cubic-bezier(.2,.8,.2,1);
  --dur: 220ms;
}



@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth; 
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: var(--paper);
  padding-top: 100px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}
h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

a {
  color: var(--sage);
  text-decoration: none;
}
a:hover {
  color: rgba(var(--sage-rgb), 0.8);
}

#home {
  padding: 2.5rem 0;
}


#home .home-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) {
  #home .home-container {
    grid-template-columns: 1.2fr 1fr;
  }
}

#home .welcome h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  text-shadow: #d9d9d9 1px 1px 2px;
  margin-bottom: 1rem;
  border-bottom: 2px solid #556b2f;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

#home .welcome p {
  font-size: clamp(1.25rem, 1.2vw, 1.125rem);
  max-width: 60ch;
  margin: 0.4rem 0;
}

#home .lisa {
  display: flex;
  justify-content: center;

}
/* === HERO FADE CAROUSEL (fits existing #home layout) === */
#home .lisa.carousel{
  position: relative;
  width: 100%;
  max-width: 560px;   /* matches your original image sizing */
  height: 360px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  margin: 0 auto;     /* keeps it centered like before */
}

/* fade images */
#home .lisa.carousel .carousel-track{
  position: relative;
  width: 100%;
  height: 100%;
}
#home .lisa.carousel .carousel-track img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  animation: fadeCarousel 18s infinite;
}

/* stagger */
#home .lisa.carousel .carousel-track img:nth-child(1){ animation-delay: 0s; }
#home .lisa.carousel .carousel-track img:nth-child(2){ animation-delay: 6s; }
#home .lisa.carousel .carousel-track img:nth-child(3){ animation-delay: 12s; }

@keyframes fadeCarousel{
  0%{opacity:0;}
  10%{opacity:1;}
  30%{opacity:1;}
  40%{opacity:0;}
  100%{opacity:0;}
}

/* ⏸ pause on hover */
#home .lisa.carousel:hover img{ animation-play-state: paused; }

/* subtle badge that "flows" with your site */
#home .lisa.carousel .carousel-badge{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .65rem .75rem;
  border-radius: 10px;
  background: rgba(27,80,28,.55); /* uses your deep green tone */
  color: #fff;
  z-index: 2;
}

#home .lisa.carousel .carousel-badge span{
  font-weight: 700;
  letter-spacing: .2px;
}

/* CTA button */
.hero-cta{
  display:inline-block;
  padding:.75rem 1.1rem;
  background: var(--sage);
  color:#fff;
  border-radius: 10px;
  font-weight: 800;
  text-shadow: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.hero-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}


@media (max-width: 768px){
  #home .lisa.carousel{
    max-width: 100%;
    height: 280px;
  }
  #home .lisa.carousel .carousel-badge{
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .lisa.carousel {
    height: 280px;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .lisa.carousel {
    max-width: 100%;
    height: 280px;
  }
}

#home .lisa:not(.carousel) img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

#home .lisa img,
.about-media img {
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  transform-origin: center;
}
#home .lisa:not(.carousel) img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

.welcome hr {
  border: none;;
  border-top: 2px solid #d9d9d9;
  width: 95%;
  margin: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#home {
  background: #fbf7ef;
  scroll-margin-top: 80px;
}

@media (max-width: 991px) {
  #home {
    padding: 1.75rem 0;
  }
  #home .lisa img {
    max-width: 520px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.testimonials h2{
 text-align: center;
 text-shadow: #d9d9d9 1px 1px 2px;
}
.testimonials {
  padding: 2rem 1.25rem;
  background: #faf7f1;
}
.testimonials blockquote {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid #e5dccb;
  border-radius: 10px;
  background: #fff;
  font-size: clamp(1.25rem, 1.2vw, 1.125rem);
}
.testimonials blockquote,
.about-stats li {
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.testimonials blockquote:hover,
.about-stats li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
  border-color: rgba(85,107,47,.35); /* sage-ish */
}

#contact {
  padding: 2rem 1.25rem;
}
#contact h2 {
  text-align: center;
  text-shadow: #d9d9d9 1px 1px 2px;
  margin-bottom: 1rem;
}

/* Google Form embed styling */
.form-embed {
  max-width: 900px;
  margin: 0 auto;
}

.form-embed iframe {
  display: block;
  width: 100%;
  height: 2400px; 
  border: 0;
  border-radius: 12px;
  background: #fff;
}
@media (max-width: 720px) {
  .form-embed iframe { height: 2600px; }
}


input,
textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font: inherit;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

/* Quick layout helpers used above */
.form-card { background:#fff; padding:1.5rem; border-radius:12px; box-shadow:0 6px 24px rgba(0,0,0,.06); }



footer {
  padding: 1.25rem;
  background: #f3efe7;
  text-align: center;
  font-size: 1.25rem;
}
.thank-you {
  text-align: center;
  padding: 4rem 1rem;
}

.thank-you h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--sage, #557a33);
}

.thank-you p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.thank-you .btn {
  display: inline-block;
  padding: .75rem 1.25rem;
  background: var(--sage, #557a33);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform var(--dur, 220ms) var(--ease, ease);
}

.thank-you .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,.1);
}

.hidden {
  display: none !important;
}


#about {
  padding: 2rem 1.25rem;
}
#about h2 {
  text-align: center;
  text-shadow: #d9d9d9 1px 1px 2px;
  margin-bottom: 1rem;
}
#about p {
  max-width: 75ch;
  margin: 0.5rem auto 1.5rem;
  font-size: clamp(1.125rem, 1.2vw, 1.25rem);
  line-height: 1.5;
  text-align: center;
}
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.about-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.about-stats {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.about-stats li {
  background: #fff;
  border: 1px solid #e5dccb;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.about-stats .stat {
  display: block;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--sage);
  line-height: 1.1;
}
.about-stats .label {
  display: block;
  margin-top: 0.25rem;
  color: #555;
  font-weight: 600;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}


:is(#home, #testimonials, #about, #contact) {
  animation: fadeInUp 500ms var(--ease) both;
}
