/* ============================================
   NOVEVE AESTHETICS - Professional Prototype
   Color Palette:
   - Primary:    #2c3e3a (deep forest green - trust, calm)
   - Accent:     #b8a088 (warm taupe/gold - luxury, warmth)
   - Light:      #f8f6f3 (warm off-white - clean, soft)
   - Dark:       #1a1a1a (near black - sophistication)
   - Text:       #3a3a3a (dark gray - readable)
   - Muted:      #7a7a7a (medium gray - secondary text)
   ============================================ */

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

:root {
    --primary: #2c3e3a;
    --primary-light: #3d5550;
    --accent: #b8a088;
    --accent-light: #d4c4b0;
    --accent-dark: #9a8570;
    --light: #f8f6f3;
    --lighter: #fdfcfa;
    --dark: #1a1a1a;
    --text: #3a3a3a;
    --text-muted: #7a7a7a;
    --border: #e8e4df;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a:hover {
    color: var(--accent-dark);
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: var(--primary);
}

.site-header.scrolled {
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: opacity var(--transition);
}

/* Default: show white logo on dark header */
.logo-img.logo-dark {
    display: none;
}

.logo-img.logo-white {
    display: block;
}

/* Scrolled: show dark logo on white header */
.scrolled .logo-img.logo-dark {
    display: block;
}

.scrolled .logo-img.logo-white {
    display: none;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* --- Dropdown --- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    transition: transform var(--transition);
    flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.06);
    border-left: 1px solid rgba(0,0,0,0.06);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 24px;
    white-space: nowrap;
    color: var(--text) !important;
    font-size: 0.85rem;
    transition: background var(--transition), color var(--transition);
    background: var(--white);
    border-left: 1px solid rgba(0,0,0,0.06);
    border-right: 1px solid rgba(0,0,0,0.06);
}

.nav-dropdown-menu a:first-child {
    border-top: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius) var(--radius) 0 0;
    padding-top: 14px;
}

.nav-dropdown-menu a:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    border-radius: 0 0 var(--radius) var(--radius);
    padding-bottom: 14px;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background: var(--light) !important;
    color: var(--primary) !important;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.01em;
    transition: color var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

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

.scrolled .main-nav a {
    color: var(--text);
}

.scrolled .main-nav a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 8px 20px !important;
    border: 1.5px solid rgba(255,255,255,0.5) !important;
    border-radius: var(--radius) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: var(--white) !important;
}

.scrolled .nav-cta {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.scrolled .nav-cta:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-left: 8px;
}

.lang-switcher a {
    text-decoration: none;
    padding: 4px 8px;
    border-radius: var(--radius);
    transition: all var(--transition);
    color: rgba(255,255,255,0.45);
}

.lang-switcher a.active {
    color: var(--white);
    font-weight: 600;
}

.lang-switcher a:not(.active):hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.lang-switcher .lang-sep {
    color: rgba(255,255,255,0.3);
    font-weight: 300;
    user-select: none;
}

.scrolled .lang-switcher a {
    color: var(--text-muted);
}

.scrolled .lang-switcher a.active {
    color: var(--primary);
    font-weight: 600;
}

.scrolled .lang-switcher a:not(.active):hover {
    color: var(--primary);
    background: rgba(0,0,0,0.05);
}

.scrolled .lang-switcher .lang-sep {
    color: var(--border);
}

.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all var(--transition);
}

.scrolled .mobile-toggle span {
    background: var(--dark);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #2c3e3a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 32, 0.82) 0%, rgba(44, 62, 58, 0.7) 50%, rgba(26, 43, 39, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    max-width: 540px;
}

.hero-motto {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-rating {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-rating-stars {
    color: #f5c518;
    font-size: 1rem;
    letter-spacing: 2px;
}

.hero-rating-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--light);
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-item svg {
    color: var(--accent-dark);
    flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--text);
}

.about-credentials {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.credential {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.credential-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.credential-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.philosophy-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 44px;
}

.philosophy .section-eyebrow {
    color: var(--accent-light);
}

.philosophy h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 20px;
}

