/* ===============================
   Core variables & base
================================ */

:root {
    --brand: #156ba6;
    --brand-dark: #0e4d77;
    --beige: #e9e1d7;
    --ink: #1c1f24;
    --muted: #6b7280;
    --line: rgba(0, 0, 0, .08);
    --paper: #fbfaf8;
    --nav-contact-h: 38px;
    --nav-brand-row-h: 70px;
    --nav-total-h: calc(var(--nav-contact-h) + var(--nav-brand-row-h));
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: Raleway, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.hero-title {
    font-family: 'Roboto Condensed', sans-serif;
}


/* ===============================
   Header Navigation + Burger
================================ */

.brand {
    padding-left: 30px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 24px;
    min-height: var(--nav-total-h);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.nav-contact-strip {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--nav-contact-h);
    margin: 0 -24px;
    padding: 7px 24px;
    font-family: Calibri, "Century Gothic", CenturyGothic, Arial, Helvetica, sans-serif;
    font-size: .8125rem;
    font-weight: 500;
    letter-spacing: .01em;
    background: #e8eaed;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.nav-contact-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.nav-contact-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
}

.nav-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit !important;
    text-decoration: none;
    white-space: nowrap;
}

.nav-contact-link:hover {
    text-decoration: underline;
    color: var(--brand-dark) !important;
}

.nav-contact-icon {
    font-size: .95em;
    color: var(--muted);
}

.nav-contact-sep {
    color: var(--muted);
    opacity: .85;
    user-select: none;
}

.language-selector {
    position: relative;
    flex-shrink: 0;
}

.language-selector-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #0b2340;
    font-size: 13px;
    cursor: pointer;
    line-height: 1;
}

.language-flag {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.language-selector-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    z-index: 1100;
}

.language-selector:hover .language-selector-menu,
.language-selector:focus-within .language-selector-menu {
    display: block;
}

.language-selector-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    text-decoration: none;
    color: #0b2340;
    font-size: 13px;
}

.language-selector-option:hover {
    background: #f2f6fa;
}

@media (max-width: 768px) {
     :root {
        --nav-contact-h: 44px;
    }
    .nav-contact-strip {
        font-size: .75rem;
        padding: 6px 16px;
    }
    .nav-contact-inner {
        padding: 0;
        gap: 10px;
    }
    .nav-contact-left {
        overflow: hidden;
        flex-wrap: nowrap;
    }
    .nav-contact-left .nav-contact-link span {
        display: none;
    }
    .nav-contact-sep {
        display: none;
    }
    .language-selector-toggle {
        padding: 5px 10px;
    }
}

@media (max-width: 767px) {
    .nav-contact-strip {
        overflow: hidden;
        padding-left: 10px;
        padding-right: 10px;
    }
    .nav-contact-inner {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 0;
    }
    .nav-contact-left {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
        flex: 1 1 auto;
        flex-shrink: 1;
        overflow: hidden;
        white-space: nowrap;
    }
    .nav-contact-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        min-width: 0;
    }
    .nav-contact-link span,
    .nav-contact-sep {
        display: none;
    }
    .nav-contact-icon {
        font-size: .82rem;
    }
    .language-selector {
        flex: 0 0 auto;
        flex-shrink: 0;
    }
}

.nav-toprow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    min-height: var(--nav-brand-row-h);
}

.nav .brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav .brand img {
    width: 150px;
}


/* Backdrop + right drawer (all viewports; toggled by burger) */

.nav-backdrop {
    display: block;
    position: fixed;
    inset: var(--nav-total-h) 0 0 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
}

.nav-backdrop.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(380px, 88vw);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    transform: translateX(100%);
    opacity: 1;
    pointer-events: none;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
    z-index: 999;
    overflow-x: hidden;
    overflow-y: auto;
    /* Pad drawer content below the fixed header (contact strip + logo row); close button is positioned separately */
    padding: calc(var(--nav-total-h) + 4px) 0 28px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    box-shadow: -8px 0 40px rgba(15, 23, 42, 0.18);
}

.menu.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.menu-drawer {
    display: block;
    padding: 0 20px 32px;
}

.drawer-link {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--ink) !important;
    font-weight: 700;
    font-size: .95rem;
    transition: background .15s ease, color .15s ease;
}

.drawer-link:hover {
    color: var(--brand-dark) !important;
    background: rgba(21, 107, 166, 0.08);
}

.drawer-link--primary {
    font-size: 1.05rem;
}

.drawer-heading {
    margin: 20px 0 8px;
    padding: 0 14px;
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 800;
    color: #94a3b8;
}

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

.drawer-list li+li {
    margin-top: 2px;
}

