/**
 * @file style.Css
 * @description 
 * @author 
 * @copyright 
 */

:root {
    --bleu-profond: #2f5d73;
    --bleu-brume: #7fa8b8;
    --vert-marais: #4f7b6b;
    --vert-sauge: #9ab8ad;
    --gris-perle: #eef3f2;
    --gris-brume: #d8e2df;
    --blanc: #fbfdfc;
    --texte: #203238;
    --texte-doux: #5e7378;
    --ombre: 0 24px 60px rgba(47, 93, 115, 0.16);
    --rayon: 28px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--texte);
    background:
        radial-gradient(circle at top left, rgba(127, 168, 184, 0.22), transparent 32%),
        linear-gradient(180deg, #f8fbfb 0%, #edf3f1 100%);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(251, 253, 252, 0.84);
    border-bottom: 1px solid rgba(95, 126, 119, 0.14);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--bleu-profond);
}

.brand-title em {
    font-style: italic;
    color: var(--vert-marais);
}

.brand-subtitle {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--texte-doux);
    margin-top: 0.35rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav a {
    font-size: 0.92rem;
    color: var(--texte-doux);
}

.nav .cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--bleu-profond), var(--vert-marais));
    color: var(--blanc);
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(47, 93, 115, 0.2);
}

.hero {
    padding: 4.5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: stretch;
}

.hero-copy,
.hero-card {
    border-radius: var(--rayon);
    overflow: hidden;
}

.hero-copy {
    padding: 4rem;
    background:
        linear-gradient(135deg, rgba(47, 93, 115, 0.95), rgba(79, 123, 107, 0.92)),
        #345a6d;
    color: var(--blanc);
    position: relative;
    box-shadow: var(--ombre);
}

.hero-copy::after {
    content: '';
    position: absolute;
    inset: auto -120px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 1.25rem;
}

.eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.4rem, 7vw, 5.6rem);
    line-height: 0.95;
    font-weight: 600;
    max-width: 12ch;
}

.hero h1 span {
    display: block;
    color: #d7ebe3;
    font-style: italic;
    font-weight: 500;
}

.hero p {
    margin-top: 1.5rem;
    max-width: 56ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--blanc);
    color: var(--bleu-profond);
    box-shadow: 0 12px 30px rgba(11, 32, 39, 0.16);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--blanc);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.hero-stat {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.hero-stat span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-card {
    background: var(--blanc);
    box-shadow: var(--ombre);
    display: grid;
    grid-template-rows: 1.3fr auto;
}

.hero-photo {
    min-height: 380px;
    background:
        linear-gradient(rgba(32, 50, 56, 0.18), rgba(32, 50, 56, 0.08)),
        url('/assets/imgs/galleries/Gites (19).jpeg') center/cover;
    position: relative;
}

.floating-note {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(251, 253, 252, 0.88);
    backdrop-filter: blur(10px);
    max-width: 240px;
}

.floating-note strong {
    display: block;
    color: var(--bleu-profond);
    margin-bottom: 0.25rem;
}

.hero-card-body {
    padding: 2rem;
    display: grid;
    gap: 1.2rem;
    background: linear-gradient(180deg, #f9fbfb 0%, var(--gris-perle) 100%);
}

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.mini-panel {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--gris-brume);
}

.mini-panel strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--vert-marais);
}

.section {
    padding: 5rem 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
}

.section-kicker {
    color: var(--vert-marais);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    margin-bottom: 0.65rem;
}

.section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    line-height: 1;
    color: var(--bleu-profond);
}

.section h2 em {
    font-style: italic;
    color: var(--vert-marais);
    font-weight: 500;
}

.section-intro {
    max-width: 56ch;
    color: var(--texte-doux);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.experience-card {
    padding: 1.8rem;
    border-radius: 24px;
    background: rgba(251, 253, 252, 0.86);
    border: 1px solid rgba(154, 184, 173, 0.3);
    box-shadow: 0 14px 34px rgba(79, 123, 107, 0.08);
}

.experience-card strong {
    display: block;
    margin: 1rem 0 0.7rem;
    font-size: 1.15rem;
    color: var(--bleu-profond);
}

.icon-badge {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(47, 93, 115, 0.12), rgba(79, 123, 107, 0.18));
    color: var(--vert-marais);
    font-size: 1.35rem;
}

.split-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
}

