@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
:root {
    --navy: #0D1F35;
    --navy-mid: #152d4a;
    --gold: #B8975A;
    --gold-lt: #d4b47a;
    --gold-pale: #f0e6d0;
    --cream: #FAF8F4;
    --warm: #F2EFE9;
    --white: #ffffff;
    --text: #1C1C1C;
    --text-mid: #4a4a4a;
    --muted: #8a8278;
    --border: #e6e0d6;
    --t: .38s cubic-bezier(.25, .46, .45, .94);
    --t-slow: .65s cubic-bezier(.25, .46, .45, .94);
}


/* ── Reset ───────────────────────────────── */

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

html {
    scroll-behavior: smooth
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    line-height: 1.75
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Libre Baskerville", serif;
    line-height: 1.15;
    letter-spacing: -.01em
}

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

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

ul {
    list-style: none;
    padding: 0;
    margin: 0
}


/* ── Typography helpers ──────────────────── */

.eyebrow {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: .9rem
}

.eyebrow-light {
    color: var(--gold-lt)!important
}

.h-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.1rem
}

.h-title--light {
    color: var(--white)!important
}

.title-rule {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.0rem
}

.title-rule span {
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: .55
}

.title-rule--left {
    justify-content: flex-start
}

.title-rule--light span {
    background: rgba(255, 255, 255, .5)
}

.sec-pad {
    padding: 100px 0
}

.sec-pad-sm {
    padding: 70px 0
}


/* ── Buttons ─────────────────────────────── */

.btn-lux {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--navy);
    color: var(--white);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .95rem 2.2rem;
    border: 1px solid var(--navy);
    transition: var(--t);
    cursor: pointer;
    white-space: nowrap
}

.btn-lux:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy)
}

.btn-lux i {
    font-size: .7rem;
    transition: transform var(--t)
}

.btn-lux:hover i {
    transform: translateX(4px)
}

.btn-lux-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .95rem 2.2rem;
    transition: var(--t);
    cursor: pointer
}

.btn-lux-outline:hover {
    background: var(--navy);
    color: var(--white)
}

.btn-lux-outline i {
    font-size: .7rem;
    transition: transform var(--t)
}

.btn-lux-outline:hover i {
    transform: translateX(4px)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .5);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .95rem 2.2rem;
    transition: var(--t)
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .1);
    color: var(--white)
}


/* ── Ornament ─────────────────────────────── */

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gold);
    font-size: .55rem;
    margin-bottom: 1.6rem
}

.ornament span {
    display: block;
    width: 80px;
    height: 1px;
    background: var(--gold);
    opacity: .4
}

.ornament--light span {
    background: rgba(255, 255, 255, .35)
}

.ornament--light {
    color: var(--gold-lt)
}

.ornament--left {
    justify-content: flex-start
}

.ornament--left span:first-child {
    display: none
}


/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */

.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255);
    font-size: .8rem;
    letter-spacing: .04em;
    padding: .5rem 0;
    position: relative;
    z-index: 1001
}

.topbar a {
    color: rgba(255, 255, 255);
    transition: color var(--t)
}

.topbar a:hover {
    color: var(--gold-lt)
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: .9rem
}

.topbar-div {
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, .18)
}


/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */

#mainNav {
    background: transparent;
    top: 34px;
    padding: 1.3rem 0;
    transition: var(--t-slow);
    border-bottom: 1px solid transparent
}

#mainNav.scrolled,
#mainNav.nav-solid {
    top: 0;
    background: rgba(13, 31, 53, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: .85rem 0;
    border-bottom-color: rgba(255, 255, 255, .07)
}

.page-home #mainNav.scrolled {
    top: 0
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .9rem
}

.logo-mark {
    flex-shrink: 0
}

.logo-name {
    display: block;
    font-family: "Libre Baskerville", serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: .06em;
    line-height: 1
}

.logo-sub {
    display: block;
    font-size: .57rem;
    font-weight: 500;
    letter-spacing: .2em;
    color: var(--gold-lt);
    margin-top: .2rem
}

.navbar-nav .nav-link {
    font-size: .74rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255)!important;
    padding: .4rem .6rem!important;
    transition: color var(--t);
    position: relative
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: .9rem;
    right: .9rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--t);
    transform-origin: left
}

.navbar-nav .nav-link:hover {
    color: var(--white)!important
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active-page::after {
    transform: scaleX(1)
}

.navbar-nav .nav-link.active-page {
    color: var(--white)!important
}

.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: .65rem 1.5rem;
    border: 1px solid var(--gold);
    transition: var(--t);
    white-space: nowrap
}

.btn-reserve:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy)
}

.btn-reserve i {
    font-size: .65rem;
    transition: transform var(--t)
}

.btn-reserve:hover i {
    transform: translateX(4px)
}

.navbar-toggler {
    border: none;
    background: none;
    padding: .3rem
}

.navbar-toggler:focus {
    box-shadow: none
}

.ham {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.ham span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: var(--t)
}


/* ══════════════════════════════════════════
   PAGE OFFSET (for fixed nav)
══════════════════════════════════════════ */

.page-home .site-main {
    padding-top: 0
}

body:not(.page-home) .site-main {
    padding-top: 0
}


/* inner page hero handles spacing */


/* ══════════════════════════════════════════
   HOME HERO — Full viewport slideshow
══════════════════════════════════════════ */


/* ══════════════════════════════════════════
   HOME HERO — Full viewport slideshow
══════════════════════════════════════════ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-slides {
    position: absolute;
    inset: 0
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.4s ease, transform 8s ease
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 31, 53, .82) 0%, rgba(13, 31, 53, .52) 55%, rgba(13, 31, 53, .3) 100%)
}

.hero-frame {
    position: absolute;
    inset: 2.2rem;
    pointer-events: none;
    z-index: 2
}

.hero-frame span {
    position: absolute;
    width: 48px;
    height: 48px;
    border-color: rgba(184, 151, 90, .45);
    border-style: solid
}

.frame-tl {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px
}

.frame-tr {
    top: 0;
    right: 0;
    border-width: 1px 1px 0 0
}

.frame-bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 1px 1px
}

.frame-br {
    bottom: 0;
    right: 0;
    border-width: 0 1px 1px 0
}

.hero-body {
    position: relative;
    z-index: 3;
    padding-top: 80px
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 1.4rem
}

.eyebrow-line {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: .7
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 6.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.06;
    margin-bottom: 1.4rem;
    letter-spacing: -.02em
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-lt)
}

.hero-tag {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .7);
    max-width: 500px;
    margin: 0 auto 2.6rem;
    line-height: 1.8;
    letter-spacing: .02em
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.4rem
}

.hero-dots {
    display: flex;
    gap: .5rem;
    justify-content: center
}

.hero-dot {
    width: 26px;
    height: 2px;
    border: none;
    background: rgba(255, 255, 255, .28);
    cursor: pointer;
    padding: 0;
    transition: var(--t)
}

.hero-dot.active {
    background: var(--gold);
    width: 46px
}

.hero-scroll {
    position: absolute;
    bottom: 2.2rem;
    left: 2.5rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    writing-mode: vertical-rl
}

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

.hero-scroll span {
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .44)
}

@keyframes scrollAnim {
    0%,
    100% {
        opacity: .35;
        transform: scaleY(.5);
        transform-origin: top
    }
    50% {
        opacity: 1;
        transform: scaleY(1)
    }
}


/* ── Hero content panels (per-slide text) ──────── */