.drawer-actions {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-btn {
    text-align: center;
    background: var(--brand);
    color: #fff !important;
    font-weight: 800;
    padding: 14px 16px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(21, 107, 166, .35);
}

.drawer-actions .drawer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.drawer-btn:hover {
    color: #fff !important;
    background: var(--brand-dark);
}


/* High specificity: Bootstrap loads after this file and styles native <button> */

nav#primary-menu.menu button.menu-close {
    --menu-close-size: 40px;
    position: absolute;
    top: calc(var(--nav-contact-h) + (var(--nav-brand-row-h) - var(--menu-close-size)) / 2);
    right: 16px;
    width: var(--menu-close-size);
    height: var(--menu-close-size);
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--ink);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

nav#primary-menu.menu button.menu-close::-moz-focus-inner {
    border: 0;
    padding: 0;
}

nav#primary-menu.menu button.menu-close:focus {
    outline: none;
}

nav#primary-menu.menu button.menu-close:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}


/* Book CTA */

.btn-book {
    background: var(--brand);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(21, 107, 166, .35);
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(21, 107, 166, .45);
}

.h2,
h2 {
    font-size: 2rem;
    text-transform: uppercase;
}


/* Burger */

.burger {
    display: inline-flex;
    flex-shrink: 0;
    z-index: 1002;
    position: relative;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
}

.burger span {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: transform .25s ease, opacity .2s ease;
}

.burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
    opacity: 0;
}

.burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* Scrolled state */

.nav.nav-scrolled {
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

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


/* ===============================
   Page frame & rail
================================ */

.frame {
    display: grid;
    grid-template-columns: 68px 1fr;
    min-height: 100svh;
}

@media (max-width: 1000px) {
    .frame {
        grid-template-columns: 1fr;
    }
}

.rail {
    position: sticky;
    top: var(--nav-total-h);
    height: calc(100svh - var(--nav-total-h));
    border-right: 1px solid var(--line);
    background: #fff;
    display: grid;
    place-items: center;
}

.rail .vtitle {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 900;
    font-size: .92rem;
    color: #2a3541;
}

@media (max-width: 1000px) {
    .rail {
        display: none;
    }
}


/* ===============================
   Carousel Hero (suite pages)
================================ */

.hero {
    position: relative;
    min-height: 82svh;
    display: grid;
    place-items: end start;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero .media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: #0b0f15;
}

.hero video,
.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .duo {
    position: absolute;
    inset: 0;
    mix-blend-mode: screen;
    background: radial-gradient(1200px 1200px at 70% 30%, rgba(21, 107, 166, .35), transparent 60%), linear-gradient(180deg, rgba(21, 107, 166, .25), transparent 50%);
}

.hero .title {
    padding: 22px;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0, 0, 0, .6);
    max-width: 900px;
}

.h1,
h2,
h3 {
    text-transform: uppercase!important;
}

.hero h1 {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 30px;
    margin: 0 0 6px;
}

