/* Clinique Bien-Être — Design system */
:root {
    /* Enseigne / identité — ne pas modifier */
    --primary: #2A5C4A;
    --primary-mid: #356b58;
    --primary-light: #4a826c;
    --secondary: #C45C3D;
    --secondary-dark: #a84d32;
    --cream: #F9F5F0;
    --cream-deep: #efeae2;
    --ink: #333333;
    --muted: #5c5c5c;
    --line: rgba(42, 92, 74, 0.12);
    --white: #ffffff;
    --shadow-sm: 0 4px 24px rgba(28, 38, 35, 0.06);
    --shadow-md: 0 12px 40px rgba(28, 38, 35, 0.1);
    --shadow-lg: 0 24px 64px rgba(28, 38, 35, 0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --header-h: 88px;
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-logo: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'DM Sans', 'Lato', system-ui, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 10000;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
}

.skip-link:focus {
    top: 16px;
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    line-height: 1.65;
    background: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: color 0.25s var(--ease);
}

a:hover { color: var(--primary); }

.container {
    width: min(92%, 1180px);
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    box-shadow: 0 4px 16px rgba(196, 92, 61, 0.35);
}

.btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 92, 61, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: var(--white);
    box-shadow: none;
}

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

.btn-primary-solid {
    background: var(--primary);
    box-shadow: 0 4px 16px rgba(26, 77, 63, 0.25);
}

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

.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn-large { padding: 16px 36px; font-size: 15px; }

section { padding: 100px 0; }

/* Section headings */
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-head .eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-head .section-lead {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
}

/* Legacy .section-title (booking, career, contact) */
.section-title {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-title > p {
    color: var(--muted);
    font-size: 17px;
    margin-top: 12px;
    line-height: 1.7;
}

.section-title::after { display: none; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}

header.site-header .container,
.site-header .header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo enseigne — Clinique (vert) + Bien-Être… (terracotta) */
.logo {
    display: block;
    font-family: var(--font-logo);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0.01em;
    max-width: 300px;
    flex-shrink: 0;
}

.logo:hover { color: inherit; }

.logo-line {
    display: block;
}

.logo-line--sub {
    color: var(--secondary);
}

.logo-clinique {
    color: var(--primary);
}

.logo-brand {
    color: var(--secondary);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
}

.nav-links a {
    color: var(--ink);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
    color: var(--secondary);
    background: rgba(196, 92, 61, 0.08);
}

.nav-links a.nav-book {
    color: var(--secondary);
    font-weight: 600;
}

.nav-cta { flex-shrink: 0; }

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid var(--line);
}

.lang-switch a {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    color: var(--muted);
}

.lang-switch a.active {
    color: var(--secondary);
    background: rgba(196, 92, 61, 0.1);
}

.lang-switch span { color: var(--line); font-weight: 400; }

.mobile-menu-btn {
    display: none;
    background: var(--cream);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 20px;
    color: var(--primary);
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    margin-top: var(--header-h);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(26, 77, 63, 0.92) 0%, rgba(26, 77, 63, 0.75) 45%, rgba(26, 77, 63, 0.55) 100%),
        url('../massage.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(196, 92, 61, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0 100px;
    max-width: 720px;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 600;
    line-height: 1.08;
}

.hero h1 em {
    font-style: italic;
    color: var(--secondary);
}

.hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.75;
    opacity: 0.92;
    margin-bottom: 36px;
    max-width: 540px;
}

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

.hero-content { max-width: 720px; margin: 0; padding: 0; text-align: left; }
.hero p:not(.hero-eyebrow):not(.hero-lead) { font-size: inherit; }

/* Trust bar */
.trust-bar {
    background: var(--primary);
    color: var(--white);
    padding: 0;
    margin-top: -1px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.trust-item {
    padding: 28px 20px;
    text-align: center;
    background: var(--primary);
}

.trust-item i {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 10px;
    display: block;
}

.trust-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.trust-item span {
    font-size: 13px;
    opacity: 0.8;
}

/* Services */
.services {
    background: var(--cream);
}

.services-category {
    margin-bottom: 64px;
}

.services-category:last-of-type { margin-bottom: 0; }

.category-banner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    padding: 32px 36px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
    border: 1px solid var(--line);
}

.services-category-header {
    margin-bottom: 0;
    max-width: none;
}

.category-banner .service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--cream) 0%, var(--cream-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0;
}

.services-category-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.services-category-header p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.service-subgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-subcard {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    display: flex;
    flex-direction: column;
}

.service-subcard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-subcard .service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.service-subcard:hover .service-img img { transform: scale(1.06); }

