/* =========================================================
   ANN'S ROSE HAVEN — Design System
   Concept: "The Terrace Trail" — a topographic contour line
   runs the length of the page as a scroll spine, echoing the
   stepped tea terraces of Kurisupara and the trail from town
   to the villa. Sections step and offset like terraces rather
   than sitting in uniform centered grids.

   Palette: premium light rose / blush — no dark sections.
   ========================================================= */

:root {
    /* --- Palette (light rose) --- */
    --rose-deep: #9C3B54;
    /* primary accent — buttons, links, emphasis */
    --rose: #C1607A;
    /* mid rose */
    --rose-soft: #E7AEBE;
    /* soft rose, decorative */
    --blush: #FBEDEE;
    /* light rose surface */
    --blush-deep: #F4DCE1;
    /* slightly deeper blush surface */
    --cream: #FFFBF7;
    /* base warm-white background */
    --ivory: #FFFFFF;
    /* card / pure surface */
    --gold: #C9A15A;
    /* hairline / accent */
    --ink: #2E2027;
    /* warm near-black text */
    --ink-soft: #6E5B62;
    /* secondary text */
    --white: #FFFFFF;

    /* --- Type --- */
    --f-display: "Fraunces", "Iowan Old Style", serif;
    --f-body: "Manrope", -apple-system, sans-serif;
    --f-mono: "IBM Plex Mono", monospace;

    /* --- Fluid scale --- */
    --fs-hero: clamp(3.2rem, 8vw, 8rem);
    --fs-h2: clamp(2.2rem, 4.4vw, 4rem);
    --fs-h3: clamp(1.3rem, 2vw, 1.7rem);
    --fs-body: clamp(1rem, 1.1vw, 1.15rem);

    --radius-lg: 32px;
    --radius-md: 20px;
    --radius-sm: 10px;

    --ease: cubic-bezier(.16, .84, .32, 1);
    --ease-soft: cubic-bezier(.4, 0, .2, 1);

    --container: min(1320px, 92vw);
}

/* =========== RESET =========== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: var(--fs-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input,
textarea {
    font-family: inherit;
    font-size: 1rem;
}

h1,
h2,
h3,
h4 {
    font-family: var(--f-display);
    font-weight: 450;
    margin: 0;
    color: var(--ink);
}

p {
    margin: 0;
}

section {
    position: relative;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

::selection {
    background: var(--rose-soft);
    color: var(--ink);
}

:focus-visible {
    outline: 2px solid var(--rose-deep);
    outline-offset: 3px;
}

/* =========== SHARED TYPE / UTIL =========== */
.eyebrow {
    font-family: var(--f-mono);
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rose-deep);
    margin: 0 0 1rem;
}

.eyebrow--center {
    text-align: center;
}

.h2 {
    font-size: var(--fs-h2);
    line-height: 1.08;
    letter-spacing: -.01em;
    max-width: 18ch;
    color: var(--ink);
}

.h2--center {
    max-width: none;
    text-align: center;
    margin-inline: auto;
}

.h2 em {
    font-style: italic;
    color: var(--rose-deep);
    font-weight: 400;
}

.glass {
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, .7);
}

/* ---------- Photo component (real images) ---------- */
.photo {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--blush);
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .9s var(--ease);
}

.photo__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.1rem 1.3rem;
    font-family: var(--f-mono);
    font-size: .72rem;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .92);
    background: linear-gradient(0deg, rgba(30, 15, 20, .55), transparent);
}

.hero__image--main.photo {
    min-height: 480px;
}

.hero__image--float.photo {
    min-height: 190px;
}

.about__figure.photo {
    min-height: 520px;
}

.exp-row__figure.photo {
    min-height: 380px;
}

.book__overlay.photo {
    min-height: 100%;
    border-radius: 0;
    position: absolute;
    inset: 0;
}

.book__overlay.photo img {
    height: 100%;
}

/* checkmark */
.chk {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    position: relative;
    flex: none;
}

.chk::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(40deg);
}

