@font-face {
    font-family: Alegreya;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/fonts/alegreya-700.woff2") format("woff2");
}
@font-face {
    font-family: Alegreya;
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("/fonts/alegreya-800.woff2") format("woff2");
}
@font-face {
    font-family: Alegreya;
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url("/fonts/alegreya-500-italic.woff2") format("woff2");
}
@font-face {
    font-family: Figtree;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/figtree-400.woff2") format("woff2");
}
@font-face {
    font-family: Figtree;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/fonts/figtree-600.woff2") format("woff2");
}
@font-face {
    font-family: Figtree;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/fonts/figtree-700.woff2") format("woff2");
}
@font-face {
    font-family: Figtree;
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("/fonts/figtree-400-italic.woff2") format("woff2");
}

:root {
    --ink: #1b1714;
    --plaster: #f3efe6;
    --paper: #e4e8ea;
    --beam: #9e2a2b;
    --pool: #2a7a7c;
    --muted: #5a534c;
    --line: #c9d0d2;
    --wa: #0a5c32;
    --wa-hover: #084a28;
    --star: #f0b429;
    --display: Alegreya, "Palatino Linotype", Palatino, serif;
    --sans: Figtree, "Segoe UI", system-ui, sans-serif;
    --wide: 1120px;
    --sticky: 0px;
    --gutter: clamp(20px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    font-size: 1.05rem;
}

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

h1, h2, h3 {
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.06;
    text-wrap: balance;
    margin: 0 0 0.45em;
}
h1 { font-size: clamp(2.35rem, 6.4vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.55rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; color: var(--muted); }
a { color: var(--pool); }

a:focus-visible,
.btn:focus-visible,
.lang:focus-visible,
.shot:focus-visible,
.lightbox button:focus-visible {
    outline: 3px solid var(--beam);
    outline-offset: 3px;
}

.skip {
    position: absolute;
    left: 12px;
    top: -48px;
    z-index: 10000;
    background: var(--ink);
    color: var(--plaster);
    padding: 10px 14px;
    text-decoration: none;
    font-weight: 700;
}
.skip:focus { top: 12px; }

.wrap {
    width: min(var(--wide), calc(100% - 2 * var(--gutter)));
    margin-inline: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    text-decoration: none;
    font-weight: 700;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease;
}
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-hover); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: rgba(27, 23, 20, 0.35);
}
.btn-ghost:hover { background: rgba(27, 23, 20, 0.05); }
.btn-ghost.on-photo {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(12, 10, 8, 0.28);
}
.btn-ghost.on-photo:hover { background: rgba(12, 10, 8, 0.45); }
.btn-ghost.on-dark {
    color: var(--plaster);
    border-color: rgba(243, 239, 230, 0.45);
}
.btn-ghost.on-dark:hover { background: rgba(243, 239, 230, 0.08); }

.stars { color: var(--star); letter-spacing: 0.12em; line-height: 1; }