.service-subcontent {
    padding: 24px;
    flex: 1;
}

.service-subcontent h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-subcontent p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.services-other-grid { margin-top: 48px; }

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

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

.service-card .service-img { height: 240px; }
.service-card .service-content { padding: 32px; }
.service-card .service-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.service-card .service-content p { color: var(--muted); margin-bottom: 16px; }
.service-card .service-icon { font-size: 32px; color: var(--secondary-dark); margin-bottom: 16px; }
.service-card ul { list-style: none; padding: 0; }
.service-card li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--muted);
    font-size: 14px;
    border-bottom: 1px solid var(--line);
}
.service-card li:last-child { border-bottom: none; }
.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
}

/* About */
.about-section {
    background: var(--white);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: start;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.about-img img { width: 100%; }

.about-content h2 {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    margin-bottom: 20px;
}

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

.about-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--secondary-dark);
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.about-content ul {
    margin-bottom: 16px;
    padding-left: 1.25rem;
    color: var(--muted);
}

.about-content li { margin-bottom: 8px; }

.about { display: block; }
.about .container { display: contents; }

/* Career */
.career {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.career-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.career-content .section-head { margin-bottom: 40px; }

.career-content > p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 16px;
}

.career-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 48px 0;
    text-align: left;
}

.career-highlight {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.career-highlight h4 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-family: var(--font-sans);
    font-weight: 700;
}

.career-highlight h4 i { color: var(--secondary); margin-right: 8px; }

.career-highlight ul { list-style: none; }

.career-highlight li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    color: var(--muted);
    font-size: 15px;
}

.career-highlight li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
}

.career-cta {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    margin-top: 24px;
}

.career-cta p { text-align: left; color: var(--muted); margin-bottom: 12px; font-size: 15px; }

/* Contact */
.contact { background: var(--white); }

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

.contact-info h3,
.contact-form h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item p { color: var(--muted); font-size: 15px; }
.contact-item a { color: var(--ink); font-weight: 500; }

.map-container {
    margin-top: 28px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}

.map-container iframe { width: 100%; height: 280px; display: block; }

.contact-form {
    background: var(--cream);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}

.contact-form .form-group { margin-bottom: 20px; }

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 15px;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(42, 107, 88, 0.12);
}

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

/* Footer */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.75);
    padding: 72px 0 28px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h3 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col > p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 18px;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

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

.footer-links { list-style: none; }

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

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

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

.copyright {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.copyright p { margin-bottom: 6px; }

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 38, 35, 0.65);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 520px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(12px) scale(0.98);
    transition: transform 0.35s var(--ease);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--cream);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.modal-close:hover { background: var(--cream-deep); color: var(--primary); }

.modal-header { text-align: center; margin-bottom: 24px; }
.modal-header h3 { font-size: 1.5rem; }

.privacy-section { margin-bottom: 20px; }
.privacy-section h4 { font-size: 1rem; margin-bottom: 8px; color: var(--primary); font-family: var(--font-sans); }
.privacy-section p, .privacy-section li { font-size: 14px; color: var(--muted); }
.privacy-section ul { padding-left: 1.2rem; margin: 8px 0; }

#privacyModal { z-index: 10001; }

/* Promo modal */
#hoursModal .modal-content {
    max-width: 520px;
    padding: 0;
    overflow: hidden;
}

#hoursModal .modal-close {
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    z-index: 2;
}

#hoursModal .modal-close:hover { background: rgba(255, 255, 255, 0.35); color: #fff; }

.promo-modal-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    color: #fff;
    padding: 40px 32px 32px;
    text-align: center;
    position: relative;
}

.promo-anniv-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.promo-modal-hero h3 {
    color: #fff;
    font-size: 1.65rem;
    margin-bottom: 8px;
}

.promo-subtitle { font-size: 14px; opacity: 0.9; }

.promo-modal-body { padding: 28px 32px 32px; }

.promo-offers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.promo-offer-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--line);
    transition: transform 0.2s;
}