.kicker {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(233, 225, 215, .92);
    color: #26313c;
    font-weight: 900;
    font-size: .8rem;
    letter-spacing: .3px;
    margin-bottom: 10px;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.chip {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    backdrop-filter: blur(4px);
}

.carousel {
    position: relative;
    width: 100%;
}


/* ===============================
   Floating booking ribbon & buttons
================================ */

.ribbon {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.price {
    font-weight: 900;
}

.btn {
    appearance: none;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 900;
    letter-spacing: .3px;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
}

.btn:hover {
    filter: brightness(1.06);
}

@media (max-width: 700px) {
    .ribbon {
        left: 12px;
        right: 12px;
        justify-content: space-between;
    }
}


/* ===============================
   Sections / prose
================================ */

.section {
    padding: 42px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.prose {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .04);
}

.prose h2 {
    margin: .2rem 0 10px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.prose p {
    line-height: 1.7;
    font-size: 1.04rem;
    color: #2b3440;
}

.prose p.lead {
    font-size: 1.18rem;
    color: #1f2937;
}

.prose p.dropcap::first-letter {
    font-weight: 600;
    float: left;
    font-size: 3.4rem;
    line-height: .9;
    padding: 6px 10px 0 0;
    color: var(--brand-dark);
}


/* ===============================
   Grid / cards
================================ */

.spread {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
}

@media (max-width: 1000px) {
    .spread {
        grid-template-columns: 1fr;
    }
}


/* Equal columns (e.g. details + policies on house page) */

.spread.spread--balanced {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 1000px) {
    .spread.spread--balanced {
        grid-template-columns: 1fr;
    }
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.card.pad {
    padding: 16px;
}


/* ===============================
   Figures / captions
================================ */

.figure {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.caption {
    position: absolute;
    inset: auto 10px 10px 10px;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: .92rem;
    backdrop-filter: blur(4px);
}


/* ===============================
   Masonry gallery
================================ */

.masonry {
    columns: 3 240px;
    column-gap: 12px;
}

.masonry figure {
    break-inside: avoid;
    margin: 0 0 12px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #f5f7fb;
}

.masonry img {
    width: 100%;
    height: auto;
    display: block;
}

.masonry figcaption {
    padding: 8px 10px;
    font-size: .9rem;
    color: #475569;
}

.gallery-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-item[hidden] {
    display: none !important;
}

.section--gallery .gallery-more {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 12px 18px;
    min-height: 48px;
    font-family: "Raleway", sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand-dark);
    background: rgba(21, 107, 166, .06);
    border: 1px solid rgba(21, 107, 166, .14);
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.section--gallery .gallery-more:hover {
    background: rgba(21, 107, 166, .1);
    border-color: rgba(21, 107, 166, .24);
    box-shadow: 0 6px 18px rgba(21, 107, 166, .1);
}

.section--gallery .gallery-more:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.section--gallery .gallery-more__chev {
    font-size: .65rem;
    opacity: .75;
}

.section--gallery .gallery-more__count {
    font-weight: 600;
    opacity: .85;
}

@media (max-width: 640px) {
    .section--gallery .gallery-more {
        width: 100%;
        justify-content: center;
    }
}


/* ===============================
   Details table
================================ */

.details {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--line);
}

.details td,
.details th {
    padding: 12px 14px;
    background: #fff;
}

.details td:first-child,
.details th:first-child {
    width: 40%;
    font-weight: 500;
    background: #fbfbfc;
    border-right: 1px solid var(--line);
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
}

.details tr+tr td,
.details tr+tr th {
    border-top: 1px solid var(--line);
}

.details th {
    text-align: left;
    font-weight: 500;
}


/* ===============================
   Pull quote
================================ */

.pull {
    font-size: clamp(1.3rem, 2.3vw, 2rem);
    line-height: 1.25;
    color: #0f172a;
    margin: 8px 0 0;
}

.pull em {
    color: var(--brand-dark);
}


/* ===============================
   Property meta (house page: amenities full width; details + policies)
================================ */

.section--property-meta {
    padding-top: 28px;
    padding-bottom: 28px;
}

.section--property-meta .property-meta-cols {
    gap: clamp(18px, 2.4vw, 28px);
    align-items: stretch;
}

.section--property-meta .property-meta-cols--amenities-full {
    display: grid;
    grid-template-columns: 1fr;
}

.section--property-meta--amenities .property-meta-card--amenities-full {
    width: 100%;
    max-width: none;
}

.section--property-meta .property-meta-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 22px;
    box-shadow: 0 14px 42px rgba(15, 23, 42, .045);
    overflow: hidden;
    transition: box-shadow .22s ease, border-color .22s ease, transform .22s ease;
}

.section--property-meta .property-meta-card:hover {
    box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
    border-color: rgba(21, 107, 166, .14);
}

.section--property-meta .property-meta-card.pad {
    padding: clamp(20px, 2.6vw, 28px);
}

.section--property-meta .property-meta-heading {
    margin: 0 0 18px;
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #0f172a;
}

.section--property-meta .property-meta-heading--map {
    margin-bottom: 10px;
}


/* Details table (boutique) */

.section--property-meta .details.details--property {
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 16px;
    background: #fafbfc;
}

.section--property-meta .details.details--property tbody tr:first-child th,
.section--property-meta .details.details--property tbody tr:first-child td {
    border-top: none;
}

.section--property-meta .details.details--property th,
.section--property-meta .details.details--property td {
    padding: 14px 18px;
    vertical-align: top;
    border-top: 1px solid rgba(15, 23, 42, .06);
    background: transparent;
}

.section--property-meta .details.details--property tr:first-child th,
.section--property-meta .details.details--property tr:first-child td {
    border-top: none;
}

.section--property-meta .details.details--property th {
    width: 38%;
    max-width: 220px;
    font-family: "Raleway", sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #0f172a;
    border-right: none;
    background: transparent;
}

.section--property-meta .details.details--property td {
    font-size: .98rem;
    line-height: 1.55;
    color: #64748b;
    font-weight: 500;
    border-right: none;
}


/* Amenities (house page): highlight pills + collapsible grouped list */

.section--property-meta .amenities-block {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 2vw, 20px);
}

.section--property-meta .amenities-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: stretch;
}

.section--property-meta .amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: #334155;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(15, 23, 42, .07);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .85) inset, 0 6px 18px rgba(15, 23, 42, .04);
    transition: border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease, transform .18s ease;
}

