:root {
    --bg: #FDFBF7;
    --bg-alt: #F3ECE2;
    --accent: #C97A63;
    --accent-hover: #b66a56;
    --text: #3A2E2B;
    --muted: #7b6f6a;
    --white: #ffffff;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(58, 46, 43, 0.08);
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Voltaire', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
}

/* Header */
header {
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(58, 46, 43, 0.05);
}

.header-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

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

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

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

.cta-nav {
    background: var(--accent);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: transform 0.3s, background 0.3s;
}

.cta-nav:hover {
    color: var(--white);
    background: var(--accent-hover);
    transform: translateY(-2px);
}

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

.bg-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.section-header p {
    color: var(--muted);
    font-size: 1.1rem;
}

/* Video Intro */
#video-intro {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 55vw;
    max-width: 400px;
    aspect-ratio: 9/16;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(58, 46, 43, 0.25);
    transition: none;
    will-change: transform, width;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.sound-btn {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    color: var(--text);
    font-family: 'Voltaire', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: pulse-sound 2s infinite;
}

.sound-btn:hover {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(201, 122, 99, 0.3);
    animation: none;
}

.sound-btn:hover svg {
    stroke: white;
}

.sound-btn svg {
    stroke: var(--text);
    transition: stroke 0.3s;
}

@keyframes pulse-sound {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); }
    50% { box-shadow: 0 4px 25px rgba(201, 122, 99, 0.3); }
}

.sound-btn .hidden {
    display: none;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    color: var(--muted);
    animation: bounce 2s infinite;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Hero */
#hero {
    max-width: var(--container);
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    text-align: center;
    align-items: center;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.badge {
    display: inline-block;
    background: rgba(201, 122, 99, 0.1);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

#hero p {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 122, 99, 0.2);
}

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

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

.btn-full {
    width: 100%;
}


/* Bienfaits - Orbital Layout */
.bienfaits-orbital {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbital-center {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58, 46, 43, 0.15);
    border: 4px solid var(--white);
    z-index: 2;
}

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

.orbital-item {
    position: absolute;
    text-align: center;
    max-width: 180px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.orbital-item:hover {
    transform: scale(1.08);
}

.orbital-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A96E, #B8956A);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.orbital-item h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.orbital-item p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
}

/* Positions autour du cercle central */
.orbital-item-1 { top: 5%; left: 2%; }
.orbital-item-2 { top: 5%; right: 2%; }
.orbital-item-3 { top: 50%; right: -2%; transform: translateY(-50%); }
.orbital-item-4 { bottom: 8%; left: 50%; transform: translateX(-50%); }
.orbital-item-5 { top: 50%; left: -2%; transform: translateY(-50%); }

/* Mobile: stack vertically */
@media (max-width: 768px) {
    .bienfaits-orbital {
        aspect-ratio: auto;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }

    .orbital-center {
        width: 200px;
        height: 200px;
    }

    .orbital-item {
        position: static;
        max-width: 100%;
        transform: none !important;
    }
}

/* Drainage - Tilted cards */
.drainage-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0 0 2rem;
}

.drainage-card {
    position: relative;
    background: var(--white);
    border-radius: 18px;
    padding: 2rem 1.25rem 1.75rem;
    box-shadow: 0 4px 20px rgba(58, 46, 43, 0.08);
    text-align: center;
    cursor: default;
    opacity: 0;
    transform: translateX(80px) rotate(0deg);
    transition:
        opacity .55s ease,
        transform .55s cubic-bezier(.22, .68, 0, 1.2),
        box-shadow .3s ease;
}

/* Tilts: desktop only */
@media (min-width: 969px) {
    .drainage-card:nth-child(1) { --tilt: -2deg; }
    .drainage-card:nth-child(2) { --tilt: 1.5deg; }
    .drainage-card:nth-child(3) { --tilt: -1deg; }
    .drainage-card:nth-child(4) { --tilt: 2deg; }
    .drainage-card:nth-child(5) { --tilt: -1.5deg; }
}

