/* -------------------------------------------------------------
   LOCAL MONTSERRAT FONTS
   ------------------------------------------------------------- */

@font-face {
    font-family: "Montserrat";
    src: url("assets/fonts/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("assets/fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("assets/fonts/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* -------------------------------------------------------------
   ALIANZA FYSIO - PREMIUM STYLING
   Brand Guidelines:
   Style: Minimal, Editorial, Calm, Refined
   ------------------------------------------------------------- */

/* 1. Design Tokens & CSS Variables */
:root {
    /* Color Palette */
    --color-sage: #5E6A5A;         /* Primary Accent */
    --color-sage-dark: #4E584C;    /* Hover State for Sage */
    --color-sage-light: #7B8B77;   /* Soft Sage Accent */
    --color-charcoal: #162328;     /* Body Text / Headers / Dark Backgrounds */
    --color-charcoal-light: #23373F; 
    --color-stone: #AEA896;        /* Borders / Dividers / Secondary details */
    --color-stone-light: #D5D1C7;
    --color-ivory: #F4F2EE;        /* Base Background */
    --color-teal: #2F4F4F;         /* Muted Dark Teal */
    --color-white: #FFFFFF;
    --color-error: #B22222;        /* Elegant Dark Red for Errors */
    
    /* Typography */
    --font-sans: 'Montserrat', sans-serif;
    
    /* Layout Spacing */
    --container-width: 1200px;
    --header-height: 110px;
    --header-height-shrink: 85px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
}

/* 2. Global Resets & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-ivory);
    color: var(--color-charcoal);
    line-height: 1.65;
    font-size: 15px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Focus styles for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-sage);
    outline-offset: 4px;
}

/* Typography Details */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-charcoal);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
    opacity: 0.9;
}

p.text-muted {
    opacity: 0.65;
}

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

ul {
    list-style: none;
}

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

/* Utility Containers */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-double {
    padding: 120px 0;
}

.bg-white-contrast {
    background-color: var(--color-white);
}

.bg-charcoal {
    background-color: var(--color-charcoal);
}

.text-white {
    color: var(--color-white) !important;
}

.text-stone {
    color: var(--color-stone) !important;
}

.text-uppercase {
    text-transform: uppercase;
}

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

/* Section Header Typography Layout */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.sub-headline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    color: var(--color-sage);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 20px;
    font-weight: 600;
}

.section-description {
    font-size: 16px;
    opacity: 0.85;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Scroll Animation Hooks */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3. Header Styling */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(244, 242, 238, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(174, 168, 150, 0.15);
    z-index: 100;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

/* Shrink header state triggered by JS */
.site-header.header-scrolled {
    height: var(--header-height-shrink);
    background-color: rgba(244, 242, 238, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
}

/* Unified Vector Logo Styling */
.site-logo-svg {
    width: 105px;
    height: auto;
    display: block;
    color: var(--color-charcoal);
    transition: var(--transition-smooth);
}

/* Scroll shrink transformation for header logo */
.header-scrolled .site-logo-svg {
    width: 80px;
}

.logo-img-wrapper {
    display: block;
    height: 100px;
    width: 300px;
    border-radius: 0;
    overflow: visible;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: none;
}

.logo-img-wrapper .site-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    transform: none;
    transform-origin: center;
    transition: var(--transition-smooth);
}

/* Scroll shrink transformation for header logo image wrapper */
.header-scrolled .logo-img-wrapper {
    height: 75px;
    width: 220px;
}

/* Light text variation for footer */
.site-logo-svg.text-light {
    width: 150px;
    color: var(--color-ivory);
}

.logo-img-wrapper.text-light {
    height: 120px;
    width: 380px;
    margin-bottom: 30px;
    box-shadow: none;
}

/* Gym Link Details styling */
.location-context {
    font-size: 12px;
    font-style: italic;
    opacity: 0.85;
    display: block;
    margin-top: 8px;
}

.gym-link {
    color: var(--color-sage);
    font-weight: 500;
    text-decoration: underline;
    transition: var(--transition-fast);
}

.gym-link:hover {
    color: var(--color-charcoal);
}

.footer-gym-note {
    font-size: 12px;
    font-style: italic;
    opacity: 0.8;
    margin-top: 8px;
    display: block;
}

.footer-gym-note a {
    text-decoration: underline;
    color: var(--color-stone);
    transition: var(--transition-fast);
}

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

.desktop-nav {
    display: block;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--color-charcoal);
    padding: 8px 0;
    position: relative;
    opacity: 0.85;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-charcoal);
    transition: var(--transition-fast);
}

.nav-link:hover {
    opacity: 1;
}

.nav-link:hover::after,
.nav-link.active-link::after {
    width: 100%;
}

.nav-link.active-link {
    opacity: 1;
    font-weight: 600;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-header {
    padding: 10px 20px;
    background-color: var(--color-sage);
    color: var(--color-white);
    border: 1px solid var(--color-sage);
    font-size: 10px;
}

.btn-header:hover {
    background-color: var(--color-charcoal);
    border-color: var(--color-charcoal);
}

.btn-primary {
    background-color: var(--color-sage);
    color: var(--color-white);
    border: 1px solid var(--color-sage);
}

.btn-primary:hover {
    background-color: var(--color-charcoal);
    border-color: var(--color-charcoal);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-charcoal);
    border: 1px solid var(--color-stone);
}

.btn-secondary:hover {
    background-color: var(--color-charcoal);
    border-color: var(--color-charcoal);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 22px;
    font-size: 10px;
}

.btn-mobile-cta {
    background-color: var(--color-sage);
    color: var(--color-white);
    width: 100%;
    margin-top: 20px;
}

/* Hamburger button styling */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 110;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-charcoal);
    transition: var(--transition-smooth);
}

/* Hamburger active transformation */
.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-ivory);
    z-index: 95;
    padding: 120px 40px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

.mobile-nav[aria-hidden="false"] {
    transform: translateX(0);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(174, 168, 150, 0.2);
}

/* 4. Hero Section */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--color-ivory);
    overflow: hidden;
}

.hero-bg-diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(115deg, 
        transparent 0%, 
        transparent 45%, 
        rgba(94, 106, 90, 0.08) 45%, 
        rgba(94, 106, 90, 0.08) 55%, 
        transparent 55%
    );
    pointer-events: none;
    z-index: 1;
}

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

.hero-title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-charcoal);
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 6s ease;
}

.hero-image-container:hover .hero-img {
    transform: scale(1.05);
}

.hero-image-accent-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    background-color: rgba(94, 106, 90, 0.12);
    pointer-events: none;
}

/* 5. Benefits Strip */
.benefits-strip-section {
    background-color: var(--color-white);
    border-top: 1px solid rgba(174, 168, 150, 0.2);
    border-bottom: 1px solid rgba(174, 168, 150, 0.2);
    padding: 50px 0;
    position: relative;
    z-index: 5;
}

