/* ============================================
   VILLA SOLUNA — V2 "Quiet Luxury" Redesign
   ============================================ */

:root {
    --ivory: #F4F1EB;
    --paper: #FAF8F4;
    --ink: #1C1916;
    --stone: #847C70;
    --bronze: #A8895B;
    --bronze-dark: #8F7347;
    --line: rgba(28, 25, 22, 0.14);
    --line-light: rgba(255, 255, 255, 0.18);
    --charcoal: #232019;
    --white: #FFFFFF;
    --cream: #E8E8E0;
    --deep-ocean: #050818;
    --accent: #D35400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: var(--ivory);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

::selection {
    background: var(--bronze);
    color: var(--white);
}

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

/* ============ Shared type ============ */

.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--bronze);
    font-weight: 400;
    margin-bottom: 1.75rem;
}

.eyebrow.light {
    color: var(--bronze);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--ink);
}

.section-title em {
    font-style: italic;
    font-weight: 300;
}

/* ============ Reveal animations ============ */

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============ Navigation (preserved) ============ */

nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: var(--ivory);
    padding: 1rem 5%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    flex-shrink: 0;
    display: block;
}

.logo img {
    height: 72px;
    width: auto;
    display: block;
    /* render dark ink logo as white, tight edge shadow + soft glow for separation */
    filter: brightness(0) invert(1)
        drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55))
        drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    transition: filter 0.3s ease, height 0.3s ease;
}

nav.scrolled .logo img {
    /* back to dark ink on the solid ivory bar */
    filter: none;
    height: 48px;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-left: 2rem;
}

.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

nav.scrolled .nav-links a {
    color: var(--ink);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bronze);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-instagram svg {
    vertical-align: middle;
    margin-left: 0.4rem;
    position: relative;
    top: -1px;
}

/* Island Guide palm icon, styled like the Instagram icon (inherits nav colour) */
.nav-guide .guide-icon {
    vertical-align: middle;
    margin-left: 0.4rem;
    position: relative;
    top: -1px;
}

/* Instagram link shows only in the mobile menu, not the desktop nav */
.nav-mobile-only {
    display: none;
}

/* vertical divider separating main sections from Guide / Book / Instagram */
.nav-divider {
    width: 1px;
    align-self: stretch;
    margin: 0.1rem 0;
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.3s ease;
}

nav.scrolled .nav-divider {
    background: var(--line);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

nav.scrolled .hamburger span {
    background: var(--ink);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ============ Hero (preserved) ============ */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    min-height: 450px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* top scrim for nav legibility + soft dark vignette behind the logo */
    background: linear-gradient(to bottom,
        rgba(15, 12, 8, 0.38) 0%,
        rgba(15, 12, 8, 0) 20%),
        radial-gradient(ellipse 52% 58% at 50% 46%,
        rgba(15, 12, 8, 0.42) 0%,
        rgba(15, 12, 8, 0.22) 45%,
        rgba(15, 12, 8, 0) 75%),
        rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-welcome {
    font-size: 1.6rem;
    color: var(--white);
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    opacity: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease forwards 0.1s;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.2;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    padding: 0 4%;
    text-wrap: balance;
    opacity: 0;
    /* hairline dark edge + soft glow, matching the nav logo treatment */
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4), 0 6px 35px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease forwards 0.3s;
}

.hero-title em {
    font-style: italic;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--bronze);
    margin: 2rem auto;
    opacity: 0;
    animation: expandWidth 1s ease forwards 0.9s;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    padding: 1.2rem 3rem;
    animation: fadeInUp 1.2s ease forwards 0.6s;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background: var(--white);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes expandWidth {
    from { width: 0; opacity: 0; }
    to { width: 80px; opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollLine {
    0%, 100% { height: 20px; opacity: 0.3; }
    50% { height: 30px; opacity: 1; }
}

/* ============ Intro statement ============ */

.intro {
    padding: 5rem 8% 9rem;
    text-align: center;
    background: var(--ivory);
}

.intro-emblem {
    width: 90px;
    height: auto;
    margin: 0 auto 2.5rem;
    display: block;
}

.intro-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.12;
    max-width: 1000px;
    margin: 0 auto 3rem;
    color: var(--ink);
}

.intro-statement em {
    font-style: italic;
}

.intro-copy {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 2;
    color: var(--stone);
    font-weight: 300;
}

/* Stats band */
.stats-band {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    margin: 6rem auto 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat {
    flex: 1;
    padding: 3rem 1rem;
    text-align: center;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem;
    font-weight: 300;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 0.9rem;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--stone);
}

/* ============ Amenities — numbered editorial ============ */

.amenities {
    padding: 9rem 8%;
    /* warm late-afternoon gradient — fades back to ivory at both ends
       so it blends seamlessly into the neighboring sections */
    background: linear-gradient(180deg,
        var(--ivory) 0%,
        #F2E7D8 30%,
        #F0E1CF 70%,
        var(--ivory) 100%);
}

.amenities-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: start;
}

.amenities-head {
    position: sticky;
    top: 8rem;
}

.amenities-head .section-title {
    margin-bottom: 2rem;
}

.amenities-head p {
    color: var(--stone);
    font-size: 1rem;
    line-height: 1.9;
    max-width: 380px;
}

.amenities-list {
    border-top: 1px solid var(--line);
}

.amenity {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2.75rem 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left 0.4s ease;
}

.amenity:hover {
    padding-left: 1rem;
}

.amenity-no {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--bronze);
    padding-top: 0.4rem;
}

