/* ============================================
   El Arte de las Flores II
   "Boticario Premium de Montaña"
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Greens */
    --verde-profundo: #1a2e1a;
    --verde-bosque: #2d4a2d;
    --verde-hoja: #3d6b3d;

    /* Golds */
    --oro-brillante: #d4a843;
    --oro-calido: #c49332;
    --ambar-extracto: #e8a920;
    --oro-suave: #b8923a;

    /* Neutrals */
    --crema-pergamino: #f0e6d0;
    --beige-antiguo: #d4c5a9;
    --marron-tinta: #3a2a1a;

    /* Functional */
    --shadow-gold: rgba(212, 168, 67, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.4);

    /* Typography scale */
    --fs-hero: clamp(3rem, 8vw, 6rem);
    --fs-hero-small: clamp(1rem, 2.5vw, 1.6rem);
    --fs-h2: clamp(2rem, 5vw, 3.2rem);
    --fs-h3: clamp(1.4rem, 3vw, 2rem);
    --fs-body: clamp(1rem, 1.2vw, 1.15rem);
    --fs-label: clamp(0.75rem, 1vw, 0.9rem);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--beige-antiguo);
    background-color: var(--verde-profundo);
    line-height: 1.7;
    font-size: var(--fs-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--oro-brillante);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--ambar-extracto);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Noise overlay (reused) ---------- */
.hero__noise, .dias__noise, .ubicacion__noise, .reserva__noise,
.sobre__noise, .experiencia__noise, .footer__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ---------- Vignette overlay ---------- */
.hero__vignette, .dias__vignette, .ubicacion__vignette, .reserva__vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.4) 100%);
}

/* ---------- Section titles ---------- */
.section-title {
    font-family: 'Cinzel Decorative', 'Georgia', serif;
    font-weight: 700;
    color: var(--marron-tinta);
    font-size: var(--fs-h2);
    text-align: center;
    line-height: 1.2;
}

.section-title--light {
    color: var(--oro-brillante);
}

.title-small {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 0.55em;
    vertical-align: baseline;
    color: inherit;
    opacity: 0.8;
}

/* ---------- Ornament Line ---------- */
.hero__ornament-line, .sobre__ornament-line,
.dias__ornament-line, .experiencia__ornament-line,
.ubicacion__ornament-line, .reserva__ornament-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.2rem 0 1.5rem;
}

.ornament-line__left, .ornament-line__right {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--oro-brillante), transparent);
}

.ornament-line__left--dark, .ornament-line__right--dark {
    background: linear-gradient(90deg, transparent, var(--oro-calido), transparent);
}

.ornament-line__drop {
    color: var(--oro-brillante);
    font-size: 1rem;
    line-height: 1;
}

.ornament-line__drop--dark {
    color: var(--oro-calido);
}

/* ---------- Ornament Frame ---------- */
.ornament-frame {
    position: relative;
    padding: 3rem 2.5rem;
    border: 1px solid var(--oro-calido);
    border-radius: 2px;
}

.ornament-frame__corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--oro-calido);
    border-style: solid;
}

.ornament-frame__corner--tl { top: -1px; left: -1px; border-width: 3px 0 0 3px; }
.ornament-frame__corner--tr { top: -1px; right: -1px; border-width: 3px 3px 0 0; }
.ornament-frame__corner--bl { bottom: -1px; left: -1px; border-width: 0 0 3px 3px; }
.ornament-frame__corner--br { bottom: -1px; right: -1px; border-width: 0 3px 3px 0; }

.ornament-frame__corner--gold {
    border-color: var(--oro-brillante);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2.4rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn--gold {
    background: linear-gradient(135deg, var(--oro-calido), var(--oro-brillante), var(--ambar-extracto));
    color: var(--verde-profundo);
    box-shadow: 0 4px 20px var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn--gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn--gold:hover {
    color: var(--verde-profundo);
    box-shadow: 0 6px 30px rgba(212, 168, 67, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.btn--gold:hover::after {
    left: 120%;
}

.btn--large {
    padding: 1.2rem 3rem;
    font-size: 1.05rem;
}

.btn__icon {
    display: flex;
    align-items: center;
}

/* ---------- Drop shape (reusable) ---------- */
.drop-shape {
    width: 28px;
    height: 38px;
    background: radial-gradient(ellipse at 40% 30%, #f5d060, var(--ambar-extracto), var(--oro-calido));
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(232, 169, 32, 0.4), inset 0 -4px 8px rgba(0,0,0,0.15);
}

.drop-shape--small {
    width: 18px;
    height: 24px;
}

.drop-shape--large {
    width: 40px;
    height: 54px;
}

.drop-shimmer {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 35%;
    height: 25%;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    filter: blur(2px);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.15); }
}

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

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
    background: rgba(26, 46, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 46, 26, 0.95);
    padding: 0.5rem 2rem;
}

.navbar__brand {
    z-index: 1001;
}

.navbar__logo-text {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--oro-brillante);
    letter-spacing: 0.05em;
}

.navbar__small {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 0.75em;
    opacity: 0.8;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--oro-brillante);
    transition: all 0.3s ease;
}

