:root {
    --ink: #16211d;
    --muted: #66736d;
    --paper: #fffdf8;
    --sand: #f4efe3;
    --sage: #566f5f;
    --terracotta: #b4623f;
    --blue: #1f6f8b;
    --line: rgba(22, 33, 29, .12);
    --shadow: 0 24px 70px rgba(22, 33, 29, .14);
    --font-body: 'Outfit', Aptos, "Segoe UI", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

/* Skip link for accessibility - hidden until focused */
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    z-index: 999999;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}
.skip-link:focus {
    position: fixed;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    margin: 0;
    padding: 14px 28px;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    animation: pageIn .35s ease both;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


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

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

:focus-visible {
    outline: 3px solid rgba(31, 111, 139, .38);
    outline-offset: 3px;
}

::selection {
    background: rgba(180, 98, 63, .28);
}

body.nav-open {
    overflow: hidden;
}

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 5vw, 72px);
    background: rgba(255, 253, 248, .88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    background: var(--ink);
    color: #fff;
    border-radius: 50%;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.main-nav a {
    padding: 8px 0;
}

.main-nav a:hover,
.main-nav .is-active {
    color: var(--ink);
}

.nav-cta,
.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 800;
}

.nav-cta,
.button.primary {
    background: var(--terracotta);
    color: #fff;
}

.button.ghost {
    background: rgba(255, 255, 255, .9);
    color: var(--ink);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: min(760px, calc(100vh - 78px));
    display: grid;
    align-items: end;
    padding: clamp(120px, 16vw, 210px) clamp(18px, 5vw, 72px) 34px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(10, 24, 27, .78), rgba(10, 24, 27, .2)),
        var(--hero-image) center/cover;
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--terracotta);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #ffd7c6;
}

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

h1 {
    max-width: 980px;
    margin-bottom: 18px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: .98;
    font-family: var(--font-body);
    font-weight: 900;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
    font-family: var(--font-body);
    font-weight: 900;
}

h3 {
    margin-bottom: 8px;
    font-size: 21px;
    font-family: var(--font-body);
}

.hero p {
    max-width: 620px;
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.booking-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 980px;
    margin-top: 76px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, .28);
}

.booking-strip span {
    padding: 18px;
    background: rgba(255, 255, 255, .18);
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.section {
    padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.intro {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(32px, 7vw, 96px);
    align-items: start;
}

.intro p:last-child,
.guide-copy p,
.split-band p {
    color: var(--muted);
    font-size: 18px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-heading a {
    color: var(--blue);
    font-weight: 900;
}

.card-grid {
    display: grid;
    gap: 22px;
}

.card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-card,
.place-card,
.contact-card,
.contact-form,
.room-row {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(22, 33, 29, .06);
}

.room-card {
    overflow: hidden;
}

.room-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.room-card > div,
.room-row > div {
    padding: 22px;
}

.room-card p,
.room-row p,
.place-card p {
    color: var(--muted);
}

dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 0;
}

dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

dd {
    margin: 0;
    font-weight: 900;
}

.split-band {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 44px;
    align-items: center;
    background: var(--sand);
}

.place-list {
    display: grid;
    gap: 14px;
}

.place-list article {
    padding: 20px;
    border-left: 4px solid var(--terracotta);
    background: rgba(255, 255, 255, .72);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-grid.expanded {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid figure {
    position: relative;
    min-height: 260px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #ddd;
}

.gallery-grid img {
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    transition: transform .3s ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.04);
}

.gallery-grid figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-weight: 800;
}

.cta-band {
    margin: 0 clamp(18px, 5vw, 72px) clamp(56px, 8vw, 112px);
    padding: clamp(42px, 7vw, 80px);
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    text-align: center;
}

.page-hero {
    padding: clamp(74px, 11vw, 126px) clamp(18px, 5vw, 72px);
    background: var(--sand);
}

.page-hero.compact h1 {
    color: var(--ink);
    font-size: clamp(38px, 6vw, 68px);
}

.page-hero p:last-child {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
}

.room-list {
    display: grid;
    gap: 24px;
}

.room-row {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
    overflow: hidden;
}

.room-row img {
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    font-size: 14px;
    font-weight: 800;
}

.places {
    display: grid;
    gap: 18px;
}

.place-card {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 20px;
    padding: 24px;
}

.place-card span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    background: var(--sage);
    color: #fff;
    font-weight: 900;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 24px;
}

.contact-card,
.contact-form {
    padding: 26px;
}

.contact-card a {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-weight: 900;
}

label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--muted);
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
}

.map {
    display: block;
    width: calc(100% - clamp(36px, 10vw, 144px));
    height: 380px;
    margin: 0 auto 72px;
    border: 0;
    border-radius: 8px;
}

.site-footer {
    padding: 44px clamp(18px, 5vw, 72px) 0;
    background: #101815;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr .7fr;
    gap: 28px;
}

.footer-grid span,
.footer-grid strong {
    display: block;
    margin-bottom: 10px;
    font-weight: 900;
}

.footer-grid p,
.footer-grid a {
    display: block;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, .74);
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-tags span {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .01em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .4);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .4);
}

.admin-body {
    background: #f6f7f5;
}

.admin-shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    padding: 24px;
    background: var(--ink);
    color: #fff;
}

.admin-sidebar a {
    display: block;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
}

.admin-sidebar a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.admin-main {
    padding: 28px;
}

.admin-card {
    max-width: 1040px;
    margin-bottom: 22px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.notice {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 6px;
    background: #e8f5ee;
    color: #23583e;
    font-weight: 800;
}

@media (max-width: 940px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 74px;
        right: 18px;
        left: 18px;
        display: none;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: #fff;
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: grid;
    }

    .card-grid.three,
    .gallery-grid,
    .gallery-grid.expanded,
    .intro,
    .split-band,
    .room-row,
    .contact-grid,
    .footer-grid,
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .booking-strip {
        grid-template-columns: 1fr;
        margin-top: 52px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .room-row img {
        min-height: 240px;
    }
}

/* Absolute final header position fix */
.site-header.is-scrolled {
    position: fixed !important;
    top: var(--header-scroll-offset, 0px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    transform: none !important;
    translate: none !important;
    z-index: 99999 !important;
    overflow: visible !important;
}

@media (max-width: 980px) {
    .site-header.is-scrolled {
        top: var(--header-scroll-offset, 0px) !important;
    }
}

/* Final polish: calmer typography, transparent header, cleaner mobile/admin flows */
body {
    font-weight: 400;
}

h1,
h2,
h3,
.brand,
.main-nav,
.button,
.nav-cta,
.eyebrow,
.stat-grid strong {
    font-weight: 600 !important;
    letter-spacing: 0;
}

.site-header {
    position: fixed !important;
    top: 16px;
    left: 50%;
    width: min(1296px, calc(100% - 40px));
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, .22) !important;
    border-radius: 8px;
    background: rgba(255, 253, 248, .18) !important;
    box-shadow: none !important;
    backdrop-filter: blur(18px);
    transition: background .25s ease, box-shadow .25s ease, top .25s ease, border-color .25s ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
    top: 10px;
    border-color: rgba(22, 33, 29, .1) !important;
    background: rgba(255, 253, 248, .94) !important;
    box-shadow: 0 18px 50px rgba(22, 33, 29, .12) !important;
}

.main-nav {
    gap: 8px;
    padding: 4px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .34);
}

.main-nav a {
    border-radius: 7px;
    padding: 10px 14px;
}

.main-nav a:hover,
.main-nav .is-active {
    background: rgba(255, 255, 255, .82);
}

.hero {
    min-height: min(920px, 100svh);
    padding-top: 130px;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(48px, 6.2vw, 92px);
    line-height: .96;
}

.hero-content > p:not(.eyebrow) {
    max-width: 640px;
    font-weight: 400;
}

.premium-intro {
    min-height: auto;
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(56px, 8vw, 96px);
}

.metric-row span,
.faq-item,
.room-card,
.blog-card,
.admin-card,
.stat-grid article {
    border-radius: 8px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(22, 33, 29, .1);
    background: #fff;
    box-shadow: 0 14px 35px rgba(22, 33, 29, .06);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 22px;
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: "+";
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    place-items: center;
    border-radius: 50%;
    background: #f3eee7;
    color: var(--terracotta);
}

.faq-item[open] summary::before {
    content: "-";
}

.faq-item p {
    margin: 0;
    padding: 0 22px 22px 60px;
}

.blog-grid:not(.compact) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.blog-grid:not(.compact) .blog-card {
    grid-template-columns: 1fr;
}

.blog-grid:not(.compact) .blog-card img {
    aspect-ratio: 16 / 10;
}

.admin-shell {
    grid-template-columns: 278px minmax(0, 1fr) !important;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
}

.admin-sidebar nav {
    display: grid;
    gap: 4px;
}

.admin-sidebar a {
    border-radius: 8px;
    padding: 12px 14px;
}

.admin-dashboard-grid,
.dashboard-panels {
    align-items: start;
}

.admin-image-preview {
    max-width: 260px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    margin: 12px 0;
    border: 1px solid rgba(22, 33, 29, .1);
    border-radius: 8px;
}

.danger-check {
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #9b3f31;
}

.danger-check input {
    width: auto;
}