.amenity h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: var(--ink);
}

.amenity p {
    color: var(--stone);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 520px;
}

/* ============ The Spaces — editorial gallery ============ */

.spaces {
    padding: 9rem 0;
    background: var(--ivory);
}

.spaces-head {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 8%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 5%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1 / 1;
}

/* 10 items: big 2x2 hero, 3 singles (row 3), two wide 2x1 panoramas (rows 4 & 5) = clean 3x5 grid.
   Row 4: square left + wide right.  Row 5: wide left + square right. */
.gallery-item:nth-child(8),
.gallery-item:nth-child(9) {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

/* singles beside each wide panorama stretch to match the row height */
.gallery-item:nth-child(7),
.gallery-item:nth-child(10) {
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 16, 12, 0.45);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--ivory);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

/* ============ Quote band — full bleed ============ */

.quote-band {
    position: relative;
    padding: 14rem 8%;
    background-image: linear-gradient(rgba(20, 16, 12, 0.45), rgba(20, 16, 12, 0.45)), url('images/backgrounds/coastview.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.quote-band blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.quote-band cite {
    display: block;
    margin-top: 3rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-style: normal;
    color: rgba(255, 255, 255, 0.75);
}

/* ============ Suites — alternating editorial ============ */

.suites {
    padding: 10rem 8%;
    background: var(--paper);
}

.suites-head {
    text-align: center;
    margin-bottom: 7rem;
}

.suite {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 9rem;
}

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

.suite.reverse .suite-gallery {
    order: 2;
}

.suite.reverse .suite-info {
    order: 1;
    text-align: right;
}

.suite.reverse .suite-details {
    justify-content: flex-end;
}

.suite-media {
    overflow: hidden;
    position: relative;
}

.suite-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.suite:hover .suite-media img {
    transform: scale(1.04);
}

.suite-no {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--bronze);
    display: block;
    margin-bottom: 2rem;
}

.suite-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--ink);
}

.suite-info > p {
    color: var(--stone);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.suite-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0;
    list-style: none;
}

.suite-details li {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 0 1.4rem;
    border-right: 1px solid var(--line);
}

.suite-details li:first-child {
    padding-left: 0;
}

.suite-details li:last-child {
    border-right: none;
    padding-right: 0;
}

.suite.reverse .suite-details li:first-child {
    padding-left: 1.4rem;
}

.suite.reverse .suite-details li:last-child {
    padding-right: 0;
}

/* ============ Garden film strip ============ */

.gardens {
    padding: 9rem 0 10rem;
    background: var(--ivory);
    overflow: hidden;
}

.gardens-head {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 8%;
}

.gardens-head .section-title {
    margin-bottom: 1.5rem;
}