.section--property-meta .amenity-pill--highlight {
    color: #1e293b;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(248, 250, 252, .92) 100%);
    border-color: rgba(21, 107, 166, .1);
}

.section--property-meta .amenity-pill--highlight i {
    font-size: .72rem;
    color: var(--brand);
    opacity: .88;
}

.section--property-meta .amenity-pill--highlight:hover {
    border-color: rgba(21, 107, 166, .22);
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset, 0 8px 22px rgba(21, 107, 166, .08);
    transform: translateY(-1px);
}

.section--property-meta .amenity-pill__text {
    line-height: 1.25;
}

.section--property-meta .amenities-toggle {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 12px 18px;
    min-height: 48px;
    font-family: "Raleway", sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand-dark);
    background: rgba(21, 107, 166, .06);
    border: 1px solid rgba(21, 107, 166, .14);
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.section--property-meta .amenities-toggle:hover {
    background: rgba(21, 107, 166, .1);
    border-color: rgba(21, 107, 166, .24);
    box-shadow: 0 6px 18px rgba(21, 107, 166, .1);
}

.section--property-meta .amenities-toggle:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.section--property-meta .amenities-toggle__chev {
    font-size: .65rem;
    opacity: .75;
    transition: transform .25s ease;
}

.section--property-meta .amenities-block.is-expanded .amenities-toggle__chev {
    transform: rotate(180deg);
}

.section--property-meta .amenities-full {
    padding-top: 4px;
}

.section--property-meta .amenities-full[hidden] {
    display: none !important;
}

.section--property-meta .amenities-full-inner {
    display: grid;
    gap: clamp(22px, 3vw, 32px);
    padding-top: 6px;
}

.section--property-meta .amenities-group__title {
    margin: 0 0 12px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.12rem);
    font-weight: 600;
    letter-spacing: .02em;
    color: #0f172a;
}

.section--property-meta .amenities-group__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 28px;
}

.section--property-meta .amenities-group__item {
    position: relative;
    padding-left: 1.1em;
    font-size: .92rem;
    line-height: 1.45;
    font-weight: 500;
    color: #64748b;
}

.section--property-meta .amenities-group__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(21, 107, 166, .35);
    box-shadow: 0 0 0 3px rgba(21, 107, 166, .08);
}

@media (max-width: 640px) {
    .section--property-meta .amenities-group__list {
        grid-template-columns: 1fr;
        gap: 8px 0;
    }
    .section--property-meta .amenities-toggle {
        width: 100%;
        justify-content: center;
    }
}


/* Policies */

.section--property-meta .policy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
    margin-top: 4px;
}

@media (max-width: 640px) {
    .section--property-meta .policy-grid {
        grid-template-columns: 1fr;
    }
}

.section--property-meta .policy {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 16px 16px 14px;
    border-radius: 16px;
    background: #fafbfc;
    border: 1px solid rgba(15, 23, 42, .06);
    transition: border-color .2s ease, background .2s ease;
}

.section--property-meta .policy:hover {
    background: #fff;
    border-color: rgba(21, 107, 166, .15);
}

.section--property-meta .policy-badge {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(21, 107, 166, .08);
    border: 1px solid rgba(21, 107, 166, .12);
    color: var(--brand-dark);
    font-size: 1.05rem;
    line-height: 1;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.section--property-meta .policy:hover .policy-badge {
    background: rgba(21, 107, 166, .11);
    border-color: rgba(21, 107, 166, .22);
}

.section--property-meta .policy-body {
    min-width: 0;
}

.section--property-meta .policy-title {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #0f172a;
}

.section--property-meta .policy-text {
    margin: 8px 0 0;
    font-size: .94rem;
    line-height: 1.5;
    color: #64748b;
}

.section--property-meta .policy-note {
    margin-top: 18px;
    padding: 14px 16px 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, .07);
    border-left: 3px solid rgba(21, 107, 166, .35);
    background: #f8fafc;
    color: #475569;
    font-size: .9rem;
    line-height: 1.55;
}


/* Map card */

.section--property-meta .property-meta-card--map {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.section--property-meta .property-map-head {
    padding: clamp(20px, 2.6vw, 28px) clamp(20px, 2.6vw, 28px) 4px;
}

.section--property-meta .property-map-intro {
    margin: 0;
    max-width: 42ch;
    font-size: .95rem;
    line-height: 1.6;
    color: #64748b;
}

.section--property-meta .map-embed {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin: 0;
    border-top: 1px solid rgba(15, 23, 42, .06);
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    background: #e8edf4;
}

.section--property-meta .map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(1.04) contrast(1.02);
}

.section--property-meta .property-map-foot {
    margin-top: auto;
    padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.6vw, 28px);
}

