:root {
    --white: #fff;
    --soft: #f0f6f6;
    --green: #4a6b68;
    --ink: #0c1b28;
    --muted: #647078;
    --line: rgba(12, 27, 40, .14);
    --serif: 'Libre Baskerville', serif;
    --sans: 'Inter', sans-serif;
    --script: 'La Belle Aurore', cursive
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.7;
    background: var(--white)
}

body.menu-open {
    overflow: hidden
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

img.is-missing {
    opacity: 0
}

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

button,
input,
textarea {
    font: inherit
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: auto
}

.section {
    padding: 110px 0
}

.section-soft {
    background: var(--soft)
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1,
h2,
h3 {
    font-family: var(--serif);
    line-height: 1.18;
    font-weight: 400
}

h1 {
    font-size: clamp(2.8rem, 6vw, 6rem)
}

h2 {
    font-size: clamp(2rem, 4vw, 3.9rem)
}

h3 {
    font-size: 1.4rem
}

.display-heading {
    max-width: 650px
}

.lead,
.article-lead {
    font-size: 1.3rem;
    color: #30424a
}

.eyebrow {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--green)
}

.script {
    font: 2rem var(--script);
    margin-bottom: .25rem
}

.script-green {
    color: var(--green)
}

svg {
    width: 18px;
    height: 18px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    background: var(--green);
    color: white;
    border: 1px solid var(--green);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .3s
}

.button:hover {
    background: var(--ink);
    border-color: var(--ink);
    transform: translateY(-2px)
}

.button-small {
    padding: 11px 17px
}

.button-light {
    background: white;
    color: var(--ink);
    border-color: white
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em
}

.text-link svg {
    transition: transform .25s
}

.text-link:hover svg {
    transform: translateX(5px)
}

.text-link-light {
    color: white
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: white;
}

.site-header.compact {
    position: sticky;
    top: 0
}

.header-top {
    background: var(--ink);
    color: white;
    font-size: .72rem
}

.header-top-inner {
    height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.header-top p,
.header-meta,
.header-meta a {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0
}

.header-meta {
    gap: 22px
}

.header-main {
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--line)
}

.nav-wrapper {
    height: 86px;
    display: flex;
    align-items: center;
    gap: 30px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font: 600 1rem var(--sans);
    margin-right: auto
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    padding: 0;
    margin: 0
}

.desktop-nav li {
    position: relative
}

.desktop-nav a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 30px 0;
    position: relative
}

.desktop-nav>ul>li>a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 23px;
    height: 1px;
    background: var(--green);
    transition: .3s
}

.desktop-nav a:hover:after,
.desktop-nav a.active:after {
    right: 0
}

.dropdown {
    position: absolute;
    top: 75px;
    left: -22px;
    min-width: 230px;
    background: white;
    padding: 13px 22px;
    box-shadow: 0 18px 40px rgba(12, 27, 40, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: none
}

.dropdown a {
    display: block;
    padding: 10px 0;
    text-transform: none
}

.dropdown small {
    display: block;
    color: var(--muted)
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 42px;
    height: 42px;
    padding: 10px
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ink);
    margin: 6px;
    transition: .3s
}

.mobile-menu-toggle.open span:first-child {
    transform: translateY(3.5px) rotate(45deg)
}

.mobile-menu-toggle.open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg)
}

.mobile-nav {
    display: none;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.mobile-nav.open {
    max-height: 100vh
}

.mobile-nav-inner {
    padding: 22px 24px 40px
}

.mobile-nav a,
.mobile-submenu-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: none
}

.mobile-submenu {
    display: none;
    padding-left: 18px
}

.mobile-submenu.open {
    display: block
}

.hero-slider,
.property-hero {
    position: relative;
    height: calc(100vh - 121px);
    min-height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, #4a6b68, #0c1b28)
}

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

.hero-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-out, transform 1.3s ease-out;
    transform: scale(1.025)
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 27, 40, .7), rgba(12, 27, 40, .12))
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: white
}

.hero-content h1,
.hero-content h2 {
    margin-bottom: 22px
}

.hero-description {
    max-width: 590px;
    font-size: 1.05rem
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 24px
}

.hero-slider-controls {
    position: absolute;
    right: 5vw;
    bottom: 38px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px
}

.slider-arrow,
.slider-dot {
    border: 1px solid rgba(255, 255, 255, .6);
    background: rgba(12, 27, 40, .12);
    color: white;
    cursor: pointer
}

.slider-arrow {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%
}

.slider-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border-radius: 50%
}

.slider-dot.active {
    background: white
}

.slider-pagination {
    display: flex;
    gap: 8px
}

.intro-grid,
.property-intro,
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9vw;
    align-items: start
}

.intro-copy {
    max-width: 510px
}

.section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 45px
}

.section-header h2 {
    margin: 0
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.property-card {
    background: white
}

.property-image {
    height: 360px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #b8cbc8, #4a6b68)
}

.property-image img {
    transition: transform .7s
}

.property-card:hover .property-image img {
    transform: scale(1.04)
}

.property-location {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 6px 10px;
    background: white;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em
}

.property-image-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    background: white;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: .3s
}

