:root {
    --cream: #F8F3EE;
    --cream-dark: #EDE7E0;
    --cream-light: #FDFBF9;
    --text: #2C2C2C;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --sage: #7A8C6E;
    --sage-light: #E8EDE5;
    --white: #FFFFFF;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --radius: 12px;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--cream-light);
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

a { color: var(--sage); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Language switcher */
.lang-bar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--cream-dark);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.lang-btn {
    padding: 6px 14px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 20px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-light);
}

.lang-btn:hover { background: var(--cream); }

.lang-btn.active {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

/* Multilingual: hide all lang-tagged elements, then show active */
:not(html)[lang]:not([lang=""]) {
    display: none;
}
html[lang="fr"] [lang="fr"],
html[lang="en"] [lang="en"],
html[lang="de"] [lang="de"],
html[lang="it"] [lang="it"] {
    display: initial;
}
html[lang="fr"] div[lang="fr"],
html[lang="en"] div[lang="en"],
html[lang="de"] div[lang="de"],
html[lang="it"] div[lang="it"],
html[lang="fr"] p[lang="fr"],
html[lang="en"] p[lang="en"],
html[lang="de"] p[lang="de"],
html[lang="it"] p[lang="it"],
html[lang="fr"] li[lang="fr"],
html[lang="en"] li[lang="en"],
html[lang="de"] li[lang="de"],
html[lang="it"] li[lang="it"],
html[lang="fr"] h1[lang="fr"],
html[lang="en"] h1[lang="en"],
html[lang="de"] h1[lang="de"],
html[lang="it"] h1[lang="it"],
html[lang="fr"] h2[lang="fr"],
html[lang="en"] h2[lang="en"],
html[lang="de"] h2[lang="de"],
html[lang="it"] h2[lang="it"],
html[lang="fr"] h3[lang="fr"],
html[lang="en"] h3[lang="en"],
html[lang="de"] h3[lang="de"],
html[lang="it"] h3[lang="it"] {
    display: block;
}
html[lang="fr"] span[lang="fr"],
html[lang="en"] span[lang="en"],
html[lang="de"] span[lang="de"],
html[lang="it"] span[lang="it"] {
    display: inline;
}

/* Cover / Hero */
.cover {
    display: flex;
    flex-direction: column;
}

.cover-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.cover-image {
    background: url('images/first-page.png') center bottom/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
}



.cover-info {
    background: var(--cream);
    padding: 16px 20px 24px;
    text-align: center;
}

.cover-info h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cover-info .address {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cover-amenities {
    display: flex;
    justify-content: center;
    gap: 0;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid var(--cream-dark);
    padding-top: 16px;
    margin-top: 4px;
}

.cover-amenities .col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 16px;
}

.cover-amenities .col:not(:last-child) {
    border-right: 1px solid #ccc;
}

@media (max-width: 768px) {
    .cover { height: auto; min-height: auto; }
    .cover-left { min-height: auto; }
    .cover-amenities { font-size: 0.62rem; }
    .cover-amenities .col { padding: 0 10px; gap: 4px; }
    .cover-info h1 { font-size: 1.2rem; margin-bottom: 4px; }
    .cover-info .address { font-size: 0.7rem; margin-bottom: 12px; }
    .cover-info { padding: 12px 16px 16px; }
}

/* Sections */
.section {
    padding: 80px 24px;
    max-width: 720px;
    margin: 0 auto;
}

.section.wide {
    max-width: 900px;
}

.section-full {
    padding: 80px 24px;
    background: var(--cream);
}

.section-full .container {
    max-width: 720px;
    margin: 0 auto;
}

.section-full.wide .container {
    max-width: 900px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
}

.section-divider {
    width: 40px;
    height: 2px;
    background: var(--sage);
    margin: 0 auto 40px;
    border: none;
}

/* Image placeholders */
.image-break {
    width: 100%;
    height: 320px;
    background: #d4d0cb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a9590;
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 1px;
}

/* Welcome */
.welcome-section {
    position: relative;
    padding: 40px 16px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: url('images/pool-garden.jpg') center/cover no-repeat;
}

.welcome-circle {
    width: 75vw;
    max-width: 360px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid white;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin-right: -10vw;
}

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

.welcome-content {
    background: var(--white);
    width: 75vw;
    max-width: 360px;
    padding: 40px 24px;
    text-align: center;
    margin-top: -37.5vw;
    padding-top: calc(37.5vw + 20px);
    border-radius: var(--radius);
    margin-bottom: 40px;
    margin-right: -10vw;
}

.welcome-content .bonjour {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.8rem, 10vw, 4rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
}

.welcome-text {
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Content page (pages 3/4 style) */
.content-page {
    padding: 40px 24px 0;
    position: relative;
    overflow: hidden;
}

.content-page .page-header {
    margin-bottom: 24px;
}

.content-page .page-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: -4px;
}

.content-page .page-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.content-page .photo-bg {
    position: relative;
    margin: 0 -24px;
    height: 45vw;
    max-height: 260px;
}

.content-page .photo-bg img.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-page .photo-area {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 24px;
    display: flex;
    align-items: flex-end;
}

.content-page .photo-circle {
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    background: #eee;
}

.content-page .photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-page .photo-circle.large {
    width: 42vw;
    max-width: 200px;
    aspect-ratio: 1;
    transform: translateY(50%);
}

.content-page .photo-circle.small {
    width: 25vw;
    max-width: 120px;
    aspect-ratio: 1;
    position: absolute;
    right: 24px;
    bottom: 0;
    transform: translateY(80%);
}

.content-page .text-content {
    margin-top: 28vw;
    margin-bottom: 24px;
}

.content-page .text-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.content-page .text-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
}

