:root {
  /* Brand Colors */
  --primary-green: #0A5C36;
  --accent-gold: #FDBA21;
  
  /* Text Colors */
  --text-main: #2D3748;
  --text-muted: #718096;
  
  /* Background Colors */
  --bg-page: #F8F9FA;
  --bg-highlight: #E8F4EC;
  --bg-surface: #FFFFFF;
  
  /* Utilities */
  --max-width: 1200px;
  --font-main: "Inter", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-main);
}

p {
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Reusable Card */
.card {
  background-color: var(--bg-surface);
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section__head {
  text-align: center;
  margin-bottom: 48px;
}

.section__head h2 {
  font-size: 36px;
  margin: 0 0 16px 0;
  color: var(--text-main);
}

.subhead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 8px;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: none;
  font-family: inherit;
  font-size: 16px;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn--primary {
  background-color: var(--primary-green);
  color: #FFFFFF;
  border-radius: 8px;
  padding: 12px 24px;
}

.btn--secondary {
  background-color: var(--accent-gold);
  color: var(--text-main);
  border-radius: 8px;
  padding: 12px 24px;
}

.btn--ghost {
  background-color: transparent;
  color: var(--primary-green);
  border: 1px solid var(--primary-green);
  border-radius: 8px;
  padding: 12px 24px;
}

.btn--block {
  width: 100%;
}

/* Topbar */
.topbar {
  background-color: var(--bg-surface);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
  padding: 12px 0;
  color: var(--text-muted);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.topbar__left, .topbar__right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar__link {
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.2s;
}

.topbar__link:hover {
  color: var(--primary-green);
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  border-radius: 50%;
  margin-right: 8px;
}

/* Header */
.header {
  background-color: var(--bg-surface);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.brand__logo {
  height: 50px;
}

.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

.nav__list a {
  font-weight: 500;
  color: var(--text-main);
  transition: color 0.2s;
}

.nav__list a:hover {
  color: var(--primary-green);
}

.header__cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  margin-bottom: 5px;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-page) 0%, var(--bg-highlight) 100%);
  padding: 100px 0;
}

.hero__inner {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 60px;
}

.hero__copy {
  flex: 0 1 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.2;
  margin: 16px 0 24px 0;
  color: var(--text-main);
}

.hero__lead {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 65ch;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.pill {
  background-color: var(--bg-surface);
  color: var(--primary-green);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero__quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-main);
  border-left: 4px solid var(--accent-gold);
  padding-left: 16px;
  margin-bottom: 40px;
  text-align: left;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__micro {
  font-size: 14px;
  color: var(--text-muted);
}

.hero__card {
  flex: 0 0 400px;
}

.kv {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.kv__row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 16px;
}

.kv__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.kv__k {
  color: var(--text-muted);
  font-weight: 500;
}

.kv__v {
  font-weight: 600;
  text-align: right;
}

.kv__v a {
  color: var(--primary-green);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.badge {
  background-color: var(--bg-highlight);
  color: var(--primary-green);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

/* Services */
.grid--services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.svc {
  display: flex;
  flex-direction: column;
}

.svc__top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.svc__icon {
  background-color: var(--bg-highlight);
  color: var(--primary-green);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc__icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.svc__meta h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
}

.svc__meta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.list li::before {
  content: "•";
  color: var(--primary-green);
  position: absolute;
  left: 8px;
  font-weight: bold;
}

.details {
  margin-bottom: 24px;
}

.details summary {
  color: var(--text-main);
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.svc__link {
  color: var(--primary-green);
  font-weight: 600;
  margin-top: auto;
  display: inline-block;
}

.svc__link:hover {
  text-decoration: underline;
}

.callout {
  background-color: var(--primary-green);
  color: #FFFFFF;
  text-align: center;
  padding: 48px;
  border-radius: 12px;
  margin-top: 48px;
}

.callout h3 {
  font-size: 28px;
  margin: 0 0 16px 0;
}

.callout p {
  font-size: 18px;
  opacity: 0.9;
  margin: 0 0 32px 0;
}

.callout__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Audits Section */
#audits {
  background-color: var(--bg-highlight);
}

.grid--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.panel h3 {
  margin: 0 0 24px 0;
  font-size: 24px;
}

.steps {
  padding-left: 24px;
  margin: 0 0 24px 0;
}

.steps li {
  margin-bottom: 16px;
  color: var(--text-main);
}

/* About Section */
.grid--about {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.aboutCard {
  text-align: center;
}

.aboutCard__img {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 24px;
  border: 4px solid var(--bg-highlight);
}

.aboutCard__name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.aboutCard__cred {
  color: var(--primary-green);
  font-weight: 600;
}

.prose p {
  font-size: 18px;
  margin-bottom: 24px;
}

.quoteBox {
  background-color: var(--bg-highlight);
  padding: 24px;
  border-radius: 12px;
  margin: 32px 0;
  border-left: 4px solid var(--primary-green);
}

.quoteBox__title {
  font-weight: 700;
  margin-bottom: 12px;
}

.quoteBox__strong {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 18px;
}

.about-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-list-item svg {
  color: var(--accent-gold);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.about-list-item div strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-main);
}

.about-list-item div span {
  color: var(--text-muted);
  font-size: 14px;
}

.row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

/* Testimonials */
.grid--testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.tcard {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tcard__stars {
  color: var(--accent-gold);
  font-size: 20px;
  margin-bottom: 16px;
}

.tcard__text {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.tcard__name {
  font-weight: 700;
}

.tcard__role {
  font-size: 14px;
  color: var(--text-muted);
}

/* Contact */
.grid--contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 40px;
}

.grid--contact .card {
  width: 100%;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.field {
  margin-bottom: 24px;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.field input, .field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px var(--bg-highlight);
}

.contactLinks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.contactLinks__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--bg-page);
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.contactLinks__item:hover {
  background-color: var(--bg-highlight);
}

.contactLinks__item svg {
  color: var(--primary-green);
}

.map iframe {
  border-radius: 12px;
}

.certRow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 64px;
}

.certRow img {
  height: 60px;
  object-fit: contain;
}

/* Footer */
.footer {
  background-color: var(--text-main);
  color: #FFFFFF;
  padding: 80px 0 40px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__brand {
  flex: 1;
  max-width: 300px;
}

.footer__cols {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
}

.footer__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer__tag {
  color: #A0AEC0;
}

.footer__head {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col a {
  color: #A0AEC0;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: #FFFFFF;
}

.footer__muted {
  color: #A0AEC0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  color: #A0AEC0;
  font-size: 14px;
}

.footer__bottom a {
  color: #FFFFFF;
}

/* Responsive */
@media (max-width: 992px) {
  .hero__inner {
    flex-direction: column;
  }
  
  .hero__card {
    width: 100%;
    flex: auto;
  }

  .grid--about, .grid--contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header__inner {
    flex-wrap: wrap;
  }

  .nav__toggle {
    display: block;
  }

  .nav__list {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 24px 0;
  }

  .nav__list.active {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .grid--two, .form__row {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 1050px) {
  .header__inner {
    flex-wrap: wrap;
  }

  .nav__toggle {
    display: block;
  }

  .nav__list {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 24px 0;
  }

  .nav__list.active {
    display: flex;
  }

  .header__cta {
    display: none;
  }
}

/* Utilities & Fixes */
.ml-12 { margin-left: 12px; }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; color: var(--text-muted); }
.text-center { text-align: center; }
.brand__text--hidden { display: none; }
.visually-hidden { display: none !important; position: absolute !important; left: -9999px !important; }

.iframe-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.booking-iframe {
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.booking-widget {
  margin-top: 2rem;
  text-align: center;
}

.callout__btn-ghost {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.callout__btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Fix Huge Icons */
.contactLinks__item svg, .svc__icon svg, .about-list-item svg { 
  width: 24px; 
  height: 24px; 
  min-width: 24px; 
  max-width: 24px; 
  display: block; 
  flex-shrink: 0; 
}

.contactLinks__item svg { color: var(--primary-green); }
.svc__icon svg { stroke: currentColor; }
.about-list-item svg { color: var(--accent-gold); }

/* Scroll Animation */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