/* Lighter tilts: tablet */
@media (max-width: 968px) and (min-width: 640px) {
    .drainage-card:nth-child(1) { --tilt: -1deg; }
    .drainage-card:nth-child(2) { --tilt: 0.8deg; }
    .drainage-card:nth-child(3) { --tilt: -0.6deg; }
    .drainage-card:nth-child(4) { --tilt: 1deg; }
    .drainage-card:nth-child(5) { --tilt: -0.8deg; }
}

.drainage-card.visible {
    opacity: 1;
    transform: translateX(0) rotate(var(--tilt, 0deg));
}

.drainage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 0 0 4px 4px;
    transition: width .35s ease;
}

/* Hover: pointer devices only (no sticky hover on touch) */
@media (hover: hover) {
    .drainage-card:hover::before { width: 60%; }
    .drainage-card:hover {
        transform: translateX(0) rotate(0deg) translateY(-8px);
        box-shadow: 0 18px 42px rgba(201, 122, 99, 0.2);
    }
    .drainage-card:hover .drainage-icon {
        transform: scale(1.15) rotate(-12deg);
    }
}

.drainage-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #C97A63, #b56a54);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: transform .4s cubic-bezier(.22, .68, 0, 1.4);
}

.drainage-icon svg { stroke: var(--white); }

.drainage-card h3 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.drainage-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Tablet: 3 colonnes */
@media (max-width: 968px) {
    .drainage-cards {
        grid-template-columns: repeat(3, 1fr);
        max-width: 680px;
        gap: 1.25rem;
    }
}

/* Small tablet / grand téléphone: 2 colonnes */
@media (max-width: 639px) {
    .drainage-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 440px;
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 0 1rem;
    }
    .drainage-card {
        transform: translateX(40px);
        padding: 1.5rem 1rem;
    }
    .drainage-card.visible { transform: none; }
}

/* Téléphone étroit: 1 colonne */
@media (max-width: 380px) {
    .drainage-cards {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

/* Tarifs */
.tarifs-container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.tarifs-category {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tarifs-container.revealed .tarifs-category {
    opacity: 1;
    transform: translateY(0);
}

.tarifs-container.revealed .tarifs-category:nth-child(1) { transition-delay: 0.1s; }
.tarifs-container.revealed .tarifs-category:nth-child(2) { transition-delay: 0.3s; }
.tarifs-container.revealed .tarifs-category:nth-child(3) { transition-delay: 0.5s; }

.tarifs-category h3 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-alt);
    font-size: 1.5rem;
    text-align: center;
    color: var(--text);
}

.tarifs-list {
    list-style: none;
    flex-grow: 1;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(58, 46, 43, 0.03);
    gap: 1rem;
}

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

.tarif-info {
    flex: 1;
}

.tarif-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--text);
}

.tarif-duration {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--muted);
    background: var(--bg-alt);
    padding: 0.1rem 0.6rem;
    border-radius: 4px;
    font-weight: 500;
}

.tarif-price {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--accent);
    white-space: nowrap;
}

/* Featured Price Item (Soin MAELINA & Bilan) */
.tarif-item.featured {
    background: rgba(201, 122, 99, 0.05);
    margin: 0.5rem -1.5rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border: 1px dashed var(--accent);
}

.tarif-item.featured .tarif-name {
    color: var(--accent);
}

.tarif-item.free .tarif-price {
    color: #4A7C59;
    animation: pulse-green 2s infinite;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    background: rgba(74, 124, 89, 0.08);
    border: 1.5px solid rgba(74, 124, 89, 0.3);
    font-weight: 800;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 124, 89, 0.4);
        border-color: rgba(74, 124, 89, 0.3);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(74, 124, 89, 0);
        border-color: rgba(74, 124, 89, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 124, 89, 0);
        border-color: rgba(74, 124, 89, 0.3);
    }
}

/* Reviews */
.reviews-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