.navbar__links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar__links a {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--beige-antiguo);
    transition: color 0.3s ease;
}

.navbar__links a:hover {
    color: var(--oro-brillante);
}

.navbar__cta {
    padding: 0.45rem 1.2rem;
    border: 1px solid var(--oro-brillante);
    border-radius: 2px;
    color: var(--oro-brillante) !important;
    transition: all 0.3s ease !important;
}

.navbar__cta:hover {
    background: var(--oro-brillante);
    color: var(--verde-profundo) !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(170deg, #0d1a0d 0%, var(--verde-profundo) 40%, #1f361f 100%);
    padding: 6rem 1.5rem 3rem;
    overflow: hidden;
    text-align: center;
}

.hero__mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    opacity: 0.5;
}

.hero__mountains svg {
    width: 100%;
    height: auto;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* Emblem */
.hero__emblem {
    margin-bottom: 1.5rem;
}

.emblem {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    position: relative;
}

.emblem__ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--oro-calido);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.15), inset 0 0 20px rgba(212, 168, 67, 0.08);
}

.emblem__ring::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212, 168, 67, 0.4);
    border-radius: 50%;
}

.emblem__inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.emblem__leaf {
    width: 60px;
    height: auto;
    margin-top: -5px;
}

.emblem__drop {
    margin-top: -8px;
}

/* Hero typography */
.hero__edition {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: var(--fs-label);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--oro-suave);
    margin-bottom: 0.8rem;
}

.hero__title {
    font-family: 'Cinzel Decorative', serif;
    line-height: 1;
    color: var(--oro-brillante);
    margin-bottom: 0.5rem;
}

.hero__title-big {
    display: inline;
    font-size: var(--fs-hero);
    font-weight: 900;
    text-shadow: 0 2px 30px rgba(212, 168, 67, 0.2);
}

.hero__title-small {
    display: inline;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: var(--fs-hero-small);
    color: var(--beige-antiguo);
    margin: 0 0.3rem;
}

.hero__title-numeral {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--oro-suave);
    margin-top: 0.3rem;
}

.hero__subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 500;
    font-variant: small-caps;
    color: var(--beige-antiguo);
    letter-spacing: 0.1em;
}

.hero__tagline {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: var(--fs-label);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--oro-suave);
    margin-top: 0.5rem;
}

.hero__details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

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

.hero__detail-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oro-suave);
}

.hero__detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--beige-antiguo);
}

.hero__detail-sep {
    color: var(--oro-suave);
    opacity: 0.4;
    font-size: 0.6rem;
}

.hero__cta {
    margin-top: 0.5rem;
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--oro-suave);
    opacity: 0.6;
    animation: fadeInUp 1.5s ease 1s both;
}

.hero__scroll-hint span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 16px;
    height: 16px;
    border-right: 1px solid var(--oro-suave);
    border-bottom: 1px solid var(--oro-suave);
    transform: rotate(45deg);
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(5px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 0.6; transform: translateX(-50%) translateY(0); }
}

/* ============================================
   SOBRE EL EVENTO
   ============================================ */
.sobre {
    position: relative;
    background: linear-gradient(180deg, var(--crema-pergamino) 0%, #e8dcc4 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.sobre__label {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: var(--fs-label);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
    color: var(--oro-calido);
    margin-bottom: 0.5rem;
}

.sobre__title {
    margin-bottom: 0;
}

.sobre__text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--marron-tinta);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 1rem;
}

.sobre__text strong {
    color: var(--oro-calido);
    font-weight: 600;
}

.sobre__badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.badge__icon {
    font-size: 1.4rem;
    color: var(--oro-calido);
}

.badge__text {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--marron-tinta);
}

/* ============================================
   LOS DOS DÍAS
   ============================================ */
.dias {
    position: relative;
    background: linear-gradient(180deg, var(--verde-profundo) 0%, #0f200f 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.dias__label {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: var(--fs-label);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
    color: var(--oro-suave);
    margin-bottom: 0.5rem;
}

.dias__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

/* Day Card */
.dia-card {
    background: rgba(45, 74, 45, 0.2);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 4px;
    padding: 2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dia-card:hover {
    border-color: rgba(212, 168, 67, 0.35);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.dia-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}

.dia-card__day-num {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--oro-brillante);
}

.dia-card__date {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--oro-suave);
}

