/*
Theme Name: Smooth by Anna's
Theme URI: https://smoothbyannas.nl
Author: Custom Theme
Author URI: https://smoothbyannas.nl
Description: Elegant beauty salon theme for Smooth by Anna's in Mijdrecht — soft luxury aesthetic with warm natural tones.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smooth-byannas
Tags: beauty, salon, spa, elegant, feminine
*/

/* ====================================================
   CSS CUSTOM PROPERTIES
   ==================================================== */
:root {
  /* Brand Colors */
  --color-cream:       #FAF7F2;
  --color-warm-white:  #FFFDF9;
  --color-blush:       #E8C4B8;
  --color-blush-light: #F2DDD6;
  --color-blush-dark:  #C9917F;
  --color-rose:        #B5695A;
  --color-rose-deep:   #8C4A3C;
  --color-sage:        #9DAB8F;
  --color-sage-light:  #C5D0BB;
  --color-taupe:       #8A7B6E;
  --color-brown:       #5C4A3A;
  --color-dark:        #2C2018;
  --color-text:        #3D2E22;
  --color-text-light:  #7A6658;
  --color-gold:        #C9A96E;
  --color-gold-light:  #E8D5A3;

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', 'Helvetica Neue', sans-serif;
  --font-accent:   'Dancing Script', cursive;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-2xl:  10rem;

  /* Sizes */
  --max-width:  1280px;
  --radius-sm:  4px;
  --radius-md:  12px;
  --radius-lg:  32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-soft:   0 4px 24px rgba(44,32,24,0.08);
  --shadow-medium: 0 8px 48px rgba(44,32,24,0.12);
  --shadow-strong: 0 16px 64px rgba(44,32,24,0.18);

  /* Transitions */
  --transition-fast:   0.2s ease;
  --transition-mid:    0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-slow:   0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ====================================================
   RESET & BASE
   ==================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  background-color: var(--color-warm-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ====================================================
   TYPOGRAPHY
   ==================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-dark);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.25em;
  color: var(--color-text-light);
  font-weight: 300;
  font-size: 1.05rem;
}

p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--color-text);
}

.script {
  font-family: var(--font-accent);
  font-size: 1.5em;
  color: var(--color-rose);
  display: block;
  margin-bottom: 0.5rem;
}

/* ====================================================
   LAYOUT UTILITIES
   ==================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1440px;
}

.section {
  padding-block: var(--space-xl);
}

.section--lg {
  padding-block: var(--space-2xl);
}

.section--sm {
  padding-block: var(--space-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }
.text-right  { text-align: right; }

/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition-mid);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--color-rose);
  color: white;
  box-shadow: 0 4px 20px rgba(181,105,90,0.35);
}

.btn--primary:hover {
  background: var(--color-rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(181,105,90,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-rose);
  border: 1.5px solid var(--color-rose);
}

.btn--outline:hover {
  background: var(--color-rose);
  color: white;
  transform: translateY(-2px);
}

.btn--light {
  background: white;
  color: var(--color-rose);
  box-shadow: var(--shadow-soft);
}

.btn--light:hover {
  background: var(--color-cream);
  transform: translateY(-2px);
}

/* ====================================================
   HEADER & NAVIGATION
   ==================================================== */

/* Wrapper: topbar + header samen fixed */
#site-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-mid);
}

/* Top bar */
.header-topbar {
  background: var(--color-brown);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.5rem;
  transition: all var(--transition-mid);
  overflow: hidden;
}

.header-topbar a {
  color: var(--color-gold-light);
  font-weight: 500;
}

/* Scrolled: topbar verdwijnt */
#site-header-wrap.scrolled .header-topbar {
  height: 0;
  padding: 0;
}

/* Header zelf */
.site-header {
  position: relative;
  transition: all var(--transition-mid);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250,247,242,0.0);
  backdrop-filter: blur(0px);
  transition: all var(--transition-mid);
  z-index: -1;
}

#site-header-wrap.scrolled .site-header::before {
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44,32,24,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  transition: padding var(--transition-mid);
}

#site-header-wrap.scrolled .header-inner {
  padding: 1rem 0;
}

/* Admin bar offset */
.admin-bar #site-header-wrap { top: 32px; }
@media (max-width: 782px) {
  .admin-bar #site-header-wrap { top: 46px; }
}


/* Logo */
.site-logo {
  flex-shrink: 0;
}

.site-logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition-mid);
}