/* =========== BUTTONS =========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .95rem 1.9rem;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .01em;
    position: relative;
    isolation: isolate;
    transition: transform .5s var(--ease), color .3s, background .3s, border-color .3s;
}

.btn--solid {
    background: var(--rose-deep);
    color: var(--ivory);
    box-shadow: 0 10px 30px -10px rgba(156, 59, 84, .45);
}

.btn--solid i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    transition: transform .4s var(--ease);
}

.btn--solid:hover i {
    transform: translateX(6px) scale(1.3);
}

.btn--solid:hover {
    transform: translateY(-3px);
}

.btn--lg {
    padding: 1.2rem 2.6rem;
    font-size: 1.05rem;
}

.btn--ghost {
    border: 1px solid rgba(156, 59, 84, .35);
    color: var(--rose-deep);
    padding: .7rem 1.5rem;
    font-size: .85rem;
}

.btn--ghost:hover {
    background: rgba(156, 59, 84, .08);
}

.btn--text {
    color: var(--ink);
    font-weight: 600;
    gap: .4rem;
}

.btn--text i {
    transition: transform .35s var(--ease);
    font-style: normal;
}

.btn--text:hover i {
    transform: translateY(4px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* magnetic buttons handled via JS transform on mousemove */
.magnetic {
    will-change: transform;
}

/* =========== CURSOR =========== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--rose-deep);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: multiply;
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease), height .3s var(--ease), background .3s;
}

.cursor.is-active {
    background: var(--rose-soft);
    width: 46px;
    height: 46px;
}

@media (hover:none),
(pointer:coarse) {
    .cursor {
        display: none;
    }
}

/* =========== SCROLL TRAIL (signature) =========== */
.trail {
    position: fixed;
    left: 14px;
    top: 0;
    height: 100vh;
    width: 24px;
    z-index: 60;
    display: none;
}

@media (min-width:1100px) {
    .trail {
        display: block;
    }
}

.trail__line {
    width: 100%;
    height: 100%;
}

.trail__line path {
    fill: none;
    stroke: var(--rose);
    stroke-width: 1.4;
    stroke-linecap: round;
    opacity: .55;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    vector-effect: non-scaling-stroke;
}

.waypoint {
    position: relative;
    height: 0;
}

.waypoint::before {
    content: attr(data-label);
    position: absolute;
    left: 46px;
    top: 0;
    font-family: var(--f-mono);
    font-size: .66rem;
    letter-spacing: .12em;
    color: var(--ink-soft);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
    white-space: nowrap;
    display: none;
}

@media (min-width:1100px) {
    .waypoint::before {
        display: block;
    }
}

.waypoint.is-active::before {
    opacity: .9;
    transform: translateX(0);
}

