:root {
  /*
    Design DNA: Relax & Wellness
    Color Strategy:
    - Primary: #5a8f7b (healing green)
    - Secondary: #a3d9c5 (soft mint)
    - Accent: #f2c94c (warm gold)
    - Neutral: #f6faf9
    Layout Pattern:
    - Split hero layout
    - Card-based service grid
    - Massage feature icon section
    - Reservation CTA highlight banner
    Icon Style:
    - Line-based body/massage/stretching SVG icons
    Background Pattern:
    - Soft healing SVG pattern
  */
  --primary: #5a8f7b;
  --secondary: #a3d9c5;
  --accent: #f2c94c;
  --neutral: #f6faf9;
  --text: #1f3a32;
  --text-soft: #35574a;
  --border: #d3e7df;
  --shadow: 0 14px 30px rgba(22, 72, 56, 0.12);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--neutral) url("../img/pattern-bg.svg") repeat;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--text);
  color: #fff;
  padding: 0.5rem 0.75rem;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 250, 249, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  padding: 0.3rem 0.45rem;
  border-radius: 8px;
}

.site-nav a:hover {
  background: var(--secondary);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
}

.hero h1 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
}

.hero-sub {
  margin-top: 0;
  color: var(--text-soft);
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-accent {
  background: var(--accent);
  color: #2b2b2b;
}

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 6px 18px rgba(24, 80, 61, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0.75rem 0 0.4rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.about,
.location,
.biz {
  background: rgba(163, 217, 197, 0.2);
}

.process-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.process-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.process-list span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cta-banner {
  padding-top: 1rem;
}

.banner-inner {
  border-radius: var(--radius);
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--primary), #72a892);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
}

.banner-inner p {
  margin: 0;
  font-weight: 700;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}

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

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

input,
select,
textarea {
  border: 1px solid #accfc2;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: var(--text);
}

.form-status {
  min-height: 1.2rem;
  margin: 0.8rem 0;
  font-weight: 700;
}

.form-status.error {
  color: #9f2e2e;
}

.form-status.ok {
  color: #246645;
}

.biz-list {
  margin: 0;
  padding-left: 1rem;
}

.site-footer {
  background: #173c32;
  color: #e9f7f2;
  padding: 1.1rem 0;
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

@media (min-width: 700px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #f6faf9;
    border-bottom: 1px solid var(--border);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease;
  }

  .site-nav.open {
    transform: scaleY(1);
  }

  .site-nav ul {
    flex-direction: column;
    padding: 1rem 4%;
  }
}