.section--property-meta .property-map-travel {
    margin-bottom: 18px;
}

.section--property-meta .property-map-travel__label {
    display: block;
    margin-bottom: 6px;
    font-family: "Raleway", sans-serif;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #0f172a;
}

.section--property-meta .property-map-travel__times {
    margin: 0;
    font-size: .96rem;
    line-height: 1.55;
    color: #64748b;
}

.section--property-meta .property-map-actions {
    display: flex;
    justify-content: flex-start;
}

.section--property-meta .btn--map-cta {
    padding: 12px 22px;
    font-weight: 800;
    letter-spacing: .04em;
    box-shadow: 0 8px 22px rgba(21, 107, 166, .18);
}

.section--property-meta .btn--map-cta:hover {
    filter: brightness(1.04);
    box-shadow: 0 10px 26px rgba(21, 107, 166, .22);
}

@media (max-width: 1000px) {
    .section--property-meta .property-meta-card--map .map-embed {
        aspect-ratio: 16 / 11;
    }
}


/* ===============================
   Lightbox (gallery)
================================ */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 2000;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

.lightbox button {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    transition: opacity .2s ease;
    opacity: .7;
}

.lightbox button:hover {
    opacity: 1;
}

.lightbox-close {
    top: 16px;
    right: 24px;
    font-size: 2.2rem;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        font-size: 2.4rem;
        top: 50%;
        transform: translateY(-50%);
    }

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

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


/* ===============================
   Vertical background lines
================================ */

.bg-lines {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-lines .line {
    position: absolute;
    top: 0;
    height: 100%;
    width: 0.2px;
    background: rgba(0, 0, 0, .08);
}

.bg-lines .l1 {
    left: 22%;
}

.bg-lines .l2 {
    left: 50%;
}

.bg-lines .l3 {
    left: 78%;
}

.bg-lines .line::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20vh;
    border-radius: 999px;
    background: radial-gradient(closest-side, rgba(21, 107, 166, .55), rgba(21, 107, 166, .0) 70%);
}

@keyframes lineDown {
    0% {
        top: -25vh;
    }
    100% {
        top: 105vh;
    }
}

@keyframes lineUp {
    0% {
        top: 105vh;
    }
    100% {
        top: -25vh;
    }
}

.bg-lines .l1::after {
    animation: lineDown 38s linear infinite;
}

.bg-lines .l2::after {
    top: 40vh;
}

.bg-lines .l3::after {
    animation: lineUp 42s linear infinite;
}