/* =========== NAV =========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 80;
    padding: 1.3rem 0;
    background: rgba(255, 251, 247, .72);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid rgba(156, 59, 84, .08);
    transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s;
}

.nav__inner {
    width: var(--container);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav__mark {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: var(--f-display);
}

.nav__mark-line {
    font-size: 1.05rem;
    color: var(--ink);
    transition: color .5s;
}

.nav__mark-line--accent {
    font-style: italic;
    color: var(--rose-deep);
    font-size: 1.1rem;
}

.nav__links {
    display: none;
    gap: 2.2rem;
}

@media (min-width:960px) {
    .nav__links {
        display: flex;
    }
}

.nav__links a {
    font-size: .86rem;
    color: var(--ink-soft);
    position: relative;
    padding-bottom: 4px;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: color .4s;
}

.nav__links a span {
    font-family: var(--f-mono);
    font-size: .66rem;
    color: var(--gold);
}

.nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--rose-deep);
    transition: width .4s var(--ease);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__links a:hover {
    color: var(--ink);
}

.nav__cta {
    display: none;
}

@media (min-width:960px) {
    .nav__cta {
        display: inline-flex;
    }
}

.nav__burger {
    width: 38px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4px 0;
    flex: none;
}

@media (min-width:960px) {
    .nav__burger {
        display: none;
    }
}

.nav__burger span {
    height: 1.5px;
    background: var(--ink);
    width: 100%;
    transition: transform .4s var(--ease), opacity .3s;
}

.nav.is-scrolled {
    background: rgba(255, 251, 247, .92);
    padding: .85rem 0;
    box-shadow: 0 10px 30px -18px rgba(156, 59, 84, .25);
}

.menu {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: var(--blush);
    clip-path: circle(2% at calc(100% - 44px) 44px);
    transition: clip-path .7s var(--ease);
    display: flex;
    align-items: center;
    visibility: hidden;
}

.menu.is-open {
    clip-path: circle(150% at calc(100% - 44px) 44px);
    visibility: visible;
}

.menu__inner {
    width: var(--container);
    margin-inline: auto;
}

.menu__link {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    font-family: var(--f-display);
    font-size: clamp(2rem, 6vw, 3.6rem);
    color: var(--ink);
    padding: .5rem 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}

.menu.is-open .menu__link {
    opacity: 1;
    transform: none;
}

.menu__link:nth-child(1) {
    transition-delay: .05s;
}

.menu__link:nth-child(2) {
    transition-delay: .1s;
}

.menu__link:nth-child(3) {
    transition-delay: .15s;
}

.menu__link:nth-child(4) {
    transition-delay: .2s;
}

.menu__link:nth-child(5) {
    transition-delay: .25s;
}

.menu__link:nth-child(6) {
    transition-delay: .3s;
}

.menu__link::before {
    content: attr(data-index);
    font-family: var(--f-mono);
    font-size: 1rem;
    color: var(--gold);
}

.menu__link:hover {
    color: var(--rose-deep);
}

.menu__foot {
    margin-top: 2.4rem;
    font-family: var(--f-mono);
    font-size: .85rem;
    color: var(--ink-soft);
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav__burger.is-open span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
    opacity: 0;
}

.nav__burger.is-open span:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* =========== HERO =========== */
.hero {
    min-height: 100svh;
    background:
        radial-gradient(120% 90% at 85% 0%, rgba(231, 174, 190, .4), transparent 55%),
        radial-gradient(120% 90% at 0% 100%, rgba(244, 220, 225, .6), transparent 55%),
        var(--cream);
    position: relative;
    display: flex;
    align-items: center;
    padding: clamp(9.5rem, 14vh, 10rem) 0 4rem;
    overflow: hidden;
}

.hero__mist {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    pointer-events: none;
}

.hero__grid {
    width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 980px) {
    .hero__grid {
        grid-template-columns: 1.15fr .85fr;
        align-items: center;
    }
}

.hero__copy {
    color: var(--ink);
}

.hero__title {
    font-size: var(--fs-hero);
    line-height: .92;
    margin: .6rem 0 1.6rem;
    color: var(--ink);
    font-weight: 350;
}

.reveal-line {
    display: block;
    overflow: hidden;
}

.reveal-line span {
    display: inline-block;
    transform: translateY(115%);
    transition: transform 1s var(--ease);
}

.hero.is-loaded .reveal-line span {
    transform: translateY(0);
}

.hero.is-loaded .reveal-line:nth-child(2) span {
    transition-delay: .08s;
}

.hero.is-loaded .reveal-line:nth-child(3) span {
    transition-delay: .16s;
}

.hero__title-italic {
    font-style: italic;
    color: var(--rose-deep);
}

.hero__sub {
    max-width: 46ch;
    color: var(--ink-soft);
    font-size: 1.08rem;
    margin-bottom: 2.2rem;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
}

.hero__visual {
    position: relative;
    min-height: 420px;
}

.hero__image--main {
    width: 88%;
    height: 420px;
}

.hero__image--float {
    position: absolute;
    right: -4%;
    bottom: -10%;
    width: 54%;
    height: 190px;
    border: 6px solid var(--ivory);
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px -20px rgba(156, 59, 84, .25);
}

.hero__card {
    position: absolute;
    left: -6%;
    top: 8%;
    width: 230px;
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius-md);
    display: none;
}

@media (min-width:980px) {
    .hero__card {
        display: block;
    }
}

.hero__card-title {
    font-family: var(--f-mono);
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rose-deep);
    margin-bottom: .8rem;
}

.hero__card-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    font-size: .85rem;
    color: var(--ink);
}