@media (max-width: 980px) {
    .site-header {
        top: 0;
        left: 0;
        width: 100%;
        transform: none;
        border-width: 0 0 1px 0 !important;
        border-radius: 0;
        background: rgba(255, 253, 248, .96) !important;
    }

    .site-header.is-scrolled,
    body.nav-open .site-header {
        top: 0;
    }

    .brand {
        min-width: 0;
    }

    .brand > span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 14px;
        right: 14px;
        display: none;
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px;
        border: 1px solid rgba(22, 33, 29, .1);
        background: rgba(255, 253, 248, .98);
        box-shadow: 0 22px 55px rgba(22, 33, 29, .16);
    }

    .main-nav.is-open {
        display: grid;
    }

    .main-nav a,
    .nav-cta {
        width: 100%;
        justify-content: flex-start;
        min-height: 46px;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        flex: 0 0 44px;
    }

    .nav-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        margin: 2px 0;
        background: var(--ink);
        border-radius: 99px;
    }

    .hero {
        min-height: 100svh;
        padding: 118px 18px 54px;
    }

    .hero h1 {
        max-width: 10ch;
        font-size: clamp(39px, 12vw, 56px);
        line-height: 1.02;
    }

    .hero-content > p:not(.eyebrow) {
        font-size: 17px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 360px;
    }

    .booking-strip {
        display: none !important;
    }

    .premium-intro,
    .breakfast-section,
    .split-band {
        grid-template-columns: 1fr;
    }

    .metric-row {
        grid-template-columns: 1fr;
    }

    .faq-list,
    .blog-grid:not(.compact) {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        display: block !important;
    }

    .admin-sidebar {
        position: static;
        width: 100%;
        min-height: auto;
        margin: 0 !important;
        border-radius: 0;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-main {
        padding: 14px !important;
    }

    .admin-topbar,
    .owner-overview,
    .admin-dashboard-grid,
    .dashboard-panels,
    .admin-grid {
        grid-template-columns: 1fr !important;
    }
}

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

    .hero h1 {
        max-width: 9ch;
    }

    .hero .eyebrow {
        max-width: 16ch;
    }

    .premium-intro h2,
    .section-heading h2,
    .page-hero h1 {
        font-size: clamp(32px, 9vw, 44px);
    }

.admin-sidebar nav {
        grid-template-columns: 1fr;
    }
}

/* Header visual reset: transparent, borderless, lighter typography */
.site-header {
    top: 22px !important;
    width: min(1280px, calc(100% - 56px)) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.site-header.is-scrolled,
body.nav-open .site-header {
    top: 0 !important;
    width: 100% !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(255, 253, 248, .94) !important;
    box-shadow: 0 12px 34px rgba(18, 28, 25, .08) !important;
    backdrop-filter: blur(18px) !important;
}

.brand {
    font-weight: 500 !important;
}

.brand-mark {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .92) !important;
    color: var(--ink) !important;
    font-weight: 600 !important;
}

.site-header.is-scrolled .brand-mark,
body.nav-open .site-header .brand-mark {
    background: var(--ink) !important;
    color: #fff !important;
}

.main-nav {
    gap: 4px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.main-nav a {
    min-height: 42px;
    border-radius: 999px !important;
    padding: 9px 15px !important;
    color: rgba(255, 255, 255, .9) !important;
    font-size: 15px;
    font-weight: 500 !important;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .28);
}

.main-nav a:hover,
.main-nav .is-active {
    background: rgba(255, 255, 255, .18) !important;
    color: #fff !important;
}

.site-header.is-scrolled .main-nav a,
body.nav-open .site-header .main-nav a {
    color: var(--ink) !important;
    text-shadow: none;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav .is-active,
body.nav-open .site-header .main-nav a:hover,
body.nav-open .site-header .main-nav .is-active {
    background: rgba(22, 33, 29, .07) !important;
    color: var(--ink) !important;
}

.nav-cta {
    background: rgba(163, 111, 69, .95) !important;
    color: #fff !important;
    text-shadow: none !important;
}

.hero h1,
.page-hero h1 {
    font-weight: 520 !important;
}

@media (max-width: 980px) {
    .site-header {
        top: 0 !important;
        width: 100% !important;
        background: rgba(255, 253, 248, .96) !important;
        backdrop-filter: blur(16px) !important;
    }

    .site-header .brand,
    .site-header .main-nav a {
        color: var(--ink) !important;
        text-shadow: none !important;
    }

    .main-nav {
        border: 0 !important;
        border-radius: 10px !important;
        background: rgba(255, 253, 248, .98) !important;
    }
}

.room-hero,
.room-hero h1,
.room-hero p,
.room-hero .eyebrow {
    color: #fff !important;
}

/* Final usability pass: lighter typography, transparent nav, mobile hero, panel structure */
:root {
    --ink: #1b2521;
    --muted: #66716c;
    --paper: #fffdf8;
    --accent: #9a6b43;
}

body {
    font-weight: 400;
}

h1, h2, h3,
.brand,
.main-nav,
.button,
.nav-cta,
.stat-grid strong {
    font-weight: 650;
}

.eyebrow {
    font-weight: 700;
    letter-spacing: .06em;
}

.hero h1,
.page-hero h1,
.room-hero h1 {
    font-weight: 650;
    letter-spacing: 0;
}

.site-header {
    background: rgba(255, 255, 255, .34);
    border-color: rgba(255, 255, 255, .45);
    box-shadow: 0 10px 34px rgba(20, 28, 25, .08);
}

.main-nav {
    background: rgba(255, 255, 255, .22);
}

.main-nav a:hover,
.main-nav .is-active {
    background: rgba(255, 255, 255, .62);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(10, 18, 16, .64), rgba(10, 18, 16, .24) 58%, rgba(10, 18, 16, .08)),
        radial-gradient(circle at 72% 30%, rgba(255, 255, 255, .12), transparent 34%);
}

.hero {
    min-height: 760px;
}

.booking-strip {
    max-width: 760px;
}

.booking-glass span {
    min-height: 66px;
    background: rgba(255, 255, 255, .12);
}

.intro {
    min-height: auto;
    padding-block: clamp(44px, 6vw, 76px);
}

.faq-section {
    background: linear-gradient(180deg, #fff, #fbf8f2);
}

.faq-list {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
    background: #fff;
}

.faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: var(--accent);
    font-size: 22px;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
}

.seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.seo-tags span {
    border: 1px solid rgba(154, 107, 67, .22);
    border-radius: 999px;
    background: #fff;
    color: #6f543b;
    padding: 8px 12px;
    font-weight: 650;
}

.dashboard-panels {
    display: grid;
    grid-template-columns: 1.1fr .8fr .9fr;
    gap: 18px;
}

.admin-shell {
    grid-template-columns: 276px minmax(0, 1fr);
}

.admin-main {
    min-width: 0;
}

.admin-sidebar a {
    font-weight: 600;
}

.admin-image-preview {
    overflow: hidden;
    border: 1px solid rgba(28, 35, 31, .08);
    border-radius: 8px;
    background: #f7f8f6;
}

.admin-image-preview img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 940px) {
    .site-header {
        background: rgba(255, 255, 255, .78);
        backdrop-filter: blur(14px);
    }

    .hero {
        min-height: 100svh;
        padding: 112px 18px 24px;
        background-position: center;
    }

    .hero h1 {
        max-width: 360px;
        font-size: clamp(36px, 11vw, 48px);
        line-height: 1.08;
    }

    .hero p {
        max-width: 340px;
        font-size: 18px;
    }

    .booking-strip {
        margin-top: 30px;
        max-height: 210px;
        overflow: auto;
    }

    .faq-list,
    .dashboard-panels,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        display: block;
    }

    .admin-main {
        padding: 14px;
    }

    .admin-topbar,
    .owner-overview {
        display: grid;
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        margin: 0;
        width: 100%;
        min-height: auto;
        border-radius: 0;
    }

    .admin-sidebar nav {
        grid-template-columns: 1fr;
    }
}