.philosophy-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar {
    text-align: center;
    padding: 28px 24px;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--accent-light);
}

.pillar h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
}

.pillar p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* Philosophy light variant (for over-ons page) */
.philosophy-light {
    background: var(--light);
    color: var(--dark);
}

.philosophy-light h2 {
    color: var(--dark);
}

.philosophy-light .pillar-icon {
    background: rgba(0,0,0,0.05);
    color: var(--accent);
}

.philosophy-light .pillar h3 {
    color: var(--dark);
}

.philosophy-light .pillar p {
    color: var(--text-muted);
}

.page-section .pillar-icon {
    background: rgba(0,0,0,0.05);
    color: var(--accent);
}

.page-section .pillar h3 {
    color: var(--dark);
}

.page-section .pillar p {
    color: var(--text-muted);
}

/* ============================================
   TREATMENTS
   ============================================ */
.treatments {
    padding: 80px 0;
    background: var(--light);
}

.treatments > .container > .section-eyebrow,
.treatments > .container > h2,
.treatments > .container > .section-intro {
    text-align: center;
}

.treatments h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.section-intro {
    max-width: 600px;
    margin: 0 auto 44px;
    color: var(--text-muted);
    font-size: 1rem;
}

.treatment-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.treatment-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition);
    overflow: hidden;
}

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

.treatment-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.treatment-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.treatment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.treatment-card:hover .treatment-card-image img {
    transform: scale(1.05);
}

.treatment-card-body {
    padding: 32px;
}

.treatment-card h3 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.treatment-price {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.treatment-link-text {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-top: 8px;
    transition: color var(--transition);
}

.treatment-card:hover .treatment-link-text {
    color: var(--accent-dark);
}

.treatment-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-dark);
    margin-bottom: 12px;
}

.treatment-card > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.treatment-list {
    list-style: none;
    margin-bottom: 12px;
}

.treatment-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}

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

.treatment-list li span:last-child {
    font-weight: 500;
    color: var(--dark);
    white-space: nowrap;
    margin-left: 16px;
}

.treatment-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

.treatment-list li a:hover {
    color: var(--accent-dark);
}

.treatment-list li a span:last-child {
    font-weight: 500;
    color: var(--accent-dark);
    white-space: nowrap;
    margin-left: 16px;
}

.treatment-more {
    margin-top: 4px;
    margin-bottom: 12px;
}

.treatment-more summary {
    font-size: 0.85rem;
    color: var(--primary);
    cursor: pointer;
    padding: 8px 0;
    font-weight: 500;
    list-style: none;
}

.treatment-more summary::before {
    content: '+ ';
}

.treatment-more[open] summary::before {
    content: '− ';
}

.treatment-more summary::-webkit-details-marker {
    display: none;
}

.treatment-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* ============================================
   PROCESS / WERKWIJZE
   ============================================ */
.process {
    padding: 80px 0;
}

.process .section-eyebrow,
.process h2,
.process .section-intro {
    text-align: center;
}

.process h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 44px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 0 12px;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent-light);
    margin-bottom: 16px;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
    padding: 60px 0;
    background: var(--light);
}

.reviews .section-eyebrow,
.reviews h2 {
    text-align: center;
}

.reviews h2 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.reviews-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.reviews-grid::-webkit-scrollbar {
    display: none;
}

.reviews-grid .review-card {
    min-width: 280px;
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
}

.carousel-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}

.carousel-dot.active {
    background: var(--accent);
}

.review-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.review-stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 10px;
    font-style: italic;
}

.review-author {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.reviews-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 24px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 80px 0;
}

.faq .section-eyebrow,
.faq h2 {
    text-align: center;
}

.faq h2 {
    font-size: 2.4rem;
    margin-bottom: 36px;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    padding: 20px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent-dark);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 0 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 80px 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.contact-map-wrapper {
    position: sticky;
    top: 100px;
}

.contact-map iframe {
    display: block;
    border-radius: var(--radius-lg);
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 1rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail svg {
    color: var(--accent-dark);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.contact-detail a {
    color: var(--primary);
}

.contact-form-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-card > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--lighter);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 62, 58, 0.08);
}

