/* ============================================
   LES AUGETS — AWARD-WORTHY DESIGN
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --white: #f5f0eb;
    --cream: #e8e0d6;
    --dark: #1a1815;
    --accent: #c4a882;
    --accent-light: #d4bfa0;
    --text: #9a9590;
    --text-light: #6a6560;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Space Grotesk', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

button {
    cursor: none;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

/* --- PRELOADER --- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    text-align: center;
    position: relative;
}

.preloader-line {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 2rem;
    transform-origin: left;
    transform: scaleX(0);
    animation: preloaderLine 2s var(--ease-out) forwards;
}

@keyframes preloaderLine {
    to { transform: scaleX(1); }
}

.preloader-text {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    overflow: hidden;
}

.preloader-word {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--white);
    display: inline-block;
    transform: translateY(100%);
    animation: slideUp 1s var(--ease-out) forwards;
}

.preloader-word:nth-child(2) {
    animation-delay: 0.15s;
}

@keyframes slideUp {
    to { transform: translateY(0); }
}

.preloader-counter {
    margin-top: 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* --- CUSTOM CURSOR --- */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: -4px;
    transition: transform 0.15s var(--ease-out), opacity 0.3s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: -20px;
    transition: transform 0.4s var(--ease-out), width 0.4s var(--ease-out), height 0.4s var(--ease-out), top 0.4s var(--ease-out), left 0.4s var(--ease-out), border-color 0.3s, opacity 0.3s;
}

.cursor-text {
    position: absolute;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.3s, transform 0.4s var(--ease-out);
}

.cursor.hover .cursor-outline {
    width: 60px;
    height: 60px;
    top: -30px;
    left: -30px;
    border-color: var(--accent);
}

.cursor.hover .cursor-dot {
    transform: scale(0.5);
}

.cursor.gallery-hover .cursor-outline {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
    border-color: var(--accent);
    background: rgba(196, 168, 130, 0.1);
}

.cursor.gallery-hover .cursor-text {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.cursor.gallery-hover .cursor-dot {
    opacity: 1;
}

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: background 0.5s, padding 0.5s, backdrop-filter 0.5s;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    position: relative;
    z-index: 110;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.4s var(--ease-out), filter 0.4s;
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: center;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    opacity: 0.7;
    position: relative;
    padding: 0.3rem 0;
    overflow: hidden;
    transition: opacity 0.4s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease-out);
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 110;
}

.burger-line {
    width: 28px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.5s var(--ease-out), opacity 0.3s;
}

.nav-burger.active .burger-line:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav-burger.active .burger-line:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* --- MOBILE MENU --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 105;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.8s var(--ease-in-out);
}

.mobile-menu.active {
    clip-path: inset(0 0 0% 0);
}

.mobile-link {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 300;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.mobile-link span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.6s var(--ease-out);
}

.mobile-menu.active .mobile-link span {
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) span { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) span { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) span { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) span { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) span { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(6) span { transition-delay: 0.35s; }
.mobile-menu.active .mobile-link:nth-child(7) span { transition-delay: 0.4s; }

.mobile-link:hover {
    color: var(--accent);
}

.mobile-menu-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s 0.5s;
}

.mobile-menu.active .mobile-menu-footer {
    opacity: 1;
}

.mobile-menu-footer p {
    font-size: 0.8rem;
    color: var(--text);
    letter-spacing: 0.05em;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(3rem, 8vh, 6rem);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.2);
    transition: transform 8s var(--ease-smooth);
}

.hero-img.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.3) 0%,
        rgba(10,10,10,0.1) 30%,
        rgba(10,10,10,0.4) 70%,
        rgba(10,10,10,0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.hero-tag-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    display: block;
}

.hero-tag-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    font-size: clamp(4rem, 12vw, 11rem);
    letter-spacing: -0.02em;
}

.hero-desc {
    max-width: 500px;
    margin-bottom: 2rem;
}

.desc-line {
    display: block;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--cream);
    opacity: 0.8;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 2rem;
}

/* Buttons */
.btn-magnetic {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: border-color 0.4s, background 0.4s, color 0.4s;
    position: relative;
    overflow: hidden;
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s var(--ease-out);
}

.btn-magnetic:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-magnetic:hover {
    border-color: var(--white);
    color: var(--black);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    transition: transform 0.4s var(--ease-out);
}

.btn-magnetic:hover .btn-arrow {
    transform: translate(3px, -3px);
}

.btn-magnetic.light {
    border-color: rgba(255,255,255,0.5);
}

.btn-magnetic.large {
    padding: 1.2rem 2.5rem;
    font-size: 0.9rem;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    right: clamp(1.5rem, 4vw, 4rem);
    bottom: clamp(3rem, 8vh, 6rem);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: scrollLine 2s var(--ease-smooth) infinite;
}

@keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50.01% { transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text);
    writing-mode: vertical-lr;
}