.content-page .pill-bar-wrapper {
    margin: 0 -24px;
}

/* Pill bar — reusable, anchored left or right */
.pill-bar-wrapper {
    display: flex;
    align-items: center;
}

.pill-bar-wrapper.pill-bar--right {
    justify-content: flex-end;
}

.pill-bar-wrapper.pill-bar--left {
    justify-content: flex-start;
}

.page-arrivee .pill-bar-wrapper.pill-bar--right {
    margin-right: -24px;
}

.page-arrivee .pill-bar-wrapper.pill-bar--left {
    margin-left: -24px;
}

.pill-bar {
    background: #E8DFD4;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: visible;
}

.pill-bar--right .pill-bar {
    border-radius: 60px 0 0 60px;
}

.pill-bar--left .pill-bar {
    border-radius: 0 60px 60px 0;
}

.pill-bar .bar-tick {
    width: 28px;
    height: 28px;
    border: 2px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: #555;
    margin-left: 8px;
}

.pill-bar .bar-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.55rem, 1.8vw, 0.7rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    flex-shrink: 0;
    color: var(--text);
}

.pill-bar .bar-divider {
    width: 2px;
    background: #555;
    align-self: stretch;
}

.pill-bar .bar-details {
    font-size: clamp(0.6rem, 2vw, 0.75rem);
    color: var(--text);
    font-weight: 600;
    line-height: 1.4;
}

.pill-bar .bar-details strong {
    color: var(--text);
    font-size: clamp(0.6rem, 2vw, 0.75rem);
}

.pill-bar .bar-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 12px;
    font-size: clamp(0.55rem, 1.8vw, 0.7rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text);
}

.pill-bar .bar-col:not(:last-child) {
    border-right: 2px solid #555;
}

