@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:    #2C5F2E;
  --green-mid:     #3B7A3E;
  --green-light:   #EAF3E0;
  --cream:         #FAF8F3;
  --cream-warm:    #F2EDE3;
  --charcoal:      #2A2A2A;
  --charcoal-soft: #4A4A4A;
  --stone:         #8A8478;
  --white:         #FFFFFF;
  --border:        rgba(44,95,46,0.15);
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --radius:        10px;
  --radius-lg:     18px;
  --shadow:        0 2px 16px rgba(44,95,46,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center 30%;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-deep);
  font-weight: 600;
  line-height: 1.2;
}

.nav-name span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--stone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green-deep); }

.nav-links a.active { color: var(--green-deep); }

.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--green-deep);
}

.btn-primary:hover { background: var(--green-mid); }

.btn-outline {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
}

.btn-outline:hover { background: var(--green-light); }

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  background: var(--green-deep);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content { position: relative; max-width: 720px; margin: 0 auto; }

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.hero h1 em {
  font-style: italic;
  color: #a8d89a;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-trust {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-item::before {
  content: '✓';
  color: #a8d89a;
  font-weight: 600;
}

/* ── SECTIONS ── */
section { padding: 4rem 2rem; }

.section-inner { max-width: 1040px; margin: 0 auto; }

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-sub {
  color: var(--charcoal-soft);
  max-width: 560px;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* ── SERVICE CARDS (home preview) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(44,95,46,0.3);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  display: block;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how-bg { background: var(--cream-warm); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: steps;
}

.step {
  position: relative;
  padding-left: 0;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}

.step p {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

/* ── PAYMENT BANNER ── */
.payment-banner {
  background: var(--green-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.payment-banner-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.25rem;
}

.payment-banner-text p {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
}

.payment-methods {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pay-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* ── ABOUT PREVIEW ── */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-text .section-title { margin-bottom: 1rem; }

.about-text p {
  color: var(--charcoal-soft);
  margin-bottom: 1rem;
  font-size: 0.975rem;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.about-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--charcoal-soft);
}

.about-detail::before {
  content: '●';
  color: var(--green-mid);
  font-size: 0.5rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.cta-band .section-title { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1rem; }

.cta-band .btn-primary {
  background: var(--white);
  color: var(--green-deep);
}

.cta-band .btn-primary:hover { background: var(--green-light); }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .nav-name { color: var(--white); }
.footer-brand .nav-name span { color: rgba(255,255,255,0.4); }

.footer-brand p {
  font-size: 0.875rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.footer-col address a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-bottom {
  max-width: 1040px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── PRICING PAGE ── */
.page-hero {
  background: var(--green-deep);
  color: var(--white);
  padding: 3.5rem 2rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.pricing-table thead tr {
  background: var(--green-deep);
  color: var(--white);
}

.pricing-table thead th {
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.15s;
}

.pricing-table tbody tr:hover { background: var(--green-light); }

.pricing-table tbody tr.featured-row {
  background: #f0f8ea;
}

.pricing-table td {
  padding: 0.9rem 1.2rem;
  vertical-align: top;
  color: var(--charcoal-soft);
}

.pricing-table td:first-child { color: var(--charcoal); font-weight: 500; }

.pricing-table td.price {
  color: var(--green-deep);
  font-weight: 600;
  white-space: nowrap;
}

.pricing-section-header {
  background: var(--cream-warm) !important;
}

.pricing-section-header td {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--green-deep) !important;
  font-weight: 600 !important;
  padding: 1.2rem 1.2rem 0.6rem;
  border-bottom: none !important;
}

.free-badge {
  display: inline-block;
  background: #d4edda;
  color: #1a6b2f;
  border-radius: 50px;
  padding: 0.15rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.addon-note {
  display: inline-block;
  background: var(--cream-warm);
  color: var(--stone);
  border-radius: 4px;
  padding: 0.1rem 0.5rem;
  font-size: 0.78rem;
}

.pricing-note {
  background: var(--green-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--charcoal-soft);
}

.pricing-note strong { color: var(--green-deep); }

/* ── BOOKING PAGE ── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.booking-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.booking-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group label .req { color: #c0392b; margin-left: 2px; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(44,95,46,0.25);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(59,122,62,0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.services-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.15s;
}

.check-item:hover { border-color: var(--green-mid); background: var(--green-light); }

.check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green-deep);
  cursor: pointer;
  flex-shrink: 0;
}

.tos-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--cream-warm);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 1.25rem;
}

.tos-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-deep);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.tos-check label {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  cursor: pointer;
  line-height: 1.5;
}

.tos-check label a { color: var(--green-deep); }

.submit-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 1.5rem;
}

.submit-btn:hover { background: var(--green-mid); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.booking-sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}

.sidebar-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.sidebar-card p {
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

.sidebar-steps { list-style: none; counter-reset: sbar; }

.sidebar-steps li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.sidebar-steps li::before {
  counter-increment: sbar;
  content: counter(sbar);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  margin-bottom: 0.5rem;
}

.contact-row a { color: var(--green-deep); text-decoration: none; }
.contact-row a:hover { text-decoration: underline; }

/* ── ABOUT PAGE ── */
.about-hero-photo {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto 2rem;
}

.about-hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-position: center top;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.value-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

/* ── SUCCESS STATE ── */
.success-message {
  display: none;
  background: #d4edda;
  border: 1px solid #b8dcc4;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: #1a6b2f;
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 2rem; gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .about-row { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .services-check-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.5rem; }
  section { padding: 3rem 1.25rem; }
  nav { padding: 0 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ── TEXT/SMS BUTTON ── */
.btn-text-us {
  background: var(--green-mid);
  color: #fff !important;
  border: none;
}
.btn-text-us:hover { background: var(--green-deep); }

/* ── MOBILE TABLE FIXES ── */
@media (max-width: 640px) {
  .pricing-table { font-size: 0.85rem; }
  .pricing-table th:last-child,
  .pricing-table td:last-child { display: none; }
  .section-inner { padding: 0 0.25rem; }
  .service-card { padding: 1.1rem; }
  .about-row { grid-template-columns: 1fr; gap: 2rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .services-check-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero p { font-size: 0.875rem; }
  nav { padding: 0 1rem; }
  .nav-logo { width: 38px; height: 38px; }
  .nav-name { font-size: 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-circles { flex-direction: column; align-items: center; }
}