@media (min-width: 900px) {
    .bg-lines .l1::after {
        height: 24vh;
        animation-duration: 9s;
    }
    .bg-lines .l3::after {
        height: 22vh;
        animation-duration: 11s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bg-lines .l1::after,
    .bg-lines .l3::after {
        animation: none;
        top: 35vh;
    }
}

main {
    position: relative;
    z-index: 1;
}


/* ===============================
   Rituals Overlap Layout
================================ */

.rituals-section .spread.overlap {
    position: relative;
    display: grid;
    grid-template-columns: 70% 56%;
    align-items: start;
    gap: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.ritual-image.figure {
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    aspect-ratio: auto;
    min-height: clamp(460px, 62vh, 860px);
}

.ritual-image {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 100%;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.ritual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ritual-text {
    position: relative;
    z-index: 2;
    background: #fff;
    margin-left: -20%;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    padding: 75px;
    align-self: center;
}

.ritual-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.ritual-text p {
    font-size: 1.05rem;
    line-height: 1.65;
}

.ritual-text .pull {
    margin-top: 20px;
    font-size: 1.3rem;
    line-height: 1.4;
    color: var(--brand-dark);
}

@media (max-width: 900px) {
    .rituals-section .spread.overlap {
        grid-template-columns: 1fr;
        margin-left: 0;
        width: auto;
    }
    .ritual-image.figure {
        min-height: 48vh;
    }
    .ritual-image {
        border-radius: 20px 20px 0 0;
    }
    .ritual-text {
        border-radius: 0 0 20px 20px;
        margin-left: 0;
        box-shadow: none;
        align-self: auto;
        padding: 24px 20px 28px;
    }
}


/* ===============================
   Full-width Rituals (cards)
================================ */

.rituals-section-full {
    padding: 80px 0;
}

.rituals-wrapper {
    position: relative;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    transform: none;
    min-height: 460px;
}

.ritual-card {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.ritual-image {
    top: 0;
    left: 0;
    width: 60vw;
    height: 100%;
    z-index: 1;
    border-radius: 0 32px 32px 0;
    background: #000;
}

.ritual-image img {
    display: block;
    transition: none;
    animation: none;
    transform: none;
}

.ritual-image .caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}

.ritual-copy {
    right: 0;
    top: 0;
    bottom: 0;
    width: 60vw;
    margin-top: auto;
    margin-bottom: auto;
    height: fit-content;
    max-height: 100%;
    transform: none;
    z-index: 2;
    background: #ffffff;
    border-radius: 32px 0 0 32px;
    padding: 48px 56px;
}

.ritual-copy h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.ritual-copy p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.ritual-copy .pull {
    margin: 0;
    font-size: 1.1rem;
    font-style: italic;
    color: #0c4e7a;
}

@media (max-width: 900px) {
    .rituals-section-full {
        padding: 40px 0;
    }
    .rituals-wrapper {
        position: static;
        width: 100%;
        margin: 0;
        transform: none;
        min-height: auto;
        display: block;
    }
    .ritual-card {
        position: relative;
        width: 100%;
        height: auto;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        border-radius: 16px;
    }
    .ritual-image,
    .ritual-copy {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
    }
    .ritual-image {
        margin-bottom: 20px;
        height: auto;
        border-radius: 16px;
    }
    .ritual-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .ritual-copy {
        padding: 24px 20px 28px;
        border-radius: 16px;
    }
}


/* ===============================
   Carousel tuning & CTA
================================ */

.carousel,
.carousel-inner,
.carousel-item,
.carousel-item img {
    height: 100%;
}

.carousel-item img {
    object-fit: cover;
}

.carousel-item {
    overflow: hidden;
    backface-visibility: hidden;
}


/* Home hero: crossfade. Bootstrap 4.0 JS only animates when .slide is present (see carousel.js); .carousel-fade CSS swaps transform for opacity (BS 4.6 pattern). */

#exampleCarousel.carousel.slide.carousel-fade .carousel-item {
    opacity: 0;
    -webkit-transition: opacity 0.6s ease-in-out;
    transition: opacity 0.6s ease-in-out;
    -webkit-transform: none !important;
    transform: none !important;
}

#exampleCarousel.carousel.slide.carousel-fade .carousel-item.active,
#exampleCarousel.carousel.slide.carousel-fade .carousel-item-next.carousel-item-left,
#exampleCarousel.carousel.slide.carousel-fade .carousel-item-prev.carousel-item-right {
    z-index: 1;
    opacity: 1;
}

#exampleCarousel.carousel.slide.carousel-fade .active.carousel-item-left,
#exampleCarousel.carousel.slide.carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    -webkit-transition: opacity 0s 0.6s;
    transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    #exampleCarousel.carousel.slide.carousel-fade .carousel-item,
    #exampleCarousel.carousel.slide.carousel-fade .active.carousel-item-left,
    #exampleCarousel.carousel.slide.carousel-fade .active.carousel-item-right {
        transition: none;
    }
}

.carousel-inner {
    overflow: hidden;
}

.carousel-item-next img,
.carousel-item-prev img {
    transform: none;
}

.carousel-caption,
.hero-copy {
    position: absolute;
    z-index: 2;
}

.hero-cta {
    padding-top: 20px;
}


/* Hero CTA — square outlined button (no pulse / ring animation) */

