:root {
  --bg: #f7fbfa;
  --bg-alt: #eef7f6;
  --text: #0b2f2e;
  --muted: #3a5c5a;
  --brand: #ea7a2f;
  --brand-700: #cc671f;
  --card: #ffffff;
  --ring: rgba(11,110,105,0.25);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 0 1rem;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.btn {
  display: inline-block;
  padding: .7rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--brand);
  text-decoration: none;
  font-weight: 600;
  transition: transform .05s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn.primary {
  background: linear-gradient(135deg, #ff8a3d, #f4511e);
  color: #fff;
  border-color: #f4511e;
  box-shadow: 0 8px 18px rgba(244,81,30,0.25);
  border-radius: 999px;
}
.btn.ghost { background: transparent; color: var(--brand); }

.site-header {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(247,251,250,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e1efee;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px;
}
.brand { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--text); }
.logo { width: 34px; height: 34px; }
.logo.small { width: 26px; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  padding: 72px 0 72px;
  color: #0b2f2e;
  background: #e7f8f5;
  background-image: url('assets/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-inner { text-align: center; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: .2rem 0 .6rem; }
.hero p { color: var(--muted); max-width: 60ch; margin: 0 auto 1rem; }

.hero-wave{display:none} {
  position: absolute; inset: auto 0 0 0; height: 70px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width=\"1200\" height=\"70\"><path d=\"M0,30 Q200,60 400,30 T800,30 T1200,30 V70 H0 Z\" fill=\"%23eef7f6\"/></svg>') bottom/auto 70px repeat-x;
}

.section { padding: 60px 0; }
.section.alt { background: var(--bg-alt); }
.section h2 { margin: 0 0 .6rem; font-size: clamp(1.6rem, 3vw, 2rem); }
.section-lead { color: var(--muted); margin-bottom: 1rem; }

.grid.cards {
  display: grid; grid-template-columns: repeat( auto-fit, minmax(220px, 1fr) );
  gap: 1rem;
}
.card {
  background: var(--card); border: 1px solid #e6efee; border-radius: 16px; padding: 1rem;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: .2rem; }

.pricing-grid {
  display: grid; grid-template-columns: repeat( auto-fit, minmax(220px, 1fr) );
  gap: 1rem;
}
.price-card { text-align: center; background: var(--card); border: 1px solid #e6efee; border-radius: 16px; padding: 1.2rem; box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--brand); box-shadow: 0 10px 30px rgba(11,110,105,0.15); }
.price { font-size: 2rem; font-weight: 800; margin: .2rem 0; }
.note { color: var(--muted); }

.two-col {
  display: grid; grid-template-columns: 1.3fr .8fr; gap: 1.4rem;
}
.about-card, .contact-card { background: var(--card); border: 1px solid #e6efee; border-radius: 16px; padding: 1rem; box-shadow: var(--shadow); }
.checklist { padding-left: 1.2rem; }
.checklist li { margin: .4rem 0; }

.map-embed iframe {
  width: 100%; min-height: 260px; border: 0; border-radius: 12px;
  box-shadow: var(--shadow);
}

details { background: var(--card); border: 1px solid #e6efee; border-radius: 12px; padding: .8rem 1rem; margin: .6rem 0; }
details[open] { border-color: var(--brand); box-shadow: 0 0 0 4px var(--ring); }

.contact-form label { display: block; margin: .6rem 0; }
.contact-form span { display: inline-block; margin-bottom: .2rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .7rem .8rem; border-radius: 12px;
  border: 1px solid #cfe4e2; outline: none; font: inherit;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--ring); }

.site-footer { background: #eaf6f5; border-top: 1px solid #d9eeee; padding: 24px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.fineprint { color: #6f8e8b; font-size: .9rem; }

/* Mobile tweaks */
@media (max-width: 860px) {
  .nav-links { position: absolute; right: 1rem; top: 60px; padding: .6rem; background: var(--card); border: 1px solid #e6efee; border-radius: 12px; display: none; flex-direction: column; gap: .6rem; box-shadow: var(--shadow); }
  .nav-toggle { display: inline-block; background: transparent; border: 1px solid #cfe4e2; border-radius: 10px; padding: .4rem .6rem; }
  .two-col { grid-template-columns: 1fr; }
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.55) 30%, rgba(255,255,255,0.6));
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }


.hero .btn.primary { padding: .9rem 1.25rem; font-size: 1.06rem; }
.hero .btn.ghost { border-radius: 999px; }