.gardens-head p {
    color: var(--stone);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

.film-strip {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: filmScroll 35s linear infinite;
    will-change: transform;
}

.film-strip img {
    height: 420px;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes filmScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============ Services — dark editorial ============ */

.services {
    padding: 11rem 8%;
    background: var(--charcoal);
    color: var(--ivory);
}

.services-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 7rem;
    align-items: start;
}

.services-head .section-title {
    color: var(--ivory);
    margin-bottom: 2.5rem;
}

.services-head > p {
    color: rgba(244, 241, 235, 0.65);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 3.5rem;
}

.services-signature {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--bronze);
    line-height: 1.5;
}

.services-list {
    border-top: 1px solid var(--line-light);
}

.service {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 2rem;
    padding: 2.4rem 0;
    border-bottom: 1px solid var(--line-light);
    transition: padding-left 0.4s ease;
}

.service:hover {
    padding-left: 1rem;
}

.service h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--ivory);
    flex-shrink: 0;
}

.service p {
    color: rgba(244, 241, 235, 0.55);
    font-size: 0.9rem;
    text-align: right;
    line-height: 1.7;
}

/* ============ Testimonial ============ */

.testimonial {
    padding: 11rem 8%;
    background: var(--ivory);
    text-align: center;
}

.testimonial-stars {
    color: var(--bronze);
    font-size: 1.1rem;
    letter-spacing: 0.6em;
    margin-bottom: 3rem;
}

.testimonial blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--ink);
    max-width: 880px;
    margin: 0 auto 3rem;
}

.testimonial cite {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--stone);
}

/* ============ Booking ============ */

.booking {
    position: relative;
    padding: 13rem 8%;
    background-image: linear-gradient(rgba(20, 16, 12, 0.55), rgba(20, 16, 12, 0.55)), url('images/backgrounds/nightfall.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.booking .eyebrow {
    color: var(--bronze);
}

.booking-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.booking-title em {
    font-style: italic;
}

.booking > p {
    max-width: 560px;
    margin: 0 auto 4rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 2;
}

.btn-luxury {
    display: inline-block;
    padding: 1.4rem 4.5rem;
    border: 1px solid var(--bronze);
    color: var(--white);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 400;
    background: transparent;
    transition: background 0.45s ease, color 0.45s ease;
}

.btn-luxury:hover {
    background: var(--bronze);
    color: var(--white);
}

.booking-info {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 6rem;
    flex-wrap: wrap;
}

.booking-info-item .label {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 0.8rem;
}

.booking-info-item .value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
}

/* ============ Footer ============ */

footer {
    padding: 6rem 8% 3rem;
    background: var(--charcoal);
    color: var(--ivory);
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--line-light);
}

.footer-brand .footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(244, 241, 235, 0.55);
    font-size: 0.92rem;
    line-height: 1.9;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--bronze);
    font-weight: 400;
    margin-bottom: 1.75rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.9rem;
}

.footer-col a {
    color: rgba(244, 241, 235, 0.75);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--bronze);
}

.footer-col p {
    color: rgba(244, 241, 235, 0.75);
    font-size: 0.92rem;
    line-height: 1.9;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(244, 241, 235, 0.4);
    letter-spacing: 0.08em;
}

.footer-bottom a {
    color: rgba(244, 241, 235, 0.6);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--bronze);
}

/* ============ Responsive ============ */