/* Photo is the thesis. Type sits in the water, not on a card. */
.hero {
    position: relative;
    height: calc(100svh - var(--sticky));
    min-height: 540px;
    max-height: 880px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 72px var(--gutter) 28px;
    background: #1b1714;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 10, 8, 0.08) 0%,
        rgba(12, 10, 8, 0.04) 45%,
        rgba(12, 10, 8, 0.28) 74%,
        rgba(12, 10, 8, 0.55) 100%
    );
}
.lang {
    position: absolute;
    top: max(16px, env(safe-area-inset-top, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
    z-index: 6;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-copy { position: relative; z-index: 2; width: min(42rem, 100%); }
.hero-copy .brand,
.hero-copy .lede,
.hero-copy .proof,
.hero-copy .proof a,
.hero-copy .proof a:link,
.hero-copy .proof a:visited {
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 2px 12px rgba(0, 0, 0, 0.75);
}
.hero-copy .brand {
    margin: 0 0 8px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.hero-copy h1 {
    color: #fff;
    margin: 0 0 0.28em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85), 0 2px 16px rgba(0, 0, 0, 0.7);
}
.hero-copy .lede {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 10px;
}
.hero-copy .proof {
    margin: 0 0 16px;
    font-size: 0.95rem;
    font-weight: 600;
}
.hero-copy .proof a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border-bottom: none;
}
.hero-copy .stars {
    color: var(--star);
    -webkit-text-fill-color: var(--star);
}
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-actions .btn-ghost { display: none; }

.facts {
    list-style: none;
    margin: 0;
    padding: 16px var(--gutter);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
    background: var(--ink);
    color: var(--plaster);
    font-size: 0.95rem;
}
.facts li { margin: 0; }
.facts b {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.15em;
    margin-right: 4px;
}

.band { padding: 56px 0; }
.band-intro { max-width: 36em; margin-bottom: 28px; }
.quotes .band-intro { max-width: none; }
.abnb-badges {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    max-width: 40em;
}
.abnb-badges li {
    display: grid;
    grid-template-columns: 1.75rem 1fr;
    gap: 10px;
    align-items: start;
}
.abnb-badges-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--star);
    flex: none;
}
.abnb-badges strong {
    display: block;
    font-size: 0.95rem;
}
.abnb-badges span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.92rem;
}

.place { background: var(--plaster); }
.place-copy { max-width: 36em; }

.ways { margin-top: 48px; }

.shots {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.shot {
    position: relative;
    display: block;
    overflow: hidden;
    background: #c5cdcf;
    cursor: zoom-in;
}
.shot img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.shot span {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 3px 8px;
    background: var(--plaster);
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 700;
}

.fit { background: var(--paper); }
.rooms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 10px;
}
.room {
    position: relative;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    cursor: zoom-in;
}
.room img {
    display: block;
    width: 100%;
    height: 156px;
    object-fit: cover;
    background: #c5cdcf;
}
.room .gallery-cap {
    display: block;
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    margin-top: 8px;
    padding: 0;
    background: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
}
.faq {
    margin: 0;
    padding: 0;
}
.faq div {
    padding: 16px 0;
    border-top: 1px solid var(--line);
}
.faq div:last-child { border-bottom: 1px solid var(--line); }
.faq dt {
    margin: 0 0 6px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.15rem;
}
.faq dd {
    margin: 0;
    color: var(--muted);
}

.quotes { background: var(--plaster); }
.quote-grid { display: grid; gap: 14px; }
.quote {
    margin: 0;
    padding: 22px 22px 20px;
    background: var(--paper);
    border-top: 7px solid var(--beam);
    display: flex;
    flex-direction: column;
}
.quote p {
    font-family: var(--display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.12rem;
    color: var(--ink);
}
.quote footer {
    margin-top: auto;
    padding-top: 16px;
    font-style: normal;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ink);
}
.quote footer span {
    display: block;
    margin-top: 2px;
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--muted);
}
.more {
    display: inline-block;
    margin-top: 24px;
    font-weight: 700;
    color: var(--ink);
}

.book {
    padding: 64px var(--gutter) 72px;
    text-align: center;
    background: var(--ink);
    color: var(--plaster);
}
.book h2 { color: var(--plaster); }
.book p {
    max-width: 32em;
    margin: 0 auto 1.2em;
    color: #c9c2b8;
}
.book-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.site-foot {
    background: var(--ink);
    color: #a8a29a;
    padding: 0 0 var(--sticky);
    font-size: 0.9rem;
    border-top: 1px solid rgba(243, 239, 230, 0.08);
}
.foot-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 24px;
    padding: 22px 0 28px;
}
.site-foot a { color: var(--plaster); }

.dock {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--plaster);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 40;
}
.dock .btn { padding: 10px 18px; }
.dock b { display: block; font-size: 0.95rem; }
.dock small { display: block; font-size: 0.75rem; color: var(--muted); }
body:has(.lightbox[open]) .dock { display: none; }