.photo-stack {
    position: relative;
    min-height: 540px;
}

.photo-main,
.photo-secondary {
    border-radius: 28px;
    box-shadow: var(--ombre);
    position: absolute;
    background-size: cover;
    background-position: center;
}

.photo-main {
    inset: 0 5rem 3rem 0;
    background-image: url('/assets/imgs/galleries/Gites (12).jpeg');
}

.photo-secondary {
    right: 0;
    bottom: 0;
    width: 48%;
    height: 48%;
    border: 8px solid var(--blanc);
    background-image: url('/assets/imgs/galleries/Gites (18).jpeg');
}

.info-panel {
    background: rgba(251, 253, 252, 0.78);
    border: 1px solid rgba(127, 168, 184, 0.28);
    border-radius: 30px;
    padding: 2.2rem;
    box-shadow: 0 18px 46px rgba(47, 93, 115, 0.08);
}

.info-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(216, 226, 223, 0.8);
}

.info-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.gallery-section {
    position: relative;
}

.activity-page {
    padding: 2.25rem 0 5rem;
}

.activity-shell {
    position: relative;
    display: grid;
    gap: 1.5rem;
}

.activity-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.5rem 0 1rem;
}

.activity-intro h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.6vw, 4rem);
    line-height: 0.96;
    color: var(--bleu-profond);
    max-width: 12ch;
}

.activity-listing {
    display: grid;
    gap: 1.5rem;
}

.activity-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 1.25rem;
    align-items: stretch;
    padding: 1.25rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(127, 168, 184, 0.16), transparent 32%),
        rgba(251, 253, 252, 0.92);
    border: 1px solid rgba(127, 168, 184, 0.22);
    box-shadow: 0 18px 44px rgba(47, 93, 115, 0.1);
}

.activity-card--reverse {
    grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
}

.activity-card--reverse .activity-card__copy {
    order: 2;
}

.activity-card--reverse .activity-card__media {
    order: 1;
}

.activity-card__copy {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 1.1rem 1.15rem;
}

.activity-card__copy h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.3rem, 3.7vw, 3.4rem);
    line-height: 0.98;
    color: var(--bleu-profond);
}

.activity-card__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--texte-doux);
    max-width: 52ch;
}

.activity-card__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

.activity-card__media {
    min-width: 0;
}

.activity-card__image {
    height: 100%;
    min-height: 340px;
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(127, 168, 184, 0.08);
    box-shadow: 0 16px 34px rgba(47, 93, 115, 0.1);
}

.activity-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.activity-gallery__item {
    margin: 0;
    min-width: 0;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(127, 168, 184, 0.08);
    min-height: 180px;
}

.activity-gallery__item.is-featured {
    grid-column: 1 / -1;
    min-height: 320px;
}

.activity-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.activity-gallery--empty {
    place-items: center;
    min-height: 320px;
    padding: 1.5rem;
    border: 1px dashed rgba(127, 168, 184, 0.35);
    color: var(--texte-doux);
    text-align: center;
}

.activity-empty-state {
    padding: 2.5rem;
    border-radius: 32px;
    background: rgba(251, 253, 252, 0.88);
    border: 1px solid rgba(127, 168, 184, 0.2);
    box-shadow: 0 20px 48px rgba(47, 93, 115, 0.08);
}

@media (max-width: 960px) {
    .activity-page {
        padding: 1.5rem 0 4rem;
    }

    .activity-intro {
        align-items: start;
        flex-direction: column;
    }

    .activity-card,
    .activity-card--reverse {
        grid-template-columns: minmax(0, 1fr);
    }

    .activity-card--reverse .activity-card__copy,
    .activity-card--reverse .activity-card__media {
        order: initial;
    }

    .activity-card__copy {
        padding: 0.5rem;
    }

    .activity-card__image {
        min-height: 300px;
    }
}

.gallery-section::before {
    content: '';
    position: absolute;
    inset: 3rem 0 auto;
    height: 320px;
    background: linear-gradient(180deg, rgba(127, 168, 184, 0.08), rgba(154, 184, 173, 0));
    pointer-events: none;
}

.gallery-head {
    position: relative;
    z-index: 1;
}

.gallery-slider {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.25rem;
}

.gallery-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-counter {
    font-size: 0.92rem;
    color: var(--bleu-profond);
    font-weight: 600;
}