.hero__card-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 2.2rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    color: var(--ink-soft);
    font-family: var(--f-mono);
    font-size: .68rem;
    letter-spacing: .14em;
    z-index: 2;
}

.hero__scroll-line {
    width: 1px;
    height: 46px;
    background: rgba(156, 59, 84, .2);
    overflow: hidden;
}

.hero__scroll-line i {
    display: block;
    width: 100%;
    height: 14px;
    background: var(--rose-deep);
    animation: scrollDrop 2.2s ease-in-out infinite;
}

@keyframes scrollDrop {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(120px);
    }
}

/* =========== ABOUT (editorial) =========== */
.about {
    padding: clamp(6rem, 10vw, 9rem) 0 5rem;
    background: var(--cream);
}

.about__head {
    width: var(--container);
    margin: 0 auto 3.5rem;
}

.about__editorial {
    width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 900px) {
    .about__editorial {
        grid-template-columns: .9fr 1.1fr;
        align-items: start;
    }
}

.about__figure {
    position: relative;
}

.about__figure-tag {
    position: absolute;
    left: -.75rem;
    bottom: -.35rem;
    background: var(--ivory);
    border: 1px solid var(--blush-deep);
    padding: .7rem 1.1rem;
    border-radius: 999px;
    font-family: var(--f-mono);
    font-size: .72rem;
    letter-spacing: .06em;
    box-shadow: 0 20px 40px -20px rgba(156, 59, 84, .25);
    z-index: 2;
}

.about__text {
    padding-top: .5rem;
}

.about__text p {
    color: var(--ink-soft);
    margin-bottom: 1.4rem;
    max-width: 60ch;
}

.about__text strong {
    color: var(--ink);
}

.about__stats {
    display: flex;
    gap: clamp(1.6rem, 4vw, 3.4rem);
    margin-top: 2.4rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat__num {
    font-family: var(--f-display);
    font-size: 2.6rem;
    color: var(--rose-deep);
}

.stat__label {
    font-family: var(--f-mono);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

/* =========== FEATURES MOSAIC =========== */
.features {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--blush);
}

.features__mosaic {
    width: var(--container);
    margin: 3.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
}

.feature-card {
    grid-column: span 6;
    background: var(--ivory);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid rgba(156, 59, 84, .1);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .5s;
}

@media (min-width: 700px) {
    .feature-card {
        grid-column: span 3;
    }

    .feature-card--lg {
        grid-column: span 4;
    }

    .feature-card--wide {
        grid-column: span 3;
    }
}

@media (min-width: 1000px) {
    .feature-card {
        grid-column: span 2;
    }

    .feature-card--lg {
        grid-column: span 3;
    }

    .feature-card--wide {
        grid-column: span 3;
    }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -30px rgba(156, 59, 84, .3);
    background: var(--rose-deep);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: var(--ivory);
}

.feature-card:hover p {
    color: rgba(255, 255, 255, .78);
}

.feature-card--lg {
    background: var(--ivory);
    border: 1px solid rgba(156, 59, 84, .15);
}

.feature-card--lg:hover {
    background: var(--rose-deep);
}

.feature-card__icon {
    font-size: 1.8rem;
    margin-bottom: 1.1rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
    transition: color .5s;
}

.feature-card p {
    font-size: .92rem;
    color: var(--ink-soft);
    transition: color .5s;
}

/* =========== EXPERIENCES (alternating storytelling rows) =========== */
.experiences {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--cream);
}

.experiences__head {
    width: var(--container);
    margin: 0 auto 4rem;
}

.exp-row {
    width: var(--container);
    margin: 0 auto clamp(3rem, 7vw, 6rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    align-items: center;
}

@media (min-width: 860px) {
    .exp-row {
        grid-template-columns: 60px 1fr 1fr;
        gap: 2.4rem;
    }

    .exp-row--reverse {
        grid-template-columns: 1fr 1fr 60px;
    }

    .exp-row--reverse .exp-row__num {
        order: 3;
    }

    .exp-row--reverse .exp-row__figure {
        order: 2;
    }

    .exp-row--reverse .exp-row__text {
        order: 1;
    }
}

.exp-row__num {
    font-family: var(--f-mono);
    font-size: 1rem;
    color: var(--gold);
    writing-mode: vertical-rl;
    letter-spacing: .1em;
}

.exp-row__text h3 {
    font-size: var(--fs-h3);
    margin-bottom: .8rem;
}

.exp-row__text p {
    color: var(--ink-soft);
    max-width: 46ch;
}

/* =========== GALLERY MASONRY =========== */
.gallery {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--blush);
}

