/* ============================================
   ASHIYANA STAY — Luxury Villa Website
   ============================================ */

/* --------- RESET --------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* --------- TOKENS --------- */
:root {
    /* Colors — luxury coastal palette */
    --c-ivory: #f7f1e6;
    --c-cream: #f1e8d6;
    --c-bone:  #ebe2cf;
    --c-forest: #1d3b30;      /* deep coastal forest */
    --c-forest-deep: #142a22;
    --c-charcoal: #15171a;
    --c-ink: #2a2d31;
    --c-mute: #6a6f74;
    --c-line: #d8cdb4;
    --c-gold: #c9a961;
    --c-gold-soft: #d9be86;
    --c-gold-deep: #a48742;
    --c-white: #ffffff;

    /* Type */
    --f-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --f-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Sizing */
    --container: 1280px;
    --gutter: clamp(20px, 4vw, 48px);
    --section-y: clamp(80px, 10vw, 140px);
    --radius: 4px;
    --radius-lg: 14px;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------- BASE --------- */
html { overflow-x: clip; }
body {
    font-family: var(--f-sans);
    color: var(--c-ink);
    background: var(--c-ivory);
    line-height: 1.65;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip; /* clip instead of hidden — preserves position: sticky */
    width: 100%;
}

/* Selection */
::selection { background: var(--c-gold); color: var(--c-charcoal); }

/* --------- LAYOUT --------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}
.section { padding: var(--section-y) 0; position: relative; }
.section-dark { background: var(--c-forest); color: var(--c-ivory); }
.section-cream { background: var(--c-cream); }

/* --------- TYPOGRAPHY --------- */
h1, h2, h3, h4 {
    font-family: var(--f-serif);
    font-weight: 500;
    line-height: 1.1;
    color: var(--c-charcoal);
    letter-spacing: -0.005em;
}
em { font-style: italic; font-family: var(--f-serif); color: var(--c-gold-deep); font-weight: 400; }
.section-dark em, .light em { color: var(--c-gold-soft); }

.eyebrow {
    font-family: var(--f-sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 500;
    color: var(--c-gold-deep);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}
.eyebrow span {
    width: 32px;
    height: 1px;
    background: var(--c-gold-deep);
    display: inline-block;
}
.eyebrow.light, .light .eyebrow { color: var(--c-gold-soft); }
.eyebrow.light span, .light .eyebrow span { background: var(--c-gold-soft); }

.section-title {
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.05;
}
.section-title.light, .light .section-title { color: var(--c-ivory); }
.section-sub {
    font-size: 1.05rem;
    color: var(--c-mute);
    max-width: 620px;
    line-height: 1.7;
}
.section-sub.light, .light .section-sub { color: rgba(247, 241, 230, 0.7); }

.section-head { max-width: 780px; margin-bottom: 64px; }
.section-head.center { margin: 0 auto 64px; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .section-sub { margin: 0 auto; }

.lead { font-size: 1.18rem; color: var(--c-ink); margin-bottom: 18px; }

/* --------- BUTTONS --------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    font-family: var(--f-sans);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border-radius: 0;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: currentColor;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
    z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn i { transition: transform 0.4s var(--ease); }
.btn:hover i { transform: translateX(4px); }

.btn-lg { padding: 18px 38px; font-size: 12.5px; }
.btn-block { display: flex; width: 100%; }

.btn-gold {
    background: var(--c-gold);
    color: var(--c-charcoal);
    border-color: var(--c-gold);
}
.btn-gold:hover {
    background: var(--c-charcoal);
    color: var(--c-gold);
}
.btn-gold::before { display: none; }

.btn-ghost {
    background: transparent;
    color: var(--c-ivory);
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
    background: var(--c-ivory);
    color: var(--c-charcoal);
    border-color: var(--c-ivory);
}
.btn-ghost::before { display: none; }

.btn-dark {
    background: var(--c-charcoal);
    color: var(--c-ivory);
    border-color: var(--c-charcoal);
}
.btn-dark:hover {
    background: var(--c-gold);
    color: var(--c-charcoal);
    border-color: var(--c-gold);
}
.btn-dark::before { display: none; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--c-charcoal);
    padding-bottom: 6px;
    border-bottom: 1px solid var(--c-charcoal);
    transition: all 0.3s var(--ease);
}
.link-arrow i { transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--c-gold-deep); border-color: var(--c-gold-deep); }
.link-arrow:hover i { transform: translateX(6px); }

/* --------- PRELOADER --------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--c-forest-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--c-ivory);
    width: 100%;
    max-width: 320px;
    padding: 0 20px;
}
.preloader-mark {
    font-family: var(--f-serif);
    font-size: 72px;
    font-style: italic;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.preloader-mark span { color: var(--c-ivory); }
.preloader-bar {
    width: 180px;
    height: 1px;
    background: rgba(247,241,230,0.2);
    margin: 0 auto 16px;
    overflow: hidden;
}
.preloader-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--c-gold);
    animation: preLoad 1.4s var(--ease) forwards;
}
@keyframes preLoad { to { width: 100%; } }
.preloader-text {
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(247,241,230,0.6);
}

/* --------- TOPBAR --------- */
.topbar {
    background: var(--c-forest-deep);
    color: rgba(247,241,230,0.85);
    font-size: 12px;
    padding: 10px 0;
    letter-spacing: 0.04em;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar i { color: var(--c-gold); margin-right: 6px; font-size: 11px; }
.topbar a { transition: color 0.3s; }
.topbar a:hover { color: var(--c-gold); }

/* --------- NAVBAR --------- */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background: var(--c-ivory);
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    backdrop-filter: blur(10px);
}
.navbar.scrolled {
    background: rgba(247, 241, 230, 0.96);
    border-bottom-color: var(--c-line);
    box-shadow: 0 6px 30px -10px rgba(20,42,34,0.15);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 22px var(--gutter);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.brand-mark {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 32px;
    color: var(--c-forest);
    line-height: 1;
    border: 1px solid var(--c-gold);
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    letter-spacing: -0.05em;
}
.brand-mark i { color: var(--c-gold); font-style: italic; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
    font-family: var(--f-serif);
    font-weight: 500;
    font-size: 22px;
    color: var(--c-charcoal);
    letter-spacing: 0.02em;
}
.brand-text em {
    font-family: var(--f-sans);
    font-style: normal;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--c-mute);
}
.brand-light .brand-mark { color: var(--c-ivory); border-color: var(--c-gold); }
.brand-light .brand-text strong { color: var(--c-ivory); }
.brand-light .brand-text em { color: rgba(247,241,230,0.6); }

.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--c-ink);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--c-gold-deep);
    transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--c-gold-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.hamburger {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
}
.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--c-charcoal);
    transition: all 0.3s var(--ease);
}
.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 2px; }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* --------- HERO --------- */
.hero {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 720px;
    color: var(--c-ivory);
    overflow: hidden;
    isolation: isolate;
}
.hero-swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--c-forest-deep);
}
.hero-swiper .swiper-slide {
    overflow: hidden;
}
.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
}
.hero-swiper .swiper-slide-active img {
    animation: kenburns 9s ease-out both;
}
@keyframes kenburns {
    from { transform: scale(1.02); }
    to   { transform: scale(1.12); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20,42,34,0.4) 0%, rgba(20,42,34,0.5) 60%, rgba(20,42,34,0.85) 100%),
        radial-gradient(ellipse at top right, rgba(20,42,34,0.25), transparent 60%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 90px;
}
.hero .eyebrow { color: var(--c-gold-soft); }
.hero .eyebrow span { background: var(--c-gold-soft); }
.hero-title {
    font-family: var(--f-serif);
    font-weight: 400;
    font-size: clamp(2.8rem, 7vw, 6.2rem);
    line-height: 1;
    color: var(--c-ivory);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}
