:root {
    --ink: #1c1c1c;
    --ink-soft: #5a5a5a;
    --charcoal: #2b2b2b;
    --charcoal-deep: #141414;
    --gold: #c4a35a;
    --gold-deep: #a8863f;
    --gold-soft: #d4b87a;
    --gold-glow: rgba(196, 163, 90, 0.28);
    --paper: #ffffff;
    --paper-muted: #f3f2ef;
    --paper-warm: #faf8f4;
    --line: #e5e5e5;
    --line-dark: rgba(255, 255, 255, 0.12);
    --danger: #9b2c2c;
    --ok: #0b5c4a;
    --font-display: "Fraunces", "Times New Roman", Georgia, serif;
    --font-body: "DM Sans", "Segoe UI", sans-serif;
    --max: 1200px;
    --header-h: 72px;
    --utility-h: 38px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-soft: 0 18px 50px rgba(20, 20, 20, 0.08);
    --shadow-lift: 0 22px 48px rgba(20, 20, 20, 0.14);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background:
        radial-gradient(1200px 420px at 10% -10%, rgba(196, 163, 90, 0.08), transparent 55%),
        var(--paper);
    line-height: 1.55;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 0.75rem;
    color: var(--ink);
    letter-spacing: 0.02em;
}

p {
    margin: 0 0 1rem;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: rgba(196, 163, 90, 0.28);
    color: var(--ink);
}

.loading {
    padding: 4rem 1.5rem;
    text-align: center;
    color: var(--ink-soft);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

.utility-bar {
    background: var(--charcoal-deep);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
}

.utility-bar__inner {
    max-width: var(--max);
    margin: 0 auto;
    min-height: var(--utility-h);
    padding: 0.45rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.utility-bar__left,
.utility-bar__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-width: 0;
}

.utility-bar__left {
    flex-wrap: wrap;
    gap: 0.85rem 1.35rem;
}

.utility-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s var(--ease-out);
}

.utility-link:hover {
    color: var(--gold-soft);
}

.utility-icon {
    width: 14px;
    height: 14px;
    display: inline-grid;
    place-items: center;
    color: var(--gold-soft);
}

.utility-icon svg {
    width: 100%;
    height: 100%;
}

.site-header__main {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(229, 229, 229, 0.9);
    backdrop-filter: blur(14px) saturate(1.15);
    box-shadow: 0 8px 24px rgba(20, 20, 20, 0.04);
}

.site-header__inner {
    max-width: var(--max);
    margin: 0 auto;
    min-height: var(--header-h);
    padding: 0.7rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--ink);
    min-width: 0;
    flex-shrink: 0;
}

.brand__mark {
    width: 40px;
    height: 40px;
    color: var(--gold);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.brand__mark svg,
.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand__name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.brand__sub {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    color: var(--ink-soft);
    font-weight: 500;
}

.site-nav {
    display: none;
    align-items: center;
    gap: 1.55rem;
    flex: 1;
    justify-content: flex-end;
    margin-right: 0.35rem;
}

.site-nav a {
    position: relative;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--ink);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0;
    transition: color 0.2s var(--ease-out);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s var(--ease-out);
}