@media (max-width: 1100px) {
    .amenities-inner,
    .services-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .amenities-head {
        position: static;
    }

    .suite {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .suite.reverse .suite-gallery {
        order: 1;
    }

    .suite.reverse .suite-info {
        order: 2;
        text-align: left;
    }

    .suite.reverse .suite-details {
        justify-content: flex-start;
    }

    .suite.reverse .suite-details li:first-child {
        padding-left: 0;
    }
}

@media (max-width: 900px) {

    .stats-band {
        flex-wrap: wrap;
    }

    .stat {
        flex: 1 1 50%;
        border-bottom: 1px solid var(--line);
    }

    .stat:nth-child(2n) {
        border-right: none;
    }

    /* 5 stats wrap as 2 + 2 + 1: the last one spans full width */
    .stat:nth-child(5) {
        flex: 1 1 100%;
        border-bottom: none;
        border-right: none;
    }

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

    /* uniform squares on tablet: 10 items = clean 2x5 grid */
    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9),
    .gallery-item:nth-child(10) {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1 / 1;
    }

    .booking-info {
        gap: 3rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

    /* the vertical divider only makes sense in the horizontal desktop nav */
    .nav-divider {
        display: none;
    }

    /* Instagram reappears in the stacked mobile menu */
    .nav-mobile-only {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin: 0;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--white);
        font-size: 1.3rem;
    }

    nav.scrolled .nav-links a {
        color: var(--white);
    }

    .nav-links a::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
        padding: 1rem 1.5rem;
    }

    nav {
        padding: 1rem 5%;
    }

    .logo img {
        height: 48px;
    }

    nav.scrolled .logo img {
        height: 38px;
    }

    .intro {
        padding: 6rem 6% 5rem;
    }

    .amenities,
    .spaces,
    .suites,
    .gardens,
    .services,
    .testimonial {
        padding-left: 6%;
        padding-right: 6%;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .spaces,
    .gardens {
        padding-left: 0;
        padding-right: 0;
    }

    .quote-band {
        padding: 7rem 8%;
        background-attachment: scroll;
    }

    .booking {
        padding: 7rem 6%;
    }

    .amenity {
        grid-template-columns: 50px 1fr;
        gap: 1.25rem;
        padding: 2rem 0;
    }

    .suite-no {
        font-size: 4rem;
    }

    .suite-info h3 {
        font-size: 2.1rem;
    }

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

    .service p {
        text-align: left;
    }

    .film-strip img {
        height: 280px;
    }

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

    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9),
    .gallery-item:nth-child(10) {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4 / 3;
    }

    .stat {
        flex: 1 1 50%;
        padding: 2rem 0.5rem;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .booking-info {
        flex-direction: column;
        gap: 2.5rem;
    }
}

/* ============================================================
   LUXURY MOTION & DETAILS
   (added as one block — remove this block + related HTML/JS to undo)
   ============================================================ */

/* ---- Lenis smooth scroll support ---- */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

/* ---- Slower, softer reveal easing ---- */
.reveal {
    transform: translateY(44px);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Cinematic reveals for imagery ---- */
/* gallery items: slow fade with a gentle settle (no slide) */
.gallery-item.reveal {
    opacity: 0;
    transform: none;
    transition: opacity 3.5s cubic-bezier(0.25, 0.6, 0.35, 1);
}

.gallery-item.reveal.visible {
    opacity: 1;
    transform: none;
}

.gallery-item img {
    transform: scale(1.08);
    transition: transform 4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.visible img {
    transform: scale(1);
}

.gallery-item.visible:hover img {
    transform: scale(1.07);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* suites: curtain on the photo while the text fades up */
.suite-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--paper);
    z-index: 4;
    transition: transform 1.4s cubic-bezier(0.77, 0, 0.18, 1) 0.2s;
}

.suite.visible .suite-media::before {
    transform: translateX(101%);
}

.suite-media img {
    transform: scale(1.12);
    transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.suite.visible .suite-media img {
    transform: scale(1);
}

.suite.visible:hover .suite-media img {
    transform: scale(1.04);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Subtle white veil to soften the color-enhanced photos ---- */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 1;
}

/* ---- Hairline gallery frames (inset, like matted art) ---- */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 3;
}

.suite-media::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 3;
    /* white veil: background fills inside the frame, spread shadow fills the 14px margin
       around it, together covering the full photo (matches Spaces/Gardens softening) */
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.1);
}