.gallery__head {
    width: var(--container);
    margin: 0 auto 3rem;
}

.gallery__filters {
    display: flex;
    gap: .8rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.gallery__filter {
    padding: .55rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(156, 59, 84, .2);
    color: var(--ink-soft);
    font-size: .82rem;
    transition: all .35s var(--ease);
    background: var(--ivory);
}

.gallery__filter:hover {
    border-color: var(--rose-deep);
    color: var(--ink);
}

.gallery__filter.is-active {
    background: var(--rose-deep);
    border-color: var(--rose-deep);
    color: var(--ivory);
}

.masonry {
    width: var(--container);
    margin: 3rem auto 0;
    columns: 1;
    column-gap: 1.2rem;
}

@media (min-width:640px) {
    .masonry {
        columns: 2;
    }
}

@media (min-width:1000px) {
    .masonry {
        columns: 3;
    }
}

.masonry__item {
    margin: 0 0 1.2rem;
    break-inside: avoid;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.masonry__item img {
    min-height: 260px;
}

.masonry__item--tall img {
    min-height: 380px;
}

.masonry__item--wide img {
    min-height: 220px;
}

.masonry__item:hover img {
    transform: scale(1.06);
}

.masonry__item.is-hidden {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(46, 32, 39, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.lightbox__stage {
    width: min(900px, 84vw);
    max-height: min(640px, 74vh);
    position: relative;
}

.lightbox__stage img {
    width: 100%;
    max-height: min(600px, 66vh);
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox__stage .photo__caption {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--ivory);
    font-size: 1.4rem;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.4rem;
    color: var(--ivory);
    padding: 1rem;
}

.lightbox__nav--prev {
    left: 1rem;
}

.lightbox__nav--next {
    right: 1rem;
}

/* =========== WHY / TIMELINE =========== */
.why {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--cream);
}

.why__head {
    width: var(--container);
    margin: 0 auto 4rem;
}

.timeline {
    width: var(--container);
    margin-inline: auto;
    position: relative;
}

.timeline__spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
    display: none;
}

@media (min-width:800px) {
    .timeline__spine {
        display: block;
    }
}

.timeline__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
    position: relative;
    align-items: center;
}

@media (min-width:800px) {
    .timeline__row {
        grid-template-columns: 1fr 60px 1fr;
    }

    .timeline__row .timeline__card {
        grid-column: 1;
    }

    .timeline__row--right .timeline__card {
        grid-column: 3;
    }
}

.timeline__dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-inline: auto;
    border: 1px solid var(--blush-deep);
    box-shadow: 0 10px 26px -12px rgba(156, 59, 84, .25);
    grid-column: 2;
    position: relative;
    z-index: 2;
}

.timeline__card {
    padding: 1.8rem 2rem;
    border-radius: var(--radius-md);
    background: var(--blush);
    border: 1px solid rgba(156, 59, 84, .1);
}

.timeline__card h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

.timeline__card p {
    color: var(--ink-soft);
    font-size: .94rem;
}

/* =========== TESTIMONIALS SLIDER =========== */
.testimonials {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--blush);
    overflow-x: hidden;
}

.slider {
    width: var(--container);
    margin: 3rem auto 0;
}

.slider__track {
    display: flex;
    transition: transform .6s var(--ease);
}

.slide {
    flex: 0 0 100%;
    padding: 3rem clamp(1.5rem, 5vw, 4rem);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
    background: var(--ivory);
    border: 1px solid rgba(156, 59, 84, .1);
}

@media (min-width:700px) {
    .slide {
        max-width: none;
    }
}