.hero-contents {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding-top: 80px
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .9s ease, transform .9s ease;
    pointer-events: none;
}

.hero-content.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


/* keep eyebrow / title / tag / ctas styling inside content panels */

.hero-content .hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 1.4rem
}

.hero-content .hero-title {
    font-size: clamp(2.8rem, 8vw, 6.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.06;
    margin-bottom: 1.4rem;
    letter-spacing: -.02em
}

.hero-content .hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-lt)
}

.hero-content .hero-tag {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255);
    max-width: 580px;
    margin: 0 auto 2.6rem;
    line-height: 1.8;
    letter-spacing: .02em
}

.hero-content .hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}


/* ── Hero dots wrapper (repositioned) ─────────── */

.hero-dots-wrap {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: .55rem;
    align-items: center;
}


/* ── Prev / Next arrow buttons ─────────────────── */

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    background: rgba(13, 31, 53, .45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .18);
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .28s ease, border-color .28s ease, transform .28s ease;
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.hero-arrow--prev {
    left: 1.8rem
}

.hero-arrow--next {
    right: 1.8rem
}

@media(max-width:767px) {
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: .9rem
    }
    .hero-arrow--prev {
        left: .8rem
    }
    .hero-arrow--next {
        right: .8rem
    }
    .hero-content .hero-title {
        font-size: clamp(2.3rem, 9vw, 3.3rem)
    }
    .hero-content .hero-ctas {
        flex-direction: column;
        align-items: center
    }
    .hero-content .hero-ctas .btn-lux,
    .hero-content .hero-ctas .btn-ghost {
        width: 100%;
        max-width: 280px;
        justify-content: center
    }
}


/* ══════════════════════════════════════════
   INNER PAGE HERO (sub-pages)
══════════════════════════════════════════ */

.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3.5rem;
    overflow: hidden;
    margin-top: 34px
}


/* 34px = topbar height */

body:not(.page-home) #mainNav.nav-solid+.site-main .page-hero,
.page-hero {
    margin-top: 34px
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease
}

.page-hero:hover .page-hero-bg {
    transform: scale(1.03)
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 31, 53, .88) 0%, rgba(13, 31, 53, .45) 55%, rgba(13, 31, 53, .22) 100%)
}

.page-hero-frame {
    position: absolute;
    inset: 1.5rem;
    pointer-events: none;
    z-index: 3
}

.page-hero-frame span {
    position: absolute;
    width: 36px;
    height: 36px;
    border-color: rgba(184, 151, 90, .38);
    border-style: solid
}

.page-hero-content {
    position: relative;
    z-index: 4
}

.ph-eyebrow {
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold-lt);
    display: block;
    margin-bottom: .5rem
}

.ph-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1
}


/* Breadcrumb */

.breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: .65rem 0
}

.breadcrumb-bar ol {
    margin: 0
}

.breadcrumb-item {
    font-size: .9rem;
    color: var(--muted)
}

.breadcrumb-item a {
    color: var(--gold);
    transition: color var(--t)
}

.breadcrumb-item a:hover {
    color: var(--navy)
}

.breadcrumb-item.active {
    color: var(--navy)
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--border)
}


/* ══════════════════════════════════════════
   BOOKING BAR
══════════════════════════════════════════ */

.booking-bar-wrap {
    position: relative;
    z-index: 10;
    margin-top: -1px
}

.booking-panel {
    background: var(--white);
    border-top: 3px solid var(--gold);
    box-shadow: 0 18px 55px rgba(13, 31, 53, .14);
    display: flex;
    align-items: stretch
}

.booking-label {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: var(--navy);
    color: var(--white);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 0 1.8rem;
    flex-shrink: 0;
    min-width: 150px
}

.booking-label i {
    color: var(--gold);
    font-size: 1.1rem
}

.booking-fields {
    display: flex;
    align-items: stretch;
    flex: 1;
    flex-wrap: wrap
}

.b-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.1rem 1.6rem;
    flex: 1;
    min-width: 304px;
    border-right: 1px solid var(--border)
}

.b-field label {
    font-size: .8 rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .25rem
}

.b-field input,
.b-field select {
    border: none;
    outline: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .9rem;
    color: var(--text);
    background: transparent;
    cursor: pointer;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    width: 100%
}

.b-field input::-webkit-calendar-picker-indicator {
    opacity: .5;
    cursor: pointer
}

.b-sep {
    width: 1px;
    background: var(--border);
    flex-shrink: 0
}

.b-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--gold);
    color: var(--navy);
    border: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 0 2.2rem;
    cursor: pointer;
    transition: var(--t);
    flex-shrink: 0;
    white-space: nowrap;
    min-height: 66px
}

.b-btn:hover {
    background: var(--navy);
    color: var(--white)
}

.b-btn i {
    font-size: .65rem;
    transition: transform var(--t)
}

.b-btn:hover i {
    transform: translateX(4px)
}

.booking-msg {
    width: 100%;
    padding: .7rem 1.6rem;
    font-size: .87rem;
    font-weight: 500
}

.booking-msg.success {
    background: #f0f9f0;
    color: #2d6a2d;
    border-top: 1px solid #c3e6c3
}

.booking-msg.error {
    background: #fdf2f2;
    color: #8b2b2b;
    border-top: 1px solid #f0c4c4
}


/* ══════════════════════════════════════════
   HOME INTRO STRIP
══════════════════════════════════════════ */

.intro-strip {
    padding: 100px 0;
    background: var(--cream)
}

.intro-inner {
    text-align: center;
    max-width: 780px;
    margin: 0 auto
}

.intro-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.1rem;
    line-height: 1.3
}

.intro-body {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.88;
    max-width: 630px;
    margin: 0 auto 3.2rem
}

.intro-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap
}

.i-stat {
    text-align: center
}

.i-num {
    font-family: "Libre Baskerville", serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1
}

.i-unit {
    font-size: 1.3rem;
    color: var(--gold);
    font-family: "Libre Baskerville", serif
}

.i-label {
    display: block;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .25rem
}

.i-div {
    width: 1px;
    height: 48px;
    background: var(--border)
}


/* ══════════════════════════════════════════
   HOME ROOMS SPLIT PANELS
══════════════════════════════════════════ */


/* .rooms-split {
    padding: 0 0 100px
} */

.room-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px
}

.room-panel--flip {
    direction: rtl
}

.room-panel--flip>* {
    direction: ltr
}

.room-panel-img {
    position: relative;
    overflow: hidden
}

.room-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease
}

.room-panel:hover .room-panel-img img {
    transform: scale(1.04)
}

.room-panel-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 31, 53, .28) 0%, transparent 60%)
}

.room-panel-badge {
    position: absolute;
    top: 1.8rem;
    left: 1.8rem;
    background: var(--gold);
    color: var(--navy);
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .35rem .9rem
}

.room-panel-info {
    background: var(--white);
    padding: 3.8rem 4.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.room-cat {
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem
}

.room-name {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: .9rem
}

.room-rule {
    width: 38px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.4rem
}

.room-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.88;
    margin-bottom: 1.9rem
}

.room-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .4rem 1.2rem;
    margin-bottom: 2.3rem
}

.room-feats li {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: 1rem;
    color: var(--text-mid)
}

.room-feats li i {
    color: var(--gold);
    font-size: 1rem
}

