:root {
  --bg: #fffaf9;
  --surface: #ffffff;
  --surface-soft: #fff3f1;
  --text: #2c2325;
  --muted: #6b5b60;
  --brand: #d67b93;
  --brand-dark: #b04f6b;
  --accent: #f4c9ba;
  --line: #eadde1;
  --success: #4d8a68;
  --shadow: 0 20px 40px rgba(120, 65, 83, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top right, #ffe8ec 0%, #fffaf9 35%, #fff8f2 100%);
  color: var(--text);
  line-height: 1.65;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 249, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(214, 123, 147, 0.15);
}

.nav-wrap {
  min-height: 104px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #f3b8c8, #f7d2bc);
  color: #fff;
  box-shadow: 0 10px 25px rgba(214, 123, 147, 0.4);
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.4px;
  font-size: 1.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav a {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--surface-soft);
  color: var(--brand-dark);
}

.nav a.active {
  background: #ffe4ea;
  color: var(--brand-dark);
}

.nav a[href="contact.html"] {
  background: linear-gradient(135deg, #d97591 0%, #bf647e 100%);
  color: #fff;
  border-radius: 999px;
  padding-inline: 1.05rem;
  box-shadow: 0 10px 20px rgba(191, 100, 126, 0.3);
}

.nav a[href="contact.html"]:hover,
.nav a[href="contact.html"]:focus-visible {
  background: linear-gradient(135deg, #e287a0 0%, #ca6f89 100%);
  color: #fff;
}

.nav a[href="contact.html"].active {
  background: linear-gradient(135deg, #d97591 0%, #bf647e 100%);
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  width: 44px;
  height: 44px;
}

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

.hero {
  padding: 4.25rem 0 2.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-dark);
  background: #ffeaf0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: #2a1f22;
}

h1 {
  font-size: clamp(2.05rem, 4.2vw, 3.2rem);
  margin-top: 0.8rem;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.45rem);
  margin-bottom: 0.6rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-copy {
  display: grid;
  gap: 1.2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, #d97591 0%, #bf647e 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(191, 100, 126, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 28px rgba(191, 100, 126, 0.35);
}

.btn-ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--brand-dark);
}

.btn[href="contact.html"] {
  background: linear-gradient(135deg, #d97591 0%, #bf647e 100%);
  color: #fff;
  border-color: #bf647e;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(191, 100, 126, 0.3);
}

.btn[href="contact.html"]:hover,
.btn[href="contact.html"]:focus-visible {
  background: linear-gradient(135deg, #e287a0 0%, #ca6f89 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(191, 100, 126, 0.34);
}

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 20, 28, 0.36), transparent 48%);
}

.hero-photo-note {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  box-shadow: 0 10px 16px rgba(31, 19, 23, 0.14);
}

.hero-photo-note strong {
  display: block;
  line-height: 1.2;
}

.section {
  padding: 4.2rem 0;
}

.section-tight {
  padding-top: 2rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.grid {
  display: grid;
  gap: 1.1rem;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: 0 10px 25px rgba(113, 63, 80, 0.08);
}

.card-soft {
  background: linear-gradient(155deg, #fff, #fff2f0);
}

.service-card {
  position: relative;
  padding-right: 6.2rem;
  padding-bottom: 1.8rem;
}

.service-card-icon {
  position: absolute;
  right: -0.1rem;
  bottom: -0.15rem;
  width: 140px;
  height: 140px;
  object-fit: contain;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 8px 14px rgba(160, 94, 118, 0.22));
}

.treatment-card {
  --treatment-fade-to: #fff;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.treatment-card.card-soft {
  --treatment-fade-to: #fff;
  background: #fff;
}

.treatment-media {
  position: relative;
  height: 270px;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.treatment-media::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255 255 255 / 86%) 58%, var(--treatment-fade-to) 74%, var(--treatment-fade-to) 100%);
}

.treatment-content {
  background: var(--treatment-fade-to);
  margin-top: -18px;
  padding: 1rem 1.25rem 1.3rem;
  display: grid;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
  margin-top: -80px;
}

.treatment-content h2,
.treatment-content h3,
.treatment-content p,
.treatment-content ul {
  margin: 0;
}

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

.list-clean li {
  display: flex;
  gap: 0.5rem;
  color: #564a4d;
}

.list-clean li::before {
  content: '•';
  color: var(--brand);
  line-height: 1;
  margin-top: 0.26rem;
}

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