.gallery-fullscreen {
    border: 0;
    background: transparent;
    color: var(--vert-marais);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.gallery-viewport {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(127, 168, 184, 0.2);
    background: rgba(251, 253, 252, 0.86);
    box-shadow: 0 20px 48px rgba(47, 93, 115, 0.12);
}

.gallery-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
}

.gallery-image-button {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.gallery-slide img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.gallery-slide figcaption {
    padding: 1rem 1.1rem 1.15rem;
    font-size: 0.92rem;
    color: var(--texte-doux);
    background: linear-gradient(180deg, rgba(251, 253, 252, 0.72), rgba(255, 255, 255, 0.96));
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-control {
    border: 0;
    border-radius: 999px;
    padding: 0.85rem 1.25rem;
    background: linear-gradient(135deg, rgba(47, 93, 115, 0.12), rgba(79, 123, 107, 0.22));
    color: var(--bleu-profond);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.gallery-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex: 1;
    min-width: 180px;
}

.gallery-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(127, 168, 184, 0.42);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.gallery-dot.is-active {
    background: var(--bleu-profond);
    transform: scale(1.15);
}

.gallery-lightbox {
    width: min(92vw, 1120px);
    max-width: 1120px;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    inset: 0;
    margin: auto;
}

.gallery-lightbox::backdrop {
    background: rgba(20, 32, 37, 0.82);
    backdrop-filter: blur(4px);
}

.gallery-lightbox-shell {
    position: relative;
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 28px;
    background: rgba(12, 23, 28, 0.96);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.gallery-lightbox-counter {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    font-weight: 600;
}

.gallery-lightbox-stage {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
}

.gallery-lightbox-close {
    justify-self: end;
    border: 0;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    color: var(--blanc);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.gallery-lightbox-nav {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.12);
    color: var(--blanc);
    font: inherit;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.gallery-lightbox-image {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 20px;
}

.gallery-lightbox-caption {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    text-align: center;
}

.ambient-band {
    padding: 1.3rem 0;
    background: linear-gradient(90deg, var(--bleu-profond), var(--vert-marais));
    color: var(--blanc);
    overflow: hidden;
}

.bandeau-slider {
    padding: 0;
}

.bandeau-slider__viewport {
    position: relative;
    overflow: hidden;
    height: clamp(190px, 24vw, 300px);
    min-height: 0;
    background: #1e3a43;
}

.bandeau-slider__track {
    display: flex;
    transition: transform 0.55s ease;
    will-change: transform;
}

.bandeau-slider__slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    height: clamp(190px, 24vw, 300px);
    min-height: 0;
}

.bandeau-slider__slide img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.bandeau-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 35, 40, 0.14), rgba(18, 35, 40, 0.28));
}

.bandeau-slider__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--blanc);
    padding: 1.25rem 4.2rem;
    z-index: 1;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.bandeau-slider__content h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.45rem, 2.8vw, 2.45rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--blanc);
    margin-bottom: 1rem;
}

.bandeau-slider__content p {
    max-width: 42ch;
    font-size: clamp(0.86rem, 1.05vw, 0.98rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.94);
}

.bandeau-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    font-size: 2.8rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
}

.bandeau-slider__nav--prev {
    left: 0.6rem;
}

.bandeau-slider__nav--next {
    right: 0.6rem;
}

.bandeau-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 0.45rem;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.bandeau-slider__dot {
    width: 9px;
    height: 9px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.bandeau-slider__dot.is-active {
    background: #122328;
    transform: scale(1.1);
}

.ambient-track {
    display: flex;
    gap: 2.4rem;
    white-space: nowrap;
    font-size: 0.92rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.9;
}

.contact-shell {
    padding: 3rem;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(251, 253, 252, 0.9), rgba(238, 243, 242, 0.92)),
        var(--blanc);
    box-shadow: var(--ombre);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 2rem;
}

.contact-card {
    padding: 1.4rem;
    border-radius: 24px;
    background: var(--blanc);
    border: 1px solid rgba(127, 168, 184, 0.2);
    margin-top: 1rem;
}

.contact-card strong {
    display: block;
    color: var(--bleu-profond);
    margin-bottom: 0.3rem;
}

.booking-box {
    padding: 2rem;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--bleu-profond), #406f85);
    color: var(--blanc);
    align-self: center;
}