.slide__stars {
    color: var(--gold);
    letter-spacing: .2em;
    margin-bottom: 1.4rem;
}

.slide p {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 2rem;
}

.slide footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
}

.slide footer div {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.slide footer strong {
    font-size: .9rem;
}

.slide footer span {
    font-size: .78rem;
    color: var(--ink-soft);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rose-deep);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-style: italic;
}

.slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 2.2rem;
}

.slider__controls button {
    font-size: 1.3rem;
    color: var(--ink);
    transition: transform .3s;
}

.slider__controls button:hover {
    transform: scale(1.2);
    color: var(--rose-deep);
}

.slider__dots {
    display: flex;
    gap: .5rem;
}

.slider__dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blush-deep);
    transition: background .3s, transform .3s;
}

.slider__dots span.is-active {
    background: var(--rose-deep);
    transform: scale(1.3);
}

/* =========== NEARBY =========== */
.nearby {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--cream);
}

.nearby__head {
    width: var(--container);
    margin: 0 auto 3.5rem;
}

.nearby__grid {
    width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}

@media (min-width:640px) {
    .nearby__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width:1000px) {
    .nearby__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nearby-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--ivory);
    border: 1px solid rgba(156, 59, 84, .1);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.nearby-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -30px rgba(156, 59, 84, .28);
}

.nearby-card .photo {
    min-height: 180px;
    border-radius: 0;
}

.nearby-card__body {
    /* padding: 1.2rem 1.4rem; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nearby-card__body h3 {
    font-size: 1.02rem;
}

.tag {
    font-family: var(--f-mono);
    font-size: .68rem;
    color: var(--ink-soft);
    white-space: nowrap;
}

.nearby-card--map {
    padding: 0;
    display: flex;
}

.map-placeholder {
    width: 100%;
    min-height: 180px;
    border-radius: var(--radius-md);
    background: repeating-linear-gradient(45deg, rgba(156, 59, 84, .08) 0 10px, rgba(156, 59, 84, .02) 10px 20px), var(--blush-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.4rem;
    font-family: var(--f-mono);
    font-size: .75rem;
    color: var(--ink);
}

/* =========== AMENITIES =========== */
.amenities {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--blush);
}

.amenities__grid {
    width: var(--container);
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width:640px) {
    .amenities__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.amenity {
    border: 1px solid rgba(156, 59, 84, .12);
    border-radius: var(--radius-md);
    padding: 2rem 1rem;
    text-align: center;
    background: var(--ivory);
    transition: transform .4s var(--ease), border-color .4s, background .4s;
}

.amenity:hover {
    transform: translateY(-6px);
    border-color: var(--rose-deep);
    background: var(--blush-deep);
}

.amenity__icon {
    display: block;
    font-size: 1.7rem;
    margin-bottom: .8rem;
}

.amenity p {
    font-size: .86rem;
    color: var(--ink-soft);
}

/* =========== BOOKING CTA =========== */
.book {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.book__overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(156, 59, 84, .55), rgba(46, 32, 39, .75));
}

.book__content {
    position: relative;
    z-index: 2;
    padding: 6rem 1.5rem;
}

.book .eyebrow {
    color: var(--gold);
    text-align: center;
}

.book__title {
    font-size: clamp(2.4rem, 5.6vw, 4.6rem);
    color: var(--ivory);
    line-height: 1.12;
    margin-bottom: 2.4rem;
}

.book__title em {
    font-style: italic;
    color: var(--rose-soft);
}

/* =========== FAQ ACCORDION =========== */
.faq {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--cream);
}

.faq__head {
    width: var(--container);
    margin: 0 auto 3rem;
}

.accordion {
    width: var(--container);
    margin-inline: auto;
    max-width: 900px;
}

.accordion__item {
    border-bottom: 1px solid rgba(156, 59, 84, .14);
}

.accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    text-align: left;
    font-family: var(--f-display);
    font-size: 1.15rem;
    color: var(--ink);
}

.accordion__trigger i {
    font-style: normal;
    font-size: 1.3rem;
    color: var(--rose-deep);
    transition: transform .4s var(--ease);
    flex: none;
    margin-left: 1rem;
}

