/* ══════════════════════════════════════════════
   TUR DE VINURI DEALU MARE — Wine Editorial
   ══════════════════════════════════════════════ */

/* ─── Self-hosted Fonts ─── */
@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Fraunces';
    src: url('../fonts/Fraunces-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Fraunces';
    src: url('../fonts/Fraunces-Italic-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --wine: #5B2333;
    --wine-90: rgba(91, 35, 51, 0.9);
    --plum: #7B3F52;
    --plum-light: #9B5F72;
    --gold: #C9A84C;
    --gold-light: #d4b96a;
    --gold-glow: rgba(201, 168, 76, 0.25);
    --cream: #F9F5EE;
    --cream-dark: #EDE5D8;
    --olive: #5a7247;
    --white: #ffffff;
    --off-white: #fafaf8;
    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --text-muted: #999;
    --danger: #c0392b;

    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-body: 'Fraunces', 'Georgia', serif;

    --container: 1140px;
    --gap: clamp(1rem, 3vw, 2rem);
    --section-py: clamp(4rem, 8vw, 7rem);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 6px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Page Loader ─── */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--wine);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.page-loader__logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c9a84c;
    border-radius: 8px;
    color: #c9a84c;
    letter-spacing: 0.05em;
}

.page-loader__spinner {
    width: 28px;
    height: 28px;
    border: 2.5px solid rgba(255, 255, 255, 0.12);
    border-top-color: #c9a84c;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* ─── Typography ─── */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-align: center;
    color: var(--wine);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    text-align: center;
    color: var(--text-light);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
}

/* ─── Reveal animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Wave dividers ─── */
.wave-divider {
    line-height: 0;
    margin-top: -1px;
    position: relative;
    z-index: 2;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: clamp(40px, 5vw, 80px);
}

.wave-divider--white { color: var(--white); }
.wave-divider--cream { color: var(--cream); }
.wave-divider--wine { color: var(--wine); }


/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    padding: 0.75rem 0;
    background: rgba(91, 35, 51, 0.85);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.15);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
}

.nav__logo-mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gold);
    border-radius: 6px;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.03em;
}

.nav__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav__phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav__phone:hover {
    color: var(--white);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.4rem;
    background: var(--gold);
    color: var(--wine);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 100px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-out);
}

.nav__cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--gold-glow);
}

@media (max-width: 600px) {
    .nav__phone { display: none; }
    .nav__logo-text { display: none; }
}


/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero.jpeg') center center / cover no-repeat;
    animation: heroBgShift 20s ease-in-out infinite alternate;
}

@keyframes heroBgShift {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(91, 35, 51, 0.65) 0%,
        rgba(91, 35, 51, 0.6) 25%,
        rgba(91, 35, 51, 0.7) 45%,
        rgba(91, 35, 51, 0.8) 65%,
        rgba(91, 35, 51, 0.95) 100%
    );
}

/* Decorative grain */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 3rem 2.5rem;
    max-width: 750px;
    background: rgba(91, 35, 51, 0.35);
    backdrop-filter: blur(12px) saturate(1.3);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: 0.06em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero__title-main {
    display: inline;
}

.hero__title-accent {
    color: var(--gold);
    font-style: normal;
    font-weight: 400;
    text-shadow: 0 2px 20px rgba(201, 168, 76, 0.5), 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero__subtitle-secondary {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.hero__meta strong {
    font-weight: 700;
    color: var(--gold);
}

.hero__meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--gold);
    color: var(--wine);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.35s var(--ease-out);
    box-shadow: 0 4px 30px var(--gold-glow);
}

.hero__cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
}

.hero__availability {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.hero__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
}

.hero__availability--urgent .hero__pulse {
    background: #e67e22;
}

.hero__availability--critical .hero__pulse {
    background: #e74c3c;
    animation: pulse-fast 1s ease-in-out infinite;
}

@keyframes pulse-fast {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.6); }
    50% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
}

.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    animation: scrollBounce 2.5s ease-in-out infinite;
    z-index: 2;
}

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


/* ══════════════════════════════════════════════
   RESORT / ABOUT
   ══════════════════════════════════════════════ */
.resort {
    padding: var(--section-py) 0;
    background: var(--white);
}

.resort__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.resort__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: var(--cream);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--wine);
    margin-bottom: 1.25rem;
}

.resort__stars {
    color: var(--gold);
    letter-spacing: 2px;
}

.resort__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--wine);
    margin-bottom: 1rem;
}