.dia-card__icon {
    width: 80px;
    height: 60px;
    margin: 0 auto 1rem;
    opacity: 0.7;
}

.dia-card__title {
    font-family: 'Cinzel Decorative', serif;
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--oro-brillante);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.dia-card__title-small {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 0.6em;
    color: var(--beige-antiguo);
    opacity: 0.8;
}

.dia-card__location {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--oro-suave);
    margin-bottom: 1.2rem;
}

.dia-card__location-icon {
    margin-right: 0.3rem;
}

.dia-card__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--beige-antiguo);
    text-align: center;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.dia-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dia-card__features li {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--beige-antiguo);
    padding-left: 1.4rem;
    position: relative;
    opacity: 0.8;
}

.dia-card__features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--oro-calido);
    font-size: 0.5rem;
    top: 0.25em;
}

/* Separator */
.dias__separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 3rem;
}

.dias__separator-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--oro-calido), transparent);
    opacity: 0.4;
}

/* ============================================
   LA EXPERIENCIA
   ============================================ */
.experiencia {
    position: relative;
    background: linear-gradient(180deg, var(--crema-pergamino) 0%, #e5d9c0 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.experiencia__label {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: var(--fs-label);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
    color: var(--oro-calido);
    margin-bottom: 0.5rem;
}

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

.exp-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(196, 147, 50, 0.2);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.exp-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

.exp-card__title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--marron-tinta);
    margin-bottom: 0.6rem;
}

.exp-card__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--marron-tinta);
    opacity: 0.85;
}

/* ============================================
   UBICACIÓN
   ============================================ */
.ubicacion {
    position: relative;
    background: linear-gradient(180deg, #0f200f 0%, var(--verde-profundo) 50%, #0d1a0d 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.ubicacion__label {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: var(--fs-label);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
    color: var(--oro-suave);
    margin-bottom: 0.5rem;
}

.ubicacion__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.ubicacion__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--beige-antiguo);
    margin-bottom: 1.5rem;
}

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

.ubicacion__detail {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.ubicacion__detail-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.ubicacion__detail div {
    display: flex;
    flex-direction: column;
}

.ubicacion__detail strong {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--oro-brillante);
}

.ubicacion__detail span {
    font-size: 0.95rem;
    color: var(--beige-antiguo);
    opacity: 0.8;
}

.ubicacion__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ubicacion__illustration {
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(26, 46, 26, 0.3);
}

.ubicacion__illustration svg {
    width: 100%;
    height: auto;
}

/* ============================================
   RESERVA / CTA
   ============================================ */
.reserva {
    position: relative;
    background: linear-gradient(180deg, var(--verde-profundo) 0%, #0a160a 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.reserva__frame {
    position: relative;
    padding: 4rem 3rem;
    border: 1px solid var(--oro-brillante);
    border-radius: 2px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(26, 46, 26, 0.4);
}

.reserva__drop {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.reserva__limited {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ambar-extracto);
    margin-bottom: 1rem;
}

.reserva__title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--oro-brillante);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.reserva__title-small {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 0.45em;
    color: var(--beige-antiguo);
    opacity: 0.8;
}

.reserva__details {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--beige-antiguo);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.reserva__social {
    margin-top: 1.5rem;
}

.reserva__ig {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--oro-suave);
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.reserva__ig:hover {
    color: var(--oro-brillante);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    background: #0a160a;
    padding: 2.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 168, 67, 0.1);
    overflow: hidden;
}

.footer__brand {
    margin-bottom: 1rem;
}

.footer__logo-text {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--oro-calido);
    opacity: 0.7;
}

.footer__small {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 0.75em;
    opacity: 0.8;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer__links a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--beige-antiguo);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer__links a:hover {
    opacity: 1;
    color: var(--oro-brillante);
}

.footer__copy {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--beige-antiguo);
    opacity: 0.35;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(26, 46, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(212, 168, 67, 0.15);
    }

    .navbar__links.open {
        right: 0;
    }

    .navbar__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .navbar__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .navbar__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .dias__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dias__separator {
        flex-direction: row;
        padding-top: 0;
    }

    .dias__separator-line {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--oro-calido), transparent);
    }

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

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

    .ubicacion__visual {
        order: -1;
    }

    .ornament-frame {
        padding: 2rem 1.5rem;
    }

    .reserva__frame {
        padding: 3rem 1.5rem;
    }

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

    .hero__detail-sep {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero__title-big {
        display: block;
    }

    .hero__title-small {
        display: block;
        margin: 0.2rem 0;
    }

    .sobre__badges {
        flex-direction: column;
        align-items: center;
    }
}