.accordion__trigger[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease);
}

.accordion__panel p {
    padding-bottom: 1.6rem;
    color: var(--ink-soft);
    max-width: 65ch;
}

/* =========== CONTACT =========== */
.contact {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background: var(--blush);
}

.contact__grid {
    width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width:900px) {
    .contact__grid {
        grid-template-columns: .9fr 1.1fr;
    }
}

.contact__list {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact__list li {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    font-size: 1rem;
}

.contact__list li span {
    font-family: var(--f-mono);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--rose-deep);
}

.contact__list li a:hover {
    color: var(--rose-deep);
}

.contact__social {
    display: flex;
    gap: .8rem;
}

.contact__social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(156, 59, 84, .2);
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-mono);
    font-size: .7rem;
    transition: background .3s, color .3s;
}

.contact__social a:hover {
    background: var(--rose-deep);
    color: var(--ivory);
}

.contact__form {
    padding: 2.4rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .7);
}

.contact__form h3 {
    margin-bottom: 1.6rem;
    font-size: 1.3rem;
}

.field {
    position: relative;
    margin-bottom: 1.2rem;
}

.field input,
.field textarea {
    width: 100%;
    padding: 1.1rem .9rem .5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(156, 59, 84, .2);
    background: var(--ivory);
    color: var(--ink);
    resize: vertical;
    transition: border-color .3s;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--rose-deep);
}

.field label {
    position: absolute;
    left: .9rem;
    top: 1rem;
    color: var(--ink-soft);
    font-size: .95rem;
    transition: all .25s var(--ease);
    pointer-events: none;
}

.field input:focus+label,
.field input:not(:placeholder-shown)+label,
.field textarea:focus+label,
.field textarea:not(:placeholder-shown)+label {
    top: .35rem;
    font-size: .66rem;
    letter-spacing: .06em;
    color: var(--rose-deep);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact__form-note {
    margin-top: 1rem;
    font-size: .85rem;
    color: var(--rose-deep);
    min-height: 1.2em;
}

/* =========== FOOTER =========== */
.footer {
    background: var(--ivory);
    color: var(--ink);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(156, 59, 84, .1);
}

.footer__top {
    width: var(--container);
    margin: 0 auto 3.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid rgba(156, 59, 84, .12);
    padding-bottom: 3rem;
}

.footer__mark {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--rose-deep);
    margin-bottom: .4rem;
}

.footer__brand p {
    color: var(--ink-soft);
    max-width: 34ch;
}

.footer__newsletter label {
    display: block;
    font-family: var(--f-mono);
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .8rem;
    color: var(--rose-deep);
}

.footer__newsletter-row {
    display: flex;
    border-bottom: 1px solid rgba(156, 59, 84, .25);
    padding-bottom: .6rem;
    min-width: 260px;
}

.footer__newsletter-row input {
    background: none;
    border: none;
    color: var(--ink);
    flex: 1;
}

.footer__newsletter-row input::placeholder {
    color: var(--ink-soft);
}

.footer__newsletter-row button {
    color: var(--rose-deep);
    font-size: 1.2rem;
}

.footer__links {
    width: var(--container);
    margin: 0 auto 3.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
}

@media (min-width:700px) {
    .footer__links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer__links h4 {
    font-family: var(--f-mono);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--rose-deep);
    margin-bottom: 1.1rem;
}

.footer__links a {
    display: block;
    color: var(--ink-soft);
    font-size: .92rem;
    padding: .35rem 0;
    transition: color .3s;
}

.footer__links a:hover {
    color: var(--rose-deep);
}

.footer__bottom {
    width: var(--container);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8rem;
    color: var(--ink-soft);
}

.back-to-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(156, 59, 84, .2);
    color: var(--rose-deep);
    transition: transform .4s var(--ease), background .3s, color .3s;
}

.back-to-top:hover {
    background: var(--rose-deep);
    color: var(--ivory);
    transform: translateY(-6px);
    border-color: var(--rose-deep);
}

/* =========== REVEAL ANIMATION (generic) =========== */
[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}