:root {
  color-scheme: light;
  --green-50: #f2fff6;
  --green-100: #d6f5df;
  --green-200: #aeecc1;
  --green-500: #1b8c5b;
  --green-600: #117245;
  --green-700: #0b4f2e;
  --sage: #eef4ec;
  --cream: #fffdf6;
  --ink: #0b2230;
  --gray: #4c5f6f;
  --white: #ffffff;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.top-bar {
  background: var(--green-700);
  color: var(--white);
  font-size: 0.875rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.navbar {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green-600);
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  color: var(--gray);
}

.navbar ul li a.active {
  color: var(--green-600);
  font-weight: 600;
}

.nav-actions {
  margin-left: auto;
  display: flex;
  gap: 1rem;
}

.hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--sage), var(--green-50));
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--green-600);
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin: 0.5rem 0;
}

.subtitle {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 1rem;
  margin: 0;
}

.hero-stats dt {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-600);
}

.hero-stats dd {
  margin: 0;
  color: var(--gray);
}

.booking-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 20px 60px rgba(11, 34, 48, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-card label {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: var(--gray);
  gap: 0.35rem;
}

input,
select,
button,
textarea {
  font: inherit;
}

input,
select,
textarea {
  border: 1px solid #dfe5e0;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.input-error {
  border-color: #fda29b;
  background: #fff4f4;
}

.error-text {
  color: #b42318;
  font-size: 0.85rem;
  margin-top: -0.25rem;
}

button,
.primary,
.ghost {
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(17, 114, 69, 0.2);
}

.primary:hover,
button:hover {
  transform: translateY(-2px);
}

.ghost {
  background: transparent;
  color: var(--green-600);
  border: 1px solid var(--green-200);
}

section {
  padding: 4rem 0;
}

.benefit-grid,
.card-grid,
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.benefits article,
.card-grid article {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(11, 34, 48, 0.05);
}

.services h3,
.pricing h3,
.card-grid h3 {
  color: var(--green-600);
}

.card-grid ul,
.pricing-grid ul {
  padding-left: 1.25rem;
  color: var(--gray);
}

.pricing {
  background: var(--green-700);
  color: var(--white);
}

.pricing-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-grid .highlight {
  background: var(--white);
  color: var(--ink);
  border: none;
  box-shadow: 0 25px 60px rgba(11, 34, 48, 0.2);
}

.pricing-grid .highlight .tag {
  color: var(--green-600);
}

.pricing-grid .tag {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.pricing-grid .desc {
  color: inherit;
  margin-bottom: 1rem;
}

.process {
  background: var(--sage);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 0;
  list-style: none;
}

.process-steps li {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(11, 34, 48, 0.08);
}

.process-steps span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 600;
}

.testimonials {
  background: var(--cream);
}

.cta {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white);
}

.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer {
  background: var(--ink);
  color: #c9d4dc;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer h4 {
  margin-bottom: 0.5rem;
  color: var(--white);
}

.footer ul {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.footer-note {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 2rem;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 34, 48, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  width: min(500px, 90vw);
  position: relative;
  text-align: center;
}

.modal .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
}

.video-placeholder {
  margin-top: 1rem;
  background: var(--sage);
  padding: 2rem;
  border-radius: 0.75rem;
  color: var(--green-600);
}

/* Utility layouts for standalone pages */
.page {
  padding: 2rem 0 4rem;
}

.page-hero {
  text-align: center;
  padding: 3rem 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
  color: var(--gray);
  max-width: 640px;
  margin: 0.75rem auto 0;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.card,
.form-panel,
.info-panel,
.contact-panel,
.map-panel {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(11, 34, 48, 0.08);
}

.form-panel label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.form-panel textarea {
  min-height: 150px;
  resize: vertical;
  border: 1px solid #dfe5e0;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--cream);
  font: inherit;
}

.info-panel {
  background: var(--green-700);
  color: var(--white);
}

.info-panel ul,
.contact-panel ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.info-panel li,
.contact-panel li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.info-panel .tag,
.contact-panel .tag {
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  background: var(--green-100);
  color: var(--green-700);
}

.contact-panel {
  background: var(--green-600);
  color: var(--white);
}

.map-panel {
  text-align: center;
  color: var(--gray);
  min-height: 280px;
  display: grid;
  place-items: center;
}

.service-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(11, 34, 48, 0.08);
  display: grid;
  gap: 1rem;
}

.service-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-card h3 {
  margin: 0;
}

.service-card .price {
  font-size: 1.75rem;
  color: var(--green-600);
  font-weight: 700;
}

.service-card ul,
.service-card ol {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--gray);
}

.service-list {
  display: grid;
  gap: 1.5rem;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.highlight-card {
  background: var(--sage);
  border-radius: 1rem;
  padding: 1.25rem;
}

.checklist {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  color: var(--gray);
}

.checklist li::before {
  content: "✔";
  color: var(--green-600);
  margin-right: 0.5rem;
}

.cta-panel {
  background: var(--green-700);
  color: var(--white);
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 25px 60px rgba(11, 34, 48, 0.18);
}

.flash {
  border-radius: 0.85rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.flash.success {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-700);
}

.flash.error {
  background: #ffecec;
  border: 1px solid #ffb3b3;
  color: #9b1c1c;
}

@media (max-width: 768px) {
  .navbar ul,
  .nav-actions {
    display: none;
  }

  .top-bar .container {
    flex-direction: column;
    align-items: center;
  }

  .cta .container {
    flex-direction: column;
    text-align: center;
  }
}