/* Review Stack Card */
.review-stack-card {
    position: relative;
    background: transparent;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.stack-layer {
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.layer-3 { transform: translate(15px, 15px) rotate(3deg); opacity: 0.3; z-index: 1; }
.layer-2 { transform: translate(8px, 8px) rotate(-2deg); opacity: 0.6; z-index: 2; }
.layer-1 { 
    z-index: 3; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    padding: 2rem;
    border: 2px dashed var(--bg-alt);
}

.review-stack-card:hover .layer-1 { transform: translateY(-10px); border-color: var(--accent); }
.review-stack-card:hover .layer-2 { transform: translate(25px, -15px) rotate(5deg); }
.review-stack-card:hover .layer-3 { transform: translate(45px, -25px) rotate(10deg); }

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.google-logo {
    width: 24px;
    height: 24px;
    margin-bottom: 0.5rem;
}

.rating-score {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    color: var(--text);
    line-height: 1;
}

.rating-stars {
    color: #f5a623;
    font-size: 1.1rem;
}

.stack-text {
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    font-size: 0.95rem;
}

.stack-subtext {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.4rem;
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

/* Effet de focus : quand on survole la grille, on floute tout... */
.reviews-grid:hover .review-card {
    filter: blur(3px);
    opacity: 0.5;
    transform: scale(0.95);
}

/* ...sauf la carte survolée qui s'avance et s'éclaircit */
.reviews-grid .review-card:hover {
    filter: blur(0);
    opacity: 1;
    transform: scale(1.08) translateY(-10px);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(58, 46, 43, 0.15);
}

.review-stars {
    color: #f5a623;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    display: flex;
    gap: 2px;
}

.review-stars span {
    display: inline-block;
    opacity: 0;
    transform: translateX(50px);
    animation: star-bump 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.review-stars span:nth-child(1) { animation-delay: 0.1s; }
.review-stars span:nth-child(2) { animation-delay: 0.2s; }
.review-stars span:nth-child(3) { animation-delay: 0.3s; }
.review-stars span:nth-child(4) { animation-delay: 0.4s; }
.review-stars span:nth-child(5) { animation-delay: 0.5s; }

@keyframes star-bump {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    60% {
        opacity: 1;
        transform: translateX(-5px); /* On dépasse un peu pour l'effet choc */
    }
    80% {
        transform: translateX(2px); /* Rebond */
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.review-text {
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.highlight-text {
    background-image: linear-gradient(120deg, rgba(201, 122, 99, 0.3) 0%, rgba(201, 122, 99, 0.3) 100%);
    background-repeat: no-repeat;
    background-size: 0% 0.6em;
    background-position: 0 85%;
    transition: background-size 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 0 4px;
    border-radius: 2px;
}

.review-card:hover .highlight-text {
    background-size: 100% 0.6em;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-alt);
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    padding: 3px;
    background: linear-gradient(45deg, var(--accent), #f5a623);
    border: 2px solid var(--white);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-card:hover .review-avatar {
    transform: scale(1.15) rotate(5deg);
}

.author-name {
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: #4A90E2;
    color: white;
    border-radius: 50%;
    font-size: 8px;
}

.review-date {
    color: var(--muted);
    font-size: 0.85rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Reviews - Mobile infinite ticker */
.reviews-ticker {
    overflow: hidden;
    width: 100%;
    padding: 1rem 0 2rem;
    display: none;
}

.reviews-ticker-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: ticker-scroll 22s linear infinite;
}

.reviews-ticker-track:hover {
    animation-play-state: paused;
}

.reviews-ticker-track .review-card {
    width: 82vw;
    flex-shrink: 0;
}

.reviews-ticker-track .review-card:hover {
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    box-shadow: var(--shadow);
}

.reviews-ticker-track .review-stars span {
    opacity: 1;
    transform: none;
    animation: none;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 639px) {
    .reviews-grid    { display: none; }
    .reviews-ticker  { display: block; }
}

/* Booking */
#booking-root {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bg-alt);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: var(--bg-alt);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

input, select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0d8cf;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

input:focus, select:focus {
    border-color: var(--accent);
}

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

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.slot-item {
    border: 2px solid var(--bg-alt);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slot-item:hover {
    border-color: var(--accent);
}

.slot-item input {
    display: none;
}

.slot-item.selected {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

#booking-result {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.success {
    background: #e8f5e9;
    color: #2e7d32;
}

.error {
    background: #ffebee;
    color: #c62828;
}

.confirmation-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-alt);
    border-radius: 16px;
    margin-top: 1.5rem;
}

.confirmation-box svg {
    margin-bottom: 1.25rem;
}

.confirmation-box h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.confirmation-box p {
    margin-bottom: 0.5rem;
    color: var(--text);
}

/* Footer */
footer {
    background: var(--bg-alt);
    padding: 4rem 2rem;
}

.footer-content {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-info .logo {
    margin-bottom: 1rem;
}

.footer-info p {
    color: var(--muted);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 1.1rem;
}

.footer-nav a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
    width: fit-content;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-map-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-width: 280px;
}

.footer-map-col h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 1.1rem;
}

.footer-map-container {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(58, 46, 43, 0.1);
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
}

.footer-cta {
    grid-column: 1 / -1;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(58, 46, 43, 0.05);
    text-align: center;
}

.footer-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--white);
    color: var(--text);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 1px solid rgba(58, 46, 43, 0.1);
    width: fit-content;
}

.btn-contact svg {
    color: var(--accent);
}

.btn-contact:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 122, 99, 0.2);
}

.btn-contact:hover svg {
    color: var(--white);
}

.footer-legal {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(58, 46, 43, 0.08);
    color: var(--muted);
    font-size: 0.85rem;
}

.footer-legal p {
    margin-bottom: 0.5rem;
}

.footer-credit-link {
    color: inherit;
    text-decoration: none;
    cursor: default;
}

.footer-credit-link:hover {
    color: inherit;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.8rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    font-weight: 500;
}

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

/* Legal Pages */
.legal-page {
    min-height: 60vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--bg-alt);
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--text);
}

