:root {
  --teal: #4fb8ae;
  --teal-dark: #2f8a81;
  --teal-pale: #e3f5f3;
  --orange: #f2994a;
  --orange-dark: #d8792a;
  --ink: #1f2a28;
  --text-secondary: #5c6b68;
  --text-muted: #8b9895;
  --surface: #ffffff;
  --border: #e6e0d4;
  --radius: 14px;
  --radius-lg: 22px;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--teal);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-secondary); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Teal canvas + floating white frame, matching the reference's framed layout */
.frame {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(20, 60, 55, 0.18);
}
body { padding: 18px; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--teal-dark);
  border-bottom-color: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-outline { background: transparent; border-color: var(--teal-dark); color: var(--teal-dark); }
.btn-outline:hover { background: var(--teal-pale); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #0f1615; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--ink);
  cursor: pointer;
}

/* Hero */
.hero { padding: 64px 0 48px; background: var(--teal-pale); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal-dark);
  background: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.placeholder-media {
  background: linear-gradient(160deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eafaf7;
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}
.hero-media { aspect-ratio: 4/3.6; }

/* Service icon strip */
.icon-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.icon-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(20, 60, 55, 0.08);
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}

/* Sections */
section { padding: 64px 0; }
.section-head { max-width: 620px; margin: 0 auto 40px; text-align: center; }
.section-head.left { margin: 0 0 40px; text-align: left; }

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card .placeholder-media { border-radius: 0; aspect-ratio: 16/10; }
.service-card .service-body { padding: 22px; }
.service-card .price-tag {
  display: inline-block;
  background: var(--orange-light, #fbe7d6);
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.service-card ul { margin: 12px 0 16px; padding-left: 18px; }
.service-card li { color: var(--text-secondary); margin-bottom: 6px; font-size: 0.92rem; }

/* Footer */
footer.site-footer {
  background: var(--ink);
  color: #d9e6e2;
  padding: 48px 0 24px;
}
footer.site-footer a { color: #d9e6e2; opacity: 0.85; }
footer.site-footer a:hover { opacity: 1; text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  margin-bottom: 28px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
  font-size: 0.82rem;
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Forms */
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-pale);
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; }

@media (max-width: 860px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  nav.main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 10px 28px 22px;
    border-bottom: 1px solid var(--border);
  }
  nav.main-nav.open a { padding: 10px 0; width: 100%; }
  .hero-grid, .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .icon-strip, .grid-3, .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .icon-strip { margin-top: 20px; }
}

@media (max-width: 520px) {
  body { padding: 8px; }
  .icon-strip, .grid-3, .grid-2 { grid-template-columns: minmax(0, 1fr); }
}
