:root {
    --color-primary: #c9a87c;
    --color-primary-dark: #a88b5e;
    --color-secondary: #f5ebe0;
    --color-accent: #d4a5a5;
    --color-text: #3d3d3d;
    --color-text-light: #6b6b6b;
    --color-bg: #faf8f5;
    --color-white: #ffffff;
    --color-success: #5a8f5a;
    --color-warning: #c9a227;
    --color-danger: #c45c5c;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', 'Segoe UI', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --radius: 8px;
    --transition: 0.3s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: clip;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
}

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

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

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

/* Header */
.site-header {
    background: var(--color-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 3.5vw, 1.75rem);
    color: var(--color-primary-dark);
    font-weight: 600;
    line-height: 1.2;
}

.logo-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    flex: 1 1 auto;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    max-width: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.site-logo-link {
    flex-shrink: 0;
    line-height: 0;
}

.site-logo {
    display: block;
    height: 72px;
    width: auto;
    max-width: min(160px, 36vw);
    object-fit: contain;
}

.header-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.header-social a:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-1px);
}

.header-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

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

.logo span { color: var(--color-accent); }

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

.main-nav a {
    color: var(--color-text);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

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

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-badge {
    background: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    padding: 0.15rem 0.45rem;
    border-radius: 50px;
    font-weight: 700;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
    flex-shrink: 0;
    padding: 0.35rem 0.5rem;
    line-height: 1;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #ede0d4 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero.site-bandeau {
    height: 320px;
    min-height: 320px;
    max-height: 320px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero.site-bandeau::before {
    content: '';
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    background: rgba(44, 36, 32, 0.48);
}

.hero.site-bandeau .container {
    position: relative;
    z-index: 1;
}

.hero.site-bandeau h1,
.hero.site-bandeau p {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero.site-bandeau .btn-outline {
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
}

.hero.site-bandeau .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201,168,124,0.15) 0%, transparent 70%);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Citation défilante (bandeau accueil) */
.quote-ticker {
    width: 100%;
    min-height: 4.5rem;
    padding: 1rem 0;
    background: var(--color-secondary);
    border-top: 1px solid rgba(168, 139, 94, 0.2);
    border-bottom: 1px solid rgba(168, 139, 94, 0.2);
    color: var(--color-primary-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.quote-ticker__viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 2.5rem;
}

.quote-ticker__runner {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
    will-change: transform;
    backface-visibility: hidden;
}

.quote-ticker__runner.is-animating {
    transform: translate3d(0, -50%, 0);
}

.quote-ticker__segment {
    display: inline-block;
    white-space: nowrap;
}

.quote-ticker__gap {
    display: inline-block;
    width: 0;
    flex-shrink: 0;
}

.quote-ticker__runner.is-static {
    position: static;
    transform: none;
    display: block;
    width: 100%;
    padding: 0 1.5rem;
    text-align: center;
    white-space: normal;
}

.quote-ticker__runner--measure {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
    left: 0;
    top: 0;
}

.quote-ticker__quote,
.quote-ticker__sep,
.quote-ticker__author {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    line-height: 1.2;
}

.quote-ticker__quote {
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.quote-ticker__author {
    font-weight: 700;
    font-style: normal;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

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

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary-dark);
}

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

.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-danger { background: var(--color-danger); color: white; }
.btn-success { background: var(--color-success); color: white; }

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 2rem;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
}

.card:hover { transform: translateY(-4px); }

.card-body { padding: 1.5rem; }

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

.card p { color: var(--color-text-light); font-size: 0.95rem; }

.card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 1rem;
}

.card-duration {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Service categories */
.category-block {
    margin-bottom: 3rem;
    scroll-margin-top: 6rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-secondary);
}

.category-icon { font-size: 2rem; }

.category-header h2 {
    font-size: 1.8rem;
    color: var(--color-primary-dark);
}

/* Accueil — présentation */
.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.home-about-photo {
    width: 100%;
    min-width: 0;
}

.home-about-text {
    min-width: 0;
}

