/*
Design DNA: Serenity Wellness
- Primary: #7fb685
- Secondary: #c3e4d4
- Accent: #f2c94c
- Neutral: #f7faf8
- Layout: Split Hero / Card Grid / Icon Features / Reservation CTA Banner
- Icon Style: Line-based body, massage, stretching SVG icons
- Background Pattern: Soft healing SVG pattern
*/
:root {
  --color-primary: #7fb685;
  --color-secondary: #c3e4d4;
  --color-accent: #f2c94c;
  --color-neutral: #f7faf8;
  --color-text: #1c2a24;
  --color-muted: #3f5a4a;
  --color-white: #ffffff;
  --shadow-soft: 0 12px 26px rgba(35, 63, 50, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(180deg, rgba(247, 250, 248, 0.97), rgba(247, 250, 248, 0.97)),
    url("../img/pattern-bg.svg") repeat;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  background: var(--color-text);
  color: var(--color-white);
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 999;
}

.skip-link:focus {
  top: 8px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 3.5rem 0;
}

.section-soft {
  background: rgba(195, 228, 212, 0.3);
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}

p {
  margin: 0 0 0.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 248, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 42, 36, 0.08);
}

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

.brand img {
  width: auto;
  height: 46px;
}

.menu-toggle {
  border: 1px solid rgba(28, 42, 36, 0.15);
  background: var(--color-white);
  border-radius: 10px;
  padding: 0.55rem;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 99px;
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  background: var(--color-white);
  border-bottom: 1px solid rgba(28, 42, 36, 0.12);
}

.site-nav.open {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.8rem 1rem 1.2rem;
  display: grid;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(195, 228, 212, 0.55);
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.hero-copy {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  display: inline-block;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(127, 182, 133, 0.2);
  color: #245f31;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.hero-visual {
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 0.74rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

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

.btn-primary {
  background: var(--color-primary);
  color: #0f2716;
}

.btn-accent {
  background: var(--color-accent);
  color: #4f3a00;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.services-grid {
  grid-template-columns: 1fr;
}

.service-card,
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 42, 36, 0.08);
  box-shadow: 0 8px 18px rgba(28, 42, 36, 0.07);
  padding: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 25px rgba(28, 42, 36, 0.12);
}

.service-card img,
.feature-card img {
  margin-bottom: 0.8rem;
}

.feature-grid {
  grid-template-columns: 1fr 1fr;
}

.about-box {
  background: linear-gradient(135deg, #ffffff, #eef7f0);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  border: 1px solid rgba(28, 42, 36, 0.08);
}

.about-box ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

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

.process-list li {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(28, 42, 36, 0.1);
}

.process-list span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #14331d;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

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

.cta-box {
  background: linear-gradient(135deg, #7fb685, #c3e4d4);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: grid;
  gap: 0.9rem;
  align-items: center;
}

.contact-form {
  background: var(--color-white);
  border: 1px solid rgba(28, 42, 36, 0.11);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(28, 42, 36, 0.2);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  color: inherit;
  background: #fbfdfc;
}

.form-status {
  min-height: 1.3rem;
  margin: 0.2rem 0 0.9rem;
  color: #1f5a2e;
  font-weight: 600;
}

.region-text {
  background: var(--color-white);
  border-left: 5px solid var(--color-primary);
  padding: 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.biz-info {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 42, 36, 0.12);
  padding: 1rem;
  font-style: normal;
}

.site-footer {
  background: #1a2f27;
  color: #e8f2ec;
  padding: 1.2rem 0;
}

.footer-inner {
  text-align: center;
}

:focus-visible {
  outline: 3px solid #1d5844;
  outline-offset: 2px;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    padding: 1.3rem;
  }

  .cta-box {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    border: 0;
    background: transparent;
  }

  .site-nav ul {
    display: flex;
    padding: 0;
    gap: 0.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .hero-copy,
  .hero-visual {
    min-height: 380px;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