.list-check li {
  display: flex;
  gap: 0.6rem;
  color: #564a4d;
}

.list-check li::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
  line-height: 1;
  margin-top: 0.15rem;
}

.highlight {
  color: var(--brand-dark);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.35rem;
  align-items: stretch;
}

.media {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill {
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
  color: #67595e;
  font-size: 0.86rem;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

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

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(113, 63, 80, 0.08);
  display: grid;
}

.product-media {
  height: 220px;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.add-cart-btn {
  cursor: pointer;
}

.product-head {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: flex-start;
}

.product-name {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.14rem;
  line-height: 1.25;
}

.product-price {
  font-weight: 800;
  color: var(--brand-dark);
  white-space: nowrap;
}

.stock-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff5f3;
  color: #6b5159;
  font-size: 0.78rem;
  font-weight: 700;
}

.floating-cart {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 70;
  background: linear-gradient(135deg, #d97591 0%, #bf647e 100%);
  color: #fff;
  box-shadow: 0 16px 28px rgba(191, 100, 126, 0.34);
}

.floating-cart:hover,
.floating-cart:focus-visible {
  transform: translateY(-1px);
}

.floating-cart-icon {
  font-size: 1.45rem;
  line-height: 1;
}

.floating-cart-count {
  position: absolute;
  top: -8px;
  right: -6px;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  background: #fff;
  color: #9a3c59;
  border: 1px solid #f0d8df;
  box-shadow: 0 8px 14px rgba(92, 45, 60, 0.2);
}

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

.stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--brand-dark);
  font-family: 'Playfair Display', Georgia, serif;
}

.pricetable {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.pricetable th,
.pricetable td {
  padding: 0.85rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.pricetable th {
  background: #fff1f4;
  color: #5e454e;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.pricetable tr:last-child td {
  border-bottom: 0;
}

.price {
  font-weight: 800;
  color: var(--brand-dark);
  white-space: nowrap;
}

.notice {
  background: #fff;
  border: 1px dashed #e5bac7;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: #6a545b;
  font-size: 0.95rem;
}

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

.contact-item {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-item small {
  color: #8f7e84;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.booking-form {
  margin-top: 0.9rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-weight: 700;
  color: #4f3d43;
}

.form-field small {
  color: #8f7e84;
  font-size: 0.84rem;
}

.form-field input,
.form-field select {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  min-height: 46px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: #d58aa0;
  box-shadow: 0 0 0 3px rgba(213, 138, 160, 0.18);
}

.form-field input:invalid,
.form-field select:invalid {
  border-color: #e09cae;
}

.form-message {
  margin-top: 0.8rem;
  color: #5d4a50;
  font-weight: 600;
}

.form-message.success {
  color: #2f6f50;
}

.form-message.error {
  color: #9b415a;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero .lead {
  max-width: 70ch;
}

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(214, 123, 147, 0.2);
  background: #fff7f5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  padding: 2.2rem 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: #705f64;
  font-weight: 600;
}

.footer-links a[href="contact.html"] {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d97591 0%, #bf647e 100%);
  color: #fff;
  box-shadow: 0 8px 16px rgba(191, 100, 126, 0.26);
}

.footer-meta {
  display: grid;
  gap: 0.45rem;
  justify-items: end;
  text-align: right;
  color: #7d6d72;
}

.map-placeholder {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line);
}

.map-placeholder::after {
  content: 'Emmen, Nederland';
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-weight: 700;
  color: #5b454e;
}

.floating-shape {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.45;
}

.shape-1 {
  width: 180px;
  height: 180px;
  background: #ffd8dd;
  top: -60px;
  right: 12%;
}

.shape-2 {
  width: 130px;
  height: 130px;
  background: #ffe6cf;
  bottom: -40px;
  left: 7%;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: 420ms ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid,
  .shop-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.9rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: fixed;
    inset: 104px 1rem auto 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 170ms ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .service-card {
    padding-right: 5.2rem;
  }

  .service-card-icon {
    width: 54px;
    height: 54px;
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .floating-cart {
    width: 60px;
    height: 60px;
    right: 0.85rem;
    bottom: 0.85rem;
  }

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

  .container {
    width: min(var(--container), calc(100% - 1.35rem));
  }

  h1 {
    font-size: clamp(1.85rem, 10vw, 2.35rem);
  }
}
