/* ============================================
   moye moye Ella — Mountain Retreat Design System
   Theme: Nature, Mist, Mountain, Serenity
   ============================================ */

/* --- Design Tokens --- */
:root {
    /* Primary palette — forest & earth */
    --green-deep: #1B3A2D;
    --green-mid: #2D5A45;
    --green-light: #4A8B6F;
    --green-muted: #6BAF8E;

    /* Warm accents */
    --gold: #C4A35A;
    --gold-light: #D4BA7A;
    --gold-dark: #9E8040;
    --copper: #B87333;

    /* Neutrals */
    --cream: #F5F0E6;
    --cream-light: #FAF7F0;
    --beige: #E8DFD0;
    --stone: #C5B9A8;
    --charcoal: #2A2A28;
    --charcoal-light: #3D3D3A;
    --text-primary: #1A1A18;
    --text-secondary: #5C5C56;
    --text-muted: #8A8A82;
    --white: #FFFFFF;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 10vw, 140px);
    --container-max: 1200px;
    --container-padding: clamp(20px, 5vw, 40px);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-base: 0.4s;
    --duration-slow: 0.8s;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(27, 58, 45, 0.06);
    --shadow-md: 0 8px 30px rgba(27, 58, 45, 0.1);
    --shadow-lg: 0 20px 60px rgba(27, 58, 45, 0.15);
    --shadow-glow: 0 0 40px rgba(196, 163, 90, 0.15);

    /* Border radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* --- 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);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--cream-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

/* --- Reveal Animation --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Section Labels & Titles --- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--green-light);
}

.section-label--light {
    color: var(--gold-light);
}

.section-label--light::before {
    background: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.8;
}

.section-desc--light {
    color: var(--stone);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 80px);
}

.section-header .section-desc {
    margin: 0 auto;
}

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    transition: all var(--duration-base) var(--ease-smooth);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.btn--primary {
    background: var(--green-deep);
    color: var(--cream);
    border: 2px solid var(--green-deep);
}

.btn--primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn--full {
    width: 100%;
}

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

.nav--scrolled {
    background: rgba(27, 58, 45, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.nav__logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    z-index: 1001;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.nav__logo-accent {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: var(--gold-light);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.03em;
    transition: color var(--duration-base) var(--ease-smooth);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--duration-base) var(--ease-out);
}

.nav__link:hover {
    color: var(--cream);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--gold);
    color: var(--green-deep) !important;
    padding: 8px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

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

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(27, 58, 45, 0.4) 0%,
        rgba(27, 58, 45, 0.2) 40%,
        rgba(27, 58, 45, 0.6) 80%,
        rgba(27, 58, 45, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    text-align: center;
    color: var(--cream);
    padding: 0 var(--container-padding);
}

.hero__tagline {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.hero__title {
    margin-bottom: 24px;
}

.hero__title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero__title-accent {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    font-weight: 500;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
    margin-top: -5px;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(245, 240, 230, 0.8);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(245, 240, 230, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- ABOUT --- */
.about {
    padding: var(--section-padding) 0;
    background: var(--cream-light);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.about__img-wrapper {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.about__img-wrapper--main {
    grid-column: 1 / -1;
}

.about__img-wrapper--secondary {
    grid-column: 1 / -1;
    max-height: 250px;
}

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

.about__img-wrapper:hover .about__img {
    transform: scale(1.05);
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about__text strong {
    color: var(--green-deep);
    font-weight: 600;
}

.about__highlights {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--beige);
}

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

.about__highlight-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1;
}

.about__highlight-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.02em;
}

/* --- QUOTE --- */
.quote-section {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--green-deep);
}

.pull-quote {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.pull-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.5;
    margin-bottom: 20px;
}

.pull-quote cite {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: normal;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --- ROOMS --- */
.rooms {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.rooms__showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: start;
}

.rooms__main-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
}

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

.rooms__main-image:hover .rooms__img {
    transform: scale(1.04);
}

.rooms__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(27, 58, 45, 0.9);
    backdrop-filter: blur(10px);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rooms__details {
    padding: 20px 0;
}

.rooms__name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.rooms__size {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.rooms__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 32px;
}

.rooms__feature-group h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-deep);
    margin-bottom: 16px;
}

.rooms__feature-group ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 6px 0;
}

.rooms__feature-group svg {
    color: var(--green-light);
    flex-shrink: 0;
}

.rooms__policies {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--beige);
    border-bottom: 1px solid var(--beige);
    margin-bottom: 32px;
}