.benefits-container {
    gap: 0; /* Remove gap so borders align perfectly */
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 0 30px;
    border-right: 1px solid rgba(174, 168, 150, 0.3);
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-icon-wrapper {
    flex-shrink: 0;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.benefit-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    color: var(--color-charcoal);
}

.benefit-description {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.7;
    margin-bottom: 0;
}

/* 6. About / Welcome Section */
.grid-3-about {
    display: grid;
    grid-template-columns: 1.1fr 1.6fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-left-col {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.about-intro-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-btn-wrap {
    margin-top: 35px;
}

/* Middle Col: Focus Cards */
.grid-2-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.focus-card {
    background-color: var(--color-white);
    border: 1px solid rgba(174, 168, 150, 0.2);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.focus-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-sage);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.focus-card-img-wrapper {
    height: 180px;
    overflow: hidden;
}

.focus-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 4s ease;
}

.focus-card:hover .focus-card-img {
    transform: scale(1.06);
}

.focus-card-content {
    padding: 24px;
}

.focus-card-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.focus-card-desc {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.75;
    margin-bottom: 0;
}

/* Right Col: Quick Contact Details Snippet */
.contact-details-box {
    background-color: rgba(174, 168, 150, 0.08);
    border: 1px solid rgba(174, 168, 150, 0.25);
    padding: 30px;
    border-radius: 4px;
}

.contact-detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail-item:last-of-type {
    margin-bottom: 0;
}

.detail-icon {
    flex-shrink: 0;
}

.svg-detail-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.detail-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-sage);
}

.detail-value {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.85;
    margin-bottom: 0;
}

.contact-link:hover {
    color: var(--color-sage);
}

.divider-line {
    height: 1px;
    background-color: rgba(174, 168, 150, 0.25);
    margin: 25px 0;
}

.legal-registration-numbers {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.7;
}

.legal-registration-numbers p {
    margin-bottom: 6px;
}

.legal-registration-numbers p:last-child {
    margin-bottom: 0;
}

/* 7. Lead Therapist Profile Section (Updated for Team Collage) */
.grid-2-profile {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.profile-image-wrapper {
    position: relative;
    width: 100%;
}

.team-images-collage {
    position: relative;
    width: 100%;
    height: 520px;
    max-width: 480px;
    margin: 0 auto;
}

.collage-frame {
    position: absolute;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.collage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
    display: block;
}

/* Primary Frame (Indoor photo) */
.primary-frame {
    top: 0;
    left: 0;
    width: 78%;
    height: 410px;
    z-index: 2;
}

.primary-frame .collage-image-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(94, 106, 90, 0.04);
    pointer-events: none;
}

/* Secondary Frame (Outdoor photo) */
.secondary-frame {
    bottom: 0;
    right: 0;
    width: 68%;
    height: 350px;
    z-index: 1;
    border: 6px solid var(--color-white);
}

/* Collage Hover Interactions */
.collage-frame:hover {
    z-index: 5;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.collage-frame:hover .collage-image {
    filter: grayscale(0%);
}

/* Hovering one pushes the other to background */
.team-images-collage:hover .collage-frame:not(:hover) {
    opacity: 0.85;
}

.profile-divider {
    height: 1px;
    background-color: rgba(174, 168, 150, 0.2);
    margin: 35px 0;
}

.team-members-container {
    display: flex;
    flex-direction: column;
}

.team-member-card {
    margin-bottom: 10px;
}

.member-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-charcoal);
}

.member-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-stone);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.profile-role {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-stone);
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.profile-name {
    font-size: 32px;
    margin-bottom: 25px;
}

.profile-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--color-sage);
    border-left: 3px solid var(--color-stone);
    padding-left: 20px;
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.95;
}

.profile-text {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.specialties-badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.specialty-badge {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-sage);
    background-color: rgba(94, 106, 90, 0.06);
    border: 1px solid rgba(94, 106, 90, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* 8. Treatments/Services Section */
.treatments-section {
    background-color: var(--color-ivory);
}

.treatments-grid {
    margin-top: 20px;
}

.treatment-card {
    background-color: var(--color-white);
    border: 1px solid rgba(174, 168, 150, 0.2);
    border-radius: 4px;
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.treatment-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-sage);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.treatment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.treatment-number {
    font-size: 32px;
    font-weight: 300;
    color: var(--color-stone);
    opacity: 0.5;
}

.treatment-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(94, 106, 90, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-card-icon {
    width: 24px;
    height: 24px;
}

.treatment-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.treatment-desc {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.75;
    margin-bottom: 25px;
    flex-grow: 1;
}

.treatment-features {
    border-top: 1px solid rgba(174, 168, 150, 0.15);
    padding-top: 20px;
}

.treatment-features li {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.85;
    position: relative;
    padding-left: 18px;
}

.treatment-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-sage);
}

.treatment-features li:last-child {
    margin-bottom: 0;
}

/* 9. Approach Section */
.approach-section {
    position: relative;
    overflow: hidden;
}

.grid-2-approach {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.approach-intro-wrapper {
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.approach-lead-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.85;
}

.approach-visual-timeline {
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    width: 80%;
}

.approach-graphic-line {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.approach-graphic-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    transition: var(--transition-smooth);
}

.approach-graphic-dot.active {
    background-color: var(--color-stone);
    box-shadow: 0 0 0 6px rgba(174, 168, 150, 0.3);
}

.approach-steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-step {
    display: flex;
    gap: 30px;
    padding: 30px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.approach-step:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(174, 168, 150, 0.3);
}

.step-num-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(174, 168, 150, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-stone);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.approach-step:hover .step-num-badge {
    background-color: var(--color-stone);
    color: var(--color-charcoal);
    border-color: var(--color-stone);
}

.step-title {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 0;
}

/* 10. Contact Section */
.grid-2-contact {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-intro-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 45px;
    opacity: 0.85;
}

.opening-hours-box {
    background-color: rgba(174, 168, 150, 0.08);
    border: 1px solid rgba(174, 168, 150, 0.2);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.hours-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--color-charcoal);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(174, 168, 150, 0.2);
    padding-bottom: 8px;
}

.hours-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.hours-list .day {
    font-weight: 500;
}

.hours-list .time {
    opacity: 0.8;
}

/* Grayscale Map styles */
.map-wrapper {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(174, 168, 150, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.map-inner {
    height: 220px;
    width: 100%;
}

.google-map-iframe {
    filter: grayscale(100%) invert(3%) contrast(90%);
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.google-map-iframe:hover {
    filter: grayscale(0%) invert(0%) contrast(100%);
    opacity: 1;
}

/* Contact Form Container styling */
.form-container-box {
    background-color: var(--color-white);
    border: 1px solid rgba(174, 168, 150, 0.25);
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.form-title {
    font-size: 22px;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 35px;
}

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

.form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-charcoal);
    opacity: 0.8;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-charcoal);
    background-color: var(--color-ivory);
    border: 1px solid rgba(174, 168, 150, 0.3);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.form-control::placeholder {
    opacity: 0.45;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-sage);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(94, 106, 90, 0.12);
}

.select-control {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%235E6A5A' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
    cursor: pointer;
}

.textarea-control {
    resize: vertical;
}

.form-checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 30px;
    margin-bottom: 10px;
}

.form-checkbox {
    margin-top: 3px;
    accent-color: var(--color-sage);
    cursor: pointer;
}

.checkbox-label {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.8;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
}

/* Form Validation Errors */
.error-msg {
    display: none;
    color: var(--color-error);
    font-size: 11px;
    margin-top: 5px;
    font-weight: 500;
}

.form-group.has-error .form-control {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.08);
}

