:root {
    --ink:#193b35;
    --muted:#72817a;
    --paper:#f4f5f0;
    --line:#e2e7df;
    --white:#fff;
    --sage:#e7eee1;
    --gold:#dfbd7c;
    --danger:#a13d37;
    --radius:14px
}
* {
    box-sizing:border-box
}
html {
    scroll-behavior:smooth
}
body {
    margin:0;
    color:var(--ink);
    background:var(--paper);
    font:14px/1.5 -apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif
}
a {
    color:inherit;
    text-decoration:none
}
a:hover {
    text-decoration:underline
}
button,input,select,textarea {
    font:inherit
}
button,.button {
    border:0;
    border-radius:8px;
    background:var(--ink);
    color:white;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 19px;
    cursor:pointer;
    font-weight:600;
    line-height:1.4;
    text-decoration:none;
    gap:8px
}
button:hover,.button:hover {
    background:#285348;
    text-decoration:none
}
button:disabled {
    opacity:.6;
    cursor:wait
}
.secondary {
    background:#edf1e8;
    color:var(--ink);
    border:1px solid #dbe3d6
}
.secondary:hover {
    background:#dee7d7
}
.text-button {
    padding:7px 0;
    background:none;
    color:var(--muted);
    font-size:12px
}
.text-button:hover {
    background:none;
    color:var(--ink)
}
:focus-visible {
    outline:3px solid #ba9147;
    outline-offset:3px
}
h1,h2,h3,p {
    margin:0 0 14px
}
h1 {
    font-size:32px;
    letter-spacing:-1.2px;
    line-height:1.18;
    font-weight:600
}
h2 {
    font-size:20px;
    letter-spacing:-.5px;
    font-weight:600
}
h3 {
    font-size:16px;
    font-weight:600
}
small {
    font-size:11px;
    color:var(--muted)
}
.eyebrow {
    font-size:10px;
    letter-spacing:2px;
    font-weight:700;
    color:#798778;
    margin-bottom:14px
}
.muted,.subtitle {
    color:var(--muted)
}
.subtitle {
    margin-top:-12px;
    margin-bottom:28px
}
.sidebar {
    position:fixed;
    inset:0 auto 0 0;
    width:232px;
    padding:28px 18px;
    background:#fff;
    border-right:1px solid var(--line);
    display:flex;
    flex-direction:column;
    overflow:auto
}
.logo {
    font-size:27px;
    font-weight:650;
    letter-spacing:-1.2px;
    display:flex;
    align-items:center;
    gap:8px;
    margin:0 10px 28px
}
.logo img {
    width:33px
}
.logo span {
    font-size:9px;
    letter-spacing:1px;
    align-self:flex-start;
    margin-top:8px;
    color:var(--muted)
}
.property-switch {
    padding:15px 10px;
    border:1px solid var(--line);
    border-radius:9px;
    display:flex;
    gap:10px;
    align-items:center;
    font-size:12px;
    margin-bottom:28px
}
.property-switch small,.account small {
    display:block
}
.dot {
    width:9px;
    height:9px;
    border-radius:50%;
    background:#75a18a
}
.nav-label {
    font-size:9px;
    letter-spacing:1.7px;
    padding:0 12px;
    margin-bottom:10px
}
.sidebar nav {
    display:flex;
    flex-direction:column;
    gap:3px
}
.sidebar nav a {
    padding:10px 14px;
    border-radius:7px;
    color:#6b7a73;
    font-size:12px;
    display:flex;
    gap:14px;
    align-items:center
}
.sidebar nav a span {
    width:18px;
    text-align:center;
    font-size:18px;
    line-height:20px
}
.sidebar nav .active {
    background:var(--ink);
    color:white
}
.sidebar nav a:hover {
    text-decoration:none;
    background:#edf1e8;
    color:var(--ink)
}
.sidebar-bottom {
    margin-top:auto;
    padding:28px 10px 0;
    font-size:11px
}
.account {
    display:flex;
    gap:10px;
    align-items:center;
    margin:22px 0 6px
}
.account>span {
    display:grid;
    place-items:center;
    background:var(--sage);
    width:34px;
    height:34px;
    border-radius:50%;
    font-weight:700
}
.workspace {
    margin-left:232px
}
.topbar {
    height:76px;
    background:#fff;
    border-bottom:1px solid var(--line);
    padding:0 38px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:11px;
    color:#879187
}
.topbar b {
    font-weight:500;
    color:var(--ink)
}
.today {
    border:1px solid var(--line);
    border-radius:6px;
    padding:7px 13px
}
.page-body {
    padding:34px 36px;
    max-width:1680px;
    margin:auto
}
.page-heading {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:26px
}
.page-heading h1 {
    margin:0
}
.page-heading .button {
    font-size:12px
}
.stats {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:17px;
    margin-bottom:26px
}
.stats article {
    border:1px solid var(--line);
    border-radius:var(--radius);
    background:white;
    padding:23px
}
.stats article>span {
    font-size:11px;
    color:var(--muted);
    display:block
}
.stats strong {
    display:block;
    font-size:39px;
    font-weight:550;
    letter-spacing:-1.6px;
    margin:16px 0 9px
}
.stats em {
    font-size:23px;
    font-style:normal;
    margin-left:2px
}
.stats a {
    font-size:11px
}
.stats .currency {
    font-size:29px
}
.panel {
    background:#fff;
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:24px;
    margin-bottom:24px
}
.panel>p {
    color:var(--muted);
    font-size:12px
}
.panel-heading,.section-title {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:20px
}
.panel-heading h2 {
    margin:0
}
.panel-heading a {
    font-size:11px;
    color:var(--muted)
}
.dashboard-grid {
    display:grid;
    grid-template-columns:minmax(0,2.7fr) minmax(250px,1fr);
    gap:24px
}
.sage {
    background:var(--sage);
    border-color:#dbe3d4
}
.sage h2 {
    font-size:27px;
    line-height:1.25;
    margin:22px 0
}
.sage p {
    line-height:1.8
}
.inventory-numbers {
    display:flex;
    gap:26px;
    border-top:1px solid #cad6c2;
    margin:26px 0;
    padding-top:18px
}
.inventory-numbers strong {
    font-size:31px;
    font-weight:500
}
.inventory-numbers small {
    display:block;
    font-size:10px;
    letter-spacing:0
}
.sage a {
    font-size:12px
}
table {
    width:100%;
    border-collapse:collapse;
    text-align:left;
    white-space:nowrap
}
th {
    font-size:10px;
    letter-spacing:.3px;
    color:var(--muted);
    font-weight:500;
    background:#f8f9f5
}
td,th {
    padding:16px 12px;
    border-bottom:1px solid var(--line)
}
td {
    font-size:12px
}
td strong {
    font-weight:600
}
td small {
    display:block;
    margin-top:3px
}
td a {
    font-size:11px
}
tr:last-child td {
    border-bottom:0
}
.table-wrap {
    overflow:auto;
    max-width:100%
}
.badge {
    font-size:10px;
    padding:4px 9px;
    border-radius:5px;
    white-space:nowrap;
    display:inline-block;
    background:#eef0ed;
    color:#66736a
}
.badge.confirmed,.badge.done,.badge.accepted,.badge.ok,.badge.submitted {
    color:#326346;
    background:#e7f0e1
}
.badge.pending,.badge.queued,.badge.new {
    color:#a27425;
    background:#faf1db
}
.badge.checked_in,.badge.working {
    color:#466588;
    background:#e7eff7
}
.badge.cancelled,.badge.error,.badge.conflict,.badge.review {
    color:#9a413c;
    background:#fae7e2
}
.channel {
    font-size:11px
}
.empty {
    text-align:center;
    padding:45px 15px;
    color:var(--muted)
}
.empty-icon {
    font-size:32px;
    display:block;
    color:#b5c4b2
}
.empty h3 {
    color:var(--ink);
    margin:14px 0 7px
}
.empty p {
    font-size:12px
}
.notice {
    padding:15px 18px;
    border:1px solid #eadfbf;
    background:#fff8e7;
    border-radius:9px;
    color:#7f6a38;
    margin-bottom:23px;
    font-size:12px;
    line-height:1.7
}
.notice.error {
    border-color:#e8b8b3;
    color:#89342f;
    background:#fff0ed
}
.notice.success {
    background:#edf5e8;
    border-color:#cddfbf;
    color:#416b36
}
.form-grid {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    align-items:end
}
.form-grid button {
    justify-self:start
}
.form-grid p {
    grid-column:1/-1
}
.form-grid .wide,.form-grid .check {
    grid-column:1/-1
}
label {
    display:flex;
    flex-direction:column;
    gap:7px;
    font-size:11px;
    color:#697a70;
    font-weight:500
}
input,textarea,select {
    width:100%;
    border:1px solid #dce3d8;
    border-radius:7px;
    padding:11px 12px;
    background:#fff;
    color:var(--ink);
    min-width:0
}
textarea {
    resize:vertical
}
.check {
    flex-direction:row;
    align-items:flex-start;
    font-weight:400
}
.check input {
    width:16px;
    height:16px;
    flex-shrink:0;
    margin-top:1px;
    accent-color:var(--ink)
}
.inline,.actions {
    display:flex;
    gap:10px;
    align-items:end;
    flex-wrap:wrap
}
.inline label {
    flex:1
}
.filter {
    display:flex;
    gap:15px;
    align-items:end;
    margin-bottom:24px;
    flex-wrap:wrap
}
.filter label {
    min-width:160px
}
.filter a {
    align-self:center;
    font-size:12px
}
.unit-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px
}
.unit-grid .panel {
    margin:0
}
.unit-grid .form-grid {
    grid-template-columns:1fr
}
.calendar th {
    min-width:52px;
    text-align:center
}
.calendar th:first-child {
    min-width:190px;
    text-align:left;
    position:sticky;
    left:0
}
.calendar td {
    text-align:center;
    border:4px solid white;
    border-radius:8px
}
.calendar .busy {
    background:#dee9d6;
    color:#53784c
}
.calendar .free {
    background:#fafbf7;
    color:#d6dfd1
}
.calendar-key {
    display:flex;
    gap:20px;
    color:var(--muted);
    font-size:11px;
    margin-bottom:16px
}
.kanban {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
    margin-bottom:24px
}
.kanban-column {
    background:#ebeee7;
    padding:17px;
    border-radius:12px;
    min-height:200px
}
.kanban-column>h2 {
    font-size:14px;
    display:flex;
    justify-content:space-between
}
.task-card {
    background:white;
    border:1px solid var(--line);
    border-radius:9px;
    padding:18px;
    margin-top:14px
}
.task-card p {
    font-size:12px
}
.task-card .inline {
    margin-top:12px
}
.task-card button {
    font-size:10px;
    padding:10px
}
.task-card label {
    font-size:10px
}
.task-card select {
    padding:8px
}
.line-item {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    padding:15px 0;
    border-bottom:1px solid var(--line)
}
.line-item small {
    display:block;
    max-width:600px
}
.line-item progress {
    accent-color:var(--ink);
    width:50%;
    height:12px
}
.source-row {
    display:flex;
    justify-content:space-between;
    gap:18px;
    border-top:1px solid var(--line);
    padding:20px 0
}
.source-row p {
    font-size:12px;
    margin:10px 0
}
.feed-row {
    display:grid;
    grid-template-columns:180px 1fr auto;
    align-items:center;
    gap:16px;
    border-bottom:1px solid var(--line);
    padding:15px 0
}
.feed-row strong,.feed-row input {
    font-size:11px
}
details>summary {
    cursor:pointer;
    font-weight:600
}
details[open]>summary {
    margin-bottom:20px
}
.site-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1280px;
    margin:auto;
    padding:26px 40px
}
.site-brand {
    display:flex;
    align-items:center;
    gap:12px;
    font-size:20px;
    font-weight:600;
    letter-spacing:-.5px
}
.site-brand img {
    width:36px
}
.site-header nav {
    display:flex;
    gap:30px;
    align-items:center;
    font-size:12px
}
.outline-link {
    border:1px solid #bfcdbb;
    border-radius:6px;
    padding:10px 15px
}
.site-main {
    max-width:1280px;
    margin:auto;
    padding:0 40px
}
.hero {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    padding:65px 0 70px
}
.hero h1 {
    font-family:Georgia,serif;
    font-size:62px;
    line-height:1.06;
    letter-spacing:-2.5px;
    font-weight:400;
    max-width:550px
}
.hero p {
    font-size:15px;
    line-height:1.9;
    color:#6d7b71;
    max-width:430px;
    margin:26px 0 30px
}
.hero-details {
    display:flex;
    gap:23px;
    border-top:1px solid #d8dfd3;
    margin-top:45px;
    padding-top:20px;
    font-size:10px;
    letter-spacing:.5px
}
.house-art {
    padding:30px;
    background:#e4e8d8;
    border-radius:150px 150px 18px 18px;
    min-height:410px;
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:inset 0 0 0 8px #e9ecdf
}
.art-label {
    letter-spacing:2px;
    font-size:9px;
    text-align:center;
    color:#839078;
    margin:20px 0 25px
}
.floorplan {
    display:grid;
    grid-template-columns:1.25fr 1fr;
    gap:9px;
    padding:12px;
    border:2px solid #93a486;
    border-radius:8px;
    background:#f6f4e9;
    transform:rotate(-3deg);
    box-shadow:8px 12px 0 #bac5a84d
}
.plan-room {
    border:2px solid #a9b69e;
    padding:16px 12px;
    text-align:center
}
.plan-room>span {
    font-size:9px;
    letter-spacing:1.7px
}
.bunk-pair,.single-pair {
    display:flex;
    gap:12px;
    justify-content:center;
    margin:20px 0
}
.bunk-pair i,.single-pair i {
    font-style:normal;
    border:2px solid #a8b59b;
    width:50px;
    height:78px;
    border-radius:7px;
    background:#d2dbbd;
    color:#7a8a6e;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:35px;
    box-shadow:inset 0 13px #eeeddb;
    font-size:10px
}
.single-pair i {
    width:34px;
    background:#e9d4ac;
    box-shadow:inset 0 13px #f3e6ca
}
.plan-room small {
    font-size:9px
}
.plan-common {
    grid-column:1/-1;
    padding:15px;
    text-align:center;
    border:1px dashed #acb79c;
    font-size:10px;
    letter-spacing:2px
}
.plan-common span {
    display:block;
    font-size:9px;
    letter-spacing:0;
    margin-top:5px;
    color:var(--muted)
}
.art-caption {
    text-align:center;
    font-size:10px;
    margin-top:23px;
    color:#77866d
}
.search-panel {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    background:white;
    border:1px solid var(--line);
    border-radius:12px;
    padding:27px 30px;
    margin-bottom:65px
}
.search-panel h2 {
    margin:0;
    font-size:21px
}
.search-panel .eyebrow {
    margin-bottom:7px
}
.search-form {
    display:flex;
    gap:14px;
    align-items:end
}
.search-form label {
    min-width:145px
}
.section-title h2 {
    font-family:Georgia,serif;
    font-size:34px;
    font-weight:400
}
.section-title p {
    color:var(--muted);
    font-size:12px
}
.stay-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px
}
.stay-card {
    background:#fff;
    border:1px solid var(--line);
    border-radius:13px;
    overflow:hidden
}
.stay-illustration {
    height:140px;
    background:#e9eddf;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:25px 30px
}
.stay-illustration.house {
    background:#dce5d4
}
.stay-illustration.room {
    background:#eee5d4
}
.stay-illustration span {
    font-size:65px;
    color:#6f8564;
    line-height:1
}
.stay-illustration small {
    letter-spacing:1px;
    font-size:10px;
    text-transform:uppercase;
    max-width:70px
}
.stay-content {
    padding:23px
}
.stay-content h3 {
    font-size:18px;
    margin-bottom:5px
}
.stay-content>p {
    font-size:12px;
    color:var(--muted)
}
.price-line {
    display:flex;
    align-items:center;
    gap:7px;
    margin:23px 0 18px
}
.price-line strong {
    font-size:22px;
    font-weight:500
}
.price-line span {
    font-size:11px;
    color:var(--muted)
}
.underlink {
    font-size:12px;
    text-decoration:underline;
    text-underline-offset:5px
}
.booking-form {
    grid-template-columns:1fr;
    margin-top:20px
}
.booking-form p {
    font-size:11px
}
.unavailable {
    font-size:12px;
    color:#ae655c
}
.contact-panel {
    margin:60px 0;
    background:var(--sage);
    padding:40px;
    border-radius:14px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px
}
.contact-panel h2 {
    font-size:27px;
    font-family:Georgia,serif;
    font-weight:400
}
.contact-panel p {
    font-size:12px;
    line-height:1.9;
    color:var(--muted)
}
.contact-panel strong {
    font-size:12px
}
.site-footer {
    border-top:1px solid var(--line);
    max-width:1200px;
    margin:auto;
    padding:25px 0;
    display:flex;
    justify-content:space-between;
    gap:15px;
    font-size:11px;
    color:var(--muted)
}
.auth {
    max-width:520px;
    margin:65px auto;
    padding:36px
}
.auth .form-grid {
    grid-template-columns:1fr
}
.auth h1 {
    font-family:Georgia,serif;
    font-weight:400;
    font-size:38px;
    margin-bottom:25px
}
.auth p {
    font-size:13px
}
dl {
    display:grid;
    grid-template-columns:1fr 1.5fr;
    gap:15px;
    margin:26px 0;
    font-size:12px
}
dt {
    color:var(--muted)
}
dd {
    margin:0
}
.trap {
    display:none!important
}
@media(min-width:1500px) {
    .page-body {
        padding:42px 50px
    }
}
@media(max-width:1150px) {
    .sidebar {
        width:205px
    }
    .workspace {
        margin-left:205px
    }
    .page-body {
        padding:25px
    }
    .stats {
        grid-template-columns:repeat(2,1fr)
    }
    .dashboard-grid {
        grid-template-columns:1fr
    }
    .unit-grid {
        grid-template-columns:repeat(2,1fr)
    }
    .hero {
        gap:35px
    }
    .hero h1 {
        font-size:48px
    }
    .search-panel {
        flex-direction:column;
        align-items:stretch
    }
    .kanban {
        gap:12px
    }
    .stay-grid {
        grid-template-columns:repeat(2,1fr)
    }
}
@media(max-width:760px) {
    .sidebar {
        position:static;
        width:100%;
        padding:14px;
        border-right:0;
        border-bottom:1px solid var(--line)
    }
    .logo {
        margin:0 0 12px;
        font-size:22px
    }
    .logo img {
        width:28px
    }
    .property-switch,.nav-label,.sidebar-bottom {
        display:none
    }
    .sidebar nav {
        flex-direction:row;
        overflow:auto;
        gap:6px
    }
    .sidebar nav a {
        white-space:nowrap;
        padding:8px 10px;
        font-size:11px
    }
    .sidebar nav a span {
        display:none
    }
    .workspace {
        margin-left:0
    }
    .topbar {
        height:50px;
        padding:0 20px
    }
    .page-body {
        padding:24px 16px
    }
    .page-heading {
        align-items:flex-start
    }
    .page-heading h1 {
        font-size:25px
    }
    .page-heading .button {
        font-size:10px;
        padding:9px;
        white-space:nowrap
    }
    .stats {
        gap:10px
    }
    .stats article {
        padding:16px
    }
    .stats strong {
        font-size:32px
    }
    .stats .currency {
        font-size:22px
    }
    .panel {
        padding:18px
    }
    .form-grid,.unit-grid,.kanban {
        grid-template-columns:1fr
    }
    .feed-row {
        grid-template-columns:1fr
    }
    .source-row {
        flex-direction:column
    }
    .site-header {
        padding:20px
    }
    .site-header nav {
        gap:12px
    }
    .site-header nav a:not(.outline-link) {
        display:none
    }
    .site-brand {
        font-size:16px
    }
    .site-main {
        padding:0 20px
    }
    .hero {
        grid-template-columns:1fr;
        padding:35px 0;
        gap:30px
    }
    .hero h1 {
        font-size:47px
    }
    .hero p {
        margin:20px 0
    }
    .hero-details {
        margin-top:30px
    }
    .house-art {
        min-height:340px;
        padding:22px;
        max-width:460px;
        width:100%;
        margin:auto
    }
    .search-panel {
        padding:20px;
        margin-bottom:40px;
        gap:18px
    }
    .search-form {
        flex-wrap:wrap
    }
    .search-form label {
        min-width:115px;
        flex:1
    }
    .search-form button {
        width:100%
    }
    .section-title {
        display:block
    }
    .section-title h2 {
        font-size:29px
    }
    .stay-grid {
        grid-template-columns:1fr
    }
    .stay-illustration {
        height:120px
    }
    .contact-panel {
        grid-template-columns:1fr;
        gap:20px;
        padding:25px;
        margin:40px 0
    }
    .site-footer {
        margin:0 20px;
        flex-wrap:wrap
    }
    .auth {
        margin:35px auto;
        padding:25px
    }
    .panel-heading {
        flex-wrap:wrap
    }
    .line-item {
        flex-wrap:wrap
    }
}
@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior:auto
    }
}
.payment-box {
    border:1px solid #ceddbe;
    background:#f2f6eb;
    padding:20px;
    border-radius:10px;
    margin:22px 0
}
.payment-box small {
    display:block;
    margin-top:12px
}
.payment-box p {
    font-size:12px
}
.access-card {
    border-top:1px solid var(--line);
    padding:24px 0
}
.access-pin {
    font-size:32px;
    letter-spacing:8px;
    font-family:monospace;
    margin:15px 0
}
.access-pin small {
    display:block;
    font:10px/1.5 sans-serif;
    letter-spacing:1px;
    margin-top:8px
}
.access-card details {
    margin:20px 0
}
.stay-photo {
    width:100%;
    height:240px;
    object-fit:cover;
    display:block
}
.stay-card:has(.stay-photo) .stay-illustration {
    display:none
}
.media-preview {
    max-width:100%;
    width:320px;
    max-height:240px;
    object-fit:contain
}
.site-brand img {
    max-width:140px;
    width:auto;
    height:48px;
    object-fit:contain
}