.property-card:hover .property-image-arrow {
    transform: rotate(45deg)
}

.property-card-content {
    padding: 24px
}

.property-card-content p {
    color: var(--muted)
}

.property-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 17px;
    border-top: 1px solid var(--line);
    font-size: .72rem
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 6px
}

.experience-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    color: white
}

.experience-image {
    min-height: 680px;
    background: linear-gradient(135deg, #9fb7b4, #28413f)
}

.experience-content {
    display: grid;
    place-items: center;
    padding: 80px
}

.experience-content>div {
    max-width: 500px
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px
}

.value-item {
    border-top: 1px solid var(--line);
    padding-top: 25px
}

.value-item>span {
    float: right;
    color: #99a2a6
}

.value-item>svg {
    width: 30px;
    height: 30px;
    color: var(--green);
    margin-bottom: 28px
}

.contact-cta {
    background: var(--green);
    color: white;
    padding: 95px 0
}

.contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.contact-form .privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact-form .privacy-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 18px;
  accent-color: var(--green);
  cursor: pointer;
}

.contact-form .privacy-consent span {
  display: block;
}

.contact-form .privacy-consent a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .privacy-consent a:hover {
  color: var(--ink);
}

.circle-link {
    border: 1px solid rgba(255, 255, 255, .55);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .1em;
    transition: .35s
}

.circle-link:hover {
    background: white;
    color: var(--green);
    transform: rotate(4deg)
}

.footer {
    background: var(--ink);
    color: white;
    padding: 70px 0 25px
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px
}

.footer-brand p {
    color: #a8b2b8
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-column h4 {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .72rem
}

.footer-column a {
    color: #bdc5c9;
    font-size: .85rem
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    color: #a8b2b8
}

.footer-bottom div {
    display: flex;
    gap: 20px
}

.property-hero {
    height: 75vh;
    min-height: 580px
}

.property-hero:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(12, 27, 40, .65), transparent 65%)
}

.property-hero-title {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 50px;
    color: white
}

.property-hero-title h1 {
    margin: 0
}

.property-summary {
    background: var(--green);
    color: white;
    padding: 35px 0
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr)
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 25px;
    border-right: 1px solid rgba(255, 255, 255, .25)
}

.summary-item:last-child {
    border: 0
}

.summary-item svg {
    width: 25px;
    height: 25px
}

.summary-item strong,
.summary-item span {
    display: block
}

.summary-item span {
    font-size: .75rem;
    opacity: .75
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 12px
}

.gallery-item {
    border: 0;
    padding: 0;
    overflow: hidden;
    cursor: zoom-in;
    background: #bfd0ce
}

.gallery-item img {
    transition: .6s
}

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

.gallery-large {
    grid-row: span 2
}

.amenities {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8vw
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px
}

.amenities ul {
    padding: 0;
    list-style: none;
    color: var(--muted)
}

.amenities li {
    padding: 7px 0;
    border-bottom: 1px solid var(--line)
}

.contact-form {
    display: grid;
    gap: 18px
}