.home-about-photo img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: top center;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.home-about-photo-placeholder {
    width: 100%;
    min-height: 280px;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: linear-gradient(145deg, var(--color-secondary), #e8ddd0);
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    margin: 0 0 0.75rem;
    line-height: 1.25;
}

.markdown-body h2 { font-size: 1.75rem; }
.markdown-body h3 { font-size: 1.35rem; }

.markdown-body p {
    margin: 0 0 1rem;
    color: var(--color-text);
    line-height: 1.7;
}

.markdown-body ul {
    margin: 0 0 1rem 1.25rem;
    color: var(--color-text);
    line-height: 1.7;
}

.markdown-body a {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* Accueil — teaser catégories */
.category-teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
    gap: 1.75rem;
}

.category-teaser {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition), box-shadow var(--transition);
}

.category-teaser:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.category-teaser-image {
    height: 200px;
    background: var(--color-secondary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-teaser-fallback {
    font-size: 3rem;
}

.category-teaser-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-teaser-body h3 {
    font-size: 1.35rem;
    color: var(--color-primary-dark);
    margin: 0 0 0.5rem;
}

.category-teaser-body p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 1rem;
    flex: 1;
}

.category-teaser-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-dark);
}

@media (max-width: 768px) {
    .home-about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Forms */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(201,168,124,0.2);
}

select.form-control { cursor: pointer; }

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

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

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error { background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; }
.alert-info { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }

.badge-status {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}
.badge-pending { background: #fff3e0; color: #e65100; }
.badge-confirmed { background: #e8f5e9; color: #2e7d32; }
.badge-cancelled { background: #fce4ec; color: #c62828; }
.badge-completed { background: #e3f2fd; color: #1565c0; }
.badge-paid { background: #e8f5e9; color: #2e7d32; }
.badge-shipped { background: #e3f2fd; color: #1565c0; }
.badge-delivered { background: #e8f5e9; color: #2e7d32; }

/* Product grid */
.product-card .product-image {
    height: 200px;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-primary);
    overflow: hidden;
}

.product-card .product-image.has-photo {
    padding: 0;
}

.product-card .product-image img,
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.card-image {
    width: 100%;
    height: 200px;
    background: var(--color-secondary);
    overflow: hidden;
    flex-shrink: 0;
}

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

.product-stock.low { color: var(--color-danger); }

/* Appointment booking */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.step.active { color: var(--color-primary-dark); font-weight: 600; }

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step.active .step-number {
    background: var(--color-primary);
    color: white;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.slot-btn {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: var(--radius);
    background: white;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all var(--transition);
    text-align: center;
}

.slot-btn:hover, .slot-btn.selected {
    border-color: var(--color-primary);
    background: var(--color-secondary);
    color: var(--color-primary-dark);
    font-weight: 600;
}

.week-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.week-label {
    flex: 1;
    text-align: center;
    font-size: 0.95rem;
    text-transform: capitalize;
    color: var(--color-primary-dark);
    font-weight: 600;
}

.week-jump { margin-bottom: 1rem; }

.week-day-block {
    padding-top: 1rem;
    border-top: 1px solid #eee;
    margin-top: 1rem;
}

.week-day-block:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.week-day-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    text-transform: capitalize;
    color: var(--color-text);
}

.week-empty-day {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin: 0;
}

.booking-cart {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.booking-cart-title {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: var(--color-primary-dark);
}

.booking-cart-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.booking-cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.booking-cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.9rem;
}

.booking-cart-item-info span {
    color: var(--color-text-light);
    font-size: 0.85rem;
}

.booking-cart-totals {
    margin: 0.75rem 0 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary-dark);
}

.booking-cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

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

/* Cart table */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-table th, .cart-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cart-table th {
    background: var(--color-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-total {
    text-align: right;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-top: 1.5rem;
}

/* Footer */
.site-footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-grid h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-grid a { color: #aaa; }
.footer-grid a:hover { color: var(--color-primary); }

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #888;
}

.footer-legal {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.85rem;
}

.footer-legal a { color: #aaa; }
.footer-legal a:hover { color: var(--color-primary); }
.footer-legal__sep { color: #666; user-select: none; }
.footer-legal__credit { color: #888; }

/* Pages légales */
.section-legal { padding: 3rem 0 4rem; }

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

.legal-header { margin-bottom: 2rem; }

.legal-back {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.legal-back:hover { color: var(--color-primary); }

.legal-header h1 {
    font-size: 2.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.legal-meta {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.legal-content h2 {
    font-size: 1.35rem;
    color: var(--color-primary-dark);
    margin: 2rem 0 0.75rem;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin: 1.25rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.legal-content ul { margin: 0.5rem 0 1rem 1.25rem; }

.legal-table-wrap { overflow-x: auto; margin: 1rem 0; }

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    border: 1px solid #ddd;
    padding: 0.65rem 0.75rem;
    text-align: left;
}

.legal-table th {
    background: var(--color-secondary);
    color: var(--color-text);
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
}

/* Bandeau cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #2c2c2c;
    color: #eee;
    padding: 1rem 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.is-visible { transform: translateY(0); }

.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner__title {
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: white;
}

.cookie-banner__desc {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
    max-width: 680px;
}

.cookie-banner__desc a { color: var(--color-primary); }

.cookie-banner__actions { flex-shrink: 0; }

@media (max-width: 768px) {
    .cookie-banner__inner { flex-direction: column; align-items: stretch; }
    .cookie-banner__actions .btn { width: 100%; }
}

/* CTA banner (bandeau intermédiaire accueil) */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
}

.cta-banner.site-bandeau {
    height: 280px;
    min-height: 280px;
    max-height: 280px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.cta-banner.site-bandeau::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 32, 0.52);
    border-radius: inherit;
}

.cta-banner.site-bandeau > * {
    position: relative;
    z-index: 1;
}

.cta-banner h2 { color: white; margin-bottom: 1rem; font-size: 2rem; }
.cta-banner p { opacity: 0.9; margin-bottom: 1.5rem; }
.cta-banner .btn { background: white; color: var(--color-primary-dark); }
.cta-banner .btn:hover { background: var(--color-secondary); }

/* Responsive */
@media (max-width: 992px) {
    .container { padding: 0 1.15rem; }

    .site-logo {
        height: 60px;
        max-width: min(120px, 32vw);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0;
        box-shadow: var(--shadow);
        z-index: 110;
        max-height: min(70vh, 480px);
        overflow-y: auto;
    }

    .main-nav a {
        padding: 0.85rem 1.25rem;
        border-bottom: 1px solid #f0ebe4;
    }

    .main-nav a:last-child { border-bottom: 0; }

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

    .nav-toggle { display: block; }

    .logo-brand { gap: 0.5rem; }

    .site-logo {
        height: 48px;
        max-width: 72px;
    }

    .header-social { display: none; }

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

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

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: clamp(1.65rem, 7vw, 2.4rem);
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        padding: 0 0.25rem;
    }

    .hero.site-bandeau {
        padding: 1.5rem 0;
        height: auto;
        min-height: 200px;
        max-height: none;
    }

    .cta-banner {
        padding: 2.5rem 1.25rem;
        margin: 1.5rem 0;
    }

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

    .cta-banner.site-bandeau {
        height: auto;
        min-height: 180px;
        max-height: none;
        padding: 2rem 1.25rem;
    }

    .section { padding: 2.5rem 0; }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
        padding: 0 0.25rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        padding: 0 0.5rem;
    }

    .booking-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .week-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .week-label {
        flex: 1 1 100%;
        order: -1;
        margin-bottom: 0.25rem;
    }

    .booking-cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-table th,
    .cart-table td {
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .cart-actions {
        justify-content: stretch;
    }

    .cart-actions .btn {
        flex: 1 1 auto;
        text-align: center;
    }

    .quote-ticker__runner {
        font-size: 1.25rem;
    }

    .btn {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }

    .site-logo {
        height: 42px;
        max-width: 56px;
    }

    .logo {
        font-size: 1.05rem;
    }

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

    .slot-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 0.5rem;
    }

    .cookie-banner {
        padding: 0.85rem 0;
    }
}