/* Absolute last header polish override */
.site-header {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.site-header .main-nav,
.site-header:not(.is-scrolled) .main-nav {
    border: 0 !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.site-header .main-nav a {
    font-weight: 500 !important;
    background: transparent !important;
}

.site-header .main-nav a:hover,
.site-header .main-nav .is-active {
    background: rgba(255, 255, 255, .18) !important;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 248, .94) !important;
    box-shadow: 0 12px 34px rgba(18, 28, 25, .08) !important;
    backdrop-filter: blur(18px) !important;
}

.site-header.is-scrolled .main-nav,
body.nav-open .site-header .main-nav {
    background: transparent !important;
    border: 0 !important;
}

.brand {
    font-weight: 500 !important;
}

.hero h1,
.page-hero h1 {
    font-weight: 520 !important;
}

@media (max-width: 980px) {
    .site-header {
        background: transparent !important;
        backdrop-filter: none !important;
    }

    .site-header.is-scrolled,
    body.nav-open .site-header {
        background: rgba(255, 253, 248, .96) !important;
        backdrop-filter: blur(16px) !important;
    }

    .site-header .main-nav {
        border-radius: 10px !important;
        background: rgba(255, 253, 248, .98) !important;
    }
}

/* Final logo/header sizing correction */
.site-header {
    min-height: 78px !important;
    padding: 14px clamp(18px, 4vw, 46px) !important;
}

.site-header .brand {
    min-width: 0 !important;
    gap: 14px !important;
    align-items: center !important;
}

.site-header .brand-logo {
    display: block !important;
    width: clamp(178px, 16vw, 260px) !important;
    height: 66px !important;
    max-width: 260px !important;
    object-fit: contain !important;
    object-position: left center !important;
    flex: 0 0 auto !important;
}

.site-header .brand > span:last-child {
    font-size: 16px !important;
    font-weight: 520 !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
}

.site-header .brand--has-logo > span:last-child {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.site-header .nav-toggle {
    width: 50px !important;
    height: 50px !important;
    flex: 0 0 50px !important;
}

.site-header .nav-toggle span {
    width: 21px !important;
    height: 2px !important;
}

@media (max-width: 980px) {
    .site-header {
        min-height: 78px !important;
        padding: 10px 16px !important;
    }

    body:not(.nav-open) .site-header:not(.is-scrolled) {
        background: linear-gradient(180deg, rgba(9, 21, 19, .34), rgba(9, 21, 19, .06)) !important;
    }

    .site-header .brand-logo {
        width: clamp(150px, 40vw, 190px) !important;
        height: 56px !important;
        max-width: 190px !important;
    }

    .site-header .brand > span:last-child {
        font-size: 14px !important;
        max-width: 160px !important;
    }
}

@media (max-width: 430px) {
    .site-header {
        padding-inline: 14px !important;
    }

    .site-header .brand {
        gap: 10px !important;
    }

    .site-header .brand-logo {
        width: 148px !important;
        height: 50px !important;
        max-width: 148px !important;
    }

    .site-header .brand > span:last-child {
        max-width: 118px !important;
        font-size: 13px !important;
    }
}

/* Final scrolled header correction */
.site-header.is-scrolled,
body.nav-open .site-header {
    min-height: 72px !important;
    background: rgba(255, 253, 248, .96) !important;
    border: 1px solid rgba(21, 32, 28, .08) !important;
    box-shadow: 0 18px 44px rgba(18, 28, 25, .12) !important;
    backdrop-filter: blur(18px) !important;
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .main-nav a,
body.nav-open .site-header .brand,
body.nav-open .site-header .main-nav a {
    color: #15201c !important;
    text-shadow: none !important;
}

.site-header.is-scrolled .brand-logo,
body.nav-open .site-header .brand-logo {
    width: clamp(166px, 15vw, 232px) !important;
    height: 58px !important;
    max-width: 232px !important;
}

.site-header.is-scrolled .main-nav,
body.nav-open .site-header .main-nav {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav .is-active,
body.nav-open .site-header .main-nav a:hover,
body.nav-open .site-header .main-nav .is-active {
    background: rgba(176, 121, 73, .12) !important;
    color: #15201c !important;
    box-shadow: none !important;
}

.site-header.is-scrolled .nav-cta,
body.nav-open .site-header .nav-cta {
    background: #ad7747 !important;
    color: #fff !important;
}

.site-header.is-scrolled .nav-toggle,
body.nav-open .site-header .nav-toggle {
    background: rgba(21, 32, 28, .06) !important;
    color: #15201c !important;
    border: 1px solid rgba(21, 32, 28, .12) !important;
}

.site-header.is-scrolled .nav-toggle span,
body.nav-open .site-header .nav-toggle span {
    background: #15201c !important;
}

@media (max-width: 980px) {
    .site-header.is-scrolled,
    body.nav-open .site-header {
        min-height: 74px !important;
        padding: 9px 14px !important;
    }

    .site-header.is-scrolled .brand-logo,
    body.nav-open .site-header .brand-logo {
        width: clamp(142px, 38vw, 176px) !important;
        height: 52px !important;
        max-width: 176px !important;
    }

    body.nav-open .site-header .main-nav,
    .site-header .main-nav.is-open {
        margin-top: 10px !important;
        padding: 10px !important;
        border-radius: 16px !important;
        background: rgba(255, 253, 248, .98) !important;
        box-shadow: 0 18px 42px rgba(18, 28, 25, .14) !important;
    }
}

/* Final production polish: scrolled header, login, admin mobile, home SEO */
.site-header.is-scrolled {
    position: fixed !important;
    z-index: 9999 !important;
    top: var(--header-scroll-offset, 0px) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    transform: none !important;
    translate: none !important;
    min-height: 76px !important;
    padding: 8px clamp(18px, 4vw, 52px) !important;
    overflow: visible !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.site-header.is-scrolled .brand,
body.nav-open .site-header .brand {
    height: auto !important;
    overflow: visible !important;
}

.site-header.is-scrolled .brand-logo {
    width: clamp(172px, 14vw, 232px) !important;
    height: 58px !important;
    max-width: 232px !important;
    margin: 0 !important;
}

.site-header.is-scrolled .main-nav a {
    color: #17211d !important;
}

.site-header.is-scrolled .main-nav .nav-cta {
    color: #fff !important;
}

.seo-rich-home {
    background: #fbfaf6;
}

.seo-rich-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.seo-rich-grid article {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(24, 32, 28, .08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(18, 28, 25, .06);
}

.seo-rich-grid h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.25;
}

.seo-rich-grid p {
    margin: 0;
    color: #52605b;
    line-height: 1.8;
}

.home-map-section .map {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(18, 28, 25, .12);
}

.admin-login-body {
    min-height: 100vh !important;
    background: radial-gradient(circle at 20% 10%, rgba(176, 121, 73, .16), transparent 30%),
        linear-gradient(135deg, #111f1b 0%, #1c312b 48%, #f8f4ec 48%, #f8f4ec 100%) !important;
}

.login-shell {
    min-height: 100vh !important;
    display: grid !important;
    place-items: center !important;
    padding: 34px !important;
}

.login-panel {
    width: min(1040px, 100%) !important;
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: 1fr 430px !important;
    gap: 28px !important;
    align-items: stretch !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.login-copy,
.login-card {
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
}

.login-copy {
    padding: clamp(34px, 5vw, 64px) !important;
    color: #fff !important;
    background: rgba(255, 255, 255, .08) !important;
    backdrop-filter: blur(18px) !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .18) !important;
}

.login-copy h1 {
    max-width: 680px !important;
    margin: 12px 0 18px !important;
    color: #fff !important;
    font-size: clamp(34px, 5vw, 62px) !important;
    line-height: 1.02 !important;
    font-weight: 520 !important;
}

.login-copy p {
    max-width: 640px !important;
    color: rgba(255, 255, 255, .78) !important;
    line-height: 1.8 !important;
}

.login-card {
    padding: 34px !important;
    background: rgba(255, 253, 248, .98) !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .18) !important;
}

.login-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.login-card-head .brand-mark {
    flex: 0 0 48px;
}

.login-card h2,
.login-card p {
    margin: 0 !important;
}

.login-card small {
    display: block !important;
    margin-top: 20px !important;
    color: #68736f !important;
    text-align: center !important;
}

.admin-body {
    overflow-x: hidden !important;
}

.admin-shell,
.admin-main,
.admin-card,
.owner-overview,
.dashboard-panels,
.admin-dashboard-grid,
.stat-grid {
    min-width: 0 !important;
}

@media (max-width: 980px) {
    .site-header.is-scrolled,
    body.nav-open .site-header {
        top: var(--header-scroll-offset, 0px) !important;
        min-height: 72px !important;
        padding: 9px 14px !important;
    }

    .site-header.is-scrolled .brand-logo,
    body.nav-open .site-header .brand-logo {
        width: clamp(140px, 39vw, 178px) !important;
        height: 50px !important;
        max-width: 178px !important;
    }

    .site-header .main-nav.is-open {
        position: absolute !important;
        left: 14px !important;
        right: 14px !important;
        top: calc(100% + 8px) !important;
        width: auto !important;
        display: grid !important;
        gap: 8px !important;
        max-height: calc(100vh - 98px) !important;
        overflow-y: auto !important;
    }

    .seo-rich-grid {
        grid-template-columns: 1fr !important;
    }

    .home-map-section .map {
        min-height: 340px;
        border-radius: 14px;
    }

    .login-shell {
        padding: 18px !important;
    }

    .login-panel {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .login-copy,
    .login-card {
        padding: 24px !important;
        border-radius: 18px !important;
    }

    .login-copy h1 {
        font-size: clamp(30px, 9vw, 44px) !important;
    }

    .admin-shell {
        display: block !important;
        width: 100% !important;
    }

    .admin-sidebar {
        position: sticky !important;
        top: 0 !important;
        z-index: 20 !important;
        width: 100% !important;
        min-height: auto !important;
        padding: 16px !important;
        border-radius: 0 !important;
    }

    .admin-sidebar nav {
        display: grid !important;
        grid-auto-flow: column !important;
        grid-auto-columns: max-content !important;
        grid-template-columns: none !important;
        gap: 8px !important;
        overflow-x: auto !important;
        padding-bottom: 6px !important;
    }

    .admin-sidebar nav a {
        white-space: nowrap !important;
        min-height: 42px !important;
        padding: 10px 14px !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, .08) !important;
    }

    .admin-credit {
        display: none !important;
    }

    .admin-main {
        width: 100% !important;
        padding: 16px !important;
    }

    .admin-topbar,
    .owner-overview,
    .dashboard-panels,
    .admin-dashboard-grid,
    .stat-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Professional admin CRM redesign */
.admin-body {
    background:
        radial-gradient(circle at top left, rgba(154, 107, 67, .10), transparent 28vw),
        linear-gradient(135deg, #f4f2ed, #fbfaf7 48%, #f3f5f2) !important;
    color: #17221f;
}

.admin-shell {
    display: grid !important;
    grid-template-columns: 292px minmax(0, 1fr) !important;
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky !important;
    top: 0;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 28px 22px !important;
    border: 0 !important;
    border-right: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 0 !important;
    background: linear-gradient(180deg, #12211d, #1e2c27) !important;
    color: #fff !important;
    box-shadow: 18px 0 50px rgba(18, 33, 29, .14) !important;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.admin-brand span {
    width: 48px !important;
    height: 48px !important;
    background: #fff !important;
    color: #12211d !important;
}

.admin-brand strong {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 620;
}

.admin-brand small {
    color: rgba(255, 255, 255, .62) !important;
}

.admin-sidebar nav {
    display: grid !important;
    gap: 6px !important;
    margin-top: 22px;
}

.admin-sidebar a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    margin: 0 !important;
    border-radius: 10px !important;
    padding: 11px 13px !important;
    color: rgba(255, 255, 255, .76) !important;
    font-weight: 520 !important;
}

.admin-sidebar a:hover {
    background: rgba(255, 255, 255, .09) !important;
    color: #fff !important;
}

.admin-sidebar b {
    min-width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #b77a4d;
    color: #fff;
    font-size: 13px;
}

.admin-credit {
    margin-top: 28px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
}

.admin-main {
    padding: clamp(22px, 3vw, 42px) !important;
}

.admin-topbar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    max-width: none !important;
    margin-bottom: 22px !important;
    padding: 24px 28px !important;
    border: 1px solid rgba(18, 33, 29, .08) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .82) !important;
    box-shadow: 0 20px 60px rgba(18, 33, 29, .07) !important;
    backdrop-filter: blur(18px);
}

.admin-topbar h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px) !important;
    font-weight: 560 !important;
}

.admin-card {
    max-width: none !important;
    border: 1px solid rgba(18, 33, 29, .08) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .88) !important;
    box-shadow: 0 18px 54px rgba(18, 33, 29, .06) !important;
}

.admin-page-head {
    padding: 24px 28px !important;
}

.admin-page-head h2 {
    font-weight: 560 !important;
}

.admin-editor-layout {
    padding: 0 !important;
    overflow: hidden;
}

.admin-editor-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 0;
}

.editor-main {
    padding: clamp(22px, 3vw, 36px);
    border-right: 1px solid rgba(18, 33, 29, .08);
}

.editor-side {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(18px, 2.4vw, 28px);
    background: #f8f6f1;
}

.editor-side-card {
    padding: 18px;
    border: 1px solid rgba(18, 33, 29, .08);
    border-radius: 12px;
    background: #fff;
}

.editor-side-card h3 {
    margin: 0 0 14px;
    font-size: 17px;
    font-weight: 620 !important;
}

.admin-body label {
    display: grid;
    gap: 7px;
    color: #40504a;
    font-size: 14px;
    font-weight: 560;
}

.admin-body input,
.admin-body textarea {
    width: 100%;
    border: 1px solid rgba(18, 33, 29, .12);
    border-radius: 10px;
    padding: 12px 13px;
    background: #fff;
    color: #17221f;
    font: inherit;
}

.admin-body input:focus,
.admin-body textarea:focus {
    border-color: rgba(154, 107, 67, .55);
    outline: 3px solid rgba(154, 107, 67, .14);
}

.rich-textarea {
    min-height: 460px !important;
    line-height: 1.7;
    resize: vertical;
}

.editor-toolbar {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px !important;
    margin: 16px 0 10px !important;
    padding: 10px !important;
    border: 1px solid rgba(18, 33, 29, .08);
    border-radius: 12px;
    background: #f8f6f1;
}

.editor-toolbar button {
    min-height: 36px;
    border: 1px solid rgba(18, 33, 29, .08) !important;
    border-radius: 8px !important;
    padding: 7px 11px !important;
    background: #fff !important;
    color: #17221f !important;
    font-weight: 560 !important;
}

.editor-toolbar button:hover {
    background: #efe8dd !important;
}

.editor-actions {
    display: grid !important;
}

.editor-actions .button {
    width: 100%;
}

.admin-image-preview {
    max-width: none !important;
    width: 100%;
    border-radius: 12px !important;
}

.stat-grid {
    gap: 14px !important;
}

.stat-grid article,
.owner-overview,
.dashboard-panels .admin-card {
    border-radius: 14px !important;
}

@media (max-width: 1040px) {
    .admin-shell {
        display: block !important;
    }

    .admin-sidebar {
        position: static !important;
        min-height: auto !important;
        padding: 16px !important;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .admin-credit {
        display: none;
    }

    .admin-main {
        padding: 14px !important;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px !important;
    }

    .admin-editor-form {
        grid-template-columns: 1fr;
    }

    .editor-main {
        border-right: 0;
        border-bottom: 1px solid rgba(18, 33, 29, .08);
    }
}

@media (max-width: 620px) {
    .admin-sidebar nav {
        grid-template-columns: 1fr !important;
    }

    .admin-topbar h1 {
        font-size: 34px !important;
    }

    .admin-page-head {
        padding: 18px !important;
    }

    .editor-main,
    .editor-side {
        padding: 16px;
    }
}

/* Final admin mobile and FAQ icon corrections */
.faq-item summary::after {
    content: none !important;
    display: none !important;
}

.faq-item summary::before {
    margin-left: auto !important;
}

@media (max-width: 1040px) {
    .admin-shell {
        display: block !important;
        min-height: 100vh !important;
        background: #f6f4ef;
    }

    .admin-sidebar {
        position: sticky !important;
        top: 0 !important;
        z-index: 50;
        display: grid !important;
        grid-template-columns: auto 1fr;
        gap: 12px;
        min-height: auto !important;
        padding: 12px 14px !important;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
        background: rgba(18, 33, 29, .96) !important;
        box-shadow: 0 14px 34px rgba(18, 33, 29, .18) !important;
    }

    .admin-brand {
        grid-column: 1 / -1;
        padding: 0 0 10px !important;
        border-bottom: 1px solid rgba(255, 255, 255, .1) !important;
    }

    .admin-brand span {
        width: 44px !important;
        height: 44px !important;
    }

    .admin-sidebar nav {
        grid-column: 1 / -1;
        display: flex !important;
        gap: 8px !important;
        margin: 0 !important;
        overflow-x: auto;
        padding: 0 0 2px;
        scrollbar-width: thin;
    }

    .admin-sidebar nav a {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 9px 12px !important;
        border-radius: 999px !important;
        background: rgba(255, 255, 255, .07);
        font-size: 14px;
        white-space: nowrap;
    }

    .admin-credit {
        display: none !important;
    }

    .admin-main {
        padding: 14px !important;
    }
}

@media (max-width: 620px) {
    .admin-sidebar {
        padding: 10px 12px !important;
    }

    .admin-brand small {
        display: none;
    }

    .admin-sidebar nav a {
        font-size: 13px;
    }

    .faq-section {
        padding-top: 42px !important;
        padding-bottom: 54px !important;
    }

    .faq-section .section-heading h2 {
        font-size: clamp(30px, 9vw, 42px) !important;
    }

    .faq-item summary {
        padding: 16px !important;
    }

    .faq-item summary::before {
        width: 28px !important;
        height: 28px !important;
        flex-basis: 28px !important;
    }
}

/* Fix public mobile brand contrast on transparent hero header */
@media (max-width: 980px) {
    body:not(.nav-open) .site-header:not(.is-scrolled) .brand,
    body:not(.nav-open) .site-header:not(.is-scrolled) .brand span:last-child {
        color: #fff !important;
        text-shadow: 0 2px 14px rgba(0, 0, 0, .34) !important;
    }

    body:not(.nav-open) .site-header:not(.is-scrolled) .brand-mark {
        background: rgba(255, 255, 255, .94) !important;
        color: var(--ink) !important;
        text-shadow: none !important;
    }
}

/* Mobile navigation, FAQ and admin usability pass */
.blog-help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.blog-help-grid article {
    padding: 20px;
    border: 1px solid rgba(22, 33, 29, .08);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(22, 33, 29, .05);
}

.blog-help-grid strong {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #f3eee7;
    color: #9a6b43;
}

.blog-help-grid h3 {
    margin: 14px 0 6px;
    font-size: 18px;
    font-weight: 600 !important;
}

.blog-help-grid p {
    margin: 0;
    color: var(--muted);
}

.faq-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding-block: clamp(54px, 7vw, 86px) !important;
}

.faq-section .section-heading {
    align-items: end;
    margin-bottom: 26px;
}

.faq-section .section-heading h2 {
    max-width: 660px;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 520 !important;
}

.faq-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.faq-item {
    border: 1px solid rgba(22, 33, 29, .08) !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: 0 12px 28px rgba(22, 33, 29, .045) !important;
}

.faq-item summary {
    min-height: 74px;
    justify-content: space-between;
    padding: 18px 20px !important;
    color: var(--ink);
    font-weight: 540 !important;
}

.faq-item summary::before {
    order: 2;
    width: 30px !important;
    height: 30px !important;
    flex-basis: 30px !important;
    background: #f6f1ea !important;
    color: #9a6b43 !important;
}

.faq-item p {
    padding: 0 20px 20px !important;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 980px) {
    body.nav-open {
        overflow: hidden;
    }

    .site-header {
        padding: 14px 18px !important;
        background: rgba(255, 253, 248, .94) !important;
        box-shadow: 0 12px 28px rgba(18, 28, 25, .08) !important;
        backdrop-filter: blur(16px) !important;
    }

    .site-header .brand,
    .site-header .brand span:last-child {
        color: var(--ink) !important;
        font-weight: 500 !important;
    }

    .site-header .brand-mark {
        background: var(--ink) !important;
        color: #fff !important;
    }

    .nav-toggle {
        width: 44px !important;
        height: 44px !important;
        border: 1px solid rgba(22, 33, 29, .1) !important;
        background: #fff !important;
        box-shadow: 0 8px 24px rgba(22, 33, 29, .08);
    }

    .site-header .main-nav {
        position: fixed !important;
        top: 78px !important;
        left: 16px !important;
        right: 16px !important;
        display: none !important;
        grid-template-columns: 1fr !important;
        gap: 4px !important;
        max-height: calc(100svh - 96px);
        overflow-y: auto;
        padding: 10px !important;
        border: 0 !important;
        border-radius: 14px !important;
        background: rgba(255, 253, 248, .98) !important;
        box-shadow: 0 24px 64px rgba(18, 28, 25, .18) !important;
        backdrop-filter: blur(18px) !important;
    }

    .site-header .main-nav.is-open {
        display: grid !important;
    }

    .site-header .main-nav a,
    .site-header .main-nav .nav-cta {
        width: 100% !important;
        min-height: 48px !important;
        justify-content: flex-start !important;
        border-radius: 10px !important;
        padding: 12px 14px !important;
        background: transparent !important;
        color: var(--ink) !important;
        font-weight: 500 !important;
        text-shadow: none !important;
    }

    .site-header .main-nav a:hover,
    .site-header .main-nav .is-active {
        background: #f3eee7 !important;
    }

    .site-header .main-nav .nav-cta {
        margin-top: 4px;
        background: #a36f45 !important;
        color: #fff !important;
        justify-content: center !important;
    }

    .faq-section {
        width: 100%;
        padding-inline: 18px !important;
    }

    .faq-list {
        grid-template-columns: 1fr !important;
    }

    .faq-item summary {
        min-height: auto;
        align-items: flex-start;
        gap: 16px;
        font-size: 16px;
        line-height: 1.35;
    }

    .blog-help-grid {
        grid-template-columns: 1fr;
    }

    .admin-table {
        min-width: 0;
    }

    .admin-table thead {
        display: none;
    }

    .admin-table,
    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
    }

    .admin-table tr {
        padding: 12px;
        border-bottom: 1px solid rgba(22, 33, 29, .08);
    }

    .admin-table td {
        border-bottom: 0;
        padding: 8px 0;
    }

    .row-actions a {
        flex: 1;
    }
}

/* Strongest mobile drawer override */
@media (max-width: 980px) {
    body.nav-open .site-header .main-nav,
    .site-header .main-nav.is-open,
    .site-header:not(.is-scrolled) .main-nav.is-open {
        display: grid !important;
        position: fixed !important;
        top: 78px !important;
        left: 16px !important;
        right: 16px !important;
        padding: 10px !important;
        border: 0 !important;
        border-radius: 14px !important;
        background: rgba(255, 253, 248, .98) !important;
        box-shadow: 0 24px 64px rgba(18, 28, 25, .18) !important;
        backdrop-filter: blur(18px) !important;
    }

    body.nav-open .site-header .main-nav a,
    .site-header .main-nav.is-open a {
        background: transparent !important;
        color: var(--ink) !important;
        text-shadow: none !important;
    }

    body.nav-open .site-header .main-nav .nav-cta,
    .site-header .main-nav.is-open .nav-cta {
        background: #a36f45 !important;
        color: #fff !important;
    }
}

/* Definitive public-site layer: fixes overwritten hero/header rules */
html,
body {
    overflow-x: hidden;
}

main {
    background: var(--paper);
}

.site-header {
    position: fixed !important;
    top: 18px !important;
    left: 50% !important;
    z-index: 100 !important;
    width: min(1280px, calc(100% - 48px)) !important;
    transform: translateX(-50%) !important;
    border: 1px solid rgba(255, 255, 255, .42) !important;
    border-radius: 10px !important;
    background: rgba(18, 28, 25, .18) !important;
    box-shadow: none !important;
    backdrop-filter: blur(20px) saturate(135%) !important;
}

.site-header.is-scrolled,
body.nav-open .site-header {
    top: 10px !important;
    border-color: rgba(20, 30, 26, .1) !important;
    background: rgba(255, 253, 248, .96) !important;
    box-shadow: 0 18px 48px rgba(20, 30, 26, .14) !important;
}

.site-header .brand,
.site-header .main-nav a {
    color: rgba(255, 255, 255, .9) !important;
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .main-nav a,
body.nav-open .site-header .brand,
body.nav-open .site-header .main-nav a {
    color: var(--ink) !important;
}

.site-header .brand-mark {
    background: rgba(255, 255, 255, .92) !important;
    color: var(--ink) !important;
}

.site-header.is-scrolled .brand-mark,
body.nav-open .site-header .brand-mark {
    background: var(--ink) !important;
    color: #fff !important;
}

.main-nav {
    gap: 6px !important;
    padding: 5px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-radius: 9px !important;
    background: rgba(255, 255, 255, .1) !important;
}

.main-nav a {
    border-radius: 7px !important;
    padding: 10px 14px !important;
    font-weight: 500 !important;
}

.main-nav a:hover,
.main-nav .is-active {
    background: rgba(255, 255, 255, .88) !important;
    color: var(--ink) !important;
}

.nav-cta {
    background: #a36f45 !important;
    color: #fff !important;
}

.hero,
.page-hero {
    margin-top: 0 !important;
    padding-top: clamp(150px, 16vw, 210px) !important;
}

.hero {
    min-height: 100svh !important;
}

.hero h1,
.hero p,
.hero .eyebrow,
.page-hero h1,
.page-hero p,
.page-hero .eyebrow,
.room-hero h1,
.room-hero p,
.room-hero .eyebrow,
.blog-hero h1,
.blog-hero p,
.blog-hero .eyebrow {
    color: #fff !important;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .22);
}

.hero h1,
.page-hero h1 {
    max-width: 920px !important;
    font-weight: 560 !important;
    line-height: 1 !important;
}

.hero p,
.page-hero p {
    font-weight: 400 !important;
}

.page-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: end;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(9, 18, 17, .76), rgba(9, 18, 17, .34)),
        var(--page-hero-image, url('/assets/img/cunda-hero.webp')) center/cover !important;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(9, 18, 17, .22), rgba(9, 18, 17, .08));
}