.resort__desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.resort__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.resort__feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--wine);
    padding: 0.6rem 0.85rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.resort__feature svg {
    color: var(--gold);
    flex-shrink: 0;
}

.resort__image-placeholder {
    aspect-ratio: 4/3;
    background: url('../img/complex.jpeg') center center / cover no-repeat;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.resort__image-placeholder span {
    display: none;
}

@media (max-width: 768px) {
    .resort__grid {
        grid-template-columns: 1fr;
    }
    .resort__image { order: -1; }
    .resort__features {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════════════════
   ITINERARY / TIMELINE
   ══════════════════════════════════════════════ */
.itinerary {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.2));
    transform: translateX(-50%);
}

.timeline__item {
    position: relative;
    display: flex;
    margin-bottom: 2.5rem;
}

.timeline__item:last-child {
    margin-bottom: 0;
}

.timeline__item--left {
    justify-content: flex-start;
    padding-right: calc(50% + 2rem);
}

.timeline__item--right {
    justify-content: flex-end;
    padding-left: calc(50% + 2rem);
}

.timeline__marker {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--wine);
    transform: translateX(-50%);
    z-index: 2;
}

.timeline__card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(91, 35, 51, 0.06);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
    cursor: pointer;
    border-left: 3px solid transparent;
}

.timeline__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(91, 35, 51, 0.1);
}

.timeline__card.expanded {
    border-left-color: var(--gold);
    box-shadow: 0 12px 40px rgba(91, 35, 51, 0.12), 0 0 0 1px rgba(201, 168, 76, 0.15);
    transform: translateY(-2px);
}

.timeline__card-img {
    height: 140px;
    background: linear-gradient(135deg, rgba(123, 63, 82, 0.15), rgba(201, 168, 76, 0.15));
    background-size: cover;
    background-position: center;
    transition: height 0.4s var(--ease-out);
}

.timeline__card.expanded .timeline__card-img {
    height: 280px;
}

.timeline__card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), opacity 0.3s var(--ease-out);
    opacity: 0;
}

.timeline__card.expanded .timeline__card-details {
    max-height: 400px;
    opacity: 1;
}

.timeline__card-details p {
    padding: 0 1.25rem;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}

.timeline__card-tags {
    padding: 0.5rem 1.25rem 0.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.timeline__tag {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    background: var(--cream);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--wine);
    letter-spacing: 0.02em;
}

/* Timeline card links */
.timeline__card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem 0.25rem;
}

.timeline__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border: 1.5px solid var(--gold);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--wine);
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.25s var(--ease-out);
    white-space: nowrap;
}

.timeline__link:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px var(--gold-glow);
}

.timeline__link svg {
    color: var(--gold);
    flex-shrink: 0;
    transition: color 0.25s;
}

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

.timeline__card-expand-hint {
    padding: 0.6rem 1.25rem;
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    border-top: 1px solid rgba(91, 35, 51, 0.04);
    transition: all 0.3s;
}

.timeline__card:hover .timeline__card-expand-hint {
    color: var(--wine);
}

.timeline__card.expanded .timeline__card-expand-hint {
    color: var(--text-muted);
    border-top-color: rgba(91, 35, 51, 0.08);
}

/* Step 1: Departure — winery building */
.timeline__item:nth-child(2) .timeline__card-img {
    background-image: url('../img/locatie.jpg');
}
/* Step 2: Guided tour & tasting — barrel cellar */
.timeline__item:nth-child(3) .timeline__card-img {
    background-image: url('../img/beci.jpg');
}
/* Step 3: Blending workshop — wine bottles */
.timeline__item:nth-child(4) .timeline__card-img {
    background-image: url('../img/vinuri.jpg');
}
/* Step 4: Restaurant & premium tasting — restaurant interior */
.timeline__item:nth-child(5) .timeline__card-img {
    background-image: url('../img/restaurant.jpg');
}
/* Step 5: Return journey — outdoor terrace */
.timeline__item:nth-child(6) .timeline__card-img {
    background-image: url('../img/terasa.jpg');
}

.timeline__card-body {
    padding: 1.25rem;
}

.timeline__date {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.timeline__card-body h3 {
    font-size: 1.2rem;
    color: var(--wine);
    margin: 0.35rem 0 0.5rem;
}

.timeline__card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline__line {
        left: 1.375rem;
    }
    .timeline__item--left,
    .timeline__item--right {
        padding-left: 4rem;
        padding-right: 0;
        justify-content: flex-start;
    }
    .timeline__marker {
        left: 1.375rem;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.95rem;
    }
}