.booking-box p {
    color: rgba(255, 255, 255, 0.82);
    margin: 1rem 0 1.5rem;
}

.footer {
    padding: 2rem 0 3rem;
    color: var(--texte-doux);
    font-size: 0.92rem;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(95, 126, 119, 0.16);
}

.footer-copy {
    margin: 0;
}

.footer-links {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(47, 93, 115, 0.08), rgba(79, 123, 107, 0.16));
    color: var(--bleu-profond);
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(47, 93, 115, 0.14);
    background: linear-gradient(135deg, rgba(47, 93, 115, 0.14), rgba(79, 123, 107, 0.24));
}

.footer-links a:focus-visible {
    outline: 2px solid rgba(47, 93, 115, 0.28);
    outline-offset: 2px;
}

.content-studio-page {
    --content-studio-canvas: #f7f0e4;
    --content-studio-canvas-strong: #efe4d2;
    --content-studio-panel: rgba(255, 250, 243, 0.82);
    --content-studio-panel-strong: #fff8ef;
    --content-studio-ink: #1f2933;
    --content-studio-muted: #5b6b75;
    --content-studio-accent: #0f766e;
    --content-studio-accent-soft: rgba(15, 118, 110, 0.14);
    --content-studio-line: rgba(31, 41, 51, 0.12);
    --content-studio-shadow: 0 24px 70px rgba(74, 54, 32, 0.12);
    --content-studio-radius-xl: 28px;
    --content-studio-radius-lg: 20px;
    --content-studio-radius-md: 14px;
    margin: 0;
    min-height: 100vh;
    font-family: 'Manrope', sans-serif;
    color: var(--content-studio-ink);
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(203, 120, 92, 0.18), transparent 24%),
        linear-gradient(180deg, #fbf7f1 0%, var(--content-studio-canvas) 100%);
}

.content-studio-page a {
    color: inherit;
}

.content-studio-shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    padding: 40px 0 56px;
}

.content-studio-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 28px;
}

.content-studio-login-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 24px;
    align-items: stretch;
}

.content-studio-hero-card,
.content-studio-login-card,
.content-studio-summary-card,
.content-studio-section-card {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: var(--content-studio-panel);
    backdrop-filter: blur(18px);
    box-shadow: var(--content-studio-shadow);
}

.content-studio-hero-card {
    border-radius: var(--content-studio-radius-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.content-studio-login-card {
    border-radius: var(--content-studio-radius-xl);
    padding: 32px;
    display: grid;
    gap: 18px;
    align-content: start;
}

.content-studio-hero-card::after {
    content: '';
    position: absolute;
    inset: auto -60px -60px auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
}

.content-studio-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    color: var(--content-studio-muted);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.content-studio-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--content-studio-accent);
}

.content-studio-title,
.content-studio-section-title {
    margin: 0;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    line-height: 0.94;
}

.content-studio-title {
    margin-top: 18px;
    font-size: clamp(3rem, 6vw, 5.8rem);
}

.content-studio-title em,
.content-studio-section-title em {
    font-style: italic;
    color: #a85d3f;
}