.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 1.7rem
}

.room-rate .rate-from {
    display: block;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .15rem
}

.room-rate .rate-price {
    font-family: "Libre Baskerville", serif;
    font-size: 2.3rem;
    font-weight: 300;
    color: var(--navy)
}

.room-rate .rate-per {
    font-size: .9rem;
    color: var(--muted);
    margin-left: .15rem
}


/* ══════════════════════════════════════════
   PILLARS (Why Choose Us)
══════════════════════════════════════════ */

.pillars {
    background: var(--warm)
}

.pillar-card {
    background: var(--white);
    padding: 2.8rem 2rem;
    height: 100%;
    border-bottom: 2px solid transparent;
    transition: var(--t)
}

.pillar-card:hover {
    border-bottom-color: var(--gold);
    box-shadow: 0 18px 48px rgba(13, 31, 53, .08);
    transform: translateY(-4px)
}

.pillar-num {
    font-family: "Libre Baskerville", serif;
    font-size: 3.8rem;
    font-weight: 300;
    color: var(--gold-pale);
    line-height: 1;
    margin-bottom: .9rem;
    user-select: none
}

.pillar-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 1.3rem;
    transition: var(--t)
}

.pillar-card:hover .pillar-icon {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy)
}

.pillar-card h5 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: .6rem
}

.pillar-card p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.72;
    margin: 0
}


/* ══════════════════════════════════════════
   SPECIAL OFFERS BANNER
══════════════════════════════════════════ */

.offers-banner {
    position: relative;
    padding: 100px 0
}

.offers-bg {
    position: absolute;
    inset: 0;
    background-image: url('../image/facilities.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(.18)
}

.offers-content {
    position: relative;
    z-index: 2
}

.offer-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .14);
    padding: 2.4rem;
    height: 100%;
    transition: var(--t)
}

.offer-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--gold);
    transform: translateY(-4px)
}

.offer-card--gold {
    background: var(--gold);
    border-color: var(--gold)
}

.offer-card--gold:hover {
    background: var(--gold-lt);
    border-color: var(--gold-lt)
}

.offer-tag {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    border: 1px solid rgba(184, 151, 90, .38);
    padding: .28rem .85rem;
    margin-bottom: 1.4rem
}

.offer-tag--dark {
    color: var(--navy);
    border-color: rgba(13, 31, 53, .28)
}

.offer-card h4 {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: .5rem;
    line-height: 1.2
}

.offer-card--gold h4 {
    color: var(--navy)
}

.offer-card p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.5;
    margin-bottom: 0;
}

.offer-card--gold p {
    color: rgba(13, 31, 53, .72)
}

.offer-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-lt);
    border-bottom: 1px solid rgba(184, 151, 90, .38);
    padding-bottom: .2rem;
    transition: var(--t)
}

.offer-card--gold .offer-link {
    color: var(--navy);
    border-bottom-color: rgba(13, 31, 53, .28)
}

.offer-link:hover {
    gap: .75rem;
    opacity: .8
}


/* ══════════════════════════════════════════
   AMENITIES GRID (home + page)
══════════════════════════════════════════ */

.am-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border)
}

.am-tile {
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
    gap: .75rem;
    transition: var(--t)
}

.am-tile:hover {
    background: var(--navy);
    z-index: 1
}

.am-tile i {
    font-size: 1.35rem;
    color: var(--gold);
    transition: color var(--t)
}

.am-tile span {
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--text-mid);
    transition: color var(--t);
    line-height: 1.3
}

.am-tile:hover i {
    color: var(--gold-lt)
}

.am-tile:hover span {
    color: rgba(255, 255, 255)
}


/* Am detail list (amenities page) */

.am-detail-block {
    margin-bottom: 3.5rem
}

.am-detail-block:last-child {
    margin-bottom: 0
}

.am-cat-label {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    padding-bottom: .75rem;
    margin-bottom: 1.4rem
}

.am-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .89rem;
    color: var(--text-mid);
    transition: var(--t)
}

.am-list li:last-child {
    border-bottom: none
}

.am-list li:hover {
    color: var(--navy);
    padding-left: .25rem
}

.am-list li i {
    color: var(--gold);
    font-size: 2.8rem;
    margin-top: .15rem;
    flex-shrink: 0
}

.am-list li strong {
    display: block;
    color: var(--navy);
    font-size: .86rem;
    margin-bottom: .1rem;
    font-weight: 500
}


/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */

.gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem
}

.gal-item {
    position: relative;
    overflow: hidden;
    display: block
}

.gal-item img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform 1s ease;
    display: block
}

.gal-item:hover img {
    transform: scale(1.06)
}

.gal-item--lg {
    grid-column: span 2
}

.gal-item--tall {
    grid-row: span 2
}

.gal-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 31, 53, .78) 0%, transparent 100%);
    padding: 1.4rem 1.1rem .75rem;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--t)
}

.gal-cap span {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--white)
}

.gal-item:hover .gal-cap {
    opacity: 1;
    transform: translateY(0)
}


/* Gallery filter bar */

.gal-filter {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem
}

.gf-btn {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    background: transparent;
    border: 1px solid var(--border);
    padding: .5rem 1.3rem;
    cursor: pointer;
    transition: var(--t)
}

.gf-btn:hover,
.gf-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy)
}


/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */

.testi-wrap {
    overflow: hidden;
    position: relative
}

.testi-track {
    display: flex;
    gap: 1.4rem;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94)
}

.testi-card {
    flex: 0 0 calc(33.333% - .95rem);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2.6rem;
    transition: var(--t)
}

.testi-card:hover {
    border-color: var(--gold);
    box-shadow: 0 14px 46px rgba(13, 31, 53, .07)
}

.testi-q {
    font-size: 2.4rem;
    color: var(--gold-pale);
    margin-bottom: 1.1rem;
    line-height: 1
}

.testi-card p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.88;
    font-style: italic;
    margin-bottom: 1.7rem
}

.testi-stars {
    color: var(--gold);
    font-size: .95rem;
    letter-spacing: .05em;
    margin-bottom: 1.4rem
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .85rem;
    border-top: 1px solid var(--border);
    padding-top: 1.4rem
}

.testi-av {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: var(--gold-lt);
    font-size: .75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.testi-author strong {
    display: block;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0rem
}

.testi-author span {
    font-size: .9rem;
    color: var(--muted)
}

.testi-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    margin-top: 2.4rem
}

.testi-nav button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    color: var(--navy);
    font-size: .88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t)
}

.testi-nav button:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white)
}

.testi-dots {
    display: flex;
    gap: .38rem
}

.t-dot {
    width: 18px;
    height: 2px;
    background: var(--border);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: var(--t)
}

.t-dot.active {
    background: var(--gold);
    width: 34px
}


/* ══════════════════════════════════════════
   LOCATION
══════════════════════════════════════════ */

.map-frame {
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative
}

.map-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    z-index: 1
}

.map-frame iframe {
    display: block
}

.loc-addr {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    background: var(--white);
    border-left: 2px solid var(--gold);
    padding: 1.1rem 1.4rem;
    margin-bottom: 1.8rem
}

.loc-addr i {
    color: var(--gold);
    font-size: 1.05rem;
    margin-top: .1rem;
    flex-shrink: 0
}

.loc-addr strong {
    display: block;
    color: var(--navy);
    font-size: .86rem;
    margin-bottom: .15rem
}