/* ══════════════════════════════════════════════
   EXPERIENCE / FEATURE BADGES
   ══════════════════════════════════════════════ */
.experience {
    padding: var(--section-py) 0;
    background: var(--white);
}

.section-tag {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

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

.feature-badge {
    text-align: center;
    padding: 2rem 1.25rem;
    border-radius: var(--radius);
    background: var(--cream);
    border: 1px solid rgba(91, 35, 51, 0.06);
    transition: all 0.3s var(--ease-out);
}

.feature-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(91, 35, 51, 0.08);
}

.feature-badge__icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1.5px solid rgba(201, 168, 76, 0.25);
    border-radius: 50%;
    color: var(--gold);
}

.feature-badge__title {
    font-size: 1rem;
    color: var(--wine);
    margin-bottom: 0.3rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.feature-badge__desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.wave-divider--sand { color: var(--cream); }


/* ══════════════════════════════════════════════
   WHAT'S INCLUDED
   ══════════════════════════════════════════════ */
.included {
    padding: var(--section-py) 0;
    background: var(--cream);
}

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

.included__item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid rgba(91, 35, 51, 0.06);
    border-top: 3px solid var(--gold);
    box-shadow: 0 4px 16px rgba(91, 35, 51, 0.06);
    transition: all 0.3s var(--ease-out);
}

.included__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(91, 35, 51, 0.1), 0 0 0 1px rgba(201, 168, 76, 0.2);
    border-color: rgba(201, 168, 76, 0.4);
    border-top-color: var(--gold);
}

.included__icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1.5px solid rgba(201, 168, 76, 0.25);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s var(--ease-out);
}

.included__item:hover .included__icon {
    background: rgba(201, 168, 76, 0.18);
    transform: scale(1.05);
}

.included__item h3 {
    font-size: 1.1rem;
    color: var(--wine);
    margin-bottom: 0.4rem;
}

.included__item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .included__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .included__grid {
        grid-template-columns: 1fr;
    }
}


/* ══════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════ */
.pricing {
    padding: var(--section-py) 0;
    background: var(--cream);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing__card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.35s var(--ease-out);
    position: relative;
}

.pricing__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(91, 35, 51, 0.1);
}

.pricing__card--featured {
    border-color: var(--gold);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.pricing__card-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1.2rem;
    background: var(--gold);
    color: var(--wine);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing__card-header {
    margin-bottom: 1.5rem;
}

.pricing__room-icon {
    color: var(--wine);
    margin-bottom: 0.75rem;
}

.pricing__card-header h3 {
    font-size: 1.4rem;
    color: var(--wine);
    margin-bottom: 0.25rem;
}

.pricing__capacity {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Toggle */
.pricing__toggle {
    display: flex;
    position: relative;
    background: var(--cream);
    border-radius: 100px;
    padding: 3px;
    margin-bottom: 1.5rem;
}

.pricing__toggle-btn {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: 100px;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

.pricing__toggle-btn.active {
    color: var(--wine);
}

.pricing__toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: var(--white);
    border-radius: 100px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s var(--ease-out);
}

.pricing__toggle-btn:last-of-type.active ~ .pricing__toggle-slider {
    transform: translateX(100%);
}

/* Price */
.pricing__price {
    margin-bottom: 0.5rem;
}

.pricing__amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--wine);
    line-height: 1;
}

.pricing__currency {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wine);
    margin-left: 0.2rem;
}

.pricing__per {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing__deposit {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing__book-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: var(--wine);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.03em;
    transition: all 0.3s var(--ease-out);
}

.pricing__card--featured .pricing__book-btn {
    background: var(--gold);
    color: var(--wine);
}

.pricing__book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(91, 35, 51, 0.2);
}

.pricing__grid--single {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
}

.pricing__subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.pricing__features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.pricing__features li svg {
    color: var(--gold);
    flex-shrink: 0;
}

.pricing__divider {
    height: 1px;
    background: rgba(91, 35, 51, 0.08);
    margin: 1rem 0;
}

.pricing__upgrades {
    text-align: left;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

.pricing__upgrades-title {
    font-weight: 600;
    color: var(--wine);
    margin-bottom: 0.25rem;
}

.pricing__upgrade-item {
    margin-bottom: 0.15rem;
}

.pricing__payment-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.pricing__insurance-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}


