/* ===== CUSTOM PROPERTIES ===== */
:root {
  --navy: #06233a;
  --green: #67a025;
  --gold: #ffbc00;
  --light-green: #f0f9e6;
  --cream: #fff9ea;
  --dark: #1a2e1a;
  --dark-card: #0f1f0f;
  --white: #fff;
  --gray: #555;
  --light-gray: #f5f5f5;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Zilla Slab', serif;
  --container: 1110px;
  --radius: 10px;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus {
  top: 0.5rem;
}

/* ===== FOCUS STYLES ===== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }

/* ===== UTILITIES ===== */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--light { background: var(--light-green); }
.section--cream { background: var(--cream); }
.section--gray { background: var(--light-gray); }
.text-center { text-align: center; }

/* Boxed container for sections */
.boxed {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2.5rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--green);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
}
.section-heading span { color: var(--green); }
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--green { background: var(--green); color: var(--white); }
.btn--outline { border: 2px solid var(--white); color: var(--white); }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

/* ===== NAV ===== */
.site-header {
  position: relative;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: var(--container);
  margin-inline: auto;
  gap: 1rem;
}
.nav__logo img { height: 48px; width: auto; }
.nav__links {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav__links a { font-weight: 500; font-size: 0.9375rem; transition: color 0.2s; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--green); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9375rem;
}
.nav__phone svg { width: 16px; height: 16px; fill: var(--green); }
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.25rem;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: 0.3s;
}

/* Mobile nav open state */
.nav__links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 100;
}

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__phone { display: flex; }
  .nav__toggle { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 3rem 1.25rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero--home {
  background-color: var(--light-green);
  min-height: 500px;
  overflow: hidden;
}
.hero--home .hero__image {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  flex: none;
  z-index: 0;
}
.hero--home .hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.hero--home .hero__content {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero--home .hero__eyebrow {
  color: var(--white);
}
.hero--home .btn { text-shadow: none; }
.hero--inner {
  color: var(--white);
}
.hero--inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 35, 58, 0.6);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero { padding: 4rem 2rem; }
  .hero--home { min-height: 600px; }
  .hero--home .hero__content { max-width: 50%; }
}

/* ===== ABOUT TEASER ===== */
.about-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.about-teaser__badge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #4a8a1a);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(103, 160, 37, 0.3);
  border: 4px solid rgba(255,255,255,0.3);
}
.about-teaser__badge-number { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1; }
.about-teaser__badge-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; }
.about-teaser__text { max-width: 500px; font-size: 1.0625rem; color: var(--gray); line-height: 1.7; }
@media (min-width: 768px) {
  .about-teaser { flex-direction: row; text-align: left; }
}

/* ===== SERVICE AREAS ===== */
.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}
.service-areas__tag {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--green);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green);
  background: rgba(103, 160, 37, 0.05);
  transition: background 0.2s;
}
.service-areas__tag:hover { background: rgba(103, 160, 37, 0.12); }

/* ===== SERVICE CARDS ===== */
.service-cards-section { background: var(--cream); }
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}
.service-card__image {
  height: 200px;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-card:hover .service-card__image img { transform: scale(1.05); }
.service-card__body { padding: 1.5rem; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.service-card__title a { color: var(--navy); transition: color 0.2s; }
.service-card__title a:hover { color: var(--green); }
.service-card__desc { font-size: 0.9375rem; color: var(--gray); line-height: 1.6; }
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== WHY CHOOSE US ===== */
.why-choose-section { background: var(--light-gray); }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.value-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.value-item:last-child { border-bottom: none; }
.value-item__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item__icon svg { width: 24px; height: 24px; fill: var(--green); }
.value-item__title { font-family: var(--font-display); font-size: 1.125rem; margin-bottom: 0.25rem; }
.value-item__desc { font-size: 0.9375rem; color: var(--gray); }
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); column-gap: 3rem; }
}

/* ===== WORK GALLERY ===== */
.gallery-section { background: var(--dark); }
.gallery-section .eyebrow { color: var(--gold); }
.gallery-section .section-heading { color: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  padding: 3rem 1.25rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  counter-reset: steps;
  position: relative;
}
.step {
  text-align: center;
  counter-increment: steps;
  position: relative;
}
.step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(255, 188, 0, 0.3);
  position: relative;
  z-index: 2;
}
.step__title { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.step__desc { font-size: 0.9375rem; color: var(--gray); max-width: 300px; margin-inline: auto; line-height: 1.6; }
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  /* Connecting lines between steps */
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(16.66% + 32px);
    right: calc(16.66% + 32px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--gold), var(--gold) 8px, transparent 8px, transparent 16px);
    z-index: 1;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--dark); }