.loc-addr p {
    font-size: .82rem;
    color: var(--muted);
    margin: 0
}

.nearby-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem
}

.nearby-item {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    background: var(--white);
    padding: .75rem .9rem;
    font-size: .9rem;
    color: var(--text-mid);
    border: 1px solid var(--border);
    transition: var(--t)
}

.nearby-item:hover {
    border-color: var(--gold);
    background: var(--cream)
}

.nearby-item i {
    color: var(--gold);
    font-size: .85rem;
    margin-top: .1rem;
    flex-shrink: 0
}

.nearby-item em {
    display: block;
    font-style: normal;
    font-size: .8rem;
    color: var(--muted);
    margin-top: 0rem
}

.dir-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .9rem;
    margin-top: 2.4rem
}

.dir-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.5rem 1.4rem;
    text-align: center;
    transition: var(--t)
}

.dir-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 36px rgba(13, 31, 53, .07)
}

.dir-card i {
    font-size: 1.7rem;
    color: var(--gold);
    margin-bottom: .9rem;
    display: block
}

.dir-card h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .45rem
}

.dir-card p {
    font-size: .9rem;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.45;
}


/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */

.contact-tile {
    text-align: center;
    padding: 2.8rem 1.8rem;
    background: var(--white);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--t);
    position: relative
}

.contact-tile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--t)
}

.contact-tile:hover {
    box-shadow: 0 14px 46px rgba(13, 31, 53, .07)
}

.contact-tile:hover::after {
    transform: scaleX(1)
}

.contact-tile>i {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1.1rem;
    display: block
}

.contact-tile h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .55rem
}

.contact-tile a {
    font-size: .96rem;
    font-weight: 500;
    color: var(--navy);
    display: block;
    margin-bottom: .28rem;
    transition: color var(--t)
}

.contact-tile a:hover {
    color: var(--gold)
}

.contact-tile p {
    font-size: .82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.5
}


/* Contact form */

.contact-form-box {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 3rem
}

.f-label {
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: .38rem
}

.f-input {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--warm);
    padding: .82rem 1.05rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .88rem;
    color: var(--text);
    outline: none;
    transition: var(--t);
    border-radius: 0;
    appearance: none
}

.f-input:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(184, 151, 90, .07)
}

.f-input::placeholder {
    color: var(--muted)
}

textarea.f-input {
    resize: vertical;
    min-height: 130px
}

#contactMsg {
    padding: .9rem 1.1rem;
    margin-top: 1rem;
    font-size: .87rem;
    display: none
}

#contactMsg.success {
    background: #f0f9f0;
    color: #2d6a2d;
    border: 1px solid #c3e6c3
}

#contactMsg.error {
    background: #fdf2f2;
    color: #8b2b2b;
    border: 1px solid #f0c4c4
}


/* Contact info panel */

.cip {
    background: var(--navy);
    padding: 3rem;
    height: 100%
}

.cip-title {
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: .45rem
}

.cip-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 2.0rem;
}

.cip-row {
    display: flex;
    align-items: flex-start;
    gap: .95rem;
    margin-bottom: 1.9rem
}

.cip-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(184, 151, 90, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--gold);
    flex-shrink: 0
}

.cip-text strong {
    display: block;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 0rem
}

.cip-text p,
.cip-text a {
    font-size: .9rem;
    color: rgba(255, 255, 255, .9);
    margin: 0;
    transition: color var(--t);
}

.cip-text a:hover {
    color: var(--gold)
}

.cip-hours {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 2.2rem;
    margin-top: 2.2rem
}

.cip-hours h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .9rem
}

.cip-hours ul li {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    padding: .38rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.cip-hours ul li span {
    color: rgba(255, 255, 255, .9)
}


/* ══════════════════════════════════════════
   ACCOMMODATIONS PAGE
══════════════════════════════════════════ */

.acc-block {
    margin-bottom: 5rem
}

.acc-block:last-child {
    margin-bottom: 0
}

.acc-img-main {
    position: relative;
    overflow: hidden;
    height: 500px
}

.acc-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease
}

.acc-img-main:hover img {
    transform: scale(1.04)
}

.acc-badge {
    position: absolute;
    top: 1.8rem;
    left: 1.8rem;
    background: var(--gold);
    color: var(--navy);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .33rem .85rem
}

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

.acc-thumb {
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block
}

.acc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease
}

.acc-thumb:hover img {
    transform: scale(1.08)
}

.acc-cat {
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .45rem
}

.acc-name {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: .85rem
}

.acc-rule {
    width: 36px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.4rem
}

.acc-desc {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 1.9rem
}

.acc-feats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
    margin-bottom: 2.4rem
}

.acc-feat {
    display: flex;
    align-items: center;
    gap: .65rem;
    background: #ffffff;
    border: 1px solid var(--border);
    padding: .75rem .9rem;
    font-size: .8rem;
    color: #000000;
    transition: var(--t)
}

.acc-feat:hover {
    border-color: var(--gold);
    background: var(--cream)
}

.acc-feat i {
    color: var(--gold);
    font-size: .85rem;
    flex-shrink: 0
}

.acc-rate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.8rem
}

.acc-rate-label {
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: .2rem
}

.acc-rate-price {
    font-family: "Libre Baskerville", serif;
    font-size: 2.7rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1
}

.acc-rate-per {
    font-size: .8rem;
    color: var(--muted)
}

.acc-rate-note {
    font-size: .75rem;
    color: var(--muted);
    margin-top: .25rem
}


/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */

.cta-sec {
    position: relative;
    padding: 120px 0;
    overflow: hidden
}

.cta-media {
    position: absolute;
    inset: 0
}

.cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 31, 53, .78)
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 670px;
    margin: 0 auto;
    text-align: center
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: .9rem
}

.cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .9);
    line-height: 1.88;
    margin-bottom: 2.7rem
}

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

.site-footer {
    background: var(--navy)
}

.footer-top {
    padding: 78px 0 58px;
    border-bottom: 1px solid rgba(255, 255, 255, .07)
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1.4rem
}

.footer-about {
    font-size: .9rem;
    color: rgb(255 255 255 / 80%);
    line-height: 1.62;
    max-width: 295px;
    margin-bottom: 1.7rem;
}

.footer-socials {
    display: flex;
    gap: .55rem
}

.footer-socials a {
    width: 34px;
    height: 34px;
    line-height: 31px !important;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--t)
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.footer-col-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.7rem;
}

.site-footer ul li {
    margin-bottom: 0rem;
    list-style: disc;
}

.site-footer ul a {
    font-size: .9rem;
    color: rgba(255, 255, 255, .9);
    transition: var(--t)
}

.site-footer ul a:hover {
    color: var(--white);
    padding-left: .25rem
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: .75rem;
    line-height: 1.5
}

.footer-contact-list li i {
    color: var(--gold);
    margin-top: .15rem;
    flex-shrink: 0;
    font-size: .82rem
}

.footer-contact-list a {
    color: rgba(255, 255, 255, .8);
    transition: color var(--t)
}

.footer-contact-list a:hover {
    color: var(--white)
}

.footer-bottom {
    padding: 1.4rem 0
}

.footer-bottom p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .9);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.4rem
}

.footer-legal a {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8);
    transition: color var(--t);
}

.footer-legal a:hover {
    color: var(--white)
}


/* ══════════════════════════════════════════
   FLOAT CALL BUTTON
══════════════════════════════════════════ */