.rooms__policy {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.rooms__policy strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.rooms__policy span {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* --- EXPERIENCES --- */
.experiences {
    padding: var(--section-padding) 0;
    background: var(--green-deep);
}

.experiences__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: all var(--duration-base) var(--ease-smooth);
}

.experience-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(196, 163, 90, 0.3);
    transform: translateY(-4px);
}

.experience-card__icon {
    color: var(--gold);
    margin-bottom: 20px;
}

.experience-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 6px;
}

.experience-card__distance {
    font-size: 0.8rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.experience-card__desc {
    font-size: 0.92rem;
    color: var(--stone);
    line-height: 1.7;
}

/* --- GALLERY --- */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--cream-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

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

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 16px;
    background: linear-gradient(to top, rgba(27, 58, 45, 0.8), transparent);
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transform: translateY(100%);
    transition: transform var(--duration-base) var(--ease-out);
}

.gallery__item:hover figcaption {
    transform: translateY(0);
}

/* --- AMENITIES --- */
.amenities {
    padding: var(--section-padding) 0;
    background: var(--green-deep);
}

.amenities__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.amenity {
    text-align: center;
    padding: 36px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--duration-base) var(--ease-smooth);
}

.amenity:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(196, 163, 90, 0.25);
}

.amenity__icon {
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.amenity h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 8px;
}

.amenity p {
    font-size: 0.85rem;
    color: var(--stone);
    line-height: 1.6;
}

/* --- LOCATION --- */
.location {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.location__address {
    font-style: normal;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--beige);
}

.location__address strong {
    color: var(--text-primary);
    font-weight: 600;
}

.location__distances {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.location__distance {
    display: flex;
    align-items: center;
    gap: 16px;
}

.location__distance-icon {
    width: 44px;
    height: 44px;
    background: var(--green-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.location__distance strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-primary);
}

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

.location__nearby h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.location__nearby ul li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid var(--beige);
    display: flex;
    justify-content: space-between;
}

.location__map {
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* --- CONTACT --- */
.contact {
    padding: var(--section-padding) 0;
    background: var(--cream-light);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact__desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact__detail svg {
    color: var(--green-light);
    flex-shrink: 0;
}

.contact__detail strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact__detail span {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.contact__booking-links {
    padding-top: 24px;
    border-top: 1px solid var(--beige);
}

.contact__booking-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.contact__platforms {
    display: flex;
    gap: 12px;
}

.contact__platform {
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--duration-base) var(--ease-smooth);
}

.contact__platform:hover {
    border-color: var(--green-light);
    background: var(--green-deep);
    color: var(--cream);
}

/* --- FORM --- */
.contact__form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(30px, 4vw, 48px);
    box-shadow: var(--shadow-md);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--beige);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--cream-light);
    transition: border-color var(--duration-base) var(--ease-smooth);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-light);
    box-shadow: 0 0 0 3px rgba(74, 139, 111, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* --- FOOTER --- */
.footer {
    background: var(--charcoal);
    padding: clamp(60px, 8vw, 100px) 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.footer__logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--cream);
}

.footer__logo-accent {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    color: var(--gold);
}

.footer__tagline {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__links ul li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--duration-base) var(--ease-smooth);
}

.footer__links a:hover {
    color: var(--cream);
}

.footer__contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer__credit a {
    color: var(--gold);
    transition: color var(--duration-base);
}

.footer__credit a:hover {
    color: var(--gold-light);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .experiences__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--green-deep);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right 0.5s var(--ease-out);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
    }

    .nav__menu--open {
        right: 0;
    }

    .nav__link {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .nav__toggle--open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle--open span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle--open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__highlights {
        gap: 24px;
    }

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

    .rooms__main-image {
        aspect-ratio: 16/10;
    }

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

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

    .gallery__item--wide {
        grid-column: span 2;
    }

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

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

    .location__map {
        height: 350px;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title-main {
        font-size: 2.5rem;
    }

    .hero__title-accent {
        font-size: 3.2rem;
    }

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

    .hero__actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .about__highlights {
        flex-direction: column;
        gap: 20px;
    }

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

    .rooms__policies {
        flex-direction: column;
        gap: 16px;
    }

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

    .gallery__item--wide {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }

    .gallery__item {
        aspect-ratio: 4/3;
    }

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

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

    .contact__platforms {
        flex-direction: column;
    }
}

/* --- Gallery Lightbox (optional) --- */
.gallery__item figcaption {
    pointer-events: none;
}

/* --- Smooth section transitions --- */
section {
    position: relative;
}

/* --- Selection color --- */
::selection {
    background: var(--green-light);
    color: var(--cream);
}