.hero-title em { color: var(--c-gold-soft); font-weight: 300; }
.hero-sub {
    font-size: 1.1rem;
    color: rgba(247,241,230,0.85);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 70px;
}
.hero-meta {
    display: flex;
    gap: clamp(20px, 6vw, 60px);
    border-top: 1px solid rgba(247,241,230,0.18);
    padding-top: 28px;
    max-width: 720px;
}
.hero-meta > div { display: flex; flex-direction: column; }
.hero-meta strong {
    font-family: var(--f-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--c-gold-soft);
    font-weight: 500;
    line-height: 1;
}
.hero-meta span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(247,241,230,0.7);
    margin-top: 8px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(247,241,230,0.7);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}
.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(247,241,230,0.3);
    position: relative;
    overflow: hidden;
}
.hero-scroll-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background: var(--c-gold-soft);
    animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* --------- MARQUEE --------- */
.marquee {
    background: var(--c-charcoal);
    color: var(--c-ivory);
    padding: 22px 0;
    overflow: hidden;
    position: relative;
}
.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    animation: marquee 38s linear infinite;
    padding-left: 36px;
}
.marquee-track span {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--c-ivory);
}
.marquee-track i {
    color: var(--c-gold);
    font-style: normal;
    font-size: 1rem;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --------- ABOUT --------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
}
.about-images {
    position: relative;
    aspect-ratio: 1 / 1.05;
}
.about-img {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px -25px rgba(20,42,34,0.45);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.about-img:hover img { transform: scale(1.06); }
.about-img-1 {
    top: 0;
    left: 0;
    width: 65%;
    height: 70%;
}
.about-img-2 {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    border: 8px solid var(--c-ivory);
}
.about-badge {
    position: absolute;
    top: 60%;
    left: -10px;
    background: var(--c-charcoal);
    color: var(--c-ivory);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    z-index: 3;
    box-shadow: 0 16px 40px -10px rgba(0,0,0,0.4);
}
.about-badge strong {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-gold-soft);
    line-height: 1.4;
    font-weight: 500;
}
.about-badge span {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 2.4rem;
    color: var(--c-ivory);
    margin-top: 4px;
    line-height: 1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0 36px;
    padding: 30px 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}