.page-404 {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 48px 20px 80px;
    background: var(--paper);
}
.hero-card {
    width: min(560px, 100%);
    background: var(--plaster);
    color: var(--ink);
    padding: 28px 28px 26px;
}
.hero-card::before {
    content: "";
    display: block;
    height: 8px;
    background: var(--beam);
    margin: -28px -28px 22px;
}
.hero-card .kicker {
    margin: 0 0 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--beam);
}
.hero-card .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    flex-direction: row;
}
.hero-card .wa-note { margin: 12px 0 0; font-weight: 600; }

.lightbox {
    width: min(1100px, calc(100vw - 24px));
    height: min(90vh, 860px);
    max-height: 90vh;
    padding: 0;
    border: 0;
    background: #111;
    color: #fff;
    overflow: hidden;
}
.lightbox[open] { display: flex; flex-direction: column; }
.lightbox::backdrop { background: rgba(12, 10, 9, 0.88); }
.lightbox-stage {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lightbox-stage img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.lightbox-bar {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #1b1714;
    font-size: 0.9rem;
    z-index: 3;
}
.lightbox-cap {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lightbox-count { flex: 0 0 auto; font-variant-numeric: tabular-nums; }
.lightbox-bar p { margin: 0; color: #ddd6cc; }
.lightbox button {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 0;
    padding: 10px 14px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.lightbox button:hover { background: rgba(255, 255, 255, 0.18); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    padding: 0;
    display: grid;
    place-items: center;
    background: rgba(12, 10, 8, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.28);
}
.lightbox-nav:hover { background: rgba(12, 10, 8, 0.78); }
.lightbox-nav svg { display: block; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-close { flex: 0 0 auto; }

@media (min-width: 700px) {
    .hero-actions { flex-direction: row; justify-content: center; }
    .hero-actions .btn-ghost { display: inline-flex; }
    .shots { grid-template-columns: 1fr 1fr; }
    .shot:first-child { grid-column: span 2; }
    .shot:first-child img { height: 360px; }
    .rooms {
        grid-template-columns: repeat(6, 1fr);
        grid-template-areas:
            "r1 r1 r1 r2 r2 r2"
            "r3 r3 r4 r4 r5 r5";
        gap: 22px 14px;
    }
    .room:nth-child(1) { grid-area: r1; }
    .room:nth-child(2) { grid-area: r2; }
    .room:nth-child(3) { grid-area: r3; }
    .room:nth-child(4) { grid-area: r4; }
    .room:nth-child(5) { grid-area: r5; }
    .room img { height: 200px; }
    .room:nth-child(1) img,
    .room:nth-child(2) img { height: 260px; }
    .quote-grid { grid-template-columns: 1fr 1fr; }
    .abnb-badges { grid-template-columns: 1fr 1fr; max-width: 44em; }
    .faq {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 48px;
        align-items: start;
    }
    .faq div:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (min-width: 1025px) {
    .dock { display: none !important; }
    .site-foot { padding-bottom: 8px; }
    .shots { grid-template-columns: repeat(6, 1fr); }
    .shot:first-child { grid-column: span 4; }
    .shot:nth-child(2) { grid-column: span 2; }
    .shot:nth-child(3),
    .shot:nth-child(4),
    .shot:nth-child(5),
    .shot:nth-child(6) { grid-column: span 3; }
    .shot img { height: 240px; }
    .shot:first-child img,
    .shot:nth-child(2) img { height: 360px; }
    .shot img { transition: transform 0.4s ease; }
    .shot:hover img { transform: scale(1.03); }
    .room img { height: 210px; }
    .room:nth-child(1) img,
    .room:nth-child(2) img { height: 300px; }
    .quote-grid { grid-template-columns: 1fr 1fr; }
    .hero { height: 88vh; }
    .band { padding: 72px 0; }
}

@media (max-width: 1024px) {
    :root { --sticky: calc(68px + env(safe-area-inset-bottom, 0px)); }
    .hero-copy .brand { display: none; }
    .lightbox {
        width: 100vw;
        max-width: 100vw;
        height: 100dvh;
        max-height: 100dvh;
        margin: 0;
    }
    .lightbox-bar { padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px)); }
}

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