.promo-offer-card.featured {
    border-color: var(--secondary);
    background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.promo-offer-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.promo-offer-price span { font-size: 1rem; }
.promo-offer-duration { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.promo-offer-label { font-size: 13px; color: var(--muted); }
.promo-offer-card i { font-size: 24px; color: var(--secondary); margin-bottom: 8px; }

.promo-clinic-name {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.promo-contact-list { list-style: none; margin-bottom: 24px; }
.promo-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
}
.promo-contact-list li:last-child { border-bottom: none; }
.promo-contact-list i { color: var(--primary); width: 20px; text-align: center; }
.promo-contact-list a { color: var(--primary); font-weight: 600; }

.promo-modal-actions { display: flex; flex-direction: column; gap: 10px; }
.promo-modal-actions .btn { width: 100%; }

.btn-outline-promo {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-outline-promo:hover { background: var(--primary); color: #fff; }

.promo-fine-print {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-top: 14px;
    line-height: 1.5;
}

.modal-footer { text-align: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }

/* FAQ */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.25s var(--ease);
}

.faq-item[open] {
    box-shadow: var(--shadow-sm);
    border-color: rgba(196, 92, 61, 0.25);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 52px 20px 24px;
    font-family: var(--font-serif);
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    line-height: 1.4;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--secondary);
    line-height: 1;
    transition: transform 0.25s var(--ease);
}

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

.faq-answer {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-answer p + p { margin-top: 10px; }

.faq-answer a {
    color: var(--secondary);
    font-weight: 600;
}

.faq-note {
    margin-top: 28px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    padding: 18px 22px;
    background: rgba(42, 92, 74, 0.06);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

.faq-note strong { color: var(--primary); }

/* Medical / OAQ disclaimer */
.medical-disclaimer {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(42, 92, 74, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

.medical-disclaimer a { color: var(--primary); font-weight: 600; }

/* Clinic facts — SEO & AI-readable summary */
.clinic-facts {
    padding: 48px 0;
    background: var(--cream-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px 32px;
}

.facts-grid > div { font-size: 14px; line-height: 1.55; }

.facts-grid dt {
    font-weight: 700;
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.facts-grid dd { margin: 0; color: var(--ink); }

/* Cases teaser — homepage preview (dedicated hub: cas/index.html) */
.cases-teaser {
    background: linear-gradient(165deg, var(--cream) 0%, var(--white) 45%, var(--cream-deep) 100%);
    position: relative;
    overflow: hidden;
}

.cases-teaser::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 92, 74, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cases-teaser .container { position: relative; }

.cases-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 12px;
}

.cases-teaser-card {
    display: flex;
    flex-direction: column;
    padding: 26px 24px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    color: var(--ink);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    min-height: 100%;
}

.cases-teaser-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(42, 92, 74, 0.22);
    color: var(--ink);
}

.cases-teaser-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(42, 92, 74, 0.12) 0%, rgba(196, 92, 61, 0.14) 100%);
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.cases-teaser-card:hover .cases-teaser-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    color: var(--white);
}

.cases-teaser-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--primary);
    margin: 0 0 6px;
    line-height: 1.25;
}

.cases-teaser-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--secondary);
    margin: 0 0 10px;
}

.cases-teaser-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.cases-teaser-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    transition: gap 0.25s var(--ease);
}

.cases-teaser-card:hover .cases-teaser-more {
    gap: 12px;
    color: var(--primary);
}

.cases-teaser-foot {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.cases-teaser-note {
    font-size: 15px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 22px;
    line-height: 1.65;
}

.cases-teaser-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* btn-outline is for hero (white on image); override for light cream section */
.cases-teaser-actions .btn-outline {
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.cases-teaser-actions .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(42, 92, 74, 0.25);
}

@media (max-width: 992px) {
    .cases-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .cases-teaser-grid { grid-template-columns: 1fr; }
    .cases-teaser-actions { flex-direction: column; align-items: stretch; }
    .cases-teaser-actions .btn { width: 100%; }
}

/* Sticky mobile booking CTA */
.mobile-book-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    padding: 14px 28px;
    box-shadow: 0 8px 32px rgba(28, 38, 35, 0.22);
}

@media (max-width: 768px) {
    .mobile-book-cta { display: inline-flex; }
}

/* Booking section shell */
.bk-section { background: var(--cream); }

/* Responsive */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img { position: static; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .category-banner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 72px 0; }
    .mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
    .nav-cta { display: none; }
    .nav-links {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.35s var(--ease);
        overflow-y: auto;
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links li { margin: 0; width: 100%; }
    .nav-links a { display: block; padding: 14px 16px; font-size: 16px; }
    .lang-switch { margin: 16px 0 0; padding: 16px 0 0; border-left: none; border-top: 1px solid var(--line); justify-content: center; }
    .hero-inner { padding: 60px 0 80px; }
    .hero-actions, .hero-btns { flex-direction: column; }
    .hero-actions .btn, .hero-btns .btn { width: 100%; }
    .career-highlights { grid-template-columns: 1fr; }
    .logo { font-size: 0.95rem; max-width: 240px; }
}

@media (max-width: 576px) {
    .trust-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .promo-offers { grid-template-columns: 1fr; }
    .service-subgrid { grid-template-columns: 1fr; }
}
