/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #1a2e2a;
  background-color: #fefdf8;
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #064e3b; }
select, input, textarea { font-family: inherit; font-size: 0.9375rem; color: #1a2e2a; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 1px 16px rgba(6, 78, 59, 0.07); }
.nav-logo { display: block; }
.nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #065f46;
  padding: 0.375rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.nav-link:hover { border-bottom-color: #065f46; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(6, 95, 70, 0.3);
  border-radius: 100px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav-cta:hover { background: rgba(6, 95, 70, 0.06); border-color: #065f46; }
.menu-line { transition: transform 0.3s ease, opacity 0.3s ease; }
#menu-btn[aria-expanded="true"] .menu-line:first-child { transform: translateY(4px) rotate(45deg); }
#menu-btn[aria-expanded="true"] .menu-line:last-child  { transform: translateY(-4px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  border-top: 1px solid rgba(6, 78, 59, 0.08);
  background: rgba(254, 253, 248, 0.98);
  backdrop-filter: blur(12px);
  animation: slideDown 0.25s ease;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.mobile-link {
  display: block;
  font-size: 0.9375rem;
  color: #065f46;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(6, 78, 59, 0.06);
  transition: color 0.2s;
}
.mobile-link:hover { color: #047857; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background-color: #064e3b;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(2, 44, 34, 0.35) 0%,
    rgba(6, 78, 59, 0.55) 50%,
    rgba(2, 44, 34, 0.82) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 6rem;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d9f99d;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.15;
  color: #fefdf8;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-headline em { font-style: italic; color: #d9f99d; }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: rgba(254, 253, 248, 0.82);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(254, 253, 248, 0.6);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(254,253,248,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: #064e3b;
  color: #fefdf8;
  border: 1px solid #064e3b;
}
.btn-primary:hover { background: #047857; border-color: #047857; }
.btn-ghost {
  background: rgba(254, 253, 248, 0.1);
  color: #fefdf8;
  border: 1px solid rgba(254, 253, 248, 0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(254, 253, 248, 0.18); border-color: rgba(254, 253, 248, 0.6); }
.btn-outline {
  background: transparent;
  color: #064e3b;
  border: 1px solid rgba(6, 78, 59, 0.35);
}
.btn-outline:hover { background: rgba(6, 78, 59, 0.05); border-color: #064e3b; }
.btn-full { width: 100%; }

/* ===== SECTIONS ===== */
.section-intro { padding: 7rem 0 5rem; }
.intro-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  line-height: 1.65;
  color: #1a2e2a;
  font-weight: 400;
}
.section-services { padding: 5rem 0 7rem; }
.section-about { padding: 5rem 0 7rem; }
.section-insurance { padding: 5rem 0 7rem; }
.section-cta   { padding: 6rem 0; }
.section-contact { padding: 5rem 0 7rem; }

/* Section header */
.section-header { margin-bottom: 4rem; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #065f46;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  color: #064e3b;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.section-desc {
  font-size: 1.0625rem;
  color: #3d5c54;
  max-width: 560px;
  line-height: 1.75;
}

/* Thin rule */
.section-rule {
  width: 48px;
  height: 1px;
  background: #065f46;
  margin-bottom: 1.5rem;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(6, 78, 59, 0.1);
  border: 1px solid rgba(6, 78, 59, 0.1);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: #fefdf8;
  padding: 2.5rem 2rem;
  transition: background 0.3s ease;
}
.service-card:hover { background: #f0f7f4; }
.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: #065f46;
}
.service-icon svg { width: 100%; height: 100%; }
.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 1.1875rem;
  color: #064e3b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.9375rem;
  color: #3d5c54;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 1px solid rgba(6, 95, 70, 0.15);
  border-radius: 8px;
  z-index: -1;
}
.about-content { max-width: 480px; }
.about-text { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.about-text p {
  font-size: 0.9375rem;
  color: #3d5c54;
  line-height: 1.8;
}
.about-values { display: flex; flex-direction: column; gap: 1.25rem; }
.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(6, 78, 59, 0.1);
}
.value-item:last-child { border-bottom: none; padding-bottom: 0; }
.value-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #065f46;
}
.value-text {
  font-size: 0.9375rem;
  color: #1a2e2a;
  line-height: 1.5;
}

/* ===== INSURANCE ===== */
.section-insurance { background: #064e3b; }
.insurance-inner { padding: 5rem 0; }
.section-eyebrow-light { color: #6ee7b7; }
.section-title-light { color: #fefdf8; }
.section-desc-light { color: rgba(254, 253, 248, 0.7); }
.insurance-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.insurance-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(254, 253, 248, 0.15);
}
.insurance-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #d9f99d;
  line-height: 1;
}
.insurance-label {
  font-size: 0.8125rem;
  color: rgba(254, 253, 248, 0.65);
  line-height: 1.5;
}
.insurance-note {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  background: rgba(254, 253, 248, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(254, 253, 248, 0.1);
}
.insurance-note-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #6ee7b7;
}
.insurance-note p {
  font-size: 0.875rem;
  color: rgba(254, 253, 248, 0.75);
  line-height: 1.65;
}

/* ===== CTA ===== */
.section-cta { background: #f0f7f4; }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner .section-eyebrow { text-align: center; }
.cta-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  color: #064e3b;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.cta-desc {
  font-size: 1.0625rem;
  color: #3d5c54;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(6, 78, 59, 0.1);
}
.contact-detail:first-child { padding-top: 0; }
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #065f46;
  margin-top: 3px;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #065f46;
  margin-bottom: 0.375rem;
}
.contact-value {
  display: block;
  font-size: 0.9375rem;
  color: #1a2e2a;
  line-height: 1.6;
}
.contact-link { transition: color 0.2s; }
.contact-link:hover { color: #047857; }
.contact-map {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1.5rem;
  border: 1px solid rgba(6, 78, 59, 0.1);
}

/* Contact form */
.contact-form-wrap { background: #f8faf9; border-radius: 12px; padding: 2.5rem; border: 1px solid rgba(6, 78, 59, 0.08); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(6, 78, 59, 0.2);
  border-radius: 8px;
  background: #fefdf8;
  color: #1a2e2a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #8fa89e; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #065f46;
  box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.8125rem;
  color: #5a7d70;
  text-align: center;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
}
.form-success-icon {
  width: 40px;
  height: 40px;
  color: #10b981;
}
.form-success p {
  font-size: 0.9375rem;
  color: #065f46;
  line-height: 1.6;
}
.hidden { display: none !important; }

/* ===== FOOTER ===== */
.site-footer {
  background: #022c22;
  padding: 4rem 0 0;
  color: rgba(254, 253, 248, 0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(254, 253, 248, 0.08);
}
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 280px;
  color: rgba(254, 253, 248, 0.5);
}
.footer-nav { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(254, 253, 248, 0.6);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #d9f99d; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-link {
  font-size: 0.875rem;
  color: rgba(254, 253, 248, 0.6);
  transition: color 0.2s;
}
.footer-contact-link:hover { color: #d9f99d; }
.footer-address { font-size: 0.875rem; color: rgba(254, 253, 248, 0.5); line-height: 1.6; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(254, 253, 248, 0.35); line-height: 1.6; }
.footer-disclaimer { max-width: 480px; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); }
  .reveal.revealed { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .insurance-facts { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .insurance-facts { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding-bottom: 5rem; }
  .hero-scroll { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .contact-form-wrap { padding: 1.5rem; }
}