.float-call {
    position: fixed;
    bottom: 1.4rem;
    right: 1.4rem;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 7px 26px rgba(184, 151, 90, .42);
    z-index: 999;
    transition: var(--t)
}

.float-call:hover {
    background: var(--navy);
    color: var(--white)
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media(max-width:1199px) {
    .room-panel-info {
        padding: 3rem
    }
    .acc-img-main {
        height: 400px
    }
}

@media(max-width:991px) {
    .topbar {
        display: none
    }
    #mainNav {
        top: 0!important
    }
    .page-hero {
        margin-top: 0
    }
    .room-panel {
        grid-template-columns: 1fr;
        min-height: auto
    }
    .room-panel--flip {
        direction: ltr
    }
    .room-panel-img {
        aspect-ratio: 16/9;
        height: auto
    }
    .am-grid {
        grid-template-columns: repeat(3, 1fr)
    }
    .gal-grid {
        grid-template-columns: 1fr 1fr
    }
    .gal-item--lg {
        grid-column: span 1
    }
    .gal-item--tall {
        grid-row: span 1
    }
    .testi-card {
        flex: 0 0 calc(50% - .7rem)
    }
    .float-call {
        display: flex
    }
    .booking-panel {
        flex-direction: column
    }
    .booking-label {
        min-height: 48px;
        min-width: auto
    }
    .booking-fields {
        flex-direction: column
    }
    .b-field {
        border-right: none;
        border-bottom: 1px solid var(--border)
    }
    .b-sep {
        display: none
    }
    .b-btn {
        justify-content: center;
        min-height: 52px
    }
    .acc-feats {
        grid-template-columns: 1fr 1fr
    }
    .dir-cards {
        grid-template-columns: 1fr 1fr
    }
    .acc-img-main {
        height: 300px
    }
}

@media(max-width:767px) {
    .hero-title {
        font-size: clamp(2.3rem, 9vw, 3.3rem)
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center
    }
    .hero-ctas .btn-lux,
    .hero-ctas .btn-ghost {
        width: 100%;
        max-width: 280px;
        justify-content: center
    }
    .intro-stats {
        gap: 1.4rem
    }
    .i-div {
        height: 28px
    }
    .am-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .testi-card {
        flex: 0 0 100%
    }
    .gal-grid {
        grid-template-columns: 1fr 1fr
    }
    .nearby-grid {
        grid-template-columns: 1fr
    }
    .dir-cards {
        grid-template-columns: 1fr
    }
    .hero-frame {
        inset: 1rem
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center
    }
    .room-feats {
        grid-template-columns: 1fr
    }
    .acc-feats {
        grid-template-columns: 1fr
    }
    .room-panel-info {
        padding: 2.5rem 1.5rem
    }
}

@media(max-width:575px) {
    .gal-grid {
        grid-template-columns: 1fr
    }
    .am-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}


/* ══════════════════════════════════════════
   ABOUT US — Homepage Preview + Full Page
══════════════════════════════════════════ */


/* ── Homepage About Preview ───────────── */

.about-preview {
    background: var(--white);
}

.about-img-stack {
    position: relative;
    padding-bottom: 3rem;
    padding-right: 3rem;
}

.about-img-main {
    position: relative;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 24px 64px rgba(13, 31, 53, .15);
    z-index: 2;
}

.about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 1.1s ease;
}

.about-img-main:hover img {
    transform: scale(1.04);
}

.about-img-inset {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 16px 44px rgba(13, 31, 53, .18);
    z-index: 3;
}

.about-img-inset img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 1.1s ease;
}

.about-img-inset:hover img {
    transform: scale(1.06);
}

.about-img-badge {
    position: absolute;
    top: 2.2rem;
    left: -1.4rem;
    background: var(--navy);
    padding: 1.4rem 1.6rem;
    text-align: center;
    z-index: 4;
    box-shadow: 0 8px 28px rgba(13, 31, 53, .25);
}

.about-badge-num {
    display: block;
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: .1rem;
}

.about-badge-year {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
}

.about-badge-label {
    display: block;
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-top: .3rem;
}


/* Text side */

.about-lead {
    font-size: 1.05rem;
    color: var(--navy);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.about-body {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.88;
    margin-bottom: 0.7rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.2rem;
    padding: 1.8rem;
    background: var(--warm);
    border-left: 3px solid var(--gold);
}

.about-value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-value-icon {
    width: 38px;
    height: 38px;
    background: var(--navy);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: .1rem;
}

.about-value-item strong {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .15rem;
}

.about-value-item p {
    font-size: .82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}


/* ── About Page Full Styles ───────────── */


/* Story section */

.about-story {
    background: var(--cream);
}

.about-story-text {
    max-width: 640px;
}

.about-story-text p {
    font-size: .94rem;
    color: var(--text-mid);
    line-height: 1.92;
    margin-bottom: 0.5rem;
    /* text-align: justify; */
}

.about-story-text p:last-of-type {
    margin-bottom: 0;
}

.about-story-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
}

.about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s ease;
}

.about-story-img:hover img {
    transform: scale(1.04);
}

.about-story-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 31, 53, .85) 0%, transparent 100%);
    padding: 2rem 1.8rem 1.2rem;
}

.about-story-img-caption p {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}


/* Timeline */

.about-timeline {
    background: var(--warm);
}

.timeline-list {
    position: relative;
    padding-left: 2.2rem;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.8rem;
    padding-left: 1.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: .35rem;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
    border-radius: 50%;
}

.timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: .04em;
    margin-bottom: .3rem;
    display: block;
}

.timeline-item h5 {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: .4rem;
}

.timeline-item p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}


/* Mission statement */

.about-mission {
    background: var(--navy);
    padding: 100px 0;
    text-align: center;
}

.mission-quote {
    font-family: "Libre Baskerville", serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    max-width: 780px;
    margin: 0 auto 2rem;
}

.mission-quote em {
    color: var(--gold-lt);
    font-style: normal;
}

.mission-attr {
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
}


/* Team */

.about-team {
    background: var(--cream);
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--t);
}

.team-card:hover {
    box-shadow: 0 18px 50px rgba(13, 31, 53, .1);
    transform: translateY(-4px);
}

.team-card-img {
    overflow: hidden;
    height: 280px;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

.team-card-body {
    padding: 1.8rem;
    border-top: 2px solid var(--gold);
}

.team-card-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: .2rem;
}

.team-card-role {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: .8rem;
}

.team-card-bio {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}


/* Awards / Recognition strip */

.about-awards {
    background: var(--warm);
}

.award-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--t);
}

.award-item:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 38px rgba(13, 31, 53, .07);
}

.award-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.award-item h6 {
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: .4rem;
}

.award-item p {
    font-size: .8rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}


/* Responsive tweaks */

@media (max-width: 991px) {
    .about-img-stack {
        padding-bottom: 2.5rem;
        padding-right: 2.5rem;
    }
    .about-img-main img {
        height: 340px;
    }
    .about-story-img {
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .about-img-stack {
        padding-bottom: 3.5rem;
        padding-right: 2rem;
    }
    .about-img-main img {
        height: 280px;
    }
    .about-img-badge {
        left: -.5rem;
        top: 1.5rem;
    }
    .about-img-inset img {
        height: 160px;
    }
    .timeline-list {
        padding-left: 1.8rem;
    }
}

.pt_100 {
    padding-top: 100px;
}


/* ══════════════════════════════════════════
   ROOM VIEWER — Large preview + thumb slider
══════════════════════════════════════════ */

.room-viewer {
    display: flex;
    flex-direction: column;
    gap: 0;
}


/* ── Large preview ───────────────────────── */

.rv-main {
    position: relative;
}

.rv-main-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    aspect-ratio: 16 / 10;
    cursor: pointer;
}

