@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,600;1,500&display=swap');

:root {
    --ink: #153642;
    --ink-soft: #49646d;
    --peacock: #0e6973;
    --peacock-deep: #084a53;
    --champagne: #d9b36c;
    --sand: #f1eadc;
    --porcelain: #f8f5ee;
    --mist: #dfeceb;
    --coral: #d36f54;
    --line: rgba(21, 54, 66, .14);
    --shadow: 0 24px 70px rgba(18, 52, 62, .12);
    --serif: 'Playfair Display', serif;
    --sans: 'DM Sans', sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--porcelain);
    overflow-x: hidden
}

a {
    color: inherit;
    text-underline-offset: .24em
}

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

.page-content {
    overflow: hidden
}

.container-fluid {
    max-width: 1540px
}

.site-header {
    z-index: 1030;
    background: rgba(248, 245, 238, .94);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--line)
}

.contact-ribbon {
    background: var(--peacock-deep);
    color: #f7efe0;
    padding: .48rem 0;
    font-size: .76rem;
    letter-spacing: .04em
}

.contact-ribbon a {
    text-decoration: none
}

.navbar {
    padding: .8rem 0
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
    font-family: var(--serif);
    font-size: 1.25rem
}

.navbar-brand img,
.footer-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain
}

.navbar-brand small {
    display: block;
    font-family: var(--sans);
    font-size: .56rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--peacock)
}

.nav-link {
    font-weight: 600;
    font-size: .9rem;
    padding: .65rem .85rem !important
}

.nav-link:hover {
    color: var(--peacock)
}

.btn-radiance {
    border: 0;
    border-radius: 0;
    background: var(--coral);
    color: #fff;
    padding: .82rem 1.25rem;
    font-weight: 600;
    box-shadow: 7px 7px 0 var(--champagne);
    transition: .25s
}

.btn-radiance:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--champagne);
    background: var(--peacock);
    color: #fff
}

.btn-outline-radiance {
    border: 1px solid currentColor;
    border-radius: 0;
    padding: .78rem 1.15rem;
    font-weight: 600
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .72rem;
    font-weight: 600;
    color: var(--peacock)
}

.eyebrow:before {
    content: '';
    width: 34px;
    height: 1px;
    background: currentColor
}

.display-title {
    font-family: var(--serif);
    font-size: clamp(2.55rem, 6vw, 6.5rem);
    line-height: .92;
    letter-spacing: -.045em
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2.1rem, 4vw, 4.5rem);
    line-height: 1;
    letter-spacing: -.035em
}

.lead-copy {
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    color: var(--ink-soft);
    line-height: 1.7
}

.section-shell {
    position: relative;
    padding: clamp(5rem, 9vw, 9rem) 0
}

.section-shell:before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid var(--line);
    border-radius: 50%;
    top: 3rem;
    right: -80px;
    pointer-events: none
}

.page-hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    align-items: end;
    padding: 8rem 0 5rem;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden
}

.page-hero:after {
    content: 'JR';
    position: absolute;
    right: 4vw;
    bottom: -.12em;
    font-family: var(--serif);
    font-size: clamp(8rem, 24vw, 25rem);
    line-height: 1;
    color: rgba(255, 255, 255, .06);
    pointer-events: none
}

.page-hero .container,
.page-hero .container-fluid {
    position: relative;
    z-index: 1
}

.page-hero h1 {
    max-width: 1050px
}

.page-hero h1+p {
    max-width: 720px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .82)
}

.offline-badge {
    display: inline-flex;
    gap: .7rem;
    align-items: center;
    background: var(--champagne);
    color: var(--ink);
    padding: .65rem 1rem;
    font-weight: 700;
    letter-spacing: .12em
}

.hero-split {
    min-height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    background: var(--sand)
}