.btn-circle-pulse {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 0;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 15px;
    box-sizing: border-box;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-circle-pulse span {
    position: relative;
    z-index: 1;
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 1.25;
    text-align: center;
}

.btn-circle-pulse:hover,
.btn-circle-pulse:focus {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
    text-decoration: none;
    outline: none;
}


/*------- Santorini guide CTA (outline button) ----------*/

.btn-circle-pulse-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.35rem;
    border: 2px solid #2f2f2f;
    border-radius: 6px;
    background: transparent;
    color: #2f2f2f;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: 15px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-circle-pulse-dark:hover,
.btn-circle-pulse-dark:focus {
    background: #2f2f2f;
    color: #fff;
    border-color: #2f2f2f;
    text-decoration: none;
    outline: none;
}

#exampleCarousel .carousel-caption.hero-copy,
.carousel.hero-property-single .carousel-caption.hero-copy {
    top: 50%;
    bottom: auto;
    left: 24px;
    right: 24px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
    color: #fff;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
    #exampleCarousel .carousel-caption.hero-copy,
    .carousel.hero-property-single .carousel-caption.hero-copy {
        top: 52%;
        left: 20px;
        right: 20px;
        transform: translateY(-50%);
    }
}

@media (max-width: 767.98px) {
    .nav {
        padding-left: 14px;
        padding-right: 14px;
    }
    .brand {
        padding-left: 2px;
    }
    .nav .brand img {
        width: clamp(112px, 32vw, 126px);
        height: auto;
    }
    .nav-toprow {
        min-height: 64px;
    }
    .burger {
        width: 40px;
        height: 40px;
    }
    .hero {
        min-height: max(620px, 100svh);
    }
    #exampleCarousel,
    #exampleCarousel .carousel-inner,
    #exampleCarousel .carousel-item,
    #exampleCarousel .carousel-item img,
    .carousel.hero-property-single,
    .carousel.hero-property-single .carousel-inner,
    .carousel.hero-property-single .carousel-item,
    .carousel.hero-property-single .carousel-item img {
        min-height: inherit;
    }
    #exampleCarousel .carousel-item img,
    .carousel.hero-property-single .carousel-item img {
        object-fit: cover;
        object-position: 45% center;
    }
    #exampleCarousel .carousel-caption.hero-copy,
    .carousel.hero-property-single .carousel-caption.hero-copy {
        top: var(--nav-total-h);
        bottom: 72px;
        left: 16px;
        right: 16px;
        transform: none;
        justify-content: center;
        text-align: center;
        padding-top: 0;
    }
    #exampleCarousel .carousel-caption.hero-copy .hero-h1,
    #exampleCarousel .carousel-caption.hero-copy .hero-h2,
    .carousel.hero-property-single .carousel-caption.hero-copy .hero-h1,
    .carousel.hero-property-single .carousel-caption.hero-copy .hero-h2 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.18;
        letter-spacing: 0.035em;
        margin-bottom: 16px;
    }
    #exampleCarousel .carousel-caption.hero-copy .hero-eyebrow,
    .carousel.hero-property-single .carousel-caption.hero-copy .hero-eyebrow {
        font-size: clamp(17px, 5vw, 21px);
        line-height: 1.52;
        max-width: 34ch;
        margin: 0 auto;
    }
    #exampleCarousel .hero-cta,
    .carousel.hero-property-single .hero-cta {
        padding-top: 0;
        margin-top: 38px;
        text-align: center;
    }
    #exampleCarousel .btn-circle-pulse,
    .carousel.hero-property-single .btn-circle-pulse {
        margin-left: 0;
        padding: 14px 22px;
    }
}


/* Accommodation: static hero — match index hero height (82svh + .carousel height chain) */

.hero:has(> .carousel.hero-property-single) {
    place-items: stretch start;
}

.carousel.hero-property-single {
    position: relative;
    width: 100%;
    align-self: stretch;
    min-height: 82svh;
    height: 100%;
    overflow: hidden;
}

.hero-property-single .carousel-inner,
.hero-property-single .carousel-item {
    min-height: 100%;
}

.hero-property-single .carousel-item {
    position: relative;
}


/* Carousel arrows */

#exampleCarousel .carousel-control-prev,
#exampleCarousel .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent !important;
    opacity: 1;
    display: grid;
    place-items: center;
    padding: 0;
    box-shadow: none;
    z-index: 5;
}

#exampleCarousel .carousel-control-prev {
    left: 16px;
}

#exampleCarousel .carousel-control-next {
    right: 16px;
}

#exampleCarousel .carousel-control-prev-icon,
#exampleCarousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
    filter: none;
}

#exampleCarousel .carousel-indicators {
    z-index: 6;
    bottom: 1rem;
    margin-bottom: 0;
    justify-content: center;
}

#exampleCarousel .carousel-indicators li {
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    max-width: none;
    margin: 0 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.85);
    text-indent: -9999px;
    cursor: pointer;
}

#exampleCarousel .carousel-indicators li.active {
    background-color: #fff;
}

@media (max-width: 768px) {
    #exampleCarousel .carousel-control-prev,
    #exampleCarousel .carousel-control-next {
        width: 44px;
        height: 44px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.22) !important;
        border-radius: 50%;
    }
    #exampleCarousel .carousel-control-prev {
        left: 8px;
    }
    #exampleCarousel .carousel-control-next {
        right: 8px;
    }
    #exampleCarousel .carousel-control-prev-icon,
    #exampleCarousel .carousel-control-next-icon {
        width: 16px;
        height: 16px;
        background-size: 16px 16px;
    }
    #exampleCarousel .carousel-indicators {
        bottom: calc(env(safe-area-inset-bottom, 0px) + 0.65rem);
        padding-bottom: 2px;
    }
    #exampleCarousel .carousel-indicators li {
        width: 9px;
        height: 9px;
        margin: 0 4px;
    }
}


/* ===============================
   Global footer
================================ */