.content-studio-lead {
    max-width: 56ch;
    margin-top: 18px;
    color: var(--content-studio-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.content-studio-summary-card {
    border-radius: var(--content-studio-radius-xl);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(180deg, rgba(255, 248, 239, 0.95), rgba(243, 231, 214, 0.9));
}

.content-studio-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.content-studio-metric {
    padding: 18px;
    border-radius: var(--content-studio-radius-lg);
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(31, 41, 51, 0.08);
}

.content-studio-metric strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.content-studio-metric span,
.content-studio-summary-note,
.content-studio-section-help,
.content-studio-field-meta,
.content-studio-flash,
.content-studio-topbar-link {
    color: var(--content-studio-muted);
}

.content-studio-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.content-studio-topbar-link {
    text-decoration: none;
    font-weight: 600;
}

.content-studio-flash {
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: var(--content-studio-radius-md);
    background: rgba(15, 118, 110, 0.12);
    border: 1px solid rgba(15, 118, 110, 0.16);
}

.content-studio-auth-error {
    padding: 14px 18px;
    border-radius: var(--content-studio-radius-md);
    background: rgba(168, 93, 63, 0.12);
    border: 1px solid rgba(168, 93, 63, 0.2);
    color: #8c4b33;
}

.content-studio-form {
    display: grid;
    gap: 22px;
}

.content-studio-login-form {
    display: grid;
    gap: 16px;
}

.content-studio-section-card {
    border-radius: var(--content-studio-radius-xl);
    padding: 26px;
}

.content-studio-section-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    margin-bottom: 22px;
}

.content-studio-section-title {
    font-size: clamp(2rem, 3vw, 3rem);
}

.content-studio-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.content-studio-field {
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: var(--content-studio-radius-lg);
    background: var(--content-studio-panel-strong);
    border: 1px solid var(--content-studio-line);
}

.content-studio-field.is-wide {
    grid-column: 1 / -1;
}

.content-studio-field label {
    font-weight: 700;
}

.content-studio-field-meta {
    font-size: 0.86rem;
}

.content-studio-page input[type='text'],
.content-studio-page input[type='password'],
.content-studio-page input[type='number'],
.content-studio-page input[type='file'],
.content-studio-page textarea {
    width: 100%;
    border: 1px solid rgba(31, 41, 51, 0.15);
    border-radius: 14px;
    background: #fffdf9;
    padding: 14px 16px;
    font: inherit;
    color: var(--content-studio-ink);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    resize: vertical;
}

.content-studio-page input[type='text']:focus,
.content-studio-page input[type='password']:focus,
.content-studio-page input[type='number']:focus,
.content-studio-page input[type='file']:focus,
.content-studio-page textarea:focus {
    outline: none;
    border-color: rgba(15, 118, 110, 0.5);
    box-shadow: 0 0 0 5px var(--content-studio-accent-soft);
    transform: translateY(-1px);
}

.content-studio-page textarea {
    min-height: 132px;
}

.content-studio-form-actions {
    position: sticky;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(24, 36, 44, 0.9);
    color: #f6efe6;
    box-shadow: 0 18px 40px rgba(24, 36, 44, 0.24);
}

.content-studio-save-button {
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    font: inherit;
    font-weight: 700;
    color: #fbf7f1;
    background: linear-gradient(135deg, #0f766e, #1d9c87);
    cursor: pointer;
}

.content-studio-save-button:hover {
    filter: brightness(1.04);
}

.content-studio-ghost-button {
    border: 1px solid rgba(31, 41, 51, 0.12);
    border-radius: 999px;
    padding: 12px 18px;
    font: inherit;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.58);
    color: var(--content-studio-ink);
    cursor: pointer;
}

.content-studio-login-note {
    color: var(--content-studio-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.content-studio-action-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.content-studio-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 0 0 24px;
}

.content-studio-tabbar {
    display: flex;
    gap: 12px;
    margin: 0;
}

.content-studio-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(31, 41, 51, 0.12);
    background: rgba(255, 255, 255, 0.55);
    color: var(--content-studio-muted);
    font-weight: 700;
}

.content-studio-tab.is-active {
    background: linear-gradient(135deg, #0f766e, #1d9c87);
    color: #fbf7f1;
    border-color: transparent;
}

.content-studio-upload-form {
    display: grid;
    gap: 18px;
}
.content-studio-activity-create {
    display: grid;
    gap: 18px;
}

.content-studio-checkboxes {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.content-studio-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.content-studio-checkbox--panel {
    width: 100%;
    min-height: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fffdf9;
    border: 1px solid rgba(31, 41, 51, 0.15);
}
.content-studio-field--compact {
    align-content: center;
}

.content-studio-image-collections {
    display: grid;
    gap: 22px;
    margin-top: 22px;
}
.content-studio-activities-grid {
    display: grid;
    gap: 18px;
}
.content-studio-activity-card {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    border-radius: var(--content-studio-radius-lg);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid var(--content-studio-line);
}
.content-studio-activity-media {
    min-width: 0;
}
.content-studio-activity-media img,
.content-studio-activity-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    border-radius: 18px;
}
.content-studio-activity-media img {
    object-fit: cover;
    background: rgba(255, 255, 255, 0.5);
}
.content-studio-activity-placeholder {
    display: grid;
    place-items: center;
    padding: 18px;
    text-align: center;
    color: var(--content-studio-muted);
    border: 1px dashed var(--content-studio-line);
    background: rgba(255, 255, 255, 0.48);
}
.content-studio-activity-body {
    display: grid;
    gap: 14px;
}

.content-studio-activity-body > form:last-child {
    justify-self: start;
}
.content-studio-activity-form {
    display: grid;
    gap: 14px;
}
.content-studio-activity-inline-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.content-studio-activity-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.content-studio-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.content-studio-image-card {
    border-radius: var(--content-studio-radius-lg);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--content-studio-line);
}

.content-studio-image-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.content-studio-image-card-body {
    display: grid;
    gap: 12px;
    padding: 14px;
}

.content-studio-empty-card {
    display: grid;
    gap: 8px;
    align-content: start;
    padding: 20px;
    min-height: 160px;
    border-radius: var(--content-studio-radius-lg);
    border: 1px dashed var(--content-studio-line);
    background: rgba(255, 255, 255, 0.52);
    color: var(--content-studio-muted);
}

.content-studio-empty-card p {
    margin: 0;
}

.content-studio-danger-button {
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    font: inherit;
    font-weight: 700;
    color: #fff7f4;
    background: linear-gradient(135deg, #b45309, #c76d2d);
    cursor: pointer;
}

.content-studio-modal-open {
    overflow: hidden;
}

.content-studio-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
}

.content-studio-modal[hidden] {
    display: none !important;
}

.content-studio-modal:not([hidden]) .content-studio-modal-backdrop {
    animation: content-studio-modal-fade-in 220ms ease forwards;
}

.content-studio-modal:not([hidden]) .content-studio-modal-dialog {
    animation: content-studio-modal-rise-in 240ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.content-studio-modal[data-state="closing"] .content-studio-modal-backdrop {
    animation: content-studio-modal-fade-out 180ms ease forwards;
}

.content-studio-modal[data-state="closing"] .content-studio-modal-dialog {
    animation: content-studio-modal-rise-out 180ms ease forwards;
}

.content-studio-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(15, 118, 110, 0.18), transparent 42%),
        rgba(18, 24, 31, 0.62);
    backdrop-filter: blur(10px);
    opacity: 0;
}