.site-nav a:hover {
    color: var(--gold-deep);
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.nav-caret {
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 4px solid currentColor;
    display: inline-block;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.utility-bar .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.lang-link {
    border: 0;
    background: transparent;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

.lang-sep {
    font-size: 0.72rem;
}

.utility-bar .lang-link {
    border: 0;
    background: transparent;
    padding: 0;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.utility-bar .lang-link.active,
.utility-bar .lang-link:hover {
    color: #fff;
}

.utility-bar .lang-sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
}

.currency-select {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.88);
}

.cms-chip {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    padding: 0.35rem 0.55rem;
    transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.cms-chip:hover {
    color: var(--gold-deep);
    border-color: var(--gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 1px solid transparent;
    padding: 0.75rem 1.25rem;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.22s var(--ease-out),
        color 0.22s var(--ease-out),
        border-color 0.22s var(--ease-out),
        transform 0.22s var(--ease-out),
        box-shadow 0.22s var(--ease-out);
    white-space: nowrap;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-sm {
    padding: 0.5rem 0.9rem;
    font-size: 0.68rem;
}

.btn-block {
    width: 100%;
}

.btn-gold {
    background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 48%, var(--gold-deep) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 22px var(--gold-glow);
}

.btn-gold:hover:not(:disabled) {
    background: linear-gradient(180deg, #ddc48a 0%, var(--gold) 45%, #947534 100%);
    border-color: transparent;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(196, 163, 90, 0.38);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-deep);
    border-color: var(--gold);
}

.btn-outline-gold:hover:not(:disabled) {
    background: rgba(196, 163, 90, 0.1);
    transform: translateY(-1px);
}

.btn-danger {
    background: transparent;
    color: var(--danger);
    border-color: rgba(155, 44, 44, 0.35);
    padding: 0.35rem 0.65rem;
    font-size: 0.7rem;
}

.btn-danger:hover:not(:disabled) {
    background: rgba(155, 44, 44, 0.08);
}

.btn-arrow {
    font-size: 1rem;
    line-height: 1;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-deep);
    transition: color 0.2s var(--ease-out), gap 0.2s var(--ease-out);
}

.text-link:hover {
    color: var(--gold);
    gap: 0.65rem;
}

.text-link--light {
    color: var(--gold-soft);
}

/* Hero */
.hero {
    position: relative;
    min-height: clamp(480px, 62vh, 600px);
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero__slides {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 42%;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.1s var(--ease-out), transform 6s var(--ease-out);
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1.01);
}

.hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(12, 12, 12, 0.52) 0%, rgba(12, 12, 12, 0.16) 44%, rgba(12, 12, 12, 0.38) 100%),
        linear-gradient(180deg, rgba(12, 12, 12, 0.1) 0%, rgba(12, 12, 12, 0.24) 100%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    width: 100%;
    margin: 0 auto;
    padding: 2.75rem 1.25rem 3.25rem;
    display: grid;
    gap: 1.75rem;
    align-items: center;
    flex: 1;
}

.hero__copy {
    max-width: 34rem;
    animation: rise 0.9s var(--ease-out) both;
}

.hero__copy h1 {
    color: #fff;
    font-size: clamp(2rem, 4.4vw, 3.15rem);
    margin-bottom: 0.75rem;
    max-width: 11ch;
    letter-spacing: 0.01em;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero__rule {
    display: block;
    width: 3rem;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1rem;
}

.hero__lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 38ch;
    margin-bottom: 1.45rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.booking-card {
    position: relative;
    background: rgba(28, 28, 28, 0.9);
    border: 0;
    backdrop-filter: blur(10px);
    padding: 1.45rem 1.3rem 1.2rem;
    width: 100%;
    max-width: 360px;
    justify-self: end;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
    animation: rise 1s var(--ease-out) 0.12s both;
}

.booking-card h2 {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.06em;
    margin-bottom: 1.05rem;
    text-align: center;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    margin-bottom: 0.7rem;
}

.booking-field label {
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.68);
}

.booking-field select,
.booking-field input {
    width: 100%;
    font: inherit;
    font-size: 0.86rem;
    padding: 0.62rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.booking-field select:hover,
.booking-field input:hover,
.booking-field select:focus,
.booking-field input:focus {
    outline: none;
    border-color: rgba(196, 163, 90, 0.65);
    background: rgba(255, 255, 255, 0.1);
}

.booking-field select option {
    color: #111;
}

.booking-field input[type="date"] {
    color-scheme: dark;
}

.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.booking-note {
    margin: 0.7rem 0 0;
    text-align: center;
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.52);
}

.hero__dots {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 1.1rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.hero__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.hero__dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.hero__dot:hover {
    background: #fff;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Welcome */
.welcome {
    padding: 2.75rem 0 2.5rem;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.welcome__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    gap: 1.75rem;
}

.welcome__image {
    position: relative;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.welcome__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

.welcome__copy h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    max-width: 14ch;
    margin-bottom: 0.8rem;
}

.welcome__copy p {
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.welcome__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ink);
    padding: 1.05rem 0.9rem;
    background: transparent;
    border: 0;
}

.feature-icon {
    width: 26px;
    height: 26px;
    color: var(--gold);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

/* Properties */
.properties {
    padding: 3rem 0 3.5rem;
    background: #fff;
}

.properties__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.properties__head {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-bottom: 1.75rem;
}

.properties__head h2 {
    font-size: clamp(1.4rem, 2.3vw, 1.8rem);
    position: relative;
    padding-bottom: 0.7rem;
    margin: 0;
}

.properties__head h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 2px;
    background: var(--gold);
}

.properties__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.properties__filters select {
    font: inherit;
    font-size: 0.8rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--line);
    background: #fff;
    min-width: 140px;
    color: var(--ink);
}

.properties__filters select:hover,
.properties__filters select:focus {
    outline: none;
    border-color: rgba(196, 163, 90, 0.7);
}

.property-grid {
    display: grid;
    gap: 1.35rem;
}

.property-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.property-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.11);
}

.property-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.property-card__media {
    position: relative;
    height: 170px;
    background-size: cover;
    background-position: center;
    margin: 0;
    overflow: hidden;
}

.property-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1rem 1.05rem;
    flex: 1;
}

.property-card h3 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.property-card p {
    color: var(--ink-soft);
    font-size: 0.84rem;
    margin: 0 0 0.95rem;
}