/* ══════════════════════════════════════════════
   SEASONS TIMELINE
   ══════════════════════════════════════════════ */
.seasons {
    padding: var(--section-py) 0;
    background: var(--white);
}

.seasons__timeline {
    margin-bottom: 2rem;
}

.seasons__bar {
    display: flex;
    border-radius: var(--radius);
    overflow: visible;
    margin-top: 1rem;
    box-shadow: 0 4px 24px rgba(91, 35, 51, 0.12);
}

.seasons__segment {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1.15rem 0.6rem;
    background: var(--seg-color, var(--cream));
    color: var(--white);
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s var(--ease-out);
    min-width: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.seasons__segment:first-child {
    border-radius: var(--radius) 0 0 var(--radius);
}

.seasons__segment:last-child {
    border-right: none;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.seasons__segment--gold {
    color: var(--wine);
}

.seasons__segment:hover {
    filter: brightness(1.12);
}

.seasons__segment--active {
    transform: scaleY(1.08);
    transform-origin: bottom;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.2);
    z-index: 2;
    filter: brightness(1.15);
}

.seasons__segment--active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.seasons__seg-label {
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.seasons__seg-dates {
    font-size: 0.62rem;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.seasons__seg-price {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.2rem;
}

.seasons__seg-badge {
    display: none;
    position: absolute;
    top: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.15rem 0.65rem;
    background: var(--gold);
    color: var(--wine);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 100px;
    white-space: nowrap;
    animation: badgePulse 2.5s ease-in-out infinite;
}

.seasons__segment[data-period="0"] .seasons__seg-badge {
    display: block;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5); }
    50% { box-shadow: 0 0 0 6px rgba(201, 168, 76, 0); }
}

/* Detail panel */
.seasons__detail {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-top: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 1rem;
    box-shadow: 0 4px 24px rgba(91, 35, 51, 0.06);
    transition: border-top-color 0.3s;
}

.seasons__detail-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.seasons__detail-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--wine);
    margin-bottom: 0.25rem;
}

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

.seasons__transport-toggle {
    display: flex;
    position: relative;
    background: var(--cream);
    border-radius: 100px;
    padding: 3px;
    max-width: 320px;
    margin: 0 auto 1.5rem;
}

.seasons__transport-btn {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: 100px;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.seasons__transport-btn.active {
    color: var(--wine);
}

.seasons__transport-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: var(--white);
    border-radius: 100px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s var(--ease-out);
}

.seasons__transport-btn:last-of-type.active ~ .seasons__transport-slider {
    transform: translateX(100%);
}

.seasons__detail-toggle {
    display: flex;
    position: relative;
    background: var(--cream);
    border-radius: 100px;
    padding: 3px;
    max-width: 300px;
    margin: 0 auto 1.5rem;
}

.seasons__detail-toggle .seasons__toggle-btn {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: 100px;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.seasons__detail-toggle .seasons__toggle-btn.active {
    color: var(--wine);
}

.seasons__detail-toggle .seasons__toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: var(--white);
    border-radius: 100px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s var(--ease-out);
}

.seasons__detail-toggle .seasons__toggle-btn:last-of-type.active ~ .seasons__toggle-slider {
    transform: translateX(100%);
}

.seasons__detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.seasons__price-card {
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s var(--ease-out);
    border: 1.5px solid transparent;
}

.seasons__price-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 35, 51, 0.08);
    border-color: rgba(201, 168, 76, 0.3);
}

.seasons__price-card-room {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.seasons__price-card-amount {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--wine);
    line-height: 1;
}

.seasons__price-card-currency {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wine);
    margin-left: 0.15rem;
}

.seasons__price-card-per {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.seasons__detail-cta {
    text-align: center;
}

.seasons__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 0.35s var(--ease-out);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.seasons__cta-btn--book {
    background: var(--gold);
    color: var(--wine);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.seasons__cta-btn--book:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--gold-glow);
}

.seasons__cta-btn--whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.seasons__cta-btn--whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
}

.seasons__cta-btn svg {
    flex-shrink: 0;
}

/* WhatsApp floating button */
.whatsapp-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
    opacity: 0;
    transform: scale(0.5) translateY(20px);
}

.whatsapp-fab.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    animation: fabBounce 0.5s var(--ease-spring);
}

.whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes fabBounce {
    0% { opacity: 0; transform: scale(0.3) translateY(30px); }
    50% { transform: scale(1.1) translateY(-5px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Mobile: structured grid layout */
@media (max-width: 768px) {
    .seasons__bar {
        flex-direction: column;
        border-radius: var(--radius-sm);
        box-shadow: 0 2px 16px rgba(91, 35, 51, 0.1);
    }

    .seasons__segment {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        column-gap: 1rem;
        row-gap: 0.05rem;
        align-items: center;
        padding: 0.7rem 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .seasons__segment:first-child {
        border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    }

    .seasons__segment:last-child {
        border-bottom: none;
        border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    }

    .seasons__segment--active {
        transform: none;
        box-shadow: inset 4px 0 0 var(--gold);
        filter: brightness(1.15);
    }

    .seasons__segment--active::after {
        display: none;
    }

    .seasons__seg-label {
        grid-column: 1;
        grid-row: 1;
        text-align: left;
        font-size: 0.8rem;
        overflow: visible;
        white-space: normal;
    }

    .seasons__seg-dates {
        grid-column: 1;
        grid-row: 2;
        text-align: left;
        font-size: 0.68rem;
    }

    .seasons__seg-price {
        grid-column: 2;
        grid-row: 1 / -1;
        text-align: right;
        font-size: 0.95rem;
        margin: 0;
    }

    .seasons__seg-badge {
        position: absolute;
        top: -0.5rem;
        left: 0.75rem;
        transform: none;
        font-size: 0.55rem;
        padding: 0.1rem 0.5rem;
        animation: none;
    }

    .seasons__detail {
        padding: 1.25rem;
        margin-top: 0.75rem;
    }

    .seasons__detail-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .seasons__price-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 1rem 1.25rem;
    }

    .seasons__price-card-room {
        margin-bottom: 0;
    }

    .seasons__price-card-per {
        display: inline;
        margin-top: 0;
        margin-left: 0.25rem;
    }

    .whatsapp-fab {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .seasons__seg-dates {
        display: none;
    }

    .seasons__segment {
        grid-template-rows: auto;
    }

    .seasons__seg-price {
        grid-row: 1;
    }
}


/* ══════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════ */
.trust {
    padding: 2.5rem 0;
    background: var(--white);
    border-top: 1px solid rgba(91, 35, 51, 0.06);
    border-bottom: 1px solid rgba(91, 35, 51, 0.06);
}

.trust__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}

.trust__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wine);
}

.trust__icon {
    color: var(--gold);
    letter-spacing: 1px;
}

.trust__item svg {
    color: var(--gold);
}


/* ══════════════════════════════════════════════
   BOOKING FORM
   ══════════════════════════════════════════════ */
.booking {
    position: relative;
    padding: var(--section-py) 0;
    background: var(--wine);
    color: var(--white);
    overflow: hidden;
}

.booking__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.booking__title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--white);
    position: relative;
}

.booking__subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    font-size: 1.05rem;
    position: relative;
}

.booking__availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    position: relative;
}

.booking__form {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Error */
.booking__error {
    display: none;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    background: rgba(192, 57, 43, 0.15);
    border: 1px solid rgba(192, 57, 43, 0.4);
    border-radius: var(--radius-sm);
    color: #f5b7b1;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.booking__error.active {
    display: flex;
}

.booking__error svg {
    flex-shrink: 0;
    color: #e74c3c;
}

/* Fields */
.booking__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.booking__field {
    margin-bottom: 1rem;
}

.booking__row > .booking__field {
    margin-bottom: 0;
}

.booking__field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.5rem;
}

.booking__field input[type="text"],
.booking__field input[type="email"],
.booking__field input[type="tel"],
.booking__field select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s;
    appearance: none;
}

.booking__field input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.booking__field select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.booking__field select option {
    background: var(--wine);
    color: var(--white);
}

.booking__field input:focus,
.booking__field select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.booking__field input.invalid,
.booking__field select.invalid {
    border-color: #e74c3c;
}

/* Room type cards */
.booking__room-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.booking__room-card {
    cursor: pointer;
}

.booking__room-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booking__room-card-inner {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.25s var(--ease-out);
}