.form-group textarea {
    resize: vertical;
}

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

.form-privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

.form-privacy a {
    color: var(--primary);
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    height: 36px;
    width: auto;
    opacity: 0.85;
}

.footer-tagline {
    margin-top: 16px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-quote {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--accent);
}

.footer-nav h4,
.footer-treatments h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-nav a,
.footer-treatments a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-nav a:hover,
.footer-treatments a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.78rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
}

.footer-links a:hover {
    color: rgba(255,255,255,0.8);
}

/* ============================================
   SUBPAGE STYLES
   ============================================ */
.page-header {
    padding: 130px 0 50px;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header.with-image {
    padding: 150px 0 80px;
}

.page-header.with-image {
    background-size: cover;
    background-position: center;
}

/* Subpagina hero's groter zodat afbeelding goed zichtbaar is */
body:has(.back-to-overview) .page-header {
    padding: 160px 0 100px;
    min-height: 400px;
}

.page-header .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26,35,32,0.7) 0%, rgba(44,62,58,0.6) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.back-to-overview {
    padding: 20px 0 0;
}

.back-to-overview a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 400;
    text-decoration: none;
    transition: color var(--transition);
}

.back-to-overview a:hover {
    color: var(--text);
}

.back-to-overview svg {
    width: 14px;
    height: 14px;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    line-height: 1.8;
}

/* Content sections for subpages */
.page-section {
    padding: 80px 0;
}

.back-to-overview ~ .page-section:has(.treatment-info-grid) {
    padding: 24px 0 0 0;
}

.back-to-overview ~ .page-section:has(.treatment-info-grid) + .page-section {
    padding-top: 40px;
}

.page-section h2 {
    font-size: 2rem;
    margin-top: 32px;
    margin-bottom: 24px;
}