.site-footer {
    background: #f9f9f9;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-family: 'Raleway', sans-serif;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-list .fa-brands,
.footer-contact-list .fa-solid {
    width: 1.1em;
    flex-shrink: 0;
}

.footer-location {
    margin-top: 16px;
    margin-bottom: 0;
    font-size: .9rem;
    color: #555;
    line-height: 1.55;
}

.footer-col h4 {
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #002f4b;
    letter-spacing: .5px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: .9rem;
    color: #555;
    margin-bottom: 14px;
}

.footer-eot {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-between; */
    gap: 12px 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    width: 100%;
    max-width: 100%;
}

.footer-eot-link {
    display: inline-block;
    line-height: 0;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-eot-logo {
    display: block;
    max-width: 200px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-mhte {
    margin: 0;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: #444;
    line-height: 1.35;
    text-align: right;
    flex: 0 1 auto;
    max-width: min(100%, 16rem);
}

.footer-mhte abbr {
    text-decoration: none;
    border-bottom: 0;
}

.footer-social a {
    font-size: 1.3rem;
    margin-right: 14px;
    color: #002f4b;
    transition: opacity .2s ease;
}

.footer-social a:hover {
    opacity: .6;
}

.footer-lang {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.footer-lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    overflow: hidden;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.footer-lang-link:hover {
    transform: translateY(-1px);
    border-color: rgba(1, 91, 147, 0.4);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.footer-lang-link.is-active {
    border-color: rgba(1, 91, 147, 0.75);
    box-shadow: 0 0 0 2px rgba(1, 91, 147, 0.15);
}

.footer-lang-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: #015b93;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    font-size: .85rem;
    color: #666;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-col-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-eot {
        flex-direction: column;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-mhte {
        margin-left: 0;
        text-align: center;
        min-width: 0;
    }
    .footer-social a {
        margin: 0 10px;
    }
}


/* ===============================
   HOME PAGE: Hero + intro + houses
================================ */

.hero-home {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background-image: url('./imgs/1.jpg');
    background-size: cover;
    background-position: center;
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

.hero-home-inner {
    position: relative;
    text-align: center;
    padding: 100px 20px 60px;
    max-width: 720px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(233, 225, 215, 0.9);
    color: #333;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-pill i {
    font-size: 0.9rem;
}

.hero-title {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-weight: 600;
    font-size: clamp(2.2rem, 5vw, 3.1rem);
    margin-bottom: 18px;
}

.hero-eyebrow {
    font-size: 1.2rem;
    max-width: 540px;
    margin: 0 auto 26px;
    opacity: 0.96;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-light-soft {
    border-radius: 999px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-outline-light-soft:hover {
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: #fff;
}

@media (max-width: 767px) {
    .hero-home-inner {
        padding-top: 80px;
        padding-bottom: 50px;
    }
}


/* Text placeholder section (intro) */

.section-intro {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #f7f5f1;
}

.section-intro .container-narrow {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.section-intro h2 {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.9rem;
    color: #6b7280;
}

.section-intro .headline {
    font-size: clamp(1.7rem, 3.1vw, 2.2rem);
    margin: 10px 0 14px;
    color: var(--ink);
}

.section-intro .lead {
    font-size: 1rem;
    color: #4b5563;
}


/* Houses grid */

.section-houses {
    padding-top: 60px;
    padding-bottom: 80px;
    /* background: #ffffff; */
}

.section-houses-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-houses-header h2 {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.section-houses-header .headline {
    font-size: clamp(1.8rem, 3.2vw, 2.3rem);
    color: var(--ink);
    margin-bottom: 8px;
}

.section-houses-header .lead {
    max-width: 640px;
    margin: 0 auto;
    color: #4b5563;
}

.houses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.house-card {
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.house-media {
    position: relative;
    padding-top: 66%;
    overflow: hidden;
}

.house-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.house-tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(21, 107, 166, 0.9);
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.house-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.house-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.house-location {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 10px;
}

.house-copy {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 12px;
}

.house-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.house-meta span i {
    margin-right: 4px;
}

.house-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    font-size: 0.9rem;
}

.house-price {
    font-weight: 600;
    color: var(--brand-dark);
}

.house-footer small {
    color: #6b7280;
}

.btn-ghost {
    border-radius: 999px;
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #ffffff;
    color: var(--ink);
    text-decoration: none;
}

.btn-ghost:hover {
    text-decoration: none;
    border-color: var(--brand);
    color: var(--brand-dark);
}


/* Accommodation detail: linked house preview cards */

.section--accommodation-related {
    background: #f8fafc;
}

.house-card--link {
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease, transform 0.22s ease;
}

.house-card--link:hover {
    text-decoration: none;
    color: inherit;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.house-card--link:focus-visible {
    outline: 2px solid #156ba6;
    outline-offset: 3px;
}

.house-footer--related .btn-ghost--inline {
    pointer-events: none;
}

.house-price--muted {
    font-weight: 500;
    color: #6b7280;
}

.house-price__unit {
    font-weight: 500;
    color: #6b7280;
    font-size: 0.85em;
}