.form-group.has-error .error-msg {
    display: block;
}

#consent-error {
    color: var(--color-error);
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Form Success Overlay Popup */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 10;
}

.form-success-overlay.show-success {
    opacity: 1;
    pointer-events: auto;
}

.success-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 20px rgba(94, 106, 90, 0.15);
}

.success-svg {
    width: 32px;
    height: 32px;
}

.success-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.success-message {
    font-size: 14px;
    opacity: 0.8;
    max-width: 380px;
    margin: 0 auto 30px auto;
    line-height: 1.7;
}

/* 11. Footer Section */
.site-footer {
    background-color: var(--color-charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    display: none;
}
.footer-logos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hb-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.footer-brand-statement {
    font-size: 13px;
    font-style: italic;
    opacity: 0.65;
    max-width: 360px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-social-wrapper {
    display: flex;
    gap: 15px;
}

.social-icon-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(174, 168, 150, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-link:hover {
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.svg-social {
    width: 18px;
    height: 18px;
}

.footer-col-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 25px;
    color: var(--color-stone);
    font-weight: 600;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    font-size: 13px;
    opacity: 0.65;
}

.footer-links-list a:hover {
    opacity: 1;
    color: var(--color-stone);
    padding-left: 4px;
}

.footer-contact-info {
    font-size: 13px;
    color: rgba(244, 242, 238, 0.82);
    opacity: 1;
    margin-bottom: 10px;
}

.footer-contact-info a {
    color: rgba(244, 242, 238, 0.82);
    text-decoration: none;
}

.footer-contact-info a:hover {
    color: #F4F2EE;
}

.footer-bottom-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 30px;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 22px 40px;
}

.copyright-text {
    font-size: 12px;
    opacity: 0.45;
    margin-bottom: 0;
}

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

.footer-legal-links a {
    font-size: 12px;
    opacity: 0.45;
}

.footer-legal-links a:hover {
    opacity: 0.85;
    color: var(--color-stone);
}

/* 11a. Tarieven Section */
.tarieven-section {
    background-color: var(--color-white);
}

.tarieven-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 40px;
}

.tarieven-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
    min-width: 600px;
}

.tarieven-table th, 
.tarieven-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(174, 168, 150, 0.2);
}

.tarieven-table th {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-sage);
    font-weight: 600;
    border-bottom: 2px solid var(--color-sage);
}

.tarieven-table tr {
    transition: var(--transition-fast);
}

.tarieven-table tr:hover {
    background-color: rgba(244, 242, 238, 0.4);
}

.tarieven-code {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-stone);
}

.tarieven-price {
    font-weight: 600;
    color: var(--color-charcoal);
    text-align: right;
}

.tarieven-note-box {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--color-ivory);
    border-left: 3px solid var(--color-stone);
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.95;
}

/* 11b. Vergoeding Section */
.vergoeding-section {
    background-color: var(--color-ivory);
}

.grid-2-vergoeding {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.vergoeding-text-box {
    background-color: var(--color-white);
    border: 1px solid rgba(174, 168, 150, 0.2);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.vergoeding-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--color-charcoal);
    font-weight: 500;
}

.vergoeding-list {
    margin-top: 25px;
}

.vergoeding-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.vergoeding-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%235E6A5A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><polyline points='20 6 9 17 4 12'></polyline></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}

.vergoeding-list li strong {
    color: var(--color-charcoal);
}