.about-stats > div { display: flex; flex-direction: column; }
.about-stats strong {
    font-family: var(--f-serif);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--c-forest);
    line-height: 1;
}
.about-stats span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-mute);
    margin-top: 10px;
}

/* --------- SPACES --------- */
.spaces-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}
.space-card {
    grid-column: span 2;
    background: var(--c-forest-deep);
    border: 1px solid rgba(247,241,230,0.08);
    overflow: hidden;
    border-radius: var(--radius);
    transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
    display: flex;
    flex-direction: column;
}
.space-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,169,97,0.4);
}
.space-card.large { grid-column: span 3; }
.space-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.space-card.large .space-card-img { aspect-ratio: 16 / 10; }
.space-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s var(--ease);
    filter: brightness(0.95);
}
.space-card:hover .space-card-img img { transform: scale(1.08); filter: brightness(1); }

.space-card-body { padding: 30px 28px; flex: 1; }
.space-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--c-gold-soft);
    padding: 4px 12px;
    border: 1px solid rgba(201,169,97,0.4);
    border-radius: 999px;
    margin-bottom: 16px;
}
.space-card h3 {
    font-size: 1.7rem;
    color: var(--c-ivory);
    margin-bottom: 14px;
    font-weight: 500;
}
.space-card.large h3 { font-size: 2rem; }
.space-card p {
    color: rgba(247,241,230,0.7);
    font-size: 0.96rem;
    line-height: 1.7;
}
.space-meta {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(247,241,230,0.1);
}
.space-meta li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(247,241,230,0.85);
}
.space-meta i { color: var(--c-gold-soft); }

/* --------- AMENITIES --------- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--c-line);
    border-left: 1px solid var(--c-line);
}
.amenity {
    padding: 40px 32px;
    border-right: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    background: var(--c-ivory);
    transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.amenity:hover { background: var(--c-cream); }
.amenity i {
    font-size: 28px;
    color: var(--c-gold-deep);
    margin-bottom: 22px;
    display: block;
    transition: transform 0.4s var(--ease);
}
.amenity:hover i { transform: translateY(-4px); }
.amenity h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--c-charcoal);
}
.amenity p {
    font-size: 0.92rem;
    color: var(--c-mute);
    line-height: 1.65;
}

/* --------- EXPERIENCE --------- */
.experience-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
}
.experience-img {
    position: relative;
    aspect-ratio: 5 / 6;
    overflow: hidden;
    border-radius: var(--radius);
}
.experience-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}
.experience-img:hover img { transform: scale(1.06); }
.experience-img-overlay {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    background: rgba(20,42,34,0.92);
    color: var(--c-ivory);
    padding: 32px 34px;
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
}
.experience-img-overlay i {
    color: var(--c-gold-soft);
    font-size: 24px;
    margin-bottom: 14px;
    display: block;
}
.experience-img-overlay p {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 14px;
    color: var(--c-ivory);
}
.experience-img-overlay span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(247,241,230,0.7);
}
.experience-list {
    margin: 30px 0 38px;
    display: grid;
    gap: 14px;
}
.experience-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
}
.experience-list i {
    color: var(--c-gold-deep);
    background: var(--c-cream);
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
}