.contact-form label {
    display: grid;
    gap: 6px;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

.contact-form input,
.contact-form textarea {
    border: 1px solid var(--line);
    padding: 13px;
    background: white
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.form-status {
    color: var(--green)
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(6, 14, 21, .94);
    padding: 6vw;
    display: none
}

.lightbox.open {
    display: grid;
    place-items: center
}

.lightbox img {
    object-fit: contain
}

.lightbox button {
    position: absolute;
    right: 30px;
    top: 30px;
    color: white;
    background: none;
    border: 0
}

.editorial-hero {
    position: relative;
    height: 65vh;
    min-height: 520px;
    display: flex;
    align-items: end;
    background: linear-gradient(135deg, #4a6b68, #0c1b28);
    color: white
}

.editorial-hero>img,
.editorial-hero .hero-overlay {
    position: absolute;
    inset: 0
}

.editorial-hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 70px
}

.article-intro {
    padding: 100px 0 60px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8vw
}

.article-copy {
    max-width: 760px;
    padding-bottom: 80px
}

.article-copy h2 {
    font-size: 2.2rem;
    margin-top: 55px
}

.article-copy blockquote {
    font: 1.8rem/1.5 var(--serif);
    color: var(--green);
    margin: 55px 0;
    padding-left: 30px;
    border-left: 2px solid var(--green)
}

.editorial-split {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 600px;
    background: var(--soft);
}

.editorial-split.reverse {
    grid-template-columns: .85fr 1.15fr
}

.editorial-split.reverse .editorial-media {
    order: 2
}

.editorial-media {
    background: linear-gradient(135deg, #b8cbc8, #4a6b68)
}

.editorial-text {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.success-page {
  min-height: 100vh;
  background: var(--soft);
}

.success-container {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.success-card {
  width: min(100%, 680px);
  padding: clamp(48px, 8vw, 90px);
  background: var(--white);
  text-align: center;
  box-shadow: 0 24px 70px rgba(12, 27, 40, 0.08);
}

.success-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 30px;
  object-fit: contain;
}

.success-card h1 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.success-card > p:not(.script) {
  max-width: 480px;
  margin: 0 auto 35px;
  color: var(--muted);
}

@media (max-width: 560px) {
  .success-container {
    padding: 18px;
  }

  .success-card {
    padding: 45px 24px;
  }
}

@media(max-width:900px) {
    .container {
        width: min(100% - 32px, 700px)
    }

    .section {
        padding: 75px 0
    }

    .header-top,
    .desktop-nav,
    .header-cta {
        display: none
    }

    .nav-wrapper {
        height: 72px
    }

    .mobile-menu-toggle,
    .mobile-nav {
        display: block
    }

    .brand-logo {
        width: 40px;
        height: 40px
    }

    .hero-slider {
        height: calc(100vh - 72px);
        min-height: 560px
    }

    .hero-content {
        padding-bottom: 70px
    }

    .intro-grid,
    .property-intro,
    .booking-grid,
    .experience-section,
    .amenities,
    .article-intro {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .property-grid {
        grid-template-columns: 1fr
    }

    .property-image {
        height: 430px
    }

    .experience-image {
        min-height: 480px
    }

    .experience-content,
    .editorial-text {
        padding: 60px 32px
    }

    .values-grid {
        grid-template-columns: 1fr
    }

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

    .summary-item {
        border-bottom: 1px solid rgba(255, 255, 255, .25)
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 330px 200px
    }

    .amenities-grid {
        grid-template-columns: 1fr
    }

    .editorial-split,
    .editorial-split.reverse {
        grid-template-columns: 1fr
    }

    .editorial-media {
        min-height: 450px
    }

    .editorial-split.reverse .editorial-media {
        order: 0
    }

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

    .footer-brand {
        grid-column: span 2
    }
}

@media(max-width:560px) {
    .container {
        width: calc(100% - 36px)
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: 2.65rem
    }

    .property-image {
        height: 320px
    }

    .contact-cta-inner {
        align-items: flex-start;
        gap: 35px;
        flex-direction: column
    }

    .circle-link {
        width: 125px;
        height: 125px
    }

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

    .footer-brand {
        grid-column: auto
    }

    .summary-grid {
        grid-template-columns: 1fr
    }

    .summary-item {
        border-right: 0
    }

    .gallery-grid {
        display: flex;
        overflow: auto
    }

    .gallery-item {
        min-width: 85%;
        height: 300px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .editorial-media {
        min-height: 330px
    }

    .footer-bottom {
        gap: 20px;
        flex-direction: column
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important
    }
}

/* Keep consecutive home-page sections in separate layout/paint contexts. */
.section-soft {
    display: flow-root;
    position: relative
}

.property-grid {
    align-items: stretch
}

.property-card {
    display: flex;
    min-width: 0;
    flex-direction: column
}

.property-image {
    display: block;
    flex: 0 0 auto
}

.property-card-content {
    position: relative;
    flex: 1 1 auto;
    background: var(--white)
}

.experience-section {
    position: relative;
    clear: both;
    isolation: isolate
}

/* Hero image is a background layer; content remains inside the visible slide. */
.hero-slide>img {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-slide>.hero-overlay {
    z-index: 1
}

.hero-slide>.hero-content {
    position: relative;
    z-index: 2
}

body.lightbox-open {
    overflow: hidden
}

.gallery-item {
    display: block;
    position: relative
}

.lightbox {
    z-index: 9999;
    align-items: center;
    justify-content: center
}

.lightbox.open {
    display: flex
}

.lightbox img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 88vh
}

.lightbox button {
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    cursor: pointer
}

.lightbox .lightbox-close {
    right: 24px;
    top: 24px
}

.lightbox .lightbox-nav {
    top: 50%;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: rgba(12, 27, 40, .45);
    transform: translateY(-50%)
}

.lightbox .lightbox-nav:hover {
    background: var(--white);
    color: var(--ink)
}

.lightbox .lightbox-prev {
    right: auto;
    left: 24px
}

.lightbox .lightbox-next {
    right: 24px;
    left: auto
}

.lightbox-counter {
    position: absolute;
    bottom: 22px;
    left: 50%;
    color: var(--white);
    font-size: .75rem;
    letter-spacing: .12em;
    transform: translateX(-50%)
}

@media(max-width:560px) {
    .lightbox {
        padding: 70px 12px
    }

    .lightbox .lightbox-prev {
        left: 10px
    }

    .lightbox .lightbox-next {
        right: 10px
    }
}

.property-location-section {
  background: var(--soft);
}

.property-map {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #dce7e6;
}

.property-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .property-map {
    height: 430px;
  }
}

@media (max-width: 560px) {
  .property-map {
    height: 360px;
  }
}