.hero-bottom {
    position: absolute;
    bottom: clamp(3rem, 8vh, 6rem);
    right: clamp(6rem, 12vw, 12rem);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    display: none;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text);
}

.hero-altitude {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.altitude-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent);
}

.altitude-unit {
    font-size: 0.8rem;
    color: var(--text);
}

/* --- MARQUEE SECTION --- */
.marquee-section {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
    flex-shrink: 0;
}

.marquee-content span {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 300;
    color: var(--text-light);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.marquee-dot {
    width: 6px !important;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

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

/* --- SECTIONS GENERAL --- */
.section {
    padding: clamp(5rem, 12vh, 10rem) 0;
    position: relative;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.section-tag.light {
    color: var(--accent-light);
}

.section-tag.light::before {
    background: var(--accent-light);
}

.split-heading {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
}

.split-heading.center {
    text-align: center;
}

.split-heading.light {
    color: var(--white);
}

.line-wrap {
    display: block;
    overflow: hidden;
}

.line-inner {
    display: inline-block;
    transform: translateY(110%);
}

.line-inner.revealed {
    transform: translateY(0);
    transition: transform 1s var(--ease-out);
}

.reveal-text {
    overflow: hidden;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--ease-out), transform 1s var(--ease-out);
}

/* --- ABOUT SECTION --- */
.about {
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
}

.about-desc p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.stat-unit {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.about-img-stack {
    position: relative;
    height: 600px;
}

.about-img-main {
    width: 85%;
    height: 80%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 45%;
    overflow: hidden;
    border-radius: 8px;
    border: 4px solid var(--black);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-img-secondary:hover img {
    transform: scale(1.05);
}

/* --- EXPERIENCE SECTION --- */
.experience {
    background: var(--dark);
}

.experience-header {
    text-align: center;
    margin-bottom: 4rem;
}

.experience-header .section-tag {
    justify-content: center;
}

.experience-header .section-tag::before {
    display: none;
}

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

.experience-lead {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: var(--cream);
}

.experience-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.exp-feature {
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: border-color 0.5s, transform 0.5s var(--ease-out), background 0.5s;
}

.exp-feature:hover {
    border-color: rgba(196, 168, 130, 0.3);
    transform: translateY(-5px);
    background: rgba(255,255,255,0.02);
}

.exp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(196, 168, 130, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.exp-feature h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.exp-feature p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

/* --- GALLERY SECTION --- */
.gallery {
    padding-bottom: 0;
    overflow: visible;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(2rem, 5vh, 4rem);
    padding-bottom: clamp(2rem, 5vh, 4rem);
}

.gallery-header {
    margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
    flex-shrink: 0;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    padding-right: clamp(2rem, 6vw, 6rem);
    padding-bottom: 0;
    cursor: grab;
    flex-shrink: 0;
    overflow: visible;
}

.gallery-item {
    flex-shrink: 0;
    width: clamp(255px, 25vw, 395px);
    position: relative;
}

.gallery-track:active {
    cursor: grabbing;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

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

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

.gallery-label {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
}

/* --- ACTIVITIES SECTION --- */
.activities {
    background: var(--black);
}

.activities-header {
    text-align: center;
    margin-bottom: 4rem;
}

.activities-header .section-tag {
    justify-content: center;
}

.activities-header .section-tag::before {
    display: none;
}

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

.activity-card {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.activity-img {
    position: absolute;
    inset: 0;
}

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

.activity-card:hover .activity-img img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: background 0.5s;
}

.activity-card:hover .activity-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(10,10,10,0.85) 100%);
}

.activity-season {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.activity-overlay h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.activity-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    transition: gap 0.4s var(--ease-out);
}

.activity-card:hover .activity-cta {
    gap: 1rem;
}

/* --- PRICING SECTION --- */
.pricing {
    background: var(--dark);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header .section-tag {
    justify-content: center;
}

.pricing-header .section-tag::before {
    display: none;
}

.pricing-subtitle {
    font-size: 1.05rem;
    color: var(--text);
    margin-top: -1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.5s, transform 0.5s var(--ease-out);
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(196, 168, 130, 0.2);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--accent);
}

.pricing-card-tag {
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(255,255,255,0.03);
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-card.featured .pricing-card-tag {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
}

.pricing-card-inner {
    padding: 2rem;
    text-align: center;
}

.pricing-card-inner h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-detail {
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    min-height: 2.4rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
    margin-bottom: 2rem;
}

.price-from {
    font-size: 0.7rem;
    color: var(--text);
    margin-right: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.price {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 300;
}

.asterisk {
    font-size: 1rem;
    color: var(--accent);
}

.pricing-btn {
    display: block;
    padding: 0.9rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    transition: background 0.4s, border-color 0.4s, color 0.4s;
}

.pricing-btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.pricing-card.featured .pricing-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}

.pricing-card.featured .pricing-btn:hover {
    background: var(--white);
    border-color: var(--white);
}

.pricing-notes {
    text-align: center;
    margin-top: 2rem;
}

.pricing-notes p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- RESTAURANT BANNER --- */
.restaurant-banner {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.restaurant-bg {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
}

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

.restaurant-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.7);
}

.restaurant-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.restaurant-desc {
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* --- GÎTE PAGE: bouton Réserver centré sous la grille (après Couloir penderie) --- */
.gite-cta-center {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* --- CONTACT CTA --- */
.contact-cta {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
}

.contact-value {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.5;
    transition: color 0.3s;
}

a.contact-value:hover {
    color: var(--accent);
}

/* --- FOOTER --- */
.footer {
    padding: clamp(3rem, 6vh, 5rem) 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text);
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* --- PAGE HEADER (for sub-pages) --- */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    padding: clamp(6rem, 12vh, 10rem) 0 clamp(3rem, 6vh, 5rem);
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.9) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.page-hero .breadcrumb {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text);
    margin-bottom: 1rem;
}

.page-hero .breadcrumb a {
    color: var(--accent);
    transition: opacity 0.3s;
}

.page-hero .breadcrumb a:hover {
    opacity: 0.7;
}

/* --- CONTENT CARDS (sub-pages) --- */
.content-section {
    padding: clamp(4rem, 8vh, 6rem) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.content-card {
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: border-color 0.5s, transform 0.5s var(--ease-out), background 0.5s;
}

.content-card:hover {
    border-color: rgba(196, 168, 130, 0.2);
    transform: translateY(-5px);
    background: rgba(255,255,255,0.02);
}

.content-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.content-card p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

/* Partner cards */
.partners-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    display: flex;
    flex-direction: column;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    transition: color 0.3s, gap 0.4s var(--ease-out);
}

.partner-link:hover {
    color: var(--accent-light);
    gap: 0.75rem;
}

.partner-link svg {
    flex-shrink: 0;
}

/* Card with image */
.content-card-img {
    overflow: hidden;
    border-radius: 12px;
}

.content-card-img .card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.content-card-img .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.content-card-img:hover .card-image img {
    transform: scale(1.05);
}

.content-card-img .card-content {
    padding: 2rem;
}

.content-card-img .card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.content-card-img .card-content p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
}

/* --- GITE DETAILS (gite.html) --- */
.gite-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.gite-floor {
    margin-bottom: 3rem;
}

.gite-floor h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gite-room {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.gite-room h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.gite-room p, .gite-room ul {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
}

.gite-room ul {
    list-style: none;
    padding: 0;
}

.gite-room ul li {
    padding: 0.15rem 0;
    padding-left: 1rem;
    position: relative;
}

.gite-room ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}

/* --- GITE GALLERY --- */
.gite-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gite-gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
}

.gite-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.gite-gallery-item:hover img {
    transform: scale(1.08);
}

.gite-gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* --- CONTACT FORM --- */
.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
    cursor: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--accent);
    border: none;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--black);
    cursor: none;
    transition: background 0.4s, transform 0.3s;
}