/* --------- GALLERY --------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 14px;
}
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
    background: var(--c-charcoal);
    cursor: zoom-in;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease), filter 0.5s var(--ease);
}
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold-soft);
    font-size: 22px;
    background: rgba(20,42,34,0.5);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.85); }
.gallery-item:hover::after { opacity: 1; }
.gi-caption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    color: var(--c-ivory);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    z-index: 2;
    background: rgba(20,42,34,0.7);
    padding: 6px 12px;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease);
}
.gallery-item:hover .gi-caption { opacity: 1; transform: translateY(0); }

.gi-1 { grid-column: span 2; grid-row: span 2; }
.gi-2 { grid-column: span 1; grid-row: span 1; }
.gi-3 { grid-column: span 1; grid-row: span 1; }
.gi-4 { grid-column: span 1; grid-row: span 2; }
.gi-5 { grid-column: span 1; grid-row: span 1; }
.gi-6 { grid-column: span 2; grid-row: span 1; }
.gi-7 { grid-column: span 2; grid-row: span 1; }
.gi-8 { grid-column: span 2; grid-row: span 1; }

/* --------- LOCATION --------- */
.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.location-map {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(247,241,230,0.1);
    min-height: 460px;
}
.location-map iframe {
    width: 100%; height: 100%; min-height: 460px;
    border: 0;
    filter: grayscale(0.4) contrast(1.05) brightness(0.9);
}
.location-info {
    background: var(--c-forest-deep);
    border: 1px solid rgba(247,241,230,0.08);
    padding: 48px 42px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
}
.location-info h3 {
    font-size: 1.8rem;
    color: var(--c-ivory);
    margin-bottom: 24px;
    font-weight: 500;
}
.location-list { flex: 1; margin-bottom: 30px; }
.location-list li {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(247,241,230,0.08);
}
.location-list li:last-child { border-bottom: none; }
.loc-time {
    font-family: var(--f-serif);
    font-size: 1.2rem;
    color: var(--c-gold-soft);
    font-style: italic;
    min-width: 70px;
    flex-shrink: 0;
}
.loc-name {
    color: rgba(247,241,230,0.85);
    font-size: 0.98rem;
}

/* --------- HOST --------- */
.host-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
}
.host-card, .rules-card {
    padding: 50px 48px;
    border-radius: var(--radius);
    background: var(--c-cream);
    border: 1px solid var(--c-line);
}
.host-card { position: relative; }
.host-avatar {
    width: 88px;
    height: 88px;
    background: var(--c-forest);
    color: var(--c-gold-soft);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 2.4rem;
    margin-bottom: 24px;
    border: 2px solid var(--c-gold);
}
.host-meta { margin-bottom: 30px; }
.host-pill {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--c-forest);
    background: rgba(29,59,48,0.1);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    font-weight: 600;
}
.host-card h3 {
    font-size: 2rem;
    margin-bottom: 6px;
    color: var(--c-charcoal);
}
.host-tag { color: var(--c-mute); font-size: 0.95rem; }
.host-quote {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--c-ink);
    line-height: 1.65;
    padding: 24px 0;
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 24px;
}
.host-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.host-stats > div { display: flex; flex-direction: column; }
.host-stats strong {
    font-family: var(--f-serif);
    font-size: 1.3rem;
    color: var(--c-forest);
    font-weight: 500;
    line-height: 1.1;
}
.host-stats span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-mute);
    margin-top: 6px;
}

.rules-card h3 {
    font-size: 1.9rem;
    margin-bottom: 28px;
}
.rules-list { display: grid; gap: 16px; }
.rules-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.98rem;
    color: var(--c-ink);
}
.rules-list i {
    width: 24px;
    height: 24px;
    background: var(--c-ivory);
    color: var(--c-forest);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border: 1px solid var(--c-line);
    flex-shrink: 0;
}
.rules-list li .fa-circle-xmark { color: #b1463c; }
.rules-list li .fa-circle-info { color: var(--c-gold-deep); }

/* --------- BOOK --------- */
.book {
    position: relative;
    color: var(--c-ivory);
    isolation: isolate;
    padding: clamp(80px, 10vw, 130px) 0;
}
.book-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.book-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,42,34,0.85), rgba(20,42,34,0.9));
    z-index: -1;
}
.book-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.book-form {
    background: var(--c-ivory);
    color: var(--c-ink);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; margin-bottom: 0; }
.form-row + .form-field { margin-bottom: 24px; }
.form-field label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--c-mute);
    margin-bottom: 10px;
    font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--c-line);
    padding: 10px 0;
    font-size: 0.98rem;
    color: var(--c-charcoal);
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--c-gold-deep); }
.form-field textarea { resize: vertical; min-height: 80px; }
.form-note { margin-top: 18px; font-size: 13px; color: var(--c-forest); text-align: center; min-height: 18px; }