.pill-bar .bar-time {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pill-bar .bar-time-sub {
    font-size: clamp(0.5rem, 1.6vw, 0.65rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.pill-bar .bar-time-big {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

/* Side photo — rounded rectangle anchored to edge */
.side-photo {
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 50%;
}

.side-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.side-photo--left {
    margin-left: -10%;
}

.side-photo--right {
    margin-right: -10%;
    margin-left: auto;
}

/* Page Arrivée & Départ */
.page-arrivee {
    padding: 40px 0 0;
}

.page-arrivee .page-header {
    padding: 0 24px;
    margin-bottom: 24px;
}

.page-arrivee .page-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.page-arrivee .page-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    color: var(--text);
    margin-top: -4px;
}

.arrivee-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 0;
}

.arrivee-row--reverse {
    flex-direction: row-reverse;
}

.arrivee-row .pill-bar-wrapper {
    flex: 1;
    padding-top: 10px;
    margin-bottom: -10px;
}

.page-list {
    list-style: none;
    padding: 2px 24px 0;
    margin: 0 0 24px;
}

.page-list li {
    padding: 2px 0;
    font-size: 0.78rem;
    color: var(--text);
    line-height: 1.5;
}

.page-list li::before {
    content: '\2022';
    margin-right: 8px;
    color: var(--text);
}

.page-list.list-right {
    padding-left: 35%;
}

.page-list.list-left {
    max-width: 85%;
}

/* Info cards */
.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 28px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Cards grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

.card ul {
    padding-left: 18px;
}

.card ul li {
    margin-bottom: 6px;
}

/* WiFi page */
.page-wifi {
    padding: 60px 24px;
    max-width: 600px;
    margin: 0 auto;
}

.wifi-header {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.wifi-header .page-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    color: var(--sage);
    margin-bottom: 4px;
}

.wifi-header .page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

.wifi-icon {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2rem;
    opacity: 0.3;
}

.wifi-info {
    margin-bottom: 48px;
}

.wifi-field {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.wifi-field .bar-tick {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sage);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 2px;
}

.wifi-field h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light, #666);
    margin: 0 0 4px;
}

.wifi-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

.wifi-qr {
    text-align: center;
    margin: 32px 0;
}

.wifi-qr img {
    width: 180px;
    height: 180px;
    border-radius: 12px;
}

.wifi-speaker {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 20px;
    background: var(--cream);
    border-radius: 12px;
    font-size: 0.88rem;
    color: var(--text);
    margin-top: 24px;
}

.wifi-speaker .speaker-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.wifi-speaker p {
    margin: 0;
}

.wifi-backup {
    display: flex;
    align-items: center;
    gap: 24px;
}

.wifi-backup-circles {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.wifi-backup-circles .circle-back {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #2C2C2C;
    top: 0;
    left: 0;
}

.wifi-backup-circles .circle-front {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #555;
    bottom: 0;
    right: 0;
}

.wifi-backup-content {
    flex: 1;
}

.gear-icon {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--sage);
}

.wifi-backup-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Rules page */
.page-regles {
    padding: 60px 24px;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.regles-header {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.regles-header .page-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    color: var(--sage);
    margin-bottom: 4px;
}

.regles-header .page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

/* Deco circles (shared) */
.deco-circles {
    position: absolute;
    width: 90px;
    height: 90px;
}

.deco-circles--right {
    top: -20px;
    right: -35px;
}

.deco-circles--left {
    top: -20px;
    left: -35px;
}

.deco-circles__fill {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: 5px;
    right: -36px;
    z-index: 0;
}

.deco-circles__outline {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #2C2C2C;
    background: transparent;
    top: 10px;
    right: -36px;
    z-index: 1;
}

.deco-circles--left .deco-circles__fill {
    right: auto;
    left: -36px;
}

.deco-circles--left .deco-circles__outline {
    right: auto;
    left: -36px;
}

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

.regles-item {
    aspect-ratio: 1;
    border-radius: 50%;
    background: #E8DFD4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 10% 14px 14px;
}

.regles-number {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    display: block;
}

.regles-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.regles-item p {
    font-size: 0.7rem;
    color: var(--text-light, #666);
    line-height: 1.4;
    margin: 0;
}

.regles-image {
    margin-top: 40px;
    margin-left: -24px;
    margin-right: -24px;
}

.regles-image img {
    width: 100%;
    display: block;
    border-radius: 0;
}

/* Section page (generic: Pool/Garden, Kitchen, etc.) */
.page-section {
    padding: 60px 24px;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.pg-header {
    text-align: center;
    position: relative;
    margin-bottom: 32px;
}

.pg-header .page-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    color: var(--sage);
    margin-bottom: 4px;
}

.pg-header .page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

.pg-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0 0;
}

.pg-section {
    margin-bottom: 36px;
}

.pg-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.pg-section-icon {
    font-size: 1.3rem;
}

.pg-section-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.pg-intro {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0 0 12px;
}

.pg-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.pg-list li {
    position: relative;
    padding-left: 18px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text);
}

.pg-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--sage);
}