.form-submit:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* Map or info aside */
.contact-aside {
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    height: fit-content;
}

.contact-aside h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-aside .contact-item {
    margin-bottom: 1.5rem;
}

.contact-aside .alert {
    padding: 1.5rem;
    background: rgba(196, 168, 130, 0.1);
    border: 1px solid rgba(196, 168, 130, 0.2);
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-aside .alert p {
    font-size: 0.85rem;
    color: var(--accent-light);
    line-height: 1.6;
}

/* Carte sous les infos pratiques — style site */
.contact-map-wrapper {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    background: var(--dark);
}

.contact-map-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.3s, background 0.3s;
}

.contact-map-link:hover {
    color: var(--accent-light);
    background: rgba(255,255,255,0.02);
}

.contact-map {
    display: block;
    width: 100%;
    height: 260px;
    border: none;
    filter: grayscale(0.35) contrast(1.05) brightness(0.9);
}

.contact-map-wrapper:hover .contact-map {
    filter: grayscale(0.15) contrast(1.05) brightness(0.95);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-stack {
        height: 400px;
    }

    .experience-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-cta-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gite-details {
        grid-template-columns: 1fr;
    }

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

    .hero-scroll {
        display: none;
    }

    .hero-bottom {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor {
        display: none;
    }

    a, button {
        cursor: auto;
    }

    .form-group input,
    .form-group textarea,
    .form-group select,
    .form-submit {
        cursor: auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .activity-card {
        aspect-ratio: 3/4;
    }

    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-nav {
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

    .gite-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .gite-gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item {
        width: 80vw;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gite-gallery {
        grid-template-columns: 1fr;
    }

    .gite-gallery-item:nth-child(1) {
        grid-column: span 1;
    }
}

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