.editorial-hero {
    --page-hero-image: url('/assets/img/place-marina.webp');
}

.room-hero {
    --page-hero-image: var(--room-hero-image);
}

.blog-hero {
    --page-hero-image: var(--blog-image);
}

.gallery-grid.expanded,
.contact-grid,
.blog-grid,
.places {
    margin-top: 0 !important;
}

.contact-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr) !important;
    align-items: stretch;
    background:
        linear-gradient(135deg, rgba(255, 253, 248, .96), rgba(244, 239, 227, .72)),
        url('/assets/img/place-marina.webp') center/cover;
}

.contact-card,
.contact-form {
    border: 1px solid rgba(22, 33, 29, .1);
    border-radius: 10px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 22px 60px rgba(22, 33, 29, .08);
}

.map {
    display: block;
    width: calc(100% - clamp(36px, 10vw, 144px));
    height: 420px;
    margin: 0 auto clamp(56px, 8vw, 96px);
    border: 0;
    border-radius: 10px;
    box-shadow: 0 22px 60px rgba(22, 33, 29, .08);
}

.faq-section {
    padding-top: clamp(56px, 8vw, 92px) !important;
}

@media (max-width: 980px) {
    .site-header {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        transform: none !important;
        border-width: 0 0 1px 0 !important;
        border-radius: 0 !important;
        background: rgba(255, 253, 248, .96) !important;
    }

    .site-header .brand,
    .site-header .main-nav a {
        color: var(--ink) !important;
        text-shadow: none;
    }

    .site-header .brand-mark {
        background: var(--ink) !important;
        color: #fff !important;
    }

    .main-nav {
        position: fixed !important;
        top: 70px !important;
        left: 14px !important;
        right: 14px !important;
        display: none !important;
        grid-template-columns: 1fr !important;
        background: rgba(255, 253, 248, .98) !important;
        box-shadow: 0 22px 55px rgba(22, 33, 29, .16) !important;
    }

    .main-nav.is-open {
        display: grid !important;
    }

    .nav-toggle {
        display: inline-grid !important;
    }

    .hero,
    .page-hero {
        min-height: 100svh !important;
        padding: 112px 18px 56px !important;
    }

    .hero h1,
    .page-hero h1 {
        max-width: 11ch !important;
        font-size: clamp(38px, 11vw, 56px) !important;
        line-height: 1.03 !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}

/* CRM list/detail screens */
.admin-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.admin-page-head h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
}