.site-header.scrolled .site-logo img {
  height: 40px;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-dark);
  letter-spacing: 0.05em;
}

.site-logo-text span {
  font-family: var(--font-accent);
  color: var(--color-rose);
  font-size: 1.2em;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.current-menu-item > a {
  color: var(--color-rose);
}

/* Dropdown */
.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  padding: 0.75rem 0;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-mid);
  z-index: 100;
}

/* Onzichtbare brug tussen nav-item en dropdown zodat er geen gat is */
.main-nav > ul > li::after {
  content: '';
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  right: 0;
  height: 0.6rem;
}

.main-nav .sub-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: white;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}

.main-nav li:hover > .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

.main-nav .sub-menu {
  transition-delay: 0.15s;
}

.main-nav .sub-menu li a {
  display: block;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text);
  letter-spacing: 0.03em;
  transition: all var(--transition-fast);
}

.main-nav .sub-menu li a:hover {
  color: var(--color-rose);
  background: var(--color-cream);
  padding-left: 2rem;
}

/* Nav CTA */
.nav-cta {
  margin-left: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-dark);
  transition: all var(--transition-mid);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-cream);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-mid);
  overflow-y: auto;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-close-btn { display: none; }

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  padding: 110px 2rem 3rem;
  min-height: 100%;
  gap: 0;
}

/* Behandelingen groep */
.mobile-nav-group {
  margin-bottom: 1.5rem;
}

.mobile-nav-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(181,105,90,0.2);
}

.mobile-nav-treatments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.1rem;
}

.mobile-nav-treatments a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-dark);
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
  border-bottom: 1px solid rgba(44,32,24,0.06);
}

.mobile-nav-treatments a:hover { color: var(--color-rose); }

/* Hoofdlinks */
.mobile-nav-main {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.mobile-nav-main a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-dark);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(44,32,24,0.08);
  transition: color var(--transition-fast);
}

.mobile-nav-main a:hover { color: var(--color-rose); }

.mobile-nav-cta {
  align-self: flex-start;
  margin-bottom: 2rem;
}

.mobile-nav-social {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

.mobile-nav-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-fast);
}

.mobile-nav-social a svg,
.mobile-nav-social a .icon svg {
  width: 16px;
  height: 16px;
  fill: var(--color-rose);
}

.mobile-nav-social a:hover {
  background: var(--color-rose);
  color: white;
}

.mobile-nav-social a:hover svg,
.mobile-nav-social a:hover .icon svg {
  fill: white;
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250,247,242,0.92) 0%,
    rgba(250,247,242,0.75) 50%,
    rgba(250,247,242,0.4) 100%
  );
}

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(181,105,90,0.12);
}

.hero-decor-circle:nth-child(1) {
  width: 600px; height: 600px;
  right: -100px; top: -100px;
  animation: slowSpin 40s linear infinite;
}

.hero-decor-circle:nth-child(2) {
  width: 900px; height: 900px;
  right: -250px; top: -250px;
  animation: slowSpin 60s linear infinite reverse;
  border-color: rgba(201,169,110,0.08);
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: var(--color-rose);
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero h1 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.4s;
  margin-bottom: 1.5rem;
}

.hero-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.6s;
  font-size: 1.1rem;
  color: var(--color-text);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.8s;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  bottom: 10%;
  right: 5%;
  z-index: 2;
  background: white;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-medium);
  padding: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.2s;
}

.hero-badge-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.3;
}

.hero-badge-accent {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  color: var(--color-rose);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-rose), transparent);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ====================================================
   TREATMENT CARDS
   ==================================================== */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.treatment-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-mid);
  position: relative;
}

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

.treatment-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-blush-light);
  position: relative;
  display: block;
  width: 100%;
}

/* Both real images and SVG fallbacks fill the container */
.treatment-card-image img,
.treatment-card-image svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.treatment-card:hover .treatment-card-image img,
.treatment-card:hover .treatment-card-image svg {
  transform: scale(1.06);
}

.treatment-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-rose);
  color: white;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.treatment-card-body {
  padding: 1.75rem;
}

.treatment-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.treatment-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.treatment-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-rose);
  transition: gap var(--transition-fast);
}

.treatment-card-link:hover { gap: 0.85rem; }

.treatment-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.treatment-card-link:hover svg {
  transform: translateX(4px);
}

/* ====================================================
   SECTION HEADINGS
   ==================================================== */
.section-header {
  margin-bottom: var(--space-lg);
}