.property-card .btn {
    margin-top: auto;
    align-self: flex-end;
    box-shadow: none;
    border-radius: 4px;
}

.property-card:hover .btn {
    background: rgba(196, 163, 90, 0.08);
}

/* Promotions */
.promotions {
    position: relative;
    background:
        radial-gradient(700px 280px at 85% 0%, rgba(196, 163, 90, 0.16), transparent 60%),
        linear-gradient(180deg, #222 0%, var(--charcoal-deep) 100%);
    color: #fff;
    padding: 4.25rem 0;
    overflow: hidden;
}

.promotions__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(196, 163, 90, 0.18), transparent 68%);
    pointer-events: none;
}

.promotions__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.promotions__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
}

.promotions__head h2 {
    color: #fff;
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    margin: 0;
}

.promo-nav {
    display: flex;
    gap: 0.45rem;
}

.promo-nav__btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(196, 163, 90, 0.55);
    background: rgba(255, 255, 255, 0.02);
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.promo-nav__btn:hover {
    background: rgba(196, 163, 90, 0.16);
    transform: translateY(-1px);
}

.promo-grid {
    display: grid;
    gap: 1.1rem;
}

.promo-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.95rem;
    transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.promo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(196, 163, 90, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.promo-card__media {
    min-height: 110px;
    background-size: cover;
    background-position: center;
}

.promo-card__body h3 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 0.4rem;
}

.promo-card__body p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    margin-bottom: 0.75rem;
}

/* Values */
.values {
    background: var(--paper-muted);
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.values__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
}

.value-pillar {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    text-align: left;
    max-width: none;
    margin: 0;
    padding: 1.6rem 1.25rem;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.value-pillar:last-child {
    border-bottom: 0;
}

.value-pillar__icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    margin: 0.1rem 0 0;
    border-radius: 0;
    background: transparent;
}

.value-pillar__icon svg {
    width: 100%;
    height: 100%;
}

.value-pillar__copy {
    min-width: 0;
}

.value-pillar h3 {
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.value-pillar p {
    color: var(--ink-soft);
    font-size: 0.86rem;
    margin: 0;
    line-height: 1.55;
}

.awards-band {
    background: var(--paper-muted);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.awards-band__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    min-height: 118px;
}

.awards {
    background: transparent;
    padding: 1.35rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: flex-start;
    justify-content: center;
    border-bottom: 1px solid var(--line);
}

.awards__title h2 {
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin: 0;
}

.awards__title h2::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 2px;
    margin-top: 0.45rem;
    background: var(--gold);
}

.awards__strip {
    flex: 1;
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: center;
}

.awards__strip img {
    width: 100%;
    max-width: 560px;
    height: auto;
    max-height: 68px;
    object-fit: contain;
    object-position: left center;
}

.awards__logos {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: center;
    justify-items: center;
}

.awards__item {
    display: grid;
    place-items: center;
    min-height: 56px;
}

.awards__item img {
    width: auto;
    max-width: 90px;
    max-height: 56px;
    object-fit: contain;
}

.newsletter-inline {
    background: var(--charcoal-deep);
    color: #fff;
    padding: 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
}

.newsletter-inline__head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.newsletter-inline h2 {
    color: #fff;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    margin: 0;
    white-space: nowrap;
}

.newsletter-inline__rule {
    display: block;
    flex: 1;
    height: 1px;
    background: var(--gold);
    opacity: 0.85;
}

.newsletter__form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.4rem;
    margin: 0;
}

.newsletter__form input {
    font: inherit;
    font-size: 0.8rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    min-width: 0;
}

.newsletter__form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-inline__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.newsletter__consent {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.64rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    min-width: 0;
}

.newsletter__consent input {
    margin-top: 0.1rem;
}

.social-links {
    display: flex;
    gap: 0.35rem;
    flex-shrink: 0;
}

.social-links a {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 1.6rem 0;
    color: var(--ink-soft);
    font-size: 0.82rem;
    background: #fff;
}

.site-footer__inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.site-footer__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.1rem;
}

.site-footer__credits {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: right;
}

.site-footer__credit {
    font-size: 0.74rem;
    color: var(--ink-soft);
}

.site-footer__credit a {
    color: var(--gold-deep);
    text-decoration: none;
    font-weight: 600;
}

.site-footer__credit a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ink);
}

.site-footer__brand .brand__mark {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.site-footer__brand strong,
.site-footer__brand span {
    display: block;
    line-height: 1.15;
}

.site-footer__brand strong {
    font-family: var(--font-display);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}

.site-footer__brand span {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    color: var(--ink-soft);
}

.site-footer p {
    margin: 0;
}

/* CMS */
.cms {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 3rem;
    background: var(--paper-muted);
    min-height: 100vh;
}

.cms-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.cms-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold-deep);
    margin: 0 0 0.35rem;
}