.rv-large-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .35s ease, transform .65s ease;
}

.rv-large-img.is-switching {
    opacity: 0;
    transform: scale(1.03);
}


/* Badge */

.rv-badge {
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
    background: var(--gold);
    color: var(--navy);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .32rem .85rem;
    z-index: 4;
    pointer-events: none;
}


/* Prev / Next arrows on large image */

.rv-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(13, 31, 53, .55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background .25s ease, border-color .25s ease;
}

.rv-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.rv-arrow--prev {
    left: 1rem;
}

.rv-arrow--next {
    right: 1rem;
}


/* Image counter pill */

.rv-counter {
    position: absolute;
    bottom: 1rem;
    right: 3.5rem;
    background: rgba(13, 31, 53, .65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, .85);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .08em;
    padding: .3rem .75rem;
    z-index: 5;
    pointer-events: none;
}


/* Expand / fullscreen icon */

.rv-expand {
    position: absolute;
    bottom: .85rem;
    right: .85rem;
    width: 36px;
    height: 36px;
    background: rgba(13, 31, 53, .6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background .25s ease, color .25s ease;
}

.rv-expand:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}


/* Caption bar below large image */

.rv-caption {
    background: var(--navy);
    padding: .65rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
}

.rv-caption>i {
    color: var(--gold);
    font-size: .85rem;
    flex-shrink: 0;
}

.rv-caption>span:first-of-type {
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .82);
    flex: 1;
}

.rv-hint {
    font-size: .68rem !important;
    color: rgba(255, 255, 255, .36) !important;
    letter-spacing: .03em;
    flex: none !important;
    white-space: nowrap;
}


/* ── Thumbnail section ───────────────────── */

.rv-thumb-section {
    /* background: var(--white); */
    /* border: 1px solid var(--border); */
    /* border-top: none; */
    padding: 1rem 0rem 0rem;
}

.rv-thumb-label {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 .75rem;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.rv-thumb-label i {
    color: var(--gold);
}


/* Slider wrapper */

.rv-thumb-slider-wrap {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.rv-thumb-track-wrap {
    flex: 1;
    overflow: hidden;
}

.rv-thumb-track {
    display: flex;
    gap: .5rem;
    transition: transform .42s cubic-bezier(.25, .46, .45, .94);
    will-change: transform;
}


/* Single thumbnail */

.rv-thumb {
    flex: 0 0 calc(25% - .38rem);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .25s ease, transform .25s ease;
    flex-shrink: 0;
}

.rv-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

.rv-thumb:hover img {
    transform: scale(1.08);
}


/* Active / hover state */

.rv-thumb.active {
    border-color: var(--gold);
}

.rv-thumb:hover:not(.active) {
    border-color: rgba(184, 151, 90, .45);
}


/* Eye overlay on hover */

.rv-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 31, 53, .42);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity .25s ease;
}

.rv-thumb:hover .rv-thumb-overlay {
    opacity: 1;
}

.rv-thumb.active .rv-thumb-overlay {
    opacity: 0;
}


/* don't show on active */


/* Auto-slide progress bar on active thumb */

.rv-thumb.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    animation: thumbProgress 4s linear forwards;
}

@keyframes thumbProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}


/* Thumbnail nav arrows */

.rv-thumb-nav {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.rv-thumb-nav:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.rv-thumb-nav:disabled {
    opacity: .3;
    cursor: default;
}


/* ── Responsive ──────────────────────────── */

@media (max-width: 991px) {
    .rv-thumb {
        flex: 0 0 calc(33.333% - .35rem);
    }
}

@media (max-width: 575px) {
    .rv-hint {
        display: none;
    }
    .rv-thumb {
        flex: 0 0 calc(50% - .28rem);
    }
    .rv-arrow {
        width: 36px;
        height: 36px;
        font-size: .85rem;
    }
}

.glightbox-clean .gslide-title {
    margin-bottom: 0 !important;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.glightbox-clean .gdesc-inner {
    padding: 10px 20px !important;
}

.text-justify {
    text-align: justify;
}

.icon {
    width: 65px;
    border-radius: 5px;
}

.footer_ul_mb li {
    margin-bottom: 10px !important;
}

.pl_15 {
    padding-left: 15px;
}


/* @media (max-width: 576px) {
    .pl_15.sm_pl_0 {
        padding-left: 0;
    }
} */

.site-footer ul li::marker {
    color: var(--gold);
    /* change to your desired color */
}


/* ══════════════════════════════════════════
   EXPLORE PAGES — shared components
══════════════════════════════════════════ */


/* Explore sub-nav (tab bar between pages) */

.explore-tabs {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.explore-tabs .container {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.explore-tabs .container::-webkit-scrollbar {
    display: none;
}

.explore-tab {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 1.4rem;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #000000;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: var(--t);
}

.explore-tab i {
    font-size: .85rem;
    color: var(--gold);
}

.explore-tab:hover {
    color: var(--navy);
    border-bottom-color: rgba(184, 151, 90, .3);
}

.explore-tab.active {
    color: var(--navy);
    border-bottom-color: var(--gold);
    font-weight: 600;
}


/* Policy card */

.policy-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2.2rem 2.4rem;
    height: 100%;
    transition: var(--t);
    position: relative;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t);
}

.policy-card:hover {
    box-shadow: 0 16px 48px rgba(13, 31, 53, .08);
}

.policy-card:hover::before {
    transform: scaleX(1);
}

.policy-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1.3rem;
}

.policy-card h5 {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: .75rem;
}

.policy-card p,
.policy-card ul {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin: 0;
}

.policy-card ul {
    padding-left: 1.1rem;
    list-style: disc;
}

.policy-card ul li {
    margin-bottom: .3rem;
}


/* Important info box */

.info-box {
    background: var(--gold-pale);
    border: 1px solid rgba(184, 151, 90, .3);
    border-left: 3px solid var(--gold);
    padding: 1.5rem 1.8rem;
}

.info-box h6 {
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: .75rem;
}

.info-box p,
.info-box ul {
    font-size: .87rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin: 0;
}

.info-box ul {
    padding-left: 1rem;
    list-style: disc;
}


/* Place card (nearby / attractions / restaurants) */

.place-card {
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: stretch;
    gap: 0;
    transition: var(--t);
    overflow: hidden;
    height: 100%;
}

.place-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(13, 31, 53, .09);
    transform: translateY(-3px);
}

.place-card-img {
    width: 120px;
    flex-shrink: 0;
    overflow: hidden;
}

.place-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.place-card:hover .place-card-img img {
    transform: scale(1.08);
}

.place-card-body {
    padding: 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.place-card-type {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .3rem;
}

.place-card-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: .3rem;
    line-height: 1.2;
}

.place-card-addr {
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: .6rem;
}

.place-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .4rem;
}

.place-dist {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    font-weight: 500;
    color: var(--navy);
    background: var(--warm);
    border: 1px solid var(--border);
    padding: .22rem .65rem;
}

