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

:root {
  --bg: hsl(0, 0%, 100%);
  --fg: hsl(150, 10%, 15%);
  --primary: hsl(153, 51%, 30%);
  --primary-fg: hsl(0, 0%, 100%);
  --secondary-bg: hsl(140, 25%, 94%);
  --secondary-fg: hsl(153, 51%, 25%);
  --muted: hsl(150, 10%, 42%);
  --border: hsl(140, 15%, 88%);
  --radius: 0.5rem;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.hidden { display: none !important; }

/* Nav */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: hsla(0,0%,100%,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 64rem; margin: 0 auto; padding: 0 1rem;
  display: flex; align-items: center; justify-content: space-between; height: 3.5rem;
}
.nav-logo { font-weight: 700; font-size: 1.125rem; color: var(--primary); }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { font-size: 0.875rem; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--fg); }

.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--bg); padding: 0.5rem 1rem 1rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.mobile-menu a { font-size: 0.875rem; color: var(--muted); }
.mobile-menu a:hover { color: var(--primary); }

@media (max-width: 767px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
}
@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
  .nav-inner { padding: 0 1.5rem; }
}

/* Hero */
.hero { padding-top: 3.5rem; }
.hero-img-wrap {
  position: relative; height: 70vh; min-height: 400px; max-height: 600px; overflow: hidden;
}
.hero-img-wrap > img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.hero-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 0 1rem;
}
.hero-content h1 {
  font-size: clamp(1.875rem, 5vw, 3rem); font-weight: 700; color: #fff;
  margin-bottom: 1rem; line-height: 1.2; max-width: 48rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.9);
}
.hero-sub {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem); color: #fff; margin-bottom: 2.5rem;
  max-width: 40rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.8);
}
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hero-phone {
  font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; color: #fff;
  display: inline-flex; align-items: center; gap: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  transition: color .2s;
}
.hero-phone:hover { color: var(--primary); }
.hero-phone svg { margin-top: -2px; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--primary); color: var(--primary-fg);
  padding: 0.75rem 2rem; border-radius: var(--radius);
  font-size: 1rem; font-weight: 500; transition: opacity .2s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--primary); color: var(--primary);
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500; transition: background .2s;
}
.btn-outline:hover { background: var(--secondary-bg); }

/* Sections */
.section { padding: 4rem 1rem; }
.section-alt { background: hsla(140, 25%, 94%, 0.5); }
.container-sm { max-width: 48rem; margin: 0 auto; }
.container-md { max-width: 56rem; margin: 0 auto; }
.section-title { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; margin-bottom: 1.5rem; text-align: center; }
.muted-text { color: var(--muted); margin-bottom: 2rem; }

/* Services */
.services-list { list-style: none; max-width: 32rem; margin: 0 auto; }
.services-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.dot {
  margin-top: 0.5rem; height: 0.5rem; width: 0.5rem; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
}
.services-list span:last-child { color: var(--muted); }
.services-note { text-align: center; font-size: 0.875rem; color: var(--muted); margin-top: 2rem; }

/* About */
.about-text { color: var(--muted); max-width: 40rem; margin: 0 auto 2.5rem; text-align: center; line-height: 1.7; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 40rem; margin: 0 auto; }
.about-images img { border-radius: var(--radius); width: 100%; height: 14rem; object-fit: cover; }
@media (max-width: 639px) {
  .about-images { grid-template-columns: 1fr; }
}

/* Map & Booking */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }

/* Contact */
.contact-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border); padding: 2rem 1rem;
  text-align: center; font-size: 0.875rem; color: var(--muted);
}
.footer-name { font-weight: 500; color: var(--fg); }
.footer-phone { color: var(--primary); display: inline-block; margin-top: 0.25rem; }
.footer-copy { margin-top: 1rem; font-size: 0.75rem; }

@media (min-width: 640px) {
  .section { padding: 5rem 1rem; }
  .nav-inner { padding: 0 1.5rem; }
}