.page-section h2:first-child {
    margin-top: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image img {
    width: 90%;
    aspect-ratio: 3/3.4;
    border-radius: var(--radius-lg);
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.content-text p {
    margin-bottom: 14px;
}

.content-text p:last-of-type {
    margin-bottom: 0;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Treatment detail page */
.treatment-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.related-treatments-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.related-treatments-grid .treatment-detail-card {
    padding: 24px;
    margin-top: 0;
    flex: 0 1 280px;
}

.related-treatments-grid .treatment-detail-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.treatment-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
}

a.treatment-detail-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

a.treatment-detail-card-link:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

a.treatment-detail-card-link .treatment-link-text {
    display: block;
    margin-top: 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--accent-dark);
}

.treatment-detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.treatment-detail-card .treatment-list {
    margin-top: 16px;
}

.treatment-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    text-align: center;
    padding: 20px 12px;
    background: var(--light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.info-card .info-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.info-card .info-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA Banner */
.cta-banner {
    padding: 64px 0;
    background: var(--primary);
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-banner .btn-primary:hover {
    background: var(--light);
    color: var(--primary);
}

/* Subpage header - inherits from base .site-header */

.demy-photo {
    margin-top: 20%;
}

@media (max-width: 1024px) {
    .demy-photo {
        margin-top: 0;
    }
    .content-grid,
    .treatment-detail-grid {
        grid-template-columns: 1fr;
    }

    .related-treatments-grid {
        flex-direction: column;
        gap: 12px;
    }

    .related-treatments-grid .treatment-detail-card {
        flex: 1 1 auto;
    }

    .contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .content-image img {
        aspect-ratio: 4/3;
        max-width: 500px;
        margin: 0 auto;
        display: block;
    }

    .treatment-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .treatment-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .info-card {
        padding: 14px 6px;
    }

    .info-card .info-value {
        font-size: 1.15rem;
    }

    .info-card .info-label {
        font-size: 0.6rem;
    }
}

/* ============================================
   RESULTS CAROUSEL & TABS
   ============================================ */
.results-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.results-tab {
    padding: 10px 32px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}

.results-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.results-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.results-carousel-wrapper {
    position: relative;
}

.results-carousel {
    display: none;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.results-carousel.active {
    display: block;
}

.carousel-track {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all var(--transition);
}

.carousel-arrow:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: -22px;
}

.carousel-next {
    right: -22px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    padding: 0;
    transition: background var(--transition);
}

.carousel-dot.active {
    background: var(--accent);
}

@media (max-width: 768px) {
    .results-carousel {
        max-width: 100%;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .results-tab {
        padding: 8px 24px;
        font-size: 0.9rem;
    }
}

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-photo {
        aspect-ratio: 4/3;
        max-width: 500px;
        margin: 0 auto;
        display: block;
        object-position: center 32%;
    }

    .philosophy-pillars {
        gap: 24px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .container,
    .container.hero-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 999;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        font-size: 1.1rem;
        color: var(--dark) !important;
    }

    /* Mobile dropdown */
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        padding-top: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 200px;
    }

    .nav-dropdown-menu a {
        background: none;
        border: none !important;
        text-align: center;
        padding: 6px 24px;
        font-size: 0.95rem !important;
        color: var(--muted) !important;
    }

    .nav-dropdown-menu a:first-child {
        border: none;
        border-radius: 0;
        padding-top: 8px;
    }

    .nav-dropdown-menu a:last-child {
        border: none;
        border-radius: 0;
        padding-bottom: 6px;
    }

    .nav-dropdown-menu a:hover {
        background: none !important;
        color: var(--primary) !important;
    }

    .nav-cta {
        border-color: var(--primary) !important;
        color: var(--primary) !important;
    }

    .mobile-header-actions {
        display: flex;
    }

    .mobile-cta-btn {
        display: inline-block;
        padding: 6px 14px;
        font-size: 0.8rem;
        font-weight: 500;
        border-radius: var(--radius);
        text-decoration: none;
        border: 1.5px solid rgba(255,255,255,0.5);
        color: var(--white);
        transition: all var(--transition);
    }

    .scrolled .mobile-cta-btn {
        border-color: var(--primary);
        color: var(--primary);
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    /* --- Section padding reductions --- */
    .about {
        padding: 60px 0;
    }

    .philosophy {
        padding: 60px 0;
    }

    .philosophy-inner {
        margin-bottom: 32px;
    }

    .philosophy h2 {
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .treatments {
        padding: 60px 0;
    }

    .treatments h2 {
        font-size: 2rem;
    }

    .section-intro {
        margin-bottom: 32px;
    }

    .process {
        padding: 60px 0;
    }

    .process h2 {
        font-size: 2rem;
    }

    .process-steps {
        margin-top: 32px;
    }

    .reviews {
        padding: 48px 0;
    }

    .reviews h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .faq {
        padding: 60px 0;
    }

    .faq h2 {
        font-size: 2rem;
        margin-bottom: 28px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-info h2,
    .contact h2 {
        font-size: 2rem;
    }

    .cta-banner {
        padding: 52px 0;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    /* --- Inner element spacing --- */
    .pillar {
        padding: 16px 16px;
    }

    .pillar-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    .pillar h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .process-step {
        padding: 0 8px;
    }

    .step-number {
        font-size: 2.4rem;
        margin-bottom: 10px;
    }

    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .about-credentials {
        margin-top: 24px;
        padding-top: 24px;
    }

    .treatment-card-body {
        padding: 24px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .trust-bar {
        padding: 20px 0;
    }

    .trust-items {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 0 16px;
    }

    .philosophy-pillars {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reviews-grid .review-card {
        min-width: 0;
        flex: 0 0 calc(100% - 4px);
    }

    .carousel-btn {
        display: none;
    }

    .about-grid {
        gap: 32px;
    }

    .about-credentials {
        flex-direction: column;
        gap: 16px;
    }

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

    .contact-form-card {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-footer {
        padding-top: 40px;
    }

    .footer-grid {
        padding-bottom: 32px;
    }

    /* Subpagina hero's compacter op mobiel (niet homepage) */
    .page-header {
        padding: 110px 0 50px;
    }

    body:has(.back-to-overview) .page-header {
        padding: 110px 0 50px;
        min-height: auto;
    }
}