.vergoeding-contact-note {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.vergoeding-contact-note a {
    color: var(--color-sage);
    text-decoration: underline;
    font-weight: 500;
}
.vergoeding-contact-note a:hover {
    color: var(--color-charcoal);
}

/* 12. Media Queries & Responsive Design */

/* Large Tablets & Small Desktops */
@media (max-width: 1100px) {
    .grid-3-about {
        grid-template-columns: 1.2fr 1.8fr;
        gap: 40px;
    }
    .about-right-col {
        grid-column: span 2;
    }
    .contact-details-box {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .contact-details-box .divider-line,
    .contact-details-box .legal-registration-numbers {
        grid-column: span 3;
    }
    .contact-details-box .divider-line {
        margin: 15px 0;
    }
    .contact-details-box .contact-detail-item {
        margin-bottom: 0;
    }
}

/* Tablets (Portrait) */
@media (max-width: 900px) {
    :root {
        --header-height: 80px;
    }
    
    .section-padding {
        padding: 70px 0;
    }

    .section-padding-double {
        padding: 80px 0;
    }

    .grid-2, .grid-2-vergoeding {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Header Nav hidden in drawer */
    .desktop-nav, .header-cta {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    /* Hero section adjust */
    .hero-section {
        padding-top: calc(var(--header-height) + 30px);
        padding-bottom: 60px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image-container {
        height: 380px;
        clip-path: none;
    }
    .hero-image-accent-border {
        display: none;
    }

    /* Benefits Strip column stacked */
    .benefits-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px 0;
    }
    .benefit-item {
        border-right: none;
        border-bottom: 1px solid rgba(174, 168, 150, 0.15);
        padding-bottom: 20px;
    }
    .benefit-item:nth-child(even) {
        border-left: 1px solid rgba(174, 168, 150, 0.15);
        padding-left: 30px;
        border-bottom: 1px solid rgba(174, 168, 150, 0.15);
    }
    .benefit-item:nth-child(3),
    .benefit-item:nth-child(4) {
        border-bottom: none;
        padding-bottom: 0;
        margin-top: 15px;
    }

    /* Welcome / About columns */
    .grid-3-about {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-left-col {
        position: static;
    }
    .about-right-col {
        grid-column: span 1;
    }
    .contact-details-box {
        grid-template-columns: 1fr;
    }
    .contact-details-box .divider-line,
    .contact-details-box .legal-registration-numbers {
        grid-column: span 1;
    }
    .contact-details-box .contact-detail-item {
        margin-bottom: 20px;
    }

    /* Profile Column adjust */
    .grid-2-profile {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .team-images-collage {
        height: 420px;
        max-width: 380px;
    }
    .primary-frame {
        width: 75%;
        height: 320px;
    }
    .secondary-frame {
        width: 65%;
        height: 270px;
    }

    /* Approach Grid adjust */
    .grid-2-approach {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .approach-intro-wrapper {
        position: static;
    }
    .approach-visual-timeline {
        display: none;
    }

    /* Contact Grid adjust */
    .grid-2-contact {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Footer Col Grid adjust */
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-col-brand {
        grid-column: span 2;
    }
}

/* Small Screens / Mobile Phones */
@media (max-width: 580px) {
    :root {
        --header-height: 70px;
    }

    body {
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    /* Benefits Strip simple stack */
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .benefit-item,
    .benefit-item:nth-child(even) {
        border-left: none;
        border-right: none;
        border-bottom: 1px solid rgba(174, 168, 150, 0.15);
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 15px;
    }
    .benefit-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    /* About cards column */
    .grid-2-cards {
        grid-template-columns: 1fr;
    }

    .form-container-box, .vergoeding-text-box {
        padding: 30px 20px;
    }

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

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-col-brand {
        grid-column: span 1;
    }

    .footer-bottom-strip {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}
/* =======================================================
   Legal pages
======================================================= */

.legal-page {
    background-color: var(--color-ivory);
    padding: 120px 0;
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 35px;
    color: var(--color-charcoal);
    font-weight: 500;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 42px;
    margin-bottom: 16px;
    color: var(--color-sage);
    font-weight: 500;
}

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-charcoal);
    margin-bottom: 18px;
}

.legal-page a {
    color: var(--color-sage);
    font-weight: 500;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}
/* Emergency visibility fix */
.fade-in-section {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Floating WhatsApp button */
.whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(22, 35, 40, 0.22);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-button svg {
    width: 31px;
    height: 31px;
    fill: #FFFFFF;
}

.whatsapp-button:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 30px rgba(22, 35, 40, 0.28);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: var(--color-charcoal);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

.whatsapp-button:hover .whatsapp-tooltip,
.whatsapp-button:focus-visible .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 600px) {
    .whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-button svg {
        width: 29px;
        height: 29px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Google Reviews section */
.google-reviews-section {
    padding: 56px 0;
    background-color: var(--color-white);
    border-top: 1px solid rgba(174, 168, 150, 0.22);
}

.google-reviews-container {
    display: grid;
    grid-template-columns: 1.1fr 0.65fr 1fr auto;
    gap: 34px;
    align-items: center;
}

.google-reviews-heading {
    min-width: 0;
}

.google-reviews-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.google-reviews-title {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.google-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(174, 168, 150, 0.45);
    color: var(--color-sage);
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.google-reviews-rating {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-left: 28px;
    border-left: 1px solid rgba(174, 168, 150, 0.35);
}

.google-stars,
.featured-review-stars {
    color: #E2A900;
    letter-spacing: 3px;
    line-height: 1;
}

.google-stars {
    font-size: 22px;
}

.google-score {
    margin: 0 0 4px;
    font-size: 24px;
    font-weight: 600;
    opacity: 1;
}

.google-review-count {
    margin: 0;
    font-size: 12px;
    opacity: 0.72;
}

.featured-review {
    padding: 22px 24px;
    background-color: var(--color-ivory);
    border: 1px solid rgba(94, 106, 90, 0.18);
    border-left: 3px solid var(--color-sage);
    border-radius: 4px;
}

.featured-review-stars {
    font-size: 15px;
    margin-bottom: 12px;
}

.featured-review blockquote {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-charcoal);
}

.featured-review-author {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-sage);
}

.google-reviews-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 205px;
}

.google-reviews-actions .btn {
    width: 100%;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .google-reviews-container {
        grid-template-columns: 1fr 1fr;
    }

    .google-reviews-heading,
    .featured-review {
        grid-column: 1 / -1;
    }

    .google-reviews-rating {
        padding-left: 0;
        border-left: 0;
    }

    .google-reviews-actions {
        justify-self: end;
    }
}

@media (max-width: 600px) {
    .google-reviews-section {
        padding: 48px 0;
    }

    .google-reviews-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .google-reviews-heading,
    .featured-review {
        grid-column: auto;
    }

    .google-reviews-title {
        font-size: 2rem;
    }

    .google-reviews-title-row {
        align-items: flex-start;
    }

    .google-reviews-rating {
        align-items: flex-start;
    }

    .google-reviews-actions {
        width: 100%;
        justify-self: stretch;
    }
}

/* Local SEO label in hero */
.hero-local-label {
    margin-bottom: 18px;
}



/* -------------------------------------------------------------
   TREATMENT DETAIL PAGES
   Reusable layout: Dry Needling and future condition pages
   ------------------------------------------------------------- */
.treatment-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--color-primary, #5E6A5A);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: gap .25s ease, opacity .25s ease;
}
.treatment-more-link:hover { gap: 12px; opacity: .78; }

.treatment-detail-page { background: #fff; color: #2f352f; }
.treatment-detail-page main { overflow: clip; }
.treatment-detail-page .site-header .nav-link.active-link::after { width: 100%; }

.detail-hero {
    position: relative;
    padding: 150px 0 92px;
    background: linear-gradient(135deg, #F4F2EE 0%, #fff 72%);
}
.detail-hero::after {
    content: "";
    position: absolute;
    top: -24%;
    right: -14%;
    width: 48%;
    height: 130%;
    background: rgba(94,106,90,.06);
    transform: skewX(-18deg);
}
.detail-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    gap: clamp(44px, 7vw, 100px);
    align-items: center;
}
.detail-breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; color: #747b74; font-size: 12px; }
.detail-breadcrumb a { color: #5E6A5A; text-decoration: none; }
.detail-hero h1 { max-width: 760px; margin: 13px 0 22px; color: #485345; font-size: clamp(43px, 6vw, 76px); font-weight: 500; line-height: 1.04; letter-spacing: -.045em; }
.detail-lead { max-width: 690px; margin: 0; color: #697169; font-size: clamp(17px,2vw,21px); line-height: 1.75; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.detail-hero-image { position: relative; }
.detail-hero-image::before { content:""; position:absolute; inset:22px -22px -22px 22px; border:1px solid #5E6A5A; z-index:-1; }
.detail-hero-image img { display:block; width:100%; min-height:520px; object-fit:cover; box-shadow:0 18px 50px rgba(39,51,42,.10); }

.detail-trust { background:#5E6A5A; color:#F4F2EE; }
.detail-trust-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.detail-trust-grid span { padding:25px 22px; text-align:center; font-size:12px; letter-spacing:.04em; border-right:1px solid rgba(255,255,255,.18); }
.detail-trust-grid span:last-child { border-right:0; }

.detail-content { padding:105px 0; }
.detail-layout { display:grid; grid-template-columns:240px minmax(0,820px); gap:clamp(52px,8vw,120px); justify-content:center; align-items:start; }
.detail-toc { position:sticky; top:110px; padding:26px; border:1px solid rgba(94,106,90,.18); background:#F4F2EE; }
.detail-toc-title { margin:0 0 14px; color:#485345; font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:.08em; }
.detail-toc a { display:block; padding:8px 0; color:#697169; font-size:13px; text-decoration:none; border-bottom:1px solid rgba(94,106,90,.1); }
.detail-toc a:hover { color:#5E6A5A; }
.detail-block { padding:0 0 78px; margin:0 0 78px; border-bottom:1px solid rgba(94,106,90,.18); scroll-margin-top:110px; }
.detail-block:last-child { margin-bottom:0; }
.detail-kicker { display:block; margin-bottom:12px; color:#5E6A5A; font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; }
.detail-block h2 { margin:0 0 24px; color:#485345; font-size:clamp(30px,4vw,47px); font-weight:500; line-height:1.12; letter-spacing:-.025em; }
.detail-block h3 { color:#485345; font-size:18px; font-weight:600; }
.detail-block p { color:#697169; font-size:16px; line-height:1.8; }
.detail-highlight { margin-top:30px; padding:24px 28px; border-left:4px solid #5E6A5A; background:#F4F2EE; line-height:1.75; }
.detail-highlight strong { color:#485345; }
.detail-grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:32px; }
.detail-mini-card { padding:22px; border:1px solid rgba(94,106,90,.18); }
.detail-mini-card strong { display:block; margin-bottom:8px; color:#485345; }
.detail-mini-card span { color:#697169; font-size:13px; }
.detail-info-card { padding:25px; background:#F4F2EE; }
.detail-info-card h3 { margin:0 0 8px; }
.detail-info-card p { margin:0; font-size:14px; }
.detail-philosophy { margin-top:38px; padding:clamp(28px,5vw,48px); color:#F4F2EE; background:#5E6A5A; }
.detail-philosophy > span { font-size:11px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; }
.detail-philosophy h3 { margin:12px 0; color:#fff; font-size:clamp(24px,3vw,34px); line-height:1.25; }
.detail-philosophy p { margin:0; color:rgba(255,255,255,.82); }
.detail-condition-list { display:grid; grid-template-columns:repeat(2,1fr); margin-top:34px; border-top:1px solid rgba(94,106,90,.18); }
.detail-condition-list > div { padding:28px 26px; border-right:1px solid rgba(94,106,90,.18); border-bottom:1px solid rgba(94,106,90,.18); }
.detail-condition-list > div:nth-child(even) { border-right:0; }
.detail-condition-list h3 { margin:0 0 10px; }
.detail-condition-list p { margin:0; font-size:14px; }
.detail-timeline { padding:0; margin:38px 0 0; list-style:none; }
.detail-timeline li { position:relative; display:grid; grid-template-columns:68px 1fr; gap:24px; padding:0 0 34px; }
.detail-timeline li::before { content:""; position:absolute; left:28px; top:52px; bottom:0; width:1px; background:rgba(94,106,90,.18); }
.detail-timeline li:last-child::before { display:none; }
.detail-timeline li > span { display:grid; place-items:center; width:56px; height:56px; border-radius:50%; color:#fff; background:#5E6A5A; font-size:12px; }
.detail-timeline h3 { margin:5px 0 7px; }
.detail-timeline p { margin:0; }
.detail-comparison { margin-top:32px; border:1px solid rgba(94,106,90,.18); }
.detail-comparison > div { display:grid; grid-template-columns:1fr 1fr; }
.detail-comparison > div > * { padding:18px 22px; border-bottom:1px solid rgba(94,106,90,.18); }
.detail-comparison > div > *:first-child { border-right:1px solid rgba(94,106,90,.18); }
.detail-comparison-head { color:#fff; background:#5E6A5A; }
.detail-comparison-head strong { color:#fff; }
.detail-comparison span { color:#697169; font-size:14px; }
.detail-faq { margin-top:30px; border-top:1px solid rgba(94,106,90,.18); }
.detail-faq details { border-bottom:1px solid rgba(94,106,90,.18); }
.detail-faq summary { position:relative; cursor:pointer; padding:23px 45px 23px 0; color:#485345; font-weight:600; list-style:none; }
.detail-faq summary::-webkit-details-marker { display:none; }
.detail-faq summary::after { content:"+"; position:absolute; right:4px; top:18px; color:#5E6A5A; font-size:26px; font-weight:300; }
.detail-faq details[open] summary::after { content:"–"; }
.detail-faq details p { max-width:720px; margin:-4px 0 23px; }
.detail-final-cta { padding:90px 0; background:#F4F2EE; }
.detail-final-cta-inner { display:flex; justify-content:space-between; align-items:center; gap:50px; }
.detail-final-cta h2 { max-width:700px; margin:10px 0 12px; color:#485345; font-size:clamp(31px,4vw,48px); font-weight:500; line-height:1.15; }
.detail-final-cta p { margin:0; color:#697169; }

@media (max-width: 980px) {
    .detail-hero { padding-top:120px; }
    .detail-hero-grid { grid-template-columns:1fr; }
    .detail-hero-image img { min-height:380px; }
    .detail-trust-grid { grid-template-columns:repeat(2,1fr); }
    .detail-trust-grid span:nth-child(2) { border-right:0; }
    .detail-trust-grid span:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.18); }
    .detail-layout { grid-template-columns:1fr; }
    .detail-toc { position:static; }
    .detail-final-cta-inner { align-items:flex-start; flex-direction:column; }
}
@media (max-width: 640px) {
    .detail-hero { padding:105px 0 60px; }
    .detail-hero-image::before { inset:12px -10px -12px 10px; }
    .detail-hero-image img { min-height:300px; }
    .detail-actions { flex-direction:column; align-items:stretch; }
    .detail-actions .btn { text-align:center; }
    .detail-trust-grid, .detail-grid-2, .detail-condition-list { grid-template-columns:1fr; }
    .detail-trust-grid span { border-right:0; border-bottom:1px solid rgba(255,255,255,.18); }
    .detail-content { padding:70px 0; }
    .detail-block { padding-bottom:58px; margin-bottom:58px; }
    .detail-condition-list > div { border-right:0; }
    .detail-comparison > div { grid-template-columns:1fr; }
    .detail-comparison > div > *:first-child { border-right:0; }
    .detail-comparison > div > *:last-child { padding-top:0; }
    .detail-comparison-head > *:last-child { padding-top:18px; }
}


/* Rugpijn page and homepage complaints hub */
.complaints-section{background:#F4F2EE}.complaints-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}.complaint-card{display:grid;grid-template-columns:42% 1fr;min-height:270px;background:#fff;border:1px solid rgba(94,106,90,.16);text-decoration:none;overflow:hidden;transition:transform .25s ease,border-color .25s ease}.complaint-card:hover{transform:translateY(-4px);border-color:#5E6A5A}.complaint-card img{width:100%;height:100%;object-fit:cover}.complaint-card>div:last-child{padding:30px}.complaint-card span{display:block;margin-bottom:10px;color:#5E6A5A;font-size:11px;font-weight:600;letter-spacing:.1em;text-transform:uppercase}.complaint-card h3{margin:0 0 12px;color:#485345;font-size:24px}.complaint-card p{margin:0 0 18px;color:#697169;line-height:1.65}.complaint-card strong{color:#5E6A5A;font-size:13px}.complaint-card.muted{grid-template-columns:120px 1fr;background:rgba(255,255,255,.55)}.complaint-placeholder{display:grid!important;place-items:center;padding:0!important;background:#E5E7DF;color:#5E6A5A;font-size:42px!important;font-weight:300!important}.pain-source-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:34px}.pain-source-card{border:1px solid rgba(94,106,90,.18);background:#fff}.pain-source-card img{display:block;width:100%;aspect-ratio:5/3;object-fit:cover;border-bottom:1px solid rgba(94,106,90,.14)}.pain-source-card div{padding:22px}.pain-source-card h3{margin:0 0 10px}.pain-source-card p{margin:0;font-size:14px}.urgent-card{border-left:4px solid #5E6A5A}.source-note{margin-top:28px!important;font-size:13px!important;color:#7b817b!important}.rug-hero .detail-hero-image img{background:#F4F2EE;object-fit:contain;padding:0}.rug-hero .detail-hero-image::before{background:#AEA896}
@media(max-width:900px){.complaints-grid,.pain-source-grid{grid-template-columns:1fr}.complaint-card{grid-template-columns:38% 1fr}.pain-source-card{display:grid;grid-template-columns:220px 1fr}.pain-source-card img{height:100%;aspect-ratio:auto;border-bottom:0;border-right:1px solid rgba(94,106,90,.14)}}
@media(max-width:640px){.complaint-card,.complaint-card.muted,.pain-source-card{grid-template-columns:1fr}.complaint-card img{height:210px}.complaint-card.muted{display:block}.complaint-placeholder{height:110px}.pain-source-card img{height:auto;border-right:0;border-bottom:1px solid rgba(94,106,90,.14)}}



/* Nekpijn cornerstone page */
.neck-hero .detail-hero-image img{background:#F4F2EE;object-fit:contain}.neck-hero .detail-hero-image::before{background:#AEA896}.neck-hero-question{margin:-6px 0 18px;color:#5E6A5E;font-size:clamp(22px,3vw,34px);font-weight:500;letter-spacing:-.02em}.neck-recognition-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:34px}.neck-recognition-grid>div{position:relative;padding:28px;border:1px solid rgba(94,106,90,.18);background:#fff}.neck-recognition-grid span,.neck-selfcare span{display:block;margin-bottom:18px;color:#AEA896;font-size:12px;font-weight:600;letter-spacing:.12em}.neck-recognition-grid h3{margin:0 0 9px}.neck-recognition-grid p{margin:0;font-size:14px}.neck-visual-panel{display:grid;grid-template-columns:1.1fr .9fr;gap:34px;align-items:center;margin-top:38px;padding:30px;background:#F4F2EE}.neck-visual-panel img{width:100%;height:auto}.neck-visual-panel h3{margin:0 0 12px;font-size:24px}.neck-visual-panel p{margin:0}.neck-quote{margin:36px 0 0;padding:32px 38px;border:0;border-left:4px solid #5E6A5E;background:#5E6A5E;color:#F4F2EE;font-size:clamp(21px,3vw,30px);line-height:1.45;font-weight:400}.neck-source-grid{display:grid;gap:22px;margin-top:36px}.neck-source-grid article{display:grid;grid-template-columns:250px 1fr;border:1px solid rgba(94,106,90,.18);background:#fff}.neck-source-grid img{width:100%;height:100%;object-fit:cover;border-right:1px solid rgba(94,106,90,.14)}.neck-source-grid article>div{padding:28px}.neck-source-grid h3{margin:0 0 13px;font-size:21px}.neck-source-grid ul,.neck-check-list{padding:0;margin:0 0 18px;list-style:none}.neck-source-grid li,.neck-check-list li{position:relative;padding:7px 0 7px 24px;color:#697169;line-height:1.55}.neck-source-grid li::before,.neck-check-list li::before{content:'✓';position:absolute;left:0;color:#5E6A5E;font-weight:700}.neck-source-grid p{margin:0;font-size:14px}.neck-split{display:grid;grid-template-columns:1fr .9fr;gap:44px;align-items:center}.neck-split img{width:100%;border:1px solid rgba(94,106,90,.16)}.neck-myth-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin:32px 0}.neck-myth-grid article{padding:27px;border:1px solid rgba(94,106,90,.18)}.neck-myth-grid article:nth-child(even){background:#F4F2EE}.neck-myth-grid span{color:#5E6A5E;font-size:11px;font-weight:700;letter-spacing:.12em}.neck-myth-grid h3{margin:10px 0 8px}.neck-myth-grid p{margin:0;font-size:14px}.neck-statement{margin-top:34px;padding:38px;text-align:center;background:#F4F2EE}.neck-statement p{margin:0 0 8px;font-size:18px}.neck-statement strong{display:block;color:#485345;font-size:clamp(24px,3vw,36px);font-weight:500}.neck-case{margin-top:38px;padding:36px;border:1px solid rgba(94,106,90,.18);background:#F4F2EE}.neck-case>span{color:#5E6A5E;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase}.neck-case h3{margin:12px 0}.neck-case p{margin:0 0 12px}.neck-case small{color:#7b817b}.neck-selfcare{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:30px}.neck-selfcare article{padding:28px;border:1px solid rgba(94,106,90,.18);background:#fff}.neck-selfcare h3{margin:0 0 9px}.neck-selfcare p{margin:0;font-size:14px}.neck-signature{display:block;margin-top:18px;color:#5E6A5E;font-size:18px;font-weight:600}.neck-final{background:linear-gradient(135deg,#F4F2EE 0%,#e8ebe5 100%)}
@media(max-width:980px){.neck-source-grid article{grid-template-columns:210px 1fr}.neck-split,.neck-visual-panel{grid-template-columns:1fr}.neck-split img{max-width:650px}.neck-selfcare{grid-template-columns:1fr}}
@media(max-width:640px){.neck-recognition-grid,.neck-myth-grid{grid-template-columns:1fr}.neck-source-grid article{grid-template-columns:1fr}.neck-source-grid img{height:auto;border-right:0;border-bottom:1px solid rgba(94,106,90,.14)}.neck-visual-panel{padding:22px}.neck-quote{padding:25px}.neck-statement{padding:28px 22px}}


/* === Nekpijn V3: storytelling + clinical depth === */
.neck-v3{background:#fff}.neck-v3 .site-header{background:rgba(255,255,255,.96)}
.v3-hero{position:relative;padding:145px 0 92px;background:linear-gradient(135deg,#fff 0%,#f7f5f1 62%,#ecefe9 100%);overflow:hidden}.v3-hero:after{content:"";position:absolute;width:520px;height:520px;border-radius:50%;right:-220px;top:-190px;background:rgba(94,106,90,.07)}
.v3-hero-grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(400px,.95fr);gap:70px;align-items:center;position:relative;z-index:1}.v3-hero h1{margin:15px 0 26px;color:#485345;font-size:clamp(46px,5.7vw,76px);font-weight:500;line-height:1.03;letter-spacing:-.048em}.v3-hero h1 em{font-style:normal;color:#5E6A5E}.v3-lead{max-width:720px;margin:0 0 31px;color:#687168;font-size:18px;line-height:1.75}.v3-hero-art{position:relative;padding:30px;background:#F4F2EE;border:1px solid rgba(94,106,90,.17)}.v3-hero-art:before{content:"";position:absolute;inset:20px -20px -20px 20px;border:1px solid #AEA896;z-index:-1}.v3-hero-art img{display:block;width:100%;height:auto}.v3-trust-inline{display:flex;flex-wrap:wrap;gap:11px 24px;margin-top:30px;color:#5E6A5E;font-size:12px;font-weight:600}.v3-trust-inline span:before{content:'✓';margin-right:7px}
.v3-reassure{padding:88px 0;background:#5E6A5E;color:#F4F2EE;text-align:center}.v3-reassure .detail-kicker{color:#d9d8ce}.v3-reassure h2{max-width:900px;margin:12px auto 19px;color:#fff;font-size:clamp(31px,4.3vw,51px);font-weight:500;line-height:1.16;letter-spacing:-.03em}.v3-reassure p{max-width:790px;margin:auto;color:rgba(255,255,255,.82);font-size:17px;line-height:1.8}.v3-narrow{max-width:920px}
.v3-section{padding:105px 0}.v3-alt{background:#F4F2EE}.v3-section-head{max-width:820px;margin-bottom:55px}.v3-section-head h2,.v3-two-col h2{margin:10px 0 18px;color:#485345;font-size:clamp(34px,4.5vw,54px);font-weight:500;line-height:1.12;letter-spacing:-.035em}.v3-section-head p,.v3-two-col p{color:#687168;font-size:17px;line-height:1.8}.v3-recognition{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.v3-recognition article{padding:30px 25px;border-top:2px solid #5E6A5E;background:#F8F7F4}.v3-recognition span,.v3-selfcare span{display:block;margin-bottom:25px;color:#AEA896;font-size:12px;font-weight:700;letter-spacing:.12em}.v3-recognition h3{margin:0 0 10px;color:#485345;font-size:20px}.v3-recognition p{margin:0;color:#687168;line-height:1.65}.v3-quote{max-width:900px;margin:55px auto 0;padding:0;border:0;text-align:center;color:#5E6A5E;font-size:clamp(25px,3.4vw,39px);font-weight:400;line-height:1.45}
.v3-mechanism{display:grid;grid-template-columns:minmax(300px,.85fr) minmax(0,1.15fr);gap:70px;align-items:center;padding:64px 0;border-top:1px solid rgba(94,106,90,.18)}.v3-mechanism.reverse .v3-mechanism-art{order:2}.v3-mechanism-art{padding:30px;background:#fff;border:1px solid rgba(94,106,90,.15)}.v3-mechanism-art img{display:block;width:100%;height:auto}.v3-mechanism-copy h3{margin:10px 0 17px;color:#485345;font-size:clamp(27px,3.2vw,40px);font-weight:500;line-height:1.2}.v3-mechanism-copy p{color:#687168;font-size:16px;line-height:1.78}.v3-mechanism-copy ul,.v3-feature-grid ul,.v3-redflags{padding:0;margin:22px 0;list-style:none}.v3-mechanism-copy li,.v3-feature-grid li,.v3-redflags li{position:relative;padding:7px 0 7px 25px;color:#687168;line-height:1.55}.v3-mechanism-copy li:before,.v3-feature-grid li:before,.v3-redflags li:before{content:'✓';position:absolute;left:0;color:#5E6A5E;font-weight:700}.v3-insight{margin-top:25px;padding:21px 24px;border-left:3px solid #5E6A5E;background:#fff;color:#687168;line-height:1.65}.v3-insight strong{color:#485345}
.v3-feature-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}.v3-feature-grid article{overflow:hidden;border:1px solid rgba(94,106,90,.16);background:#fff}.v3-feature-grid img{display:block;width:100%;aspect-ratio:16/10;object-fit:contain;background:#F4F2EE;border-bottom:1px solid rgba(94,106,90,.14)}.v3-feature-grid article>div{padding:32px}.v3-feature-grid h3{margin:0 0 13px;color:#485345;font-size:27px;font-weight:500}.v3-feature-grid p{color:#687168;line-height:1.75}
.v3-two-col{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:start}.v3-myth{margin-top:28px;padding:27px;border-left:4px solid #5E6A5E;background:#fff;color:#485345;font-size:20px;line-height:1.55}.v3-practical{display:grid;grid-template-columns:1fr 1fr;gap:16px}.v3-practical article{padding:25px;background:#fff;border:1px solid rgba(94,106,90,.14)}.v3-practical h3{margin:0 0 8px;color:#485345;font-size:18px}.v3-practical p{margin:0;font-size:14px;line-height:1.6}
.v3-method{display:grid;grid-template-columns:repeat(4,1fr);gap:0;padding:0;margin:0;list-style:none;border:1px solid rgba(94,106,90,.18)}.v3-method li{padding:34px 28px;border-right:1px solid rgba(94,106,90,.18)}.v3-method li:last-child{border-right:0}.v3-method span{display:block;color:#AEA896;font-size:12px;font-weight:700;letter-spacing:.12em}.v3-method h3{margin:25px 0 10px;color:#485345;font-size:21px}.v3-method p{margin:0;color:#687168;line-height:1.65}.v3-statement{margin-top:48px;padding:42px;text-align:center;background:#5E6A5E;color:#fff}.v3-statement span{display:block;margin-bottom:8px;color:rgba(255,255,255,.7)}.v3-statement strong{display:block;font-size:clamp(25px,3.5vw,41px);font-weight:500}
.v3-treatment-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.v3-treatment-grid article{padding:28px;border:1px solid rgba(94,106,90,.16);background:#fff}.v3-treatment-grid h3{margin:0 0 10px;color:#485345;font-size:19px}.v3-treatment-grid p{margin:0;color:#687168;line-height:1.65}.v3-case{max-width:900px;margin:50px auto 0;padding:38px;background:#fff;border:1px solid rgba(94,106,90,.17)}.v3-case h3{margin:12px 0;color:#485345;font-size:27px}.v3-case p{color:#687168;line-height:1.8}.v3-case small{color:#7b817b}
.v3-safety h3{margin:17px 0;color:#485345;font-size:24px}.v3-redflags{margin-top:16px}.v3-selfcare{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.v3-selfcare article{padding:32px;background:#fff;border-top:2px solid #5E6A5E}.v3-selfcare h3{margin:0 0 10px;color:#485345;font-size:21px}.v3-selfcare p{margin:0;color:#687168;line-height:1.65}.v3-final{padding:95px 0;background:linear-gradient(135deg,#e9ece6 0%,#F4F2EE 72%)}.v3-final-inner{display:flex;align-items:center;justify-content:space-between;gap:55px}.v3-final h2{margin:10px 0 14px;color:#485345;font-size:clamp(37px,4.7vw,57px);font-weight:500;letter-spacing:-.035em}.v3-final p{max-width:720px;color:#687168;line-height:1.75}.v3-final strong{display:block;margin-top:19px;color:#5E6A5E;font-size:18px}
@media(max-width:1000px){.v3-hero-grid{grid-template-columns:1fr;gap:50px}.v3-hero-art{max-width:700px}.v3-recognition{grid-template-columns:repeat(2,1fr)}.v3-mechanism,.v3-two-col{grid-template-columns:1fr;gap:38px}.v3-mechanism.reverse .v3-mechanism-art{order:0}.v3-method{grid-template-columns:repeat(2,1fr)}.v3-method li:nth-child(2){border-right:0}.v3-method li:nth-child(-n+2){border-bottom:1px solid rgba(94,106,90,.18)}.v3-treatment-grid{grid-template-columns:repeat(2,1fr)}.v3-final-inner{align-items:flex-start;flex-direction:column}}
@media(max-width:680px){.v3-hero{padding:112px 0 70px}.v3-hero h1{font-size:42px}.v3-hero-art{padding:14px}.v3-hero-art:before{inset:10px -9px -10px 9px}.v3-section,.v3-reassure,.v3-final{padding:72px 0}.v3-recognition,.v3-feature-grid,.v3-practical,.v3-treatment-grid,.v3-selfcare,.v3-method{grid-template-columns:1fr}.v3-method li{border-right:0;border-bottom:1px solid rgba(94,106,90,.18)!important}.v3-method li:last-child{border-bottom:0!important}.v3-mechanism{padding:45px 0}.v3-mechanism-art{padding:16px}.v3-feature-grid article>div,.v3-case{padding:25px}.v3-statement{padding:30px 20px}.v3-trust-inline{display:grid}}

/* Nekpijn photo edition — realistic imagery replaces the former SVG set */
.photo-version .v3-hero-art,
.photo-version .v3-mechanism-art,
.photo-version .v3-feature-card > img {
  overflow: hidden;
  background: #ecebe7;
}

.photo-version .v3-hero-art img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-version .v3-mechanism-art img {
  width: 100%;
  height: clamp(290px, 34vw, 480px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-version .v3-feature-card > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-version .v3-feature-card:first-child > img {
  object-position: 50% 28%;
}

.photo-version .v3-feature-card:last-child > img {
  object-position: 50% 22%;
}

@media (max-width: 900px) {
  .photo-version .v3-hero-art img {
    min-height: 360px;
  }
  .photo-version .v3-mechanism-art img {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .photo-version .v3-hero-art img {
    min-height: 300px;
  }
  .photo-version .v3-feature-card > img {
    height: 280px;
  }
}

/* Alianza monochrome anatomy set — compact editorial presentation */
.photo-version .v3-hero-art {
  max-width: 520px;
  justify-self: end;
  padding: 18px;
  background: #F4F2EE;
}
.photo-version .v3-hero-art img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}
.photo-version .v3-mechanism {
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 58px;
}
.photo-version .v3-mechanism-art {
  width: 100%;
  max-width: 360px;
  justify-self: center;
  padding: 14px;
  background: #F4F2EE;
}
.photo-version .v3-mechanism-art img {
  width: 100%;
  height: auto;
  max-height: 390px;
  object-fit: contain;
}
.photo-version .v3-feature-card > img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  padding: 12px;
  background: #F4F2EE;
}
@media (max-width: 1000px) {
  .photo-version .v3-hero-art { justify-self: start; max-width: 500px; }
  .photo-version .v3-mechanism { grid-template-columns: 1fr; }
  .photo-version .v3-mechanism-art { max-width: 420px; }
}
@media (max-width: 640px) {
  .photo-version .v3-hero-art { max-width: 100%; padding: 10px; }
  .photo-version .v3-mechanism-art { max-width: 330px; padding: 10px; }
  .photo-version .v3-feature-card > img { height: 210px; }
}


/* 2026 photo update: homepage complaint cards and Rugpijn hero */
.complaint-card img {
  filter: saturate(.22) sepia(.05);
  object-position: center;
}
.complaint-card.muted {
  grid-template-columns: 42% 1fr;
}
.rug-hero .detail-hero-image {
  overflow: hidden;
  background: #F4F2EE;
}
.rug-hero .detail-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center 42%;
  padding: 0;
  filter: saturate(.18) sepia(.04);
}
@media (max-width: 900px) {
  .complaint-card.muted { grid-template-columns: 38% 1fr; }
  .rug-hero .detail-hero-image img { min-height: 380px; }
}
@media (max-width: 640px) {
  .complaint-card.muted { grid-template-columns: 1fr; }
  .rug-hero .detail-hero-image img { min-height: 300px; }
}

/* 2026-07 final image polish: clean Nekpijn portrait and knee crop */
.photo-version .v3-hero-art {
  width: min(100%, 520px);
  max-width: 520px;
  aspect-ratio: 4 / 5;
  padding: 0;
  overflow: hidden;
  background: #F4F2EE;
}
.photo-version .v3-hero-art::before {
  display: none;
}
.photo-version .v3-hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 38%;
}
.complaint-card[href="nekpijn-haarlem.html"] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  padding: 0;
}
.complaint-card.muted img {
  object-position: center center;
}
@media (max-width: 1000px) {
  .photo-version .v3-hero-art {
    width: min(100%, 500px);
    max-width: 500px;
  }
}
@media (max-width: 640px) {
  .photo-version .v3-hero-art {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

/* Insurance partners card below the team collage, aligned with Maartje's profile */
.insurance-partners-card {
    max-width: 480px;
    margin: 38px auto 0;
    padding: 18px;
    background: var(--color-ivory, #F4F2EE);
    border: 1px solid rgba(94, 106, 90, 0.16);
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(42, 48, 43, 0.06);
}

.insurance-partners-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
    color: var(--color-sage, #5E6A5A);
}

.insurance-partners-card figcaption strong {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
}

.insurance-card-kicker {
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 600;
}

.insurance-partners-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.tarieven-intro {
    display: flex;
    flex-direction: column;
    gap: 7px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.tarieven-intro strong {
    color: var(--color-sage, #5E6A5A);
    font-weight: 600;
}

.tarieven-intro span {
    display: block;
    font-size: 0.94em;
}

@media (max-width: 900px) {
    .insurance-partners-card {
        max-width: 560px;
        margin-top: 28px;
    }
}

/* Knieklachten page */
.knee-hero-image { overflow:hidden; min-height:520px; background:#f4f2ee; }
.knee-hero-image img { width:100%; height:100%; min-height:520px; object-fit:cover; object-position:42% center; filter:saturate(.72) contrast(.98); }
.knee-pathway .detail-mini-card { min-height:190px; }
.knee-conservative-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; margin-top:2rem; }
.knee-conservative-grid article { border:1px solid rgba(90,110,94,.2); padding:1.5rem; background:#f7f5f0; }
.knee-conservative-grid article>span { display:block; color:#5a6e5e; font-weight:600; margin-bottom:1rem; }
.review-rotator { transition:opacity .45s ease, transform .45s ease; }
.review-rotator.is-changing { opacity:0; transform:translateY(5px); }
.review-rotator-dots { display:flex; justify-content:center; gap:6px; margin-top:1rem; }
.review-rotator-dots span { width:6px; height:6px; border-radius:50%; background:#5a6e5e; opacity:.35; }
.review-rotator-dots span.active { opacity:1; }
@media (max-width:900px){ .knee-conservative-grid{grid-template-columns:1fr;} .knee-hero-image,.knee-hero-image img{min-height:360px;} }

/* Schouderklachten page — AlianzaFysio v4.2 */
.shoulder-hero-image{overflow:hidden;min-height:520px;background:#f4f2ee}
.shoulder-hero-image img{width:100%;height:100%;min-height:520px;object-fit:cover;object-position:center;filter:saturate(.72) contrast(.98)}
.shoulder-page .neck-source-grid img,.shoulder-page .neck-split img{filter:saturate(.72) contrast(.98)}
.shoulder-page .shoulder-return{margin-top:38px;padding-top:30px;border-top:1px solid rgba(94,106,90,.18)}
.shoulder-final{background:linear-gradient(135deg,#F4F2EE 0%,#e8ebe5 100%)}
@media(max-width:900px){.shoulder-hero-image,.shoulder-hero-image img{min-height:360px}}
@media(max-width:640px){.shoulder-hero-image,.shoulder-hero-image img{min-height:300px}.shoulder-page .neck-source-grid img{aspect-ratio:4/3;object-fit:cover}}