.place-dist i {
    color: var(--gold);
    font-size: .75rem;
}

.place-rating {
    font-size: .72rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: .2rem;
}

.place-rating i {
    color: var(--gold);
    font-size: .7rem;
}


/* Dobson Guide blog grid */

.guide-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--t);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    border-color: var(--gold);
    box-shadow: 0 14px 44px rgba(13, 31, 53, .09);
    transform: translateY(-4px);
}

.guide-card-img {
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
}

.guide-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

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

.guide-card-body {
    padding: 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-card-tag {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .4rem;
}

.guide-card-date {
    font-size: .72rem;
    color: var(--muted);
    margin-bottom: .6rem;
}

.guide-card-title {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: .8rem;
    flex: 1;
}

.guide-card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 1px solid var(--border);
    padding-bottom: .2rem;
    transition: var(--t);
    align-self: flex-start;
    margin-top: auto;
}

.guide-card-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    gap: .65rem;
}


/* FAQ accordion (policies page) */

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 0;
    cursor: pointer;
    font-size: .92rem;
    font-weight: 500;
    color: var(--navy);
    gap: 1rem;
    transition: color var(--t);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    font-size: .75rem;
    color: var(--gold);
    transition: transform var(--t);
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.8;
    padding: 0 0 1.2rem;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}


/* ══════════════════════════════════════════
   RESPONSIVE EXPLORE
══════════════════════════════════════════ */

@media(max-width:767px) {
    .place-card-img {
        width: 90px;
    }
    .place-card-body {
        padding: 1rem;
    }
}

@media(max-width:575px) {
    .place-card {
        flex-direction: column;
    }
    .place-card-img {
        width: 100%;
        height: 160px;
    }
}


/* ══════════════════════════════════════════
   BLOG — Listing + Detail pages
══════════════════════════════════════════ */


/* ── Shared blog meta row ─────────────── */

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: .75rem;
}

.blog-tag {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold-pale);
    border: 1px solid rgba(184, 151, 90, .35);
    padding: .22rem .7rem;
    white-space: nowrap;
}

.blog-date,
.blog-readtime {
    font-size: .74rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .3rem;
}

.blog-date i,
.blog-readtime i {
    color: var(--gold);
    font-size: .72rem;
}


/* ── Author chip ──────────────────────── */

.blog-author {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.blog-author-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-lt);
    font-size: .72rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-author-av--lg {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
    border-radius: 50%;
}

.blog-author span {
    font-size: .82rem;
    color: var(--white);
}


/* ── Taller page-hero for detail ──────── */

.page-hero--tall {
    height: 520px;
}

@media(max-width:767px) {
    .page-hero--tall {
        height: 420px;
    }
}


/* ════════════════════════════════════════
   BLOG LISTING — Featured post
════════════════════════════════════════ */

.blog-featured-section {
    padding: 60px 0 0;
    background: var(--cream);
}

.blog-featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    min-height: 420px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--white);
}

.blog-featured-img {
    position: relative;
    overflow: hidden;
    display: block;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.blog-featured:hover .blog-featured-img img {
    transform: scale(1.04);
}

.blog-featured-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 31, 53, .3) 0%, transparent 60%);
}

.blog-featured-label {
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
    background: var(--gold);
    color: var(--navy);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .3rem .85rem;
}

.blog-featured-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-title {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.blog-featured-title a {
    color: var(--navy);
    transition: color var(--t);
}

.blog-featured-title a:hover {
    color: var(--gold);
}

.blog-featured-excerpt {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex: 1;
}

.blog-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}


/* ════════════════════════════════════════
   BLOG LISTING — Grid section
════════════════════════════════════════ */

.blog-grid-section {
    background: var(--warm);
}


/* Filter bar */

.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 2rem;
}

.blog-filter-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--border);
    padding: .5rem 1.2rem;
    transition: var(--t);
    cursor: pointer;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}


/* Blog card */

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--t);
}

.blog-card:hover {
    border-color: var(--gold);
    box-shadow: 0 14px 44px rgba(13, 31, 53, .09);
    transform: translateY(-4px);
}

.blog-card-img-wrap {
    height: 210px;
    overflow: hidden;
    position: relative;
    display: block;
    flex-shrink: 0;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.07);
}

.blog-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 31, 53, .35) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--t);
}

.blog-card:hover .blog-card-img-overlay {
    opacity: 1;
}

.blog-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .25rem .75rem;
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: .7rem;
    flex: 1;
}

.blog-card-title a {
    color: var(--navy);
    transition: color var(--t);
}

.blog-card-title a:hover {
    color: var(--gold);
}

.blog-card-excerpt {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 1.1rem;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: auto;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--navy);
    transition: var(--t);
}

.blog-read-more i {
    transition: transform var(--t);
}

.blog-read-more:hover {
    color: var(--gold);
}

.blog-read-more:hover i {
    transform: translateX(4px);
}


/* ════════════════════════════════════════
   BLOG SIDEBAR WIDGETS
════════════════════════════════════════ */

.blog-widget {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.8rem;
    margin-bottom: 1.8rem;
}

.blog-widget-title {
    font-family: 'DM Sans', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 1.2rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--border);
}


/* Search */

.blog-search-wrap {
    position: relative;
}

.blog-search-input {
    width: 100%;
    border: 1px solid var(--border);
    padding: .72rem 2.5rem .72rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .88rem;
    color: var(--text);
    outline: none;
    background: var(--warm);
    transition: var(--t);
}

.blog-search-input:focus {
    border-color: var(--gold);
    background: var(--white);
}

.blog-search-icon {
    position: absolute;
    right: .9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: .9rem;
    pointer-events: none;
}


/* Category list */

.blog-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-cat-list li {
    border-bottom: 1px solid var(--border);
}

.blog-cat-list li:last-child {
    border-bottom: none;
}

.blog-cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .65rem 0;
    font-size: .84rem;
    color: var(--text-mid);
    transition: var(--t);
}

.blog-cat-list a span {
    background: var(--warm);
    border: 1px solid var(--border);
    font-size: .68rem;
    font-weight: 600;
    padding: .12rem .5rem;
    color: var(--muted);
}

.blog-cat-list a:hover,
.blog-cat-list a.active {
    color: var(--gold);
    padding-left: .4rem;
}

.blog-cat-list a.active span {
    background: var(--gold-pale);
    border-color: var(--gold);
    color: var(--navy);
}


/* Recent posts */

.blog-recent-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    padding: .9rem 0;
    border-bottom: 1px solid var(--border);
    transition: var(--t);
}

.blog-recent-item:last-child {
    border-bottom: none;
}

.blog-recent-item:hover {
    padding-left: .3rem;
}

.blog-recent-img {
    width: 64px;
    height: 56px;
    flex-shrink: 0;
    overflow: hidden;
}

.blog-recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-recent-item:hover .blog-recent-img img {
    transform: scale(1.08);
}

.blog-recent-body p {
    font-size: .8rem;
    color: var(--navy);
    font-weight: 500;
    margin: .3rem 0 .2rem;
    line-height: 1.3;
}

.blog-recent-body span {
    font-size: .7rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: .3rem;
}

.blog-recent-body span i {
    color: var(--gold);
    font-size: .65rem;
}


/* Booking widget */

.blog-book-widget {
    background: var(--navy) !important;
    border-color: transparent !important;
    text-align: center;
}