.booking__room-card-inner strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.booking__room-card-inner span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.booking__room-card input:checked + .booking__room-card-inner {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.booking__room-card:hover .booking__room-card-inner {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Transport toggle */
.booking__transport-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.booking__transport-option {
    cursor: pointer;
}

.booking__transport-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booking__transport-option-inner {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.25s var(--ease-out);
}

.booking__transport-option-inner strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.booking__transport-option-inner span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.booking__transport-option input:checked + .booking__transport-option-inner {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.booking__transport-option:hover .booking__transport-option-inner {
    border-color: rgba(255, 255, 255, 0.3);
}

.booking__field--transport-hidden {
    display: none !important;
}

/* Meal plan toggle */
.booking__meal-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.booking__meal-option {
    cursor: pointer;
}

.booking__meal-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booking__meal-option-inner {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.25s var(--ease-out);
}

.booking__meal-option-inner strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.booking__meal-option-inner span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.booking__meal-option input:checked + .booking__meal-option-inner {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.booking__meal-option:hover .booking__meal-option-inner {
    border-color: rgba(255, 255, 255, 0.3);
}

.booking__field--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking__field--stepper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Stepper */
.booking__stepper {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
}

.booking__stepper-btn {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    transition: background 0.2s;
}

.booking__stepper-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.booking__stepper input {
    width: 3rem;
    text-align: center;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    -moz-appearance: textfield;
}

.booking__stepper input::-webkit-inner-spin-button,
.booking__stepper input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

/* Checkbox */
.booking__field--checkbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 1.25rem;
    padding-bottom: 0.3rem;
}

.booking__checkbox-label {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0 !important;
    user-select: none;
}

.booking__checkbox-label input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booking__checkbox-custom {
    width: 1.35rem;
    height: 1.35rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.booking__checkbox-label input:checked + .booking__checkbox-custom {
    background: var(--gold);
    border-color: var(--gold);
}

.booking__checkbox-label input:checked + .booking__checkbox-custom::after {
    content: '\2713';
    color: var(--wine);
    font-size: 0.8rem;
    font-weight: 700;
}

/* Price calculator */
.booking__calculator {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.booking__calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.booking__calc-row--hidden {
    display: none !important;
}

.booking__calc-row strong {
    color: var(--white);
}

.booking__calc-row--total {
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.booking__calc-row--total strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.01em;
}

.booking__calc-row--deposit {
    font-weight: 500;
}

.booking__calc-row--deposit strong {
    color: var(--gold-light);
}

.booking__calc-row--pay-today {
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: var(--white);
}

.booking__calc-row--pay-today strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

/* Payment cards */
.booking__payment-cards {
    display: flex;
    justify-content: space-evenly;
    gap: 1rem;
}

.booking__payment-card {
    cursor: pointer;
    flex: 1;
    max-width: 220px;
}

.booking__payment-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booking__payment-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
    min-height: 5.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.25s var(--ease-out);
}

.booking__payment-card-inner strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.booking__payment-card-inner span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
}

.booking__payment-card input:checked + .booking__payment-card-inner {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.booking__payment-card:hover .booking__payment-card-inner {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Submit */
.booking__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1.1rem;
    background: var(--gold);
    color: var(--wine);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.03em;
    margin-top: 1.5rem;
    transition: all 0.35s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.booking__submit:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 25px var(--gold-glow);
}

.booking__submit:active {
    transform: translateY(0);
}

.booking__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.booking__secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1rem;
}

/* Loading overlay */
.booking__loading {
    position: absolute;
    inset: 0;
    background: rgba(91, 35, 51, 0.92);
    backdrop-filter: blur(8px);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    z-index: 10;
}

.booking__loading.active {
    display: flex;
}

.booking__loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.booking__loading p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .booking__row {
        grid-template-columns: 1fr;
    }
    .booking__room-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .booking__payment-cards {
        flex-direction: column;
        align-items: center;
    }
    .booking__payment-card {
        max-width: 100%;
        width: 100%;
    }
}


/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
    padding: 3rem 0 1.5rem;
    background: #3a1320;
    color: rgba(255, 255, 255, 0.6);
}

.footer__grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer__logo-mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gold);
    border-radius: 5px;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.footer__logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--white);
}

.footer__tagline {
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.35);
}

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

.footer__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer__link:hover {
    color: var(--white);
}

.footer__link svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.footer__link--whatsapp {
    color: #25d366;
}

.footer__link--whatsapp:hover {
    color: #4ae07e;
}

.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}


/* ══════════════════════════════════════════════
   UTILITY / GLOBAL RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 480px) {
    .hero__cta {
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
    }
}

/* Print-friendly */
@media print {
    .nav, .hero__scroll-hint, .booking__loading, .wave-divider { display: none; }
    .hero { min-height: auto; padding: 3rem 0; }
    .hero__bg, .hero__overlay { display: none; }
    .hero__content { color: var(--text); }
    body { font-size: 12pt; }
}