.admin-page-head p {
    margin: 8px 0 0;
    color: var(--muted);
}

.admin-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.admin-stat-row article {
    padding: 18px;
    border: 1px solid rgba(22, 33, 29, .08);
    border-radius: 8px;
    background: #fbfaf7;
}

.admin-stat-row strong {
    display: block;
    color: var(--ink);
    font-size: 28px;
    line-height: 1;
}

.admin-stat-row span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(22, 33, 29, .08);
    border-radius: 10px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
    background: #fff;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(22, 33, 29, .08);
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: #75807b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: #fbfaf7;
}

.admin-table tr:last-child td {
    border-bottom: 0;
}

.table-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
}

.table-title img {
    width: 62px;
    height: 46px;
    flex: 0 0 62px;
    border-radius: 7px;
    object-fit: cover;
    background: #eee;
}

.table-title span {
    font-weight: 600;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.status-pill.is-live {
    background: rgba(67, 132, 92, .12);
    color: #2f7049;
}

.status-pill.is-draft {
    background: rgba(154, 107, 67, .12);
    color: #8a5b35;
}

.row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.row-actions a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(22, 33, 29, .1);
    border-radius: 7px;
    padding: 7px 10px;
    background: #fff;
    color: var(--ink);
    font-weight: 600;
}