.section-header.text-center {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--color-rose);
  display: block;
  margin-bottom: 0.5rem;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--color-rose), var(--color-gold));
  margin-top: 1.25rem;
  border-radius: var(--radius-full);
}

.section-divider.center {
  margin-inline: auto;
}

/* ====================================================
   FEATURE / INTRO SECTION
   ==================================================== */
.feature-section {
  background: var(--color-cream);
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.feature-inner.reverse {
  direction: rtl;
}

.feature-inner.reverse > * {
  direction: ltr;
}

.feature-image-wrap {
  position: relative;
}

.feature-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.feature-image-main img,
.feature-image-main svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-image-accent {
  position: absolute;
  bottom: -3rem;
  right: -2rem;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-strong);
  border: 4px solid white;
  position: absolute;
}

.feature-image-accent img,
.feature-image-accent svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-decor {
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 80px;
  height: 80px;
  background: var(--color-gold-light);
  border-radius: 50%;
  z-index: -1;
}

.feature-content {
  padding-block: 2rem;
}

.feature-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.feature-list-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 0.1rem;
}

.feature-list-icon svg,
.feature-list-icon .icon svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  stroke: white;
  fill: none;
}

/* ====================================================
   CTA BANNER
   ==================================================== */
.cta-banner {
  background: var(--color-brown);
  padding-block: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-size: 1rem;
}

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials-section {
  background: var(--color-warm-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--color-blush-light);
  line-height: 1;
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-blush-light);
  overflow: hidden;
  flex-shrink: 0;
}

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

.testimonial-name {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* ====================================================
   LOYALTY / PROMO SECTION
   ==================================================== */
.loyalty-section {
  background: linear-gradient(135deg, var(--color-blush-light) 0%, var(--color-cream) 60%);
  text-align: center;
}

.loyalty-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 600px;
  margin-inline: auto;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.loyalty-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--color-rose), var(--color-gold));
}

.loyalty-percent {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-rose);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ====================================================
   ABOUT TEASER
   ==================================================== */
.about-teaser {
  background: var(--color-cream);
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-img-1 {
  position: absolute;
  top: 0; left: 0;
  width: 65%;
  height: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.about-img-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 60%;
  height: 65%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 4px solid white;
}

.about-img-1 img,
.about-img-1 svg,
.about-img-2 img,
.about-img-2 svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.about-stat {
  text-align: center;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-rose);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

/* ====================================================
   PRODUCTS BRANDS
   ==================================================== */
.brands-section {
  background: white;
  padding-block: var(--space-md);
  border-top: 1px solid rgba(44,32,24,0.06);
  border-bottom: 1px solid rgba(44,32,24,0.06);
}

.brands-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem 5rem;
  flex-wrap: wrap;
}

.brand-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-taupe);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: italic;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.brand-item:hover { opacity: 1; }

/* ====================================================
   CONTACT INFO BAR
   ==================================================== */
.contact-bar {
  background: var(--color-blush-light);
  padding-block: var(--space-sm);
}

.contact-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text);
}

.contact-bar-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-rose);
  flex-shrink: 0;
}

.contact-bar-item a:hover {
  color: var(--color-rose);
}

/* ====================================================
   PAGE HERO (inner pages)
   ==================================================== */
.page-hero {
  background: var(--color-cream);
  padding-top: calc(var(--space-xl) + 80px);
  padding-bottom: var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 80px;
  background: var(--color-warm-white);
  border-radius: 50% 50% 0 0 / 80px 80px 0 0;
}

.page-hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--color-rose);
  display: block;
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.page-hero-text {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin-inline: auto;
  margin-top: 1rem;
}

/* ====================================================
   TREATMENT DETAIL PAGE
   ==================================================== */
.treatment-detail-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}

.treatment-sticky {
  position: sticky;
  top: calc(80px + 2rem);
}

.treatment-sidebar-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.treatment-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(44,32,24,0.08);
  font-size: 0.9rem;
}

.treatment-price-item:last-child {
  border-bottom: none;
}

.treatment-price-amount {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-rose);
}

.treatment-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.treatment-content h2:first-child {
  margin-top: 0;
}

.treatment-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.treatment-content ul li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--color-text);
  font-size: 0.95rem;
}

.treatment-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-rose);
  font-size: 0.6rem;
  top: 0.8rem;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  letter-spacing: 0.05em;
}

.footer-logo-text span {
  font-family: var(--font-accent);
  color: var(--color-blush);
  font-size: 1.2em;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-rose);
  color: white;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--color-blush);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-blush);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-blush);
}