.legal-update {
    margin-top: 3rem;
    color: var(--muted);
    font-style: italic;
    font-size: 0.9rem;
}

/* Calendar */
.calendar {
    border: 1px solid #e0d8cf;
    border-radius: var(--radius);
    padding: 1.5rem;
    background: var(--white);
    margin-bottom: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    text-align: center;
}

.calendar-header h4 {
    margin: 0;
    font-size: 1.1rem;
    text-transform: capitalize;
}

.btn-cal-nav {
    background: var(--bg-alt);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    color: var(--text);
    font-weight: 700;
}

.btn-cal-nav:hover {
    background: #e0d8cf;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.calendar-day:hover:not(.empty):not(.disabled) {
    background: var(--bg-alt);
    color: var(--accent);
}

.calendar-day.selected {
    background: var(--accent) !important;
    color: var(--white) !important;
    font-weight: 700;
}

.calendar-day.today {
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 700;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.empty {
    cursor: default;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.navigation-buttons .btn {
    flex: 1;
}

.btn-back {
    background: #eee;
    color: var(--text);
}

.btn-back:hover {
    background: #e0e0e0;
}

.booking-section {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Utilities */
.hidden { display: none; }

.admin-access {
    opacity: 0.3;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
    margin-left: 0.5rem;
}

.admin-access:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 968px) {
    .video-wrapper {
        width: 70vw;
        max-width: 320px;
    }
    #hero {
        text-align: center;
    }
    #hero p { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    #hero h1 { font-size: 2.8rem; }
    .section-header h2 { font-size: 2rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }

    nav { display: none; }
}

@media (max-width: 480px) {
    .video-wrapper {
        width: 80vw;
        max-width: 280px;
    }
    .section-padding { padding: 3rem 1.5rem; }
    #hero h1 { font-size: 2.2rem; }
    #booking-root { padding: 1.5rem; }
    .booking-steps { font-size: 0.7rem; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: var(--container);
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.contact-card svg {
    color: var(--accent);
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