.content-studio-modal-dialog {
    position: relative;
    width: min(100%, 540px);
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: linear-gradient(180deg, rgba(251, 247, 241, 0.98), rgba(243, 236, 227, 0.96));
    box-shadow: 0 28px 90px rgba(22, 28, 36, 0.28);
    opacity: 0;
    transform: translateY(24px) scale(0.96);
}

.content-studio-modal-eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--content-studio-muted);
    font-weight: 700;
}

.content-studio-modal-text {
    margin: 0;
    color: var(--content-studio-muted);
    line-height: 1.7;
}

.content-studio-modal-preview {
    min-height: 180px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(31, 41, 51, 0.08);
}

.content-studio-modal-preview img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.content-studio-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

@keyframes content-studio-modal-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes content-studio-modal-fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes content-studio-modal-rise-in {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes content-studio-modal-rise-out {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
}

@media (max-width: 920px) {
    .content-studio-hero,
    .content-studio-login-layout,
    .content-studio-fields-grid,
    .content-studio-activity-inline-grid,
    .content-studio-image-grid {
        grid-template-columns: 1fr;
    }

    .content-studio-activity-card {
        grid-template-columns: 1fr;
    }

    .content-studio-section-head,
    .content-studio-topbar,
    .content-studio-form-actions,
    .content-studio-toolbar {
        align-items: start;
        flex-direction: column;
    }

    .content-studio-tabbar,
    .content-studio-checkboxes {
        flex-direction: column;
    }

    .content-studio-modal {
        padding: 14px;
    }

    .content-studio-modal-dialog {
        padding: 22px;
        border-radius: 24px;
    }

    .content-studio-modal-actions {
        flex-direction: column-reverse;
    }
}

@media (max-width: 1200px) {
    .hero-copy {
        padding: 3.25rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 6vw, 4.8rem);
    }

    .photo-stack {
        min-height: 500px;
    }

    .gallery-slide img {
        aspect-ratio: 15 / 9;
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .split-showcase,
    .contact-shell,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .site-header .container {
        align-items: flex-start;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
        gap: 1rem 1.25rem;
    }

    .hero-copy {
        padding: 3rem 2rem;
    }

    .hero-card {
        grid-template-rows: auto auto;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
        margin-bottom: 1.5rem;
    }

    .section-intro {
        max-width: 100%;
    }

    .photo-stack {
        min-height: 420px;
    }

    .photo-main {
        inset: 0 3rem 2rem 0;
    }

    .gallery-slide img {
        aspect-ratio: 4 / 3;
    }

    .gallery-lightbox {
        width: min(94vw, 960px);
    }

    .contact-shell {
        padding: 2rem;
    }

    .booking-box {
        justify-self: stretch;
    }
}

@media (max-width: 720px) {
    .site-header .container,
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header {
        position: static;
    }

    .brand-title {
        font-size: 1.7rem;
    }

    .brand-subtitle {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    .nav {
        gap: 0.85rem;
    }

    .bandeau-slider__content {
        padding: 1rem 2.6rem;
    }

    .bandeau-slider__content h2 {
        font-size: clamp(1.15rem, 5.6vw, 1.8rem);
    }

    .bandeau-slider__content p {
        font-size: 0.78rem;
    }

    .bandeau-slider__nav {
        width: 28px;
        height: 28px;
        font-size: 2rem;
    }

    .bandeau-slider__nav--prev {
        left: 0.4rem;
    }

    .bandeau-slider__nav--next {
        right: 0.4rem;
    }

    .nav a,
    .nav .cta {
        width: 100%;
        justify-content: center;
    }

    .nav a {
        font-size: 0.95rem;
    }

    .hero {
        padding: 2rem 0 2.5rem;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 12vw, 3.6rem);
    }

    .hero-actions,
    .hero-stats,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .eyebrow,
    .section-kicker {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }

    .hero p,
    .section-intro,
    .experience-card p,
    .info-item p,
    .contact-card p,
    .booking-box p,
    .gallery-slide figcaption,
    .footer {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .hero-stat strong,
    .info-item strong,
    .experience-card strong,
    .contact-card strong {
        line-height: 1.2;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
        min-height: 48px;
        font-size: 0.95rem;
    }

    .hero-copy,
    .hero-card-body,
    .booking-box {
        padding: 1.5rem;
    }

    .contact-shell {
        padding: 1.5rem;
        border-radius: 26px;
    }

    .section {
        padding: 4rem 0;
    }

    .section h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.05;
    }

    .photo-stack {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .photo-main,
    .photo-secondary {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        min-height: 220px;
    }

    .photo-secondary {
        border-width: 0;
    }

    .gallery-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-control,
    .gallery-dots {
        width: 100%;
    }

    .gallery-slide img {
        aspect-ratio: 5 / 4;
    }

    .gallery-lightbox-stage {
        grid-template-columns: 1fr;
    }

    .gallery-lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    .gallery-lightbox-prev {
        left: 1rem;
    }

    .gallery-lightbox-next {
        right: 1rem;
    }

    .floating-note {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }

    .contact-card {
        padding: 1.15rem;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 1.25rem), var(--max));
    }

    .hero-copy,
    .hero-card-body,
    .contact-shell,
    .booking-box,
    .info-panel {
        padding: 1.25rem;
    }
    .gallery-lightbox-caption,

    .hero-photo {
        min-height: 300px;
    }

    .gallery-lightbox-shell {
        padding: 0.75rem;
        border-radius: 22px;
    }

    .gallery-lightbox-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-lightbox-close,
    .gallery-fullscreen {
        width: 100%;
    }

    .gallery-lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }

    .brand-title {
        font-size: 1.52rem;
    }

    .hero h1 {
        font-size: clamp(2.3rem, 12vw, 3rem);
        line-height: 0.98;
    }

    .section h2 {
        font-size: clamp(1.85rem, 9vw, 2.35rem);
    }

    .eyebrow,
    .section-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .hero p,
    .section-intro,
    .experience-card p,
    .info-item p,
    .contact-card p,
    .booking-box p,
    .gallery-slide figcaption,
    .footer,
    .nav a {
        font-size: 0.92rem;
    }

    .hero-stat strong {
        font-size: 1.25rem;
    }

    .hero-stat span,
    .brand-subtitle {
        font-size: 0.72rem;
    }

    .hero-stat,
    .mini-panel,
    .experience-card,
    .contact-card {
        border-radius: 18px;
    }

    .experience-card,
    .info-panel,
    .booking-box,
    .contact-card {
        line-height: 1.55;
    }

    .section {
        padding: 3.25rem 0;
    }

    .ambient-track {
        gap: 1.2rem;
        font-size: 0.74rem;
        letter-spacing: 0.12em;
    }
}