.cms-header h1 {
    font-size: 1.9rem;
    margin-bottom: 0.35rem;
}

.cms-sub {
    color: var(--ink-soft);
    max-width: 48ch;
    margin: 0;
    font-size: 0.92rem;
}

.cms-sub code {
    font-size: 0.85em;
    background: #fff;
    padding: 0.1rem 0.35rem;
    border: 1px solid var(--line);
}

.cms-header__actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.cms-banner {
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.cms-banner--ok {
    background: rgba(11, 92, 74, 0.1);
    color: var(--ok);
}

.cms-banner--error {
    background: rgba(155, 44, 44, 0.1);
    color: var(--danger);
}

.cms-layout {
    display: grid;
    gap: 1.25rem;
}

.cms-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.toc-btn {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink-soft);
    font: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    cursor: pointer;
}

.toc-btn.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: #fff;
}

.cms-panel {
    background: #fff;
    border: 1px solid var(--line);
    padding: 1.35rem;
}

.cms-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cms-panel__head h2,
.cms-panel__head h3 {
    margin: 0;
}

.cms-card {
    border: 1px solid var(--line);
    padding: 1rem;
    margin-bottom: 1rem;
    background: #fafafa;
}

.cms-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cms-card__head h3 {
    margin: 0;
    font-size: 1rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

.field--check {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.field > span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.field input,
.field textarea,
.field select {
    font: inherit;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    width: 100%;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: 2px solid rgba(196, 163, 90, 0.35);
    border-color: var(--gold);
}

.localized-field {
    margin-bottom: 1.1rem;
}

.localized-field__label {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0 0 0.55rem;
}

.localized-field__grid {
    display: grid;
    gap: 0.75rem;
}

h1:focus {
    outline: none;
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 719px) {
    .utility-bar__left .utility-link:first-child {
        display: none;
    }

    .feature-item:not(:nth-child(2n)) {
        border-right: 1px solid var(--line);
    }

    .feature-item:nth-child(-n + 4) {
        border-bottom: 1px solid var(--line);
    }
}

@media (min-width: 720px) {
    .welcome__inner {
        grid-template-columns: 0.9fr 1.05fr 1.2fr;
        align-items: center;
        gap: 1.75rem 2rem;
    }

    .welcome__image {
        min-height: 220px;
        aspect-ratio: 4 / 3;
    }

    .welcome__features {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-item {
        padding: 1.15rem 0.85rem;
    }

    .feature-item:not(:nth-child(3n)) {
        border-right: 1px solid var(--line);
    }

    .feature-item:nth-child(-n + 3) {
        border-bottom: 1px solid var(--line);
    }

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .promo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values__inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .value-pillar {
        border-bottom: 0;
        border-right: 1px solid var(--line);
        padding: 1.75rem 1.5rem;
    }

    .value-pillar:last-child {
        border-right: 0;
    }

    .awards-band__inner {
        grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
        align-items: stretch;
    }

    .awards {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        border-bottom: 0;
        border-right: 1px solid var(--line);
        padding: 1.25rem 1.5rem;
        min-height: 118px;
    }

    .awards__title {
        flex: 0 0 auto;
        min-width: 8.5rem;
    }

    .awards__strip img {
        max-height: 72px;
    }

    .awards__logos {
        flex: 1;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .newsletter-inline {
        padding: 1.15rem 1.35rem;
        min-height: 118px;
    }

    .localized-field__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__slide,
    .hero__copy,
    .booking-card,
    .btn,
    .feature-item,
    .promo-card,
    .value-pillar,
    .text-link {
        animation: none !important;
        transition: none !important;
    }

    .hero__slide {
        transform: none;
    }
}

@media (min-width: 980px) {
    .site-nav {
        display: flex;
    }

    .hero {
        min-height: clamp(520px, 64vh, 620px);
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(320px, 360px);
        align-items: center;
        gap: 2.5rem;
        padding: 3rem 1.25rem 3.5rem;
    }

    .hero__copy {
        padding-right: 1rem;
    }

    .booking-card {
        justify-self: end;
    }

    .welcome {
        padding: 2.5rem 0;
    }

    .welcome__inner {
        grid-template-columns: 260px minmax(0, 1.05fr) minmax(320px, 1.15fr);
        gap: 2.25rem;
    }

    .welcome__image {
        min-height: 210px;
    }

    .property-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.35rem;
    }

    .property-card__media {
        height: 160px;
    }

    .properties__head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .cms-layout {
        grid-template-columns: 180px 1fr;
        align-items: start;
    }

    .cms-toc {
        flex-direction: column;
        position: sticky;
        top: 1rem;
    }
}