.pg-note {
    padding: 14px 18px;
    background: var(--cream);
    border-radius: 10px;
    margin-top: 12px;
}

.pg-note p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.pg-image {
    margin-top: 40px;
    margin-left: -24px;
    margin-right: -24px;
}

.pg-image img {
    width: 100%;
    display: block;
}

/* Visites page */
.page-visites {
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.visites-hero {
    position: relative;
    margin-bottom: 32px;
}

.visites-hero img {
    width: 100%;
    display: block;
}

.visites-hero-text {
    position: absolute;
    bottom: 40px;
    left: 24px;
}

.visites-hero-text .page-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.visites-hero-text .page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.visites-content {
    padding: 0 24px;
    position: relative;
}

.visites-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.visites-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visites-item-img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

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

.visites-item-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.visites-distance {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-light, #666);
    margin: 2px 0 6px;
}

.visites-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text);
    margin: 0;
}

.visites-footer {
    position: relative;
    height: 60px;
    margin-top: 20px;
}

/* Plages page */
.page-plages {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 24px;
}

.plages-header {
    text-align: center;
    margin-bottom: 40px;
}

.plages-header .page-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    color: var(--sage);
    margin-bottom: 4px;
}

.plages-header .page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.plages-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.plages-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.plages-distance {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-light, #666);
    margin: 2px 0 8px;
}

.plages-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text);
    margin: 0 0 12px;
}

.plages-address {
    font-size: 0.8rem;
    color: var(--text-light, #666);
    margin: 0 0 12px;
}

.plages-img {
    border-radius: 8px;
    overflow: hidden;
}

.plages-img img {
    width: 100%;
    display: block;
}

/* Pratique page */
.page-pratique {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 24px;
}

.pratique-header {
    text-align: center;
    margin-bottom: 32px;
}

.pratique-header .page-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    color: var(--sage);
    margin-bottom: 4px;
}

.pratique-header .page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.pratique-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 40px;
}

.pratique-num-card {
    background: #E8DFD4;
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pratique-num-icon {
    font-size: 1.4rem;
}

.pratique-num-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.pratique-num-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-light, #666);
}

.pratique-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pratique-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pratique-item-img {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}

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

.pratique-item-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.pratique-item-info p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light, #666);
    margin: 0;
}

/* Checklist - DEPRECATED, kept for fallback */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 14px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.checklist li::before {
    content: "☐";
    font-size: 1.1rem;
    color: var(--sage);
}

/* Page Depart (Avant de Partir) */
.page-depart {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.depart-overlay {
    position: absolute;
    bottom: -30vw;
    right: -30vw;
    width: 120vw;
    height: 120vw;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10vw 25vw 20vw 20vw;
}

.depart-header {
    margin-bottom: 12px;
    padding-left: 8vw;
}

.depart-header .page-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: var(--sage);
    margin: 0;
}

.depart-header .page-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin: 0;
    color: var(--text);
}

.depart-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.depart-list li {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.3;
}

html[lang="fr"] .depart-list li[lang="fr"],
html[lang="en"] .depart-list li[lang="en"],
html[lang="de"] .depart-list li[lang="de"],
html[lang="it"] .depart-list li[lang="it"] {
    display: flex;
}

.depart-tick {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--sage);
    color: var(--sage);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 80px 24px 60px;
    background: var(--cream);
}

.footer h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.footer p {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 12px;
    line-height: 1.8;
}

.footer .gecko-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #c8c3bc;
    margin: 32px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a9590;
    font-size: 0.75rem;
    font-style: italic;
    overflow: hidden;
}

/* Simple list */
.simple-list {
    padding-left: 18px;
}

.simple-list li {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cover { height: 80vh; min-height: 500px; }
    .section, .section-full { padding: 60px 20px; }
    .image-break { height: 220px; }
}

@media (max-width: 480px) {
    .cover { height: 70vh; min-height: 400px; }
    .cover h1 { font-size: 3rem; }
    .section, .section-full { padding: 48px 16px; }
    .restaurants-grid { grid-template-columns: 1fr; }
}