.blog-book-widget .blog-widget-title {
    color: var(--gold-lt);
    border-color: rgba(255, 255, 255, .1);
}

.blog-book-icon {
    width: 56px;
    height: 56px;
    background: rgba(184, 151, 90, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin: 0 auto 1rem;
}

.blog-book-widget h5 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: .6rem;
}

.blog-book-widget p {
    font-size: .84rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7;
    margin: 0;
}


/* Explore links */

.blog-explore-links {
    list-style: none;
    padding: 0;
}

.blog-explore-links li {
    border-bottom: 1px solid var(--border);
}

.blog-explore-links li:last-child {
    border-bottom: none;
}

.blog-explore-links a {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .65rem 0;
    font-size: .84rem;
    color: var(--text-mid);
    transition: var(--t);
}

.blog-explore-links a i {
    color: var(--gold);
    font-size: .85rem;
}

.blog-explore-links a:hover {
    color: var(--navy);
    padding-left: .3rem;
}


/* ════════════════════════════════════════
   BLOG DETAIL — Article typography
════════════════════════════════════════ */

.blog-detail-section {
    background: var(--cream);
}

.blog-detail-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    transition: var(--t);
}

.blog-back-link:hover {
    color: var(--navy);
    gap: .2rem;
}

.blog-back-link i {
    transition: transform var(--t);
}

.blog-back-link:hover i {
    transform: translateX(-4px);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}

.blog-share a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--navy);
    transition: var(--t);
}

.blog-share a:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.blog-detail-excerpt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}


/* Article body styles */

.blog-detail-body {
    color: var(--text-mid);
    font-size: .93rem;
    line-height: 1.92;
}

.blog-detail-body h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--navy);
    margin: 2.2rem 0 .9rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}

.blog-detail-body h3:first-child {
    margin-top: 0;
}

.blog-detail-body p {
    margin-bottom: 1.2rem;
}

.blog-detail-body ul,
.blog-detail-body ol {
    padding-left: 1.3rem;
    margin-bottom: 1.4rem;
}

.blog-detail-body li {
    margin-bottom: .4rem;
    list-style: disc;
}

.blog-detail-body strong {
    color: var(--navy);
    font-weight: 600;
}

.blog-detail-body em {
    font-style: italic;
}


/* Tip box inside article */

.blog-tip-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--gold-pale);
    border: 1px solid rgba(184, 151, 90, .3);
    border-left: 3px solid var(--gold);
    padding: 1.4rem 1.6rem;
    margin: 2rem 0;
    border-radius: 0;
}

.blog-tip-box i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: .15rem;
    flex-shrink: 0;
}

.blog-tip-box div {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.75;
}

.blog-tip-box strong {
    color: var(--navy);
}


/* Tags */

.blog-detail-tags {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: .78rem;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* Author bio */

.blog-author-bio {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: var(--warm);
    border: 1px solid var(--border);
    padding: 2rem;
    margin: 2rem 0;
}

.blog-author-bio-label {
    display: block;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .2rem;
}

.blog-author-bio strong {
    display: block;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: .5rem;
}

.blog-author-bio p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}


/* Post nav (prev / next) */

.blog-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.blog-post-nav-item {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: 1.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--t);
}

.blog-post-nav-item:hover {
    border-color: var(--gold);
    background: var(--cream);
}

.blog-post-nav-item--next {
    text-align: right;
}

.blog-post-nav-dir {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: .3rem;
}

.blog-post-nav-item--next .blog-post-nav-dir {
    justify-content: flex-end;
}

.blog-post-nav-title {
    font-size: .84rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.35;
}


/* Table of contents */

.blog-toc-list {
    padding-left: 1.2rem;
    margin: 0;
}

.blog-toc-list li {
    font-size: .84rem;
    color: var(--text-mid);
    padding: .35rem 0;
    border-bottom: 1px dashed var(--border);
    line-height: 1.4;
    transition: color var(--t);
}

.blog-toc-list li:last-child {
    border-bottom: none;
}


/* Quick facts list */

.blog-quick-facts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-quick-facts li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-size: .83rem;
    color: var(--text-mid);
    padding: .55rem 0;
    border-bottom: 1px solid var(--border);
    line-height: 1.4;
}

.blog-quick-facts li:last-child {
    border-bottom: none;
}

.blog-quick-facts li i {
    color: var(--gold);
    font-size: .85rem;
    margin-top: .1rem;
    flex-shrink: 0;
}

.blog-quick-facts a {
    color: var(--navy);
    font-weight: 500;
    transition: color var(--t);
}

.blog-quick-facts a:hover {
    color: var(--gold);
}


/* ── Responsive blog ──────────────────── */

@media(max-width:991px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }
    .blog-featured-img {
        height: 280px;
    }
    .blog-post-nav {
        grid-template-columns: 1fr;
    }
    .blog-post-nav-item--next {
        text-align: left;
    }
    .blog-post-nav-item--next .blog-post-nav-dir {
        justify-content: flex-start;
    }
}

@media(max-width:767px) {
    .blog-featured-body {
        padding: 1.8rem;
    }
    .blog-author-bio {
        flex-direction: column;
    }
    .blog-detail-topbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

.bg_white {
    background: var(--white) !important;
    color: var(--navy) !important;
}

.bg_theme {
    background: var(--gold);
    color: var(--navy) !important;
}

.fs_45 {
    font-size: 45px !important;
}


/* ══════════════════════════════════════════
   CAREERS PAGE
══════════════════════════════════════════ */


/* Perk cards */

.career-perk-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.6rem;
    height: 100%;
    transition: var(--t);
    border-top: 3px solid transparent;
}

.career-perk-card:hover {
    border-top-color: var(--gold);
    box-shadow: 0 12px 36px rgba(13, 31, 53, .08);
    transform: translateY(-3px);
}

.career-perk-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.career-perk-card h6 {
    font-family: 'DM Sans', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .4rem;
}

.career-perk-card p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}


/* Position cards */

.career-position-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2.4rem;
    height: 100%;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.career-position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}

.career-position-card:hover {
    box-shadow: 0 18px 50px rgba(13, 31, 53, .1);
    transform: translateY(-4px);
}

.career-pos-header {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    margin-bottom: 1.2rem;
}

.career-pos-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
}

.career-pos-title {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: .25rem;
}

.career-pos-type {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}

.career-pos-desc {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.82;
    margin-bottom: 1.5rem;
}

.career-pos-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.career-pos-lists h6 {
    font-family: 'DM Sans', sans-serif;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .7rem;
}

.career-pos-lists ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-pos-lists li {
    font-size: .83rem;
    color: var(--text-mid);
    padding: .3rem 0;
    padding-left: 1rem;
    position: relative;
    line-height: 1.45;
    border-bottom: 1px dashed var(--border);
}

.career-pos-lists li:last-child {
    border-bottom: none;
}

.career-pos-lists li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}


/* Form feedback messages */

.form-feedback {
    padding: 1rem 1.2rem;
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.5;
}

.feedback-success {
    background: #f0f9f0;
    color: #2d6a2d;
    border: 1px solid #c3e6c3;
}

.feedback-error {
    background: #fdf2f2;
    color: #8b2b2b;
    border: 1px solid #f0c4c4;
}


/* Required asterisk */

.req {
    color: #c0392b;
    font-size: .85em;
}

@media (max-width: 767px) {
    .career-pos-lists {
        grid-template-columns: 1fr;
    }
}