/* --------- FOOTER --------- */
.footer {
    background: var(--c-charcoal);
    color: rgba(247,241,230,0.75);
    padding: 100px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 50px;
    padding-bottom: 70px;
}
.footer-brand p { margin: 24px 0; font-size: 0.95rem; line-height: 1.7; max-width: 360px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(247,241,230,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    font-size: 14px;
}
.footer-social a:hover { background: var(--c-gold); color: var(--c-charcoal); border-color: var(--c-gold); transform: translateY(-3px); }

.footer-col h4 {
    color: var(--c-ivory);
    font-size: 1.15rem;
    margin-bottom: 22px;
    font-family: var(--f-serif);
    font-weight: 500;
}
.footer-col a {
    display: block;
    font-size: 0.95rem;
    padding: 6px 0;
    transition: color 0.3s, padding 0.3s;
}
.footer-col a:hover { color: var(--c-gold-soft); padding-left: 6px; }
.footer-col p {
    font-size: 0.92rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-col p i { color: var(--c-gold); margin-top: 4px; }

.footer-bottom {
    border-top: 1px solid rgba(247,241,230,0.1);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}
.footer-bottom a { transition: color 0.3s; }
.footer-bottom a:hover { color: var(--c-gold-soft); }

/* --------- FLOATING --------- */
.float-wa, .float-top {
    position: fixed;
    right: 26px;
    z-index: 50;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.4s var(--ease);
    box-shadow: 0 12px 30px -8px rgba(0,0,0,0.3);
}
.float-wa {
    bottom: 26px;
    background: #25D366;
    color: white;
}
.float-wa:hover { transform: scale(1.1) rotate(8deg); }
.float-top {
    bottom: 92px;
    background: var(--c-charcoal);
    color: var(--c-gold-soft);
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}
.float-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.float-top:hover { background: var(--c-gold); color: var(--c-charcoal); }

/* --------- RESPONSIVE --------- */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .spaces-grid { grid-template-columns: repeat(4, 1fr); }
    .space-card { grid-column: span 2; }
    .space-card.large { grid-column: span 4; }
}

@media (max-width: 900px) {
    .topbar { display: none; }
    .nav-inner { padding: 16px var(--gutter); gap: 12px; }
    .nav-links {
        position: fixed;
        top: 76px;
        right: 0;
        bottom: 0;
        width: 82%;
        max-width: 360px;
        background: var(--c-ivory);
        flex-direction: column;
        gap: 0;
        padding: 40px 36px;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease);
        border-left: 1px solid var(--c-line);
        align-items: flex-start;
        box-shadow: -10px 0 40px -10px rgba(0,0,0,0.2);
        z-index: 99;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a { font-size: 1.4rem; font-family: var(--f-serif); padding: 16px 0; border-bottom: 1px solid var(--c-line); width: 100%; }
    .nav-links a::after { display: none; }
    .nav-cta .btn-gold { display: none; }
    .nav-cta { gap: 0; }
    .hamburger { display: inline-block; }
    .brand-text em { display: none; }
    .brand-mark { width: 44px; height: 44px; font-size: 26px; }
    .brand-text strong { font-size: 19px; }
    .hero { height: auto; min-height: 100vh; padding-top: 40px; }
    .hero-meta { gap: 30px; flex-wrap: wrap; }
    .about-grid, .experience-grid, .location-grid, .host-grid, .book-inner {
        grid-template-columns: 1fr;
    }
    .about-images { aspect-ratio: 4 / 3; max-width: 500px; }
    .book-form { padding: 36px 30px; }
    .form-row { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6, .gi-7, .gi-8 { grid-column: span 1; grid-row: span 1; }
    .gi-1, .gi-4 { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 600px) {
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .amenity { padding: 28px 22px; }
    .spaces-grid { grid-template-columns: 1fr; }
    .space-card, .space-card.large { grid-column: span 1; }
    .form-row { grid-template-columns: 1fr; }
    .host-stats, .about-stats { grid-template-columns: repeat(2, 1fr); }
    .host-card, .rules-card { padding: 36px 28px; }
    .hero-meta { gap: 18px; }
    .hero-meta > div { min-width: 70px; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-inner { padding: 16px var(--gutter); }
    .brand-mark { width: 44px; height: 44px; font-size: 26px; }
    .brand-text strong { font-size: 18px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gi-1, .gi-4 { grid-column: span 1; }
    .float-wa, .float-top { width: 48px; height: 48px; right: 18px; }
    .float-wa { bottom: 18px; }
    .float-top { bottom: 76px; }
}