/* Hart IT CTA */
.hartit-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.hartit-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-blush);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.hartit-cta a:hover {
  color: white;
  gap: 0.7rem;
}

.hartit-cta a svg {
  width: 14px;
  height: 14px;
}

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: 1.5px solid rgba(44,32,24,0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-warm-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-rose);
  box-shadow: 0 0 0 3px rgba(181,105,90,0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

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

.contact-info-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(44,32,24,0.08);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--color-blush-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose);
  flex-shrink: 0;
}

.contact-info-icon svg { width: 18px; height: 18px; }

.contact-info-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ====================================================
   DOS & DONTS PAGE
   ==================================================== */
.dos-donts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.dos-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.dos-card--do { border-top: 4px solid var(--color-sage); }
.dos-card--dont { border-top: 4px solid var(--color-rose); }

.dos-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dos-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dos-card--do .dos-icon { background: rgba(157,171,143,0.2); color: var(--color-sage); }
.dos-card--dont .dos-icon { background: rgba(181,105,90,0.15); color: var(--color-rose); }

.dos-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-dark);
}

.dos-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  color: var(--color-text);
  border-bottom: 1px solid rgba(44,32,24,0.06);
}

.dos-list li:last-child { border-bottom: none; }

.dos-list-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.dos-card--do .dos-list-icon { color: var(--color-sage); }
.dos-card--dont .dos-list-icon { color: var(--color-rose); }

/* ====================================================
   WOOCOMMERCE / BOOKING (basic)
   ==================================================== */
.woocommerce-page .woocommerce {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

/* ====================================================
   TOPBAR MOBILE/DESKTOP
   ==================================================== */
.topbar-mobile  { display: none; }
.topbar-desktop { display: inline; }

@media (max-width: 768px) {
  .topbar-mobile  { display: inline; }
  .topbar-desktop { display: none; }
  .header-topbar  { font-size: 0.75rem; padding: 0.4rem 1rem; }
}

/* ====================================================
   BREADCRUMBS
   ==================================================== */
.breadcrumbs {
  background: white;
  border-bottom: 1px solid rgba(44,32,24,0.06);
  padding-block: 0.75rem;
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
  flex-wrap: wrap;
}

.breadcrumbs-list li + li::before {
  content: '/';
  opacity: 0.4;
  margin-right: 0.5rem;
}

.breadcrumbs-list a {
  color: var(--color-rose);
  transition: opacity var(--transition-fast);
}

.breadcrumbs-list a:hover { opacity: 0.7; }

/* ====================================================
   WP CORE ALIGNMENTS
   ==================================================== */
.alignleft  { float: left;  margin-right: 2rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left:  2rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin-inline: auto; text-align: center; }
.wp-caption-text { font-size: 0.85rem; color: var(--color-text-light); text-align: center; margin-top: 0.5rem; }

/* ====================================================
   SCROLL ANIMATIONS
   ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-inner,
  .about-teaser-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-inner.reverse { direction: ltr; }
  .feature-image-accent { display: none; }

  .about-images { height: 400px; }

  .treatment-detail-content {
    grid-template-columns: 1fr;
  }

  .treatment-sticky { position: static; }
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .dos-donts-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  /* Topbar op mobiel compact maar zichtbaar */
  .header-topbar {
    display: block !important;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  /* Meer ruimte in de header inner op mobiel */
  .header-inner {
    padding: 1.25rem 0;
  }

  /* Afspraak maken knop verbergen in header op mobiel */
  .nav-cta { display: none !important; }
  .nav-cta + .hamburger { margin-left: 0; }

  /* Logo iets kleiner */
  .site-logo img { height: 36px; }
  .site-logo-text { font-size: 1.3rem; }

  .hero-badge { display: none; }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .form-row { grid-template-columns: 1fr; }
  .contact-bar-inner { flex-direction: column; gap: 1rem; text-align: center; }

  .treatment-detail-content {
    grid-template-columns: 1fr;
  }
}

/* ====================================================
   SVG IMAGE FALLBACKS
   ==================================================== */

/* Universal rule: every fallback SVG fills its parent */
.smooth-fallback-svg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* Hero specific */
.hero-bg .smooth-fallback-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Remove old conflicting rules that were added earlier */
.treatment-card-image svg,
.feature-image-main svg,
.feature-image-accent svg,
.about-img-1 svg,
.about-img-2 svg,
.hero-bg svg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

@media (max-width: 520px) {
  .treatments-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}