.testimonials-header {
  margin-bottom: 2.5rem;
}
.testimonials-header__count {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  -webkit-text-stroke: 2px var(--gold);
  line-height: 1;
}
.testimonials-header__label {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  font-weight: 600;
}
.testimonials-header__sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--dark-card);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.testimonial-card__quote {
  font-size: 3.5rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
  -webkit-text-stroke: 1px rgba(137, 161, 109, 0.5);
}
.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.testimonial-card__divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1rem;
}
.testimonial-card__name { font-weight: 600; font-size: 1rem; }
.testimonial-card__location { font-size: 0.875rem; color: var(--gold); margin-top: 0.25rem; }
.testimonial-card__stars { color: var(--gold); font-size: 0.875rem; margin-top: 0.25rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
.testimonial-featured {
  grid-column: 1 / -1;
}

/* ===== STATS BAR ===== */
.stats-section { background: var(--white); }
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 2rem 0;
}
.stat {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--light-green);
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat__label { font-size: 0.875rem; color: var(--gray); margin-top: 0.5rem; }
.section--dark .stat { background: var(--dark-card); }
.section--dark .stat__value { color: var(--gold); }
.section--dark .stat__label { color: rgba(255,255,255,0.7); }
@media (min-width: 768px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: #fdf8ef;
  padding: 4rem 1.25rem;
}
.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.cta-banner__btn {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  border-radius: 12px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .cta-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ===== FAQ ===== */
.faq-section { background: var(--light-green); }
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-item__question {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item__answer { font-size: 0.9375rem; color: var(--gray); line-height: 1.7; }

/* ===== SERVICE DETAIL ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.service-detail--reverse .service-detail__image { order: 0; }
.service-detail__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-detail__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-detail__content { }
.service-detail__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}
.service-detail__desc { font-size: 1rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.7; }
.service-detail__features-title { font-weight: 600; margin-bottom: 0.75rem; }
.service-detail__feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray);
}
.service-detail__feature svg { flex-shrink: 0; width: 20px; height: 20px; fill: var(--green); margin-top: 2px; }
@media (min-width: 768px) {
  .service-detail { grid-template-columns: repeat(2, 1fr); }
  .service-detail--reverse .service-detail__image { order: 2; }
}

/* ===== DIFFERENCE (services page) ===== */
.difference-section { background: var(--light-green); }
.difference-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.difference-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.difference-item:hover { box-shadow: var(--shadow); }
.difference-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.difference-item__icon svg { width: 22px; height: 22px; fill: var(--white); }
.difference-item__title { font-family: var(--font-display); font-size: 1.0625rem; margin-bottom: 0.25rem; }
.difference-item__desc { font-size: 0.9375rem; color: var(--gray); }
@media (min-width: 768px) { .difference-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .difference-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== CONTACT PAGE ===== */
.contact-page-section { background: var(--light-gray); }
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) {
  .contact-page-layout { grid-template-columns: 380px 1fr; }
}

/* Sidebar */
.contact-sidebar {
  background: var(--dark);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
}
.contact-sidebar__title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.contact-sidebar__desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.contact-sidebar__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-sidebar__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-sidebar__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(103, 160, 37, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-sidebar__icon svg { width: 20px; height: 20px; fill: var(--green); }
.contact-sidebar__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.contact-sidebar__value {
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.125rem;
}
.contact-sidebar__value a:hover { color: var(--gold); }
.contact-sidebar__hours {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}
.contact-sidebar__hours-title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}
.contact-sidebar__hours p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* Form card */
.contact-form-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-form-card__desc {
  font-size: 0.9375rem;
  color: var(--gray);
  margin-bottom: 2rem;
}
.contact-form-card .form-input {
  background: var(--light-gray);
  border-color: transparent;
}
.contact-form-card .form-input:focus {
  background: var(--white);
  border-color: var(--green);
}

/* ===== STORY (about page) ===== */
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.story__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story__image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.story__text { font-size: 1rem; line-height: 1.8; color: var(--gray); }
.story__founder {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--green);
}
.story__founder-name { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; }
.story__founder-title { font-size: 0.875rem; color: var(--gray); }
@media (min-width: 768px) { .story { grid-template-columns: 1fr 1fr; } }

/* ===== FOOTER ===== */
.footer { background: #223d1e; color: var(--white); padding: 3rem 0 1.5rem; }
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 1.5rem;
}
.footer__logo img { height: 40px; width: auto; }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { font-size: 0.9375rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 1rem; }
.footer__social a { opacity: 0.7; transition: opacity 0.2s; }
.footer__social a:hover { opacity: 1; }
.footer__social svg { width: 20px; height: 20px; fill: var(--white); }
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  opacity: 0.6;
}
.footer__legal { display: flex; gap: 1.5rem; }
@media (min-width: 768px) {
  .footer__top { flex-direction: row; justify-content: space-between; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 720px; margin-inline: auto; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.form-group--full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--navy);
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--green); outline: none; box-shadow: 0 0 0 3px rgba(103, 160, 37, 0.15); }
.form-textarea { resize: vertical; }
select.form-input { appearance: auto; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== GRASS DECORATION ===== */
.grass-decoration {
  display: block;
  width: 100%;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}