.row-actions a:hover {
    background: #f4efe3;
}

.admin-editor-layout {
    max-width: 1120px;
}

.switch-line {
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 8px;
}

.switch-line input {
    width: auto;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.button.danger {
    border: 0;
    background: #9b3f31;
    color: #fff;
}

@media (max-width: 760px) {
    .admin-page-head,
    .admin-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-stat-row {
        grid-template-columns: 1fr;
    }
}

/* Last-mile overrides kept at the end so older theme layers cannot win. */
.site-header {
    background: rgba(255, 255, 255, .30) !important;
    border-color: rgba(255, 255, 255, .42);
}

.main-nav {
    background: rgba(255, 255, 255, .18) !important;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(10, 18, 16, .58), rgba(10, 18, 16, .20) 58%, rgba(10, 18, 16, .06)) !important;
}

@media (max-width: 940px) {
    .site-header {
        background: rgba(255, 255, 255, .70) !important;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(8, 16, 14, .52), rgba(8, 16, 14, .38) 45%, rgba(8, 16, 14, .58)) !important;
    }

    .hero {
        background-position: center top;
    }
}

@keyframes pageIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content,
.page-hero > div,
.blog-hero > * {
    animation: heroTextIn .8s ease both;
}

@keyframes heroTextIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.02;
}

.hero p {
    font-weight: 600;
}

.room-hero h1 {
    max-width: 760px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.06;
}

.room-hero {
    background:
        linear-gradient(90deg, rgba(18, 22, 20, .72), rgba(18, 22, 20, .16)),
        var(--room-hero-image) center/cover;
}

.owner-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin-bottom: 22px;
    padding: 26px;
    border: 1px solid rgba(28, 35, 31, .08);
    border-radius: 8px;
    background: linear-gradient(135deg, #fff, #f7f3ec);
    box-shadow: 0 14px 42px rgba(28, 35, 31, .06);
}

.owner-overview h2 {
    margin-bottom: 8px;
    font-size: clamp(28px, 4vw, 42px);
}

.owner-overview p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.quick-actions {
    display: grid;
    gap: 10px;
    min-width: 220px;
}

.quick-actions a {
    border: 1px solid rgba(28, 35, 31, .08);
    border-radius: 6px;
    background: #fff;
    padding: 11px 14px;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(28, 35, 31, .04);
}

.stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-sidebar b {
    float: right;
    min-width: 24px;
    border-radius: 999px;
    background: #9a6b43;
    color: #fff;
    text-align: center;
}

.admin-credit {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(28, 35, 31, .08);
    color: #7b8580;
    font-size: 13px;
    font-weight: 800;
}

.admin-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.message-list {
    display: grid;
    gap: 14px;
}

.message-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(28, 35, 31, .08);
    border-radius: 8px;
    background: #fff;
}

.message-card.is-unread {
    border-color: rgba(154, 107, 67, .34);
    background: #fffaf2;
}

.message-card div,
.message-card footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.message-card span,
.message-card p {
    color: var(--muted);
}

.message-card footer a {
    color: #7e5635;
    font-weight: 900;
}

.login-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.login-badges span {
    border: 1px solid rgba(28, 35, 31, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    padding: 8px 12px;
    color: #24302b;
    font-weight: 900;
}

.login-card small {
    margin-top: 18px;
    color: #7b8580;
    font-weight: 800;
}

@media (max-width: 940px) {
    .owner-overview,
    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* Professional navbar, rich blog editor and SEO footer */
.site-header {
    top: 14px;
    width: min(1180px, calc(100% - 32px));
    margin: 14px auto 0;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 8px;
    background: rgba(255, 255, 255, .62);
    box-shadow: 0 18px 50px rgba(24, 30, 27, .12);
    backdrop-filter: blur(22px);
}

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

.brand {
    color: #17211d;
}

.main-nav {
    gap: 6px;
    padding: 4px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .46);
}

.main-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    padding: 8px 12px;
}

.main-nav a:hover,
.main-nav .is-active {
    background: #fff;
    box-shadow: 0 8px 24px rgba(24, 30, 27, .08);
}

.nav-cta {
    margin-left: 6px;
    padding-inline: 16px;
}

.hero {
    margin-top: -76px;
    padding-top: clamp(170px, 19vw, 240px);
}

.page-hero {
    margin-top: -76px;
    padding-top: clamp(132px, 15vw, 184px);
}

.footer-seo {
    padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px);
    background: #f8f4ec;
}

.footer-seo > div {
    max-width: 1120px;
    margin: 0 auto;
}

.footer-seo h2 {
    max-width: 780px;
    font-size: clamp(28px, 4vw, 44px);
}

.footer-seo p {
    max-width: 1020px;
    color: #4f5b55;
    font-size: 17px;
}

.editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 12px;
}

.editor-toolbar button {
    min-height: 36px;
    border: 1px solid rgba(28, 35, 31, .1);
    border-radius: 6px;
    background: #fff;
    color: #24302b;
    padding: 7px 11px;
    font-weight: 800;
}

.editor-toolbar button:hover {
    background: #f1eee8;
}

.rich-textarea {
    min-height: 260px;
    font-family: Consolas, "Courier New", monospace;
    line-height: 1.6;
}

.danger-check {
    color: #9f3f34;
}

.share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.share-row span {
    color: var(--muted);
    font-weight: 900;
}

.share-row a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 13px;
    color: #24302b;
    font-weight: 800;
}

.blog-content figure {
    margin: 34px 0;
}

.blog-content figure img {
    border-radius: 8px;
}

.blog-content figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 940px) {
    .site-header {
        top: 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .hero,
    .page-hero {
        margin-top: 0;
        padding-top: clamp(88px, 14vw, 132px);
    }

    .main-nav {
        background: #fff;
    }
}

@media (max-width: 620px) {
    .site-header {
        padding: 14px 16px;
    }

    .brand span:last-child {
        max-width: 190px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .place-card {
        grid-template-columns: 1fr;
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }
}

/* Refinements: soft palette, reservation header, rooms hero, FAQ, stats */
.site-header {
    background: rgba(255, 251, 244, .92);
}

.nav-cta,
.button.primary {
    background: #9a6b43;
}

.nav-cta:hover,
.button.primary:hover {
    background: #7e5635;
}

.room-hero {
    min-height: 520px;
    display: grid;
    align-items: end;
    background:
        linear-gradient(90deg, rgba(24, 22, 19, .76), rgba(24, 22, 19, .18)),
        var(--room-hero-image) center/cover;
    color: #fff;
}

.room-hero h1,
.room-hero p {
    color: #fff;
}

.room-hero > div {
    max-width: 820px;
}

.room-feature-row {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .45s ease, transform .45s ease;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .45s ease, transform .45s ease;
}

.room-feature-row.is-visible,
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-section {
    background: #fff;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 980px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffdf8;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
}

.faq-item[open] {
    box-shadow: 0 16px 44px rgba(42, 34, 25, .08);
    transform: translateY(-2px);
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 900;
}

.faq-item p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.embed-panel {
    min-height: 180px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    overflow: auto;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}

.stat-grid article {
    padding: 20px;
    border: 1px solid rgba(154, 107, 67, .18);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff, #fbf6ee);
}

.stat-grid strong {
    display: block;
    color: #7e5635;
    font-size: 34px;
    line-height: 1;
}

.stat-grid span {
    color: var(--muted);
    font-weight: 800;
}

.admin-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.admin-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-radius: 6px;
    background: #fbf6ee;
}

.admin-sidebar {
    background:
        linear-gradient(180deg, rgba(61, 53, 45, .98), rgba(95, 77, 58, .98)),
        #3d352d;
}

.admin-brand span {
    background: #ead8bd;
}

input[type="file"] {
    background: #fffdf8;
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Premium hotel refresh */
:root {
    --gold: #c99a4b;
}

.hero {
    overflow: hidden;
}

.hero-premium {
    min-height: min(820px, calc(100svh - 78px));
    isolation: isolate;
}

.hero-video,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-video {
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    z-index: -1;
    background:
        radial-gradient(circle at 76% 22%, rgba(201, 154, 75, .22), transparent 34%),
        linear-gradient(90deg, rgba(8, 19, 17, .86), rgba(8, 19, 17, .48) 48%, rgba(8, 19, 17, .18));
}

.booking-glass span {
    display: grid;
    gap: 3px;
    min-height: 78px;
    align-content: center;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
}

.booking-glass strong {
    color: #fff;
    font-size: 17px;
}

.premium-intro {
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(244, 239, 227, .62));
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.metric-row span {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    font-weight: 800;
}

.metric-row strong {
    display: block;
    color: var(--ink);
    font-size: 26px;
}

.breakfast-section {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    background: #fff;
}

.breakfast-copy p {
    color: var(--muted);
    font-size: 18px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
}

.check-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: rgba(86, 111, 95, .14);
    color: var(--sage);
    content: "✓";
    font-size: 12px;
    font-weight: 900;
}

.breakfast-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.breakfast-media img {
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.breakfast-media figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 12px 14px;
    border-radius: 6px;
    background: rgba(17, 28, 25, .72);
    color: #fff;
    font-weight: 800;
}

.premium-card {
    transition: transform .22s ease, box-shadow .22s ease;
}

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

.premium-guide {
    background:
        linear-gradient(135deg, rgba(86, 111, 95, .12), rgba(201, 154, 75, .16)),
        var(--sand);
}

.image-list article {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border-left: 0;
    border-radius: 8px;
    overflow: hidden;
}

.image-list img {
    width: 118px;
    height: 100%;
    min-height: 106px;
    object-fit: cover;
}

.editorial-hero {
    background:
        linear-gradient(135deg, rgba(17, 28, 25, .88), rgba(86, 111, 95, .74)),
        url('/assets/img/place-marina.webp') center/cover;
    color: #fff;
}

.editorial-hero .eyebrow,
.editorial-hero h1,
.editorial-hero p {
    color: #fff;
}

.place-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.place-card-image {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    padding: 0;
    overflow: hidden;
}

.place-card-image > img {
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.place-card-image > div {
    padding: 24px;
}

.guide-panel {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 44px;
    margin: 0 clamp(18px, 5vw, 72px) clamp(56px, 8vw, 112px);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 50px rgba(17, 28, 25, .08);
}

.premium-cta {
    background:
        linear-gradient(135deg, rgba(17, 28, 25, .96), rgba(86, 111, 95, .92)),
        url('/assets/img/cunda-hero.webp') center/cover;
}

.admin-body {
    background: #eef2ef;
}

.admin-shell {
    grid-template-columns: 292px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(17, 28, 25, .98), rgba(36, 58, 51, .98)),
        var(--ink);
}

.admin-brand {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
}

.admin-brand span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-weight: 900;
}