.hero-copy {
    padding: clamp(4rem, 8vw, 9rem) clamp(1.5rem, 6vw, 7rem);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.hero-visual {
    min-height: 650px;
    background-size: cover;
    background-position: center;
    position: relative
}

.hero-visual .glass-panel {
    position: absolute;
    left: -3rem;
    bottom: 3rem;
    max-width: 370px
}

.glass-panel {
    background: rgba(248, 245, 238, .84);
    color: var(--ink);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .65);
    padding: clamp(1.4rem, 3vw, 2.5rem);
    box-shadow: var(--shadow)
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(1rem, 2.5vw, 2.5rem);
    align-items: center
}

.editorial-grid>*:nth-child(1) {
    grid-column: 1/6
}

.editorial-grid>*:nth-child(2) {
    grid-column: 6/10
}

.editorial-grid>*:nth-child(3) {
    grid-column: 10/13
}

.split-stage {
    position: relative
}

.split-stage>.container {
    position: relative;
    z-index: 1
}

.media-frame {
    position: relative;
    background: var(--mist);
    min-height: 380px;
    overflow: hidden
}

.media-frame img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover
}

.media-frame:after {
    content: '';
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, .7);
    pointer-events: none
}

.media-frame.tall {
    min-height: 620px
}

.media-frame.short {
    min-height: 280px
}

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

.bento-card {
    position: relative;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden
}

.bento-card.has-bg {
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 420px
}

.icon-orbit {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--mist);
    color: var(--peacock);
    font-size: 1.2rem;
    margin-bottom: 2rem
}

.metric-card {
    padding: 2rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .45)
}

.metric-card strong {
    display: block;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--peacock)
}

.card-luxe {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    padding: 1.4rem;
    box-shadow: 0 15px 50px rgba(21, 54, 66, .07);
    transition: .3s
}

.card-luxe:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow)
}

.card-luxe .media-frame {
    margin: -1.4rem -1.4rem 1.5rem
}

.card-luxe a.stretched-link {
    text-decoration: none
}

.dark-stage {
    background: var(--peacock-deep);
    color: #f7f0e4
}

.dark-stage .lead-copy,
.dark-stage .text-muted {
    color: rgba(255, 255, 255, .72) !important
}

.dark-stage .eyebrow {
    color: var(--champagne)
}

.dark-stage .metric-card {
    background: rgba(255, 255, 255, .12);
    color: #f7f0e4;
    border-color: rgba(255, 255, 255, .16)
}

.dark-stage .metric-card strong {
    color: #fff
}

.dark-stage .glass-panel {
    color: var(--ink)
}

.dark-stage a:not(.btn) {
    color: var(--champagne)
}

.dark-stage a:not(.btn):hover {
    color: #fff
}

.sand-stage {
    background: var(--sand)
}

.mist-stage {
    background: var(--mist)
}

.quote-mark {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 3rem);
    line-height: 1.3
}

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

.feature-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line)
}

.feature-list i {
    color: var(--coral);
    margin-top: .25rem
}

.floating-number {
    font-family: var(--serif);
    font-size: 7rem;
    line-height: .75;
    color: rgba(14, 105, 115, .12)
}

.marquee {
    display: flex;
    gap: 3rem;
    overflow: auto;
    white-space: nowrap;
    padding: 1.2rem 0;
    border-block: 1px solid var(--line);
    scrollbar-width: none
}

.marquee span {
    font-family: var(--serif);
    font-size: 1.25rem
}

.masonry-grid {
    columns: 3;
    column-gap: 1rem
}

.masonry-grid .media-frame {
    break-inside: avoid;
    margin-bottom: 1rem;
    min-height: 260px
}

.masonry-grid .media-frame:nth-child(2n) {
    min-height: 430px
}

.timeline {
    position: relative;
    border-left: 1px solid var(--champagne);
    padding-left: 2rem
}

.timeline-item {
    position: relative;
    padding: 0 0 3rem
}

.timeline-item:before {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--coral);
    left: -2.42rem;
    top: .35rem
}

.timeline-item time {
    color: var(--peacock);
    font-weight: 700
}

.service-link {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    font-weight: 600
}

.service-link:hover {
    color: var(--coral)
}

.form-control,
.form-select {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--ink-soft);
    background: transparent;
    padding: .9rem .2rem
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--coral);
    background: transparent
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent
}

.accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    padding: 1.35rem 0;
    font-weight: 600;
    color: var(--ink) !important
}

.map-frame {
    width: 100%;
    height: 520px;
    border: 0;
    filter: saturate(.65) contrast(.9)
}

.form-notification {
    position: fixed;
    z-index: 2000;
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: 380px;
    padding: 1rem 1.25rem;
    background: var(--peacock-deep);
    color: #fff;
    box-shadow: var(--shadow);
    transform: translateY(150%);
    transition: .35s
}

.form-notification.show {
    transform: translateY(0)
}

.cookie-banner {
    position: fixed;
    z-index: 1500;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: 760px;
    margin: auto;
    background: rgba(248, 245, 238, .96);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.cookie-banner[hidden] {
    display: none
}

.quick-booking {
    position: sticky;
    bottom: 1rem;
    z-index: 1000;
    width: min(1040px, calc(100% - 2rem));
    margin: -2rem auto 1rem;
    padding: 1rem;
    background: rgba(8, 74, 83, .94);
    color: #fff;
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow)
}

.site-footer {
    background: #12343e;
    color: #e8e1d5
}

.footer-manifesto {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    padding: 1.5rem
}

.footer-manifesto i {
    font-size: 2rem;
    color: var(--champagne)
}

.footer-manifesto p {
    margin: 0;
    font-weight: 500
}

.footer-brand {
    color: #fff
}

.footer-heading {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--champagne)
}

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

.footer-links li {
    margin: .75rem 0
}

.footer-links a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none
}

.footer-contact {
    display: grid;
    gap: 1rem;
    font-style: normal
}

.footer-contact span {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: .7rem
}

.footer-contact a {
    text-decoration: none
}

.responsible-note {
    color: var(--champagne)
}

.footer-legal {
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .74rem;
    color: rgba(255, 255, 255, .62)
}

@media(max-width:1199px) {
    .navbar-collapse {
        padding: 1rem 0 1.5rem
    }

    .hero-split {
        grid-template-columns: 1fr
    }

    .hero-visual {
        min-height: 560px
    }

    .hero-visual .glass-panel {
        left: 1rem
    }

    .editorial-grid>*:nth-child(n) {
        grid-column: span 6
    }

    .editorial-grid>*:nth-child(3) {
        grid-column: 3/11
    }

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

@media(max-width:767px) {
    .contact-ribbon .container-fluid {
        font-size: .68rem
    }

    .section-shell {
        padding: 4.5rem 0
    }

    .page-hero {
        min-height: 620px;
        padding: 7rem 0 3rem
    }

    .display-title {
        font-size: clamp(2.8rem, 14vw, 4.8rem)
    }

    .hero-copy {
        padding: 4rem 1.2rem
    }

    .hero-visual {
        min-height: 480px
    }

    .hero-visual .glass-panel {
        right: 1rem;
        bottom: 1rem
    }

    .editorial-grid {
        display: block
    }

    .editorial-grid>* {
        margin-bottom: 1.5rem
    }

    .split-stage {
        grid-template-columns: 1fr
    }

    .split-stage>div {
        min-height: 480px
    }

    .bento-grid {
        display: block
    }

    .bento-card {
        margin-bottom: 1rem;
        min-height: 220px
    }

    .masonry-grid {
        columns: 2
    }

    .media-frame.tall {
        min-height: 450px
    }

    .quick-booking {
        bottom: 0;
        width: 100%;
        margin: 0;
        padding: .75rem
    }

    .quick-booking .booking-detail {
        display: none
    }

    .cookie-banner {
        display: block
    }

    .cookie-banner .btn {
        margin-top: .8rem;
        width: 100%
    }

    .footer-manifesto {
        grid-template-columns: 1fr
    }

    .map-frame {
        height: 360px
    }
}

@media(max-width:420px) {
    .masonry-grid {
        columns: 1
    }

    .contact-ribbon span {
        width: 100%;
        text-align: center
    }

    .page-hero {
        min-height: 560px
    }
}