/* ---- Custom cursor ---- */
@media (hover: hover) and (pointer: fine) {
    .cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        width: 32px;
        height: 32px;
        border: 1px solid rgba(168, 137, 87, 0.75);
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translate(-50%, -50%);
        transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                    height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                    background-color 0.45s ease,
                    border-color 0.45s ease,
                    opacity 0.3s ease;
        background: transparent;
        opacity: 0;
    }

    .cursor-ring.is-active {
        opacity: 1;
    }

    .cursor-ring span {
        opacity: 0;
        font-family: 'Jost', sans-serif;
        font-size: 0.58rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--ivory);
        transition: opacity 0.3s ease;
    }

    .cursor-ring.is-view {
        width: 84px;
        height: 84px;
        background: rgba(28, 25, 22, 0.82);
        border-color: transparent;
        backdrop-filter: blur(2px);
    }

    .cursor-ring.is-view span {
        opacity: 1;
    }
}

@media (hover: none), (pointer: coarse) {
    .cursor-ring {
        display: none;
    }
}

/* ---- Paper grain texture ---- */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.032;
    pointer-events: none;
    z-index: 9000;
    /* note: no mix-blend-mode here — blending a fixed full-screen layer
       forces whole-page compositing on every animation frame (very slow) */
}

/* ---- Lightbox ---- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 11000;
    background: rgba(22, 19, 15, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 86vw;
    max-height: 86vh;
    text-align: center;
    transform: scale(0.96);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 86vw;
    max-height: 78vh;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.lightbox-content figcaption {
    margin-top: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--ivory);
    letter-spacing: 0.04em;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: var(--ivory);
    font-size: 2.2rem;
    font-weight: 200;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-family: 'Jost', sans-serif;
}

.lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid rgba(244, 241, 235, 0.25);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    color: var(--ivory);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    border-color: var(--bronze);
    background: rgba(168, 137, 87, 0.15);
}

.lightbox-prev {
    left: 2.5rem;
}

.lightbox-next {
    right: 2.5rem;
}

@media (max-width: 600px) {
    .lightbox-prev { left: 1rem; }
    .lightbox-next { right: 1rem; }
    .lightbox-prev, .lightbox-next { width: 44px; height: 44px; }
    .lightbox-close { top: 1rem; right: 1.25rem; }
}

/* ---- Garden film strip frames ---- */
.film-frame {
    position: relative;
    flex-shrink: 0;
    /* each frame gets its own small GPU layer: keeps the moving strip
       fully rendered on mobile without exceeding texture limits */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.film-frame img {
    height: 420px;
    width: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.film-frame::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 2;
}

/* subtle white veil to soften the color-enhanced photos (matches The Spaces) */
.film-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 600px) {
    .film-frame img {
        height: 280px;
    }
}

/* ---- Intro second paragraph spacing ---- */
.intro-copy-second {
    margin-top: 1.75rem;
}

/* ---- Section blurbs under titles ---- */
.section-blurb {
    color: var(--stone);
    font-size: 1rem;
    line-height: 1.9;
    max-width: 580px;
    margin: 1.5rem auto 0;
}

/* ============================================================
   FINAL TOUCHES
   ============================================================ */

/* ---- Page-load entrance veil ---- */
.page-veil {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    z-index: 20000;
    opacity: 1;
    transition: opacity 1.2s ease 0.15s;
    pointer-events: none;
}

.page-veil.lifted {
    opacity: 0;
}

/* ---- Floating action group (Book Now + WhatsApp) ---- */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 8000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Book Now pill fades in once you scroll past the hero */
.float-book {
    background: var(--bronze);
    color: var(--white);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 1.05rem 1.85rem;
    border-radius: 40px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease, background 0.3s ease;
}

.floating-actions.revealed .float-book {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-book:hover {
    background: var(--bronze-dark);
}

.whatsapp-float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--charcoal);
    border: 1px solid rgba(168, 137, 87, 0.5);
    color: var(--bronze);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.whatsapp-float:hover {
    background: var(--bronze);
    color: var(--white);
    transform: translateY(-3px);
}

/* ---- Rotating testimonials ---- */
/* grid stacking: all slides occupy the same cell, so the section
   sizes itself to the tallest review and nothing ever overlaps */
.testimonial-track {
    display: grid;
}

.testimonial-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 2.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-slide blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--ink);
    max-width: 880px;
    margin: 0 auto 3rem;
}

.testimonial-slide cite {
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--stone);
}

/* ---- Getting Here ---- */
.finding-us {
    padding: 10rem 8%;
    background: var(--paper);
    text-align: center;
}

.finding-band {
    margin-top: 5rem;
    flex-wrap: wrap;
}

/* 3 x 2 grid of destinations */
.finding-band .stat {
    flex: 1 1 33.333%;
    border-right: 1px solid var(--line);
    border-bottom: none;
}

.finding-band .stat:nth-child(3n) {
    border-right: none;
}

.finding-band .stat:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
}

.stat-unit {
    font-size: 1.3rem;
    font-style: italic;
    margin-left: 0.3rem;
    color: var(--stone);
}

/* ---- Footer logo image ---- */
.footer-logo-img {
    height: 56px;
    width: auto;
    margin-bottom: 1.75rem;
    /* dark ink logo rendered ivory on the charcoal footer */
    filter: brightness(0) invert(0.93);
}

/* ---- Mobile polish ---- */
@media (max-width: 900px) {
    /* 2 x 3 grid on smaller screens */
    .finding-band .stat,
    .finding-band .stat:nth-child(-n+3) {
        flex: 1 1 50%;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    /* left-column items keep their right border (overrides desktop 3n rule) */
    .finding-band .stat:nth-child(3n) {
        border-right: 1px solid var(--line);
    }

    /* right-column items drop the right border (must come after the 3n rule) */
    .finding-band .stat:nth-child(2n) {
        border-right: none;
    }

    /* bottom row */
    .finding-band .stat:nth-child(n+5) {
        border-bottom: none;
    }
}

@media (max-width: 600px) {
    .finding-us {
        padding: 5rem 6%;
    }

    .floating-actions {
        bottom: 1.25rem;
        right: 1.25rem;
        gap: 0.6rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .float-book {
        padding: 0.95rem 1.5rem;
        font-size: 0.68rem;
        letter-spacing: 0.2em;
    }

    .footer-logo-img {
        height: 44px;
    }

    /* tighter hero subtitle on small phones */
    .hero-subtitle {
        letter-spacing: 0.15em;
    }

    /* intro emblem slightly smaller */
    .intro-emblem {
        width: 72px;
    }

    /* suite ghost numbers don't overwhelm small screens */
    .suite-no {
        font-size: 3.2rem;
        margin-bottom: 1rem;
    }

    /* stats numbers fit on small screens */
    .stat-number {
        font-size: 2.2rem;
    }

    .stat-unit {
        font-size: 1rem;
    }

    /* lightbox arrows clear of the image */
    .lightbox-content {
        max-width: 92vw;
    }

    .lightbox-content img {
        max-width: 92vw;
        max-height: 70vh;
    }

    /* services section breathing room */
    .services-inner {
        gap: 3rem;
    }

    /* gallery labels readable on phones */
    .gallery-label {
        font-size: 1.6rem;
    }
}

/* ---- Lightbox veil (matches the gallery softening) ---- */
.lightbox-img-wrap {
    position: relative;
    display: inline-block;
}

.lightbox-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* ---- Suite photo galleries (main photo + thumbnails) ---- */
.suite-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.suite-thumb {
    width: 92px;
    aspect-ratio: 1;
    overflow: hidden;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    position: relative;
}

.suite-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.suite-thumb:hover img {
    transform: scale(1.1);
}

/* same white veil as the rest of the photography */
.suite-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* reversed suites align thumbnails to the right edge */
.suite.reverse .suite-thumbs {
    justify-content: flex-end;
}

@media (max-width: 1100px) {
    /* on stacked mobile layout, thumbs always left-aligned */
    .suite.reverse .suite-thumbs {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .suite-thumb {
        width: 72px;
    }
}


/* ---- Nearby note under the stats band ---- */
.intro-nearby {
    margin-top: 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--stone);
    letter-spacing: 0.02em;
}

/* ---- Bronze seam below the hero ---- */
.hero {
    border-bottom: 8px solid var(--bronze);
}

/* ---- Suite count marker (x2) beside titles ---- */
.suite-count {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.5em;
    font-weight: 400;
    color: var(--bronze);
    vertical-align: 0.5em;
    letter-spacing: 0.05em;
    margin-left: 0.2rem;
    white-space: nowrap;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
    padding: 10rem 8%;
    background: var(--ivory);
}

.faq-head {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 2rem 3rem 2rem 0;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--bronze);
}

/* bronze + / − toggle */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Jost', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--bronze);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item p {
    padding: 0 3rem 2.25rem 0;
    margin: 0;
    color: var(--stone);
    font-size: 1rem;
    line-height: 1.9;
    max-width: 680px;
}

@media (max-width: 600px) {
    .faq {
        padding: 5rem 6%;
    }

    .faq-head {
        margin-bottom: 3rem;
    }

    .faq-item summary {
        font-size: 1.25rem;
        padding: 1.5rem 2.5rem 1.5rem 0;
    }

    .faq-item p {
        padding: 0 0 1.75rem 0;
    }
}

/* ============================================================
   GUIDE — index + article pages
   ============================================================ */

/* ---- Guide index hero ---- */
.guide-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9rem 8% 5rem;
    background-size: cover;
    background-position: center;
    border-bottom: 8px solid var(--bronze);
}

.guide-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(20, 16, 12, 0.45), rgba(20, 16, 12, 0.5));
}

.guide-hero > * { position: relative; z-index: 1; }

.guide-hero .eyebrow { color: var(--bronze); }

.guide-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.guide-hero h1 em { font-style: italic; }

.guide-hero p {
    margin-top: 1.75rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.9;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

/* ---- Guide index grid ---- */
.guide-section {
    padding: 7rem 6% 9rem;
    background: var(--ivory);
}

.guide-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
}

.guide-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.guide-card:hover { transform: translateY(-6px); }

.guide-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    margin-bottom: 1.5rem;
}

.guide-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.guide-card:hover .guide-card-img img { transform: scale(1.06); }

/* white veil to soften the color-enhanced photos (matches the rest of the site) */
.guide-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 1;
}

.guide-card-img::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 1;
}

.guide-card .card-cat {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 0.75rem;
}

.guide-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.guide-card p {
    color: var(--stone);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.guide-card .read-more {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: auto;
}

/* ---- Article page ---- */
.article-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 8% 6rem;
    background-size: cover;
    background-position: center;
    border-bottom: 8px solid var(--bronze);
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(20, 16, 12, 0.42), rgba(20, 16, 12, 0.55));
}

.article-hero > * { position: relative; z-index: 1; }

.article-hero .eyebrow { color: var(--bronze); }

.article-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--white);
    max-width: 900px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.article-hero h1 em { font-style: italic; }

.article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 6rem 8% 5rem;
}

.article-body p {
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.95;
    margin-bottom: 1.6rem;
    font-weight: 300;
}

.article-body p.lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 2.5rem;
}

.article-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 500;
    color: var(--ink);
    margin: 3rem 0 1.25rem;
    line-height: 1.2;
}

.article-body ul {
    margin: 0 0 1.6rem 0;
    padding: 0;
    list-style: none;
}

.article-body li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.9rem;
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
}

.article-body li::before {
    content: '\2014';
    position: absolute;
    left: 0;
    color: var(--bronze);
}

.article-body strong { font-weight: 500; }

/* article CTA + back */
.article-cta {
    background: var(--charcoal);
    color: var(--ivory);
    text-align: center;
    padding: 6rem 8%;
}

.article-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--ivory);
}

.article-cta h2 em { font-style: italic; }

.article-cta p {
    max-width: 540px;
    margin: 0 auto 2.5rem;
    color: rgba(244, 241, 235, 0.7);
    line-height: 1.9;
}

.article-back {
    display: block;
    text-align: center;
    padding: 3rem 8%;
    background: var(--ivory);
}

.article-back a {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
}

.article-back a:hover { color: var(--bronze); }

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

@media (max-width: 600px) {
    .guide-grid { grid-template-columns: 1fr; max-width: 440px; }
    .guide-section { padding: 4rem 6% 5rem; }
    .article-body { padding: 4rem 7% 4rem; }
    .article-body p.lead { font-size: 1.3rem; }
}