.admin-brand strong,
.admin-brand small {
    display: block;
}

.admin-brand small {
    color: rgba(255, 255, 255, .62);
}

.admin-sidebar a {
    margin-top: 8px;
    padding: 12px 14px;
}

.admin-main {
    padding: clamp(18px, 3vw, 38px);
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.admin-topbar h1 {
    color: var(--ink);
    font-size: clamp(30px, 4vw, 48px);
}

.admin-preview {
    border: 1px solid var(--line);
}

.admin-card {
    box-shadow: 0 14px 50px rgba(17, 28, 25, .06);
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: start;
}

.admin-dashboard-grid .admin-card {
    max-width: none;
}

.admin-section-title {
    margin: 28px 0 14px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.admin-section-title h2,
.admin-card h2 {
    font-size: 25px;
}

.admin-section-title p,
.admin-card > p,
.admin-insight li {
    color: var(--muted);
}

.admin-nested-card {
    max-width: none;
    background: #fbfaf6;
    box-shadow: none;
}

input:focus,
textarea:focus {
    border-color: var(--sage);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(86, 111, 95, .14);
}

@media (max-width: 940px) {
    .breakfast-section,
    .place-showcase,
    .place-card-image,
    .guide-panel,
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        min-height: auto;
    }

    .admin-sidebar nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .place-card-image > img {
        min-height: 230px;
    }
}

@media (max-width: 620px) {
    .metric-row {
        grid-template-columns: 1fr;
    }

    .image-list article {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .image-list img {
        width: 92px;
    }

    .admin-sidebar nav {
        grid-template-columns: 1fr;
    }
}

/* Typography, blog and white admin refresh */
.main-nav,
.button,
label,
input,
textarea,
.admin-sidebar a,
.stat-grid span {
    font-family: Aptos, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-card {
    overflow: hidden;
    border: 1px solid rgba(35, 31, 26, .1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 52px rgba(36, 31, 25, .06);
}

.blog-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.blog-card > div {
    padding: 22px;
}

.blog-card h2 {
    font-size: 26px;
}

.blog-card p {
    color: var(--muted);
}

.blog-detail .blog-hero {
    background:
        linear-gradient(90deg, rgba(23, 19, 15, .8), rgba(23, 19, 15, .28)),
        var(--blog-image) center/cover;
    color: #fff;
}

.blog-detail .blog-hero h1,
.blog-detail .blog-hero p,
.blog-detail .blog-hero .eyebrow {
    color: #fff;
}

.blog-content {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.blog-content p {
    color: #3f4642;
    font-size: 19px;
    line-height: 1.85;
}

.admin-body {
    background: #f7f8f6;
}

.admin-shell {
    background: #f7f8f6;
}

.admin-sidebar {
    margin: 18px 0 18px 18px;
    min-height: calc(100vh - 36px);
    border: 1px solid rgba(28, 35, 31, .08);
    border-radius: 8px;
    background: #fff;
    color: #24302b;
    box-shadow: 0 18px 55px rgba(28, 35, 31, .08);
}

.admin-brand span {
    background: #24302b;
    color: #fff;
}

.admin-brand small {
    color: #7b8580;
}

.admin-sidebar a {
    color: #5f6864;
}

.admin-sidebar a:hover {
    background: #f1eee8;
    color: #24302b;
}

.admin-topbar,
.admin-card,
.stat-grid article {
    border: 1px solid rgba(28, 35, 31, .08);
    background: #fff;
}

.admin-topbar {
    padding: 20px 22px;
    border-radius: 8px;
    box-shadow: 0 12px 38px rgba(28, 35, 31, .05);
}

.admin-card {
    box-shadow: 0 12px 38px rgba(28, 35, 31, .05);
}

.admin-nested-card {
    background: #fbfbf9;
}

.stat-grid article {
    background: #fff;
}

.stat-grid strong {
    color: #24302b;
}

.admin-login-body {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(247, 248, 246, .94), rgba(241, 238, 232, .96)),
        url('/assets/img/cunda-hero.webp') center/cover;
}

.login-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
}

.login-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 24px;
    width: min(1040px, 100%);
    border: 1px solid rgba(28, 35, 31, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 30px 90px rgba(28, 35, 31, .16);
    overflow: hidden;
}

.login-copy {
    padding: clamp(34px, 6vw, 70px);
}

.login-copy h1 {
    color: #24302b;
    font-size: clamp(38px, 5vw, 64px);
}

.login-copy p:last-child {
    max-width: 560px;
    color: var(--muted);
    font-size: 18px;
}

.login-card {
    display: grid;
    align-content: center;
    padding: clamp(28px, 5vw, 52px);
    background: #fff;
    border-left: 1px solid rgba(28, 35, 31, .08);
}

.login-card h2 {
    margin-bottom: 8px;
    font-size: 34px;
}

.login-card p {
    color: var(--muted);
}

@media (max-width: 940px) {
    .blog-grid,
    .login-panel {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        margin: 0;
        min-height: auto;
        border-radius: 0;
    }

    .login-card {
        border-left: 0;
        border-top: 1px solid rgba(28, 35, 31, .08);
    }
}

/* End-of-file overrides for the latest design pass */
body {
    font-weight: 400;
}

h1,
h2,
h3,
.brand,
.main-nav,
.button,
.nav-cta,
.eyebrow,
.stat-grid strong {
    font-weight: 600 !important;
    letter-spacing: 0;
}

.site-header {
    position: fixed !important;
    top: 16px !important;
    left: 50% !important;
    width: min(1296px, calc(100% - 40px)) !important;
    transform: translateX(-50%) !important;
    border: 1px solid rgba(255, 255, 255, .36) !important;
    border-radius: 10px !important;
    background: rgba(18, 28, 25, .16) !important;
    box-shadow: none !important;
    backdrop-filter: blur(20px) saturate(135%);
}

.site-header.is-scrolled,
body.nav-open .site-header {
    top: 10px !important;
    border-color: rgba(22, 33, 29, .1) !important;
    background: rgba(255, 253, 248, .94) !important;
    box-shadow: 0 18px 50px rgba(22, 33, 29, .12) !important;
}

.site-header .brand,
.site-header .main-nav a {
    color: rgba(255, 255, 255, .9) !important;
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .main-nav a,
body.nav-open .site-header .brand,
body.nav-open .site-header .main-nav a {
    color: var(--ink) !important;
}

.site-header .brand-mark {
    background: rgba(255, 255, 255, .92) !important;
    color: var(--ink) !important;
}

.site-header.is-scrolled .brand-mark,
body.nav-open .site-header .brand-mark {
    background: var(--ink) !important;
    color: #fff !important;
}

.main-nav {
    gap: 8px;
    padding: 4px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .34);
}

.main-nav a {
    border-radius: 7px;
    padding: 10px 14px;
}

.main-nav a:hover,
.main-nav .is-active {
    background: rgba(255, 255, 255, .82);
}

.hero {
    min-height: min(920px, 100svh);
    padding-top: 130px;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(48px, 6.2vw, 92px);
    line-height: .96;
}

.hero-content > p:not(.eyebrow) {
    max-width: 640px;
    font-weight: 400;
}

.hero,
.page-hero {
    margin-top: 0 !important;
    padding-top: clamp(150px, 16vw, 210px) !important;
}

.page-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: end;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(9, 18, 17, .76), rgba(9, 18, 17, .34)),
        var(--page-hero-image, url('/assets/img/cunda-hero.webp')) center/cover !important;
}

.editorial-hero {
    --page-hero-image: url('/assets/img/place-marina.webp');
}

.room-hero {
    --page-hero-image: var(--room-hero-image);
}

.blog-hero {
    --page-hero-image: var(--blog-image);
}

.hero h1,
.hero p,
.hero .eyebrow,
.page-hero h1,
.page-hero p,
.page-hero .eyebrow,
.room-hero h1,
.room-hero p,
.room-hero .eyebrow,
.blog-hero h1,
.blog-hero p,
.blog-hero .eyebrow {
    color: #fff !important;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .22);
}

.hero h1,
.page-hero h1 {
    font-weight: 560 !important;
    line-height: 1 !important;
}

.booking-strip {
    display: none !important;
}

.premium-intro {
    min-height: auto;
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(56px, 8vw, 96px);
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.faq-item {
    border: 1px solid rgba(22, 33, 29, .1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(22, 33, 29, .06);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 22px;
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: "+";
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    place-items: center;
    border-radius: 50%;
    background: #f3eee7;
    color: var(--terracotta);
}

.faq-item[open] summary::before {
    content: "-";
}

.faq-item p {
    margin: 0;
    padding: 0 22px 22px 60px;
}

.blog-grid:not(.compact) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.blog-grid:not(.compact) .blog-card {
    grid-template-columns: 1fr;
}

.blog-grid:not(.compact) .blog-card img {
    aspect-ratio: 16 / 10;
}

.admin-shell {
    grid-template-columns: 278px minmax(0, 1fr) !important;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
}

.admin-sidebar nav {
    display: grid;
    gap: 4px;
}

.admin-sidebar a {
    border-radius: 8px;
    padding: 12px 14px;
}

.admin-image-preview {
    max-width: 260px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    margin: 12px 0;
    border: 1px solid rgba(22, 33, 29, .1);
    border-radius: 8px;
}

.danger-check {
    display: inline-flex;
    width: auto;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: #9b3f31;
}

.danger-check input {
    width: auto;
}

@media (max-width: 980px) {
    .site-header {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        transform: none !important;
        border-width: 0 0 1px 0 !important;
        border-radius: 0 !important;
        background: rgba(18, 28, 25, .22) !important;
    }

    .site-header.is-scrolled,
    body.nav-open .site-header {
        top: 0 !important;
        background: rgba(255, 253, 248, .96) !important;
    }

    .site-header .brand {
        color: #fff !important;
    }

    .site-header.is-scrolled .brand,
    body.nav-open .site-header .brand {
        color: var(--ink) !important;
    }

    .brand {
        min-width: 0;
    }

    .brand > span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 14px;
        right: 14px;
        display: none;
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px;
        border: 1px solid rgba(22, 33, 29, .1);
        background: rgba(255, 253, 248, .98);
        box-shadow: 0 22px 55px rgba(22, 33, 29, .16);
    }

    .main-nav.is-open {
        display: grid !important;
    }

    .main-nav a,
    .nav-cta {
        width: 100%;
        justify-content: flex-start;
        min-height: 46px;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        flex: 0 0 44px;
    }

    .nav-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        margin: 2px 0;
        background: var(--ink);
        border-radius: 99px;
    }

    .hero {
        min-height: 100svh;
        padding: 118px 18px 54px;
    }

    .page-hero {
        min-height: 100svh;
        padding: 118px 18px 54px !important;
    }

    .hero h1 {
        max-width: 10ch;
        font-size: clamp(39px, 12vw, 56px);
        line-height: 1.02;
    }

    .hero-content > p:not(.eyebrow) {
        font-size: 17px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 360px;
    }

    .premium-intro,
    .breakfast-section,
    .split-band {
        grid-template-columns: 1fr;
    }

    .metric-row {
        grid-template-columns: 1fr;
    }

    .faq-list,
    .blog-grid:not(.compact) {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        display: block !important;
    }

    .admin-sidebar {
        position: static;
        width: 100%;
        min-height: auto;
        margin: 0 !important;
        border-radius: 0;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-main {
        padding: 14px !important;
    }

    .admin-topbar,
    .owner-overview,
    .admin-dashboard-grid,
    .dashboard-panels,
    .admin-grid {
        grid-template-columns: 1fr !important;
    }
}

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

    .hero h1 {
        max-width: 9ch;
    }

    .hero .eyebrow {
        max-width: 16ch;
    }

    .premium-intro h2,
    .section-heading h2,
    .page-hero h1 {
        font-size: clamp(32px, 9vw, 44px);
    }

    .admin-sidebar nav {
        grid-template-columns: 1fr;
    }
}

/* Final actual EOF header polish */
.site-header {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.site-header .main-nav,
.site-header:not(.is-scrolled) .main-nav {
    border: 0 !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.site-header .main-nav a {
    font-weight: 500 !important;
    background: transparent !important;
}

.site-header .main-nav a:hover,
.site-header .main-nav .is-active {
    background: rgba(255, 255, 255, .18) !important;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 248, .94) !important;
    box-shadow: 0 12px 34px rgba(18, 28, 25, .08) !important;
    backdrop-filter: blur(18px) !important;
}

.site-header.is-scrolled .main-nav,
body.nav-open .site-header .main-nav {
    background: transparent !important;
    border: 0 !important;
}

.brand {
    font-weight: 500 !important;
}

.hero h1,
.page-hero h1 {
    font-weight: 520 !important;
}

@media (max-width: 980px) {
    .site-header {
        background: transparent !important;
        backdrop-filter: none !important;
    }

    .site-header.is-scrolled,
    body.nav-open .site-header {
        background: rgba(255, 253, 248, .96) !important;
        backdrop-filter: blur(16px) !important;
    }

    .site-header .main-nav {
        border-radius: 10px !important;
        background: rgba(255, 253, 248, .98) !important;
    }
}

/* Final logo/header sizing correction - must stay at EOF */
.site-header {
    min-height: 78px !important;
    padding: 14px clamp(18px, 4vw, 46px) !important;
}

.site-header .brand {
    min-width: 0 !important;
    gap: 14px !important;
    align-items: center !important;
}

.site-header .brand-logo {
    display: block !important;
    width: clamp(178px, 16vw, 260px) !important;
    height: 66px !important;
    max-width: 260px !important;
    object-fit: contain !important;
    object-position: left center !important;
    flex: 0 0 auto !important;
}

.site-header .brand--has-logo > span:last-child {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.site-header .brand > span:last-child {
    font-size: 16px !important;
    font-weight: 520 !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
}

.site-header .nav-toggle {
    width: 50px !important;
    height: 50px !important;
    flex: 0 0 50px !important;
}

.site-header .nav-toggle span {
    width: 21px !important;
    height: 2px !important;
}

@media (max-width: 980px) {
    .site-header {
        min-height: 78px !important;
        padding: 10px 16px !important;
    }

    body:not(.nav-open) .site-header:not(.is-scrolled) {
        background: linear-gradient(180deg, rgba(9, 21, 19, .34), rgba(9, 21, 19, .06)) !important;
    }

    .site-header .brand-logo {
        width: clamp(150px, 40vw, 190px) !important;
        height: 56px !important;
        max-width: 190px !important;
    }

    .site-header .brand > span:last-child {
        font-size: 14px !important;
        max-width: 160px !important;
    }
}

@media (max-width: 430px) {
    .site-header {
        padding-inline: 14px !important;
    }

    .site-header .brand {
        gap: 10px !important;
    }

    .site-header .brand-logo {
        width: 148px !important;
        height: 50px !important;
        max-width: 148px !important;
    }

    .site-header .brand > span:last-child {
        max-width: 118px !important;
        font-size: 13px !important;
    }
}

/* Final scrolled header correction - must stay after logo sizing */
.site-header.is-scrolled,
body.nav-open .site-header {
    min-height: 72px !important;
    background: rgba(255, 253, 248, .96) !important;
    border: 1px solid rgba(21, 32, 28, .08) !important;
    box-shadow: 0 18px 44px rgba(18, 28, 25, .12) !important;
    backdrop-filter: blur(18px) !important;
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .main-nav a,
body.nav-open .site-header .brand,
body.nav-open .site-header .main-nav a {
    color: #15201c !important;
    text-shadow: none !important;
}

.site-header.is-scrolled .brand-logo,
body.nav-open .site-header .brand-logo {
    width: clamp(166px, 15vw, 232px) !important;
    height: 58px !important;
    max-width: 232px !important;
}

.site-header.is-scrolled .main-nav,
body.nav-open .site-header .main-nav {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav .is-active,
body.nav-open .site-header .main-nav a:hover,
body.nav-open .site-header .main-nav .is-active {
    background: rgba(176, 121, 73, .12) !important;
    color: #15201c !important;
    box-shadow: none !important;
}

.site-header.is-scrolled .nav-cta,
body.nav-open .site-header .nav-cta {
    background: #ad7747 !important;
    color: #fff !important;
}

.site-header.is-scrolled .nav-toggle,
body.nav-open .site-header .nav-toggle {
    background: rgba(21, 32, 28, .06) !important;
    color: #15201c !important;
    border: 1px solid rgba(21, 32, 28, .12) !important;
}

.site-header.is-scrolled .nav-toggle span,
body.nav-open .site-header .nav-toggle span {
    background: #15201c !important;
}

@media (max-width: 980px) {
    .site-header.is-scrolled,
    body.nav-open .site-header {
        min-height: 74px !important;
        padding: 9px 14px !important;
    }

    .site-header.is-scrolled .brand-logo,
    body.nav-open .site-header .brand-logo {
        width: clamp(142px, 38vw, 176px) !important;
        height: 52px !important;
        max-width: 176px !important;
    }

    body.nav-open .site-header .main-nav,
    .site-header .main-nav.is-open {
        margin-top: 10px !important;
        padding: 10px !important;
        border-radius: 16px !important;
        background: rgba(255, 253, 248, .98) !important;
        box-shadow: 0 18px 42px rgba(18, 28, 25, .14) !important;
    }
}
