/* ==========================================================================
   Rentals360 marketing site
   Layered over Bootstrap 5.3. Palette: pounamu green + road-marking amber.
   ========================================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
    font-family: "Bricolage Grotesque";
    src: url("../fonts/bricolage-grotesque-latin-wght-normal.woff2") format("woff2");
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}
@font-face { font-family: "Instrument Sans"; src: url("../fonts/instrument-sans-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("../fonts/instrument-sans-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("../fonts/instrument-sans-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("../fonts/instrument-sans-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
    --brand: #0d4a42;
    --brand-dark: #08302b;
    --brand-mid: #1a6b5f;
    --mist: #e6f0ed;
    --paper: #f7f9f8;
    --surface: #ffffff;
    --ink: #10201d;
    --muted: #506461;
    --line: #d3e0dc;
    --amber: #f5b301;
    --amber-soft: #fff1c9;
    --amber-ink: #5e4200;
    --grey-chip: #e9eeed;

    --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-body: "Instrument Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

    --radius: 14px;
    --shadow: 0 30px 60px -32px rgba(13, 74, 66, .38), 0 2px 6px rgba(13, 74, 66, .06);

    --bs-body-font-family: var(--font-body);
    --bs-body-color: var(--ink);
    --bs-body-bg: var(--paper);
    --bs-link-color: var(--brand);
    --bs-link-hover-color: var(--brand-dark);
    --bs-border-color: var(--line);
    --bs-breadcrumb-divider-color: var(--muted);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--ink);
}
h5, h6, .h5, .h6 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }
h1, .h2, h2, .lead { text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 1.5rem + 3.6vw, 4rem); line-height: 1.04; letter-spacing: -0.03em; font-weight: 650; }
.h2, h2 { font-size: clamp(1.7rem, 1.25rem + 1.6vw, 2.5rem); }
.h3, h3 { font-size: 1.35rem; }
p { max-width: 68ch; }
a { text-underline-offset: 3px; }
.text-muted { color: var(--muted) !important; }
::selection { background: var(--amber); color: #2a1f00; }

:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }
.cta-band :focus-visible, .site-footer :focus-visible { outline-color: #fff; }

.container { max-width: 1200px; }

.skip-link {
    position: absolute; top: .5rem; left: .5rem; z-index: 2000;
    background: var(--surface); color: var(--brand); padding: .6rem 1rem; border-radius: 8px; font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn { font-weight: 600; border-radius: 10px; padding: .6rem 1.15rem; }
.btn-lg { padding: .8rem 1.5rem; font-size: 1.05rem; border-radius: 12px; }
.btn-sm { padding: .45rem .9rem; font-size: .9rem; }
.btn-primary {
    --bs-btn-bg: var(--brand); --bs-btn-border-color: var(--brand); --bs-btn-color: #fff;
    --bs-btn-hover-bg: var(--brand-dark); --bs-btn-hover-border-color: var(--brand-dark); --bs-btn-hover-color: #fff;
    --bs-btn-active-bg: var(--brand-dark); --bs-btn-active-border-color: var(--brand-dark); --bs-btn-active-color: #fff;
    --bs-btn-focus-shadow-rgb: 13, 74, 66;
}
.btn-accent {
    --bs-btn-bg: var(--amber); --bs-btn-border-color: var(--amber); --bs-btn-color: #2a1f00;
    --bs-btn-hover-bg: #ffc61f; --bs-btn-hover-border-color: #ffc61f; --bs-btn-hover-color: #2a1f00;
    --bs-btn-active-bg: #e6a700; --bs-btn-active-border-color: #e6a700; --bs-btn-active-color: #2a1f00;
}
.btn-outline-dark {
    --bs-btn-color: var(--ink); --bs-btn-border-color: #9fb3ae;
    --bs-btn-hover-bg: var(--ink); --bs-btn-hover-border-color: var(--ink); --bs-btn-hover-color: #fff;
    --bs-btn-active-bg: var(--ink); --bs-btn-active-border-color: var(--ink);
}
.btn-outline-light { --bs-btn-border-color: rgba(255, 255, 255, .55); --bs-btn-hover-color: var(--brand-dark); }

.text-link {
    font-weight: 600; color: var(--brand);
    text-decoration: underline; text-decoration-color: var(--amber); text-decoration-thickness: 3px; text-underline-offset: 5px;
}
.text-link:hover { color: var(--brand-dark); text-decoration-color: var(--brand-dark); }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 1030;
    background: rgba(247, 249, 248, .9);
    -webkit-backdrop-filter: saturate(1.4) blur(10px); backdrop-filter: saturate(1.4) blur(10px);
    border-bottom: 1px solid var(--line);
}
.site-header .navbar { padding: .7rem 0; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.03em; color: var(--brand); }
.brand-light .brand-name { color: #fff; }
.navbar-toggler { border: 0; padding: .25rem .4rem; font-size: 1.75rem; line-height: 1; color: var(--ink); }
.navbar-toggler:focus { box-shadow: none; }
.navbar .nav-link { font-weight: 500; color: var(--ink); padding: .5rem .9rem; }
.navbar .nav-link:hover { color: var(--brand); }
.navbar .nav-link.active {
    color: var(--brand); font-weight: 600;
    text-decoration: underline; text-decoration-color: var(--amber); text-decoration-thickness: 3px; text-underline-offset: 8px;
}
.nav-login { font-weight: 600; color: var(--ink); text-decoration: none; padding: .5rem .25rem; }
.nav-login:hover { color: var(--brand); }

.dropdown-menu.nav-features {
    border: 1px solid var(--line); border-radius: 16px; padding: .6rem;
    box-shadow: 0 24px 48px -24px rgba(13, 74, 66, .35);
    min-width: 22rem;
}
.nav-features .dropdown-item { display: flex; gap: .85rem; align-items: flex-start; padding: .6rem .7rem; border-radius: 10px; white-space: normal; }
.nav-features .dropdown-item:hover, .nav-features .dropdown-item:focus { background: var(--mist); }
.nav-features .dropdown-item > i {
    flex: 0 0 auto; width: 2.1rem; height: 2.1rem; display: grid; place-items: center;
    background: var(--mist); color: var(--brand); border-radius: 9px; font-size: 1.05rem;
}
.nav-features .dropdown-item:hover > i { background: #fff; }
.nav-features strong { display: block; font-weight: 600; line-height: 1.3; }
.nav-features small { display: block; color: var(--muted); font-size: .84rem; line-height: 1.35; margin-top: .1rem; }

@media (max-width: 991.98px) {
    .navbar-collapse { padding-top: .75rem; }
    .dropdown-menu.nav-features { box-shadow: none; border: 0; padding: 0 0 0 .5rem; min-width: 0; }
    .nav-features small { display: none; }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.25rem, 6vw, 6rem); }
.section-tint { background: var(--mist); border-block: 1px solid var(--line); }

.hero { padding-top: clamp(2.75rem, 6vw, 5.5rem); padding-bottom: clamp(3rem, 6vw, 5.5rem); }
.hero-copy { max-width: 47rem; }
.hero .lead, .page-hero .lead { font-size: clamp(1.1rem, 1rem + .4vw, 1.3rem); line-height: 1.55; color: #33463f; margin-top: 1.25rem; max-width: 40rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-note { margin: 1.25rem 0 0; font-size: .95rem; color: var(--muted); }
.hero-board { margin-top: clamp(2.25rem, 5vw, 3.75rem); }
.board-caption { margin: .9rem 0 0; font-size: .9rem; color: var(--muted); }

.page-hero { padding-top: clamp(2.25rem, 4.5vw, 4rem); padding-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.page-hero h1 { font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.4rem); max-width: 22ch; }
.page-hero .row h1 { max-width: none; }

.crumbs .breadcrumb { font-size: .9rem; margin-bottom: 1.25rem; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--brand); text-decoration: underline; }
.crumbs .active { color: var(--ink); }

/* ---------- Fleet board (hero product view) ---------- */
.board, .mock {
    background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
    box-shadow: var(--shadow); overflow: hidden;
}
.board-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem 2rem; padding: .85rem 1.15rem; border-bottom: 1px solid var(--line); }
.board-title { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; display: flex; gap: .55rem; align-items: center; }
.board-title i { color: var(--brand); }
.board-stats { display: flex; flex-wrap: wrap; gap: .4rem 1.75rem; margin: 0; }
.board-stats div { display: flex; align-items: baseline; gap: .45rem; }
.board-stats dt { font-weight: 500; font-size: .85rem; color: var(--muted); }
.board-stats dd { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--brand); }

.board-scroll { overflow-x: auto; overflow-y: hidden; }
.board-grid { min-width: 52rem; }
.board-row {
    display: grid; grid-template-columns: 9.75rem repeat(var(--days), minmax(0, 1fr));
    border-bottom: 1px solid var(--line); min-height: 3.05rem; position: relative;
}
.board-row:last-child { border-bottom: 0; }
.board-head { min-height: 3.2rem; background: #fbfcfc; }
.board-veh { grid-row: 1; grid-column: 1; padding: .55rem 1rem; display: flex; flex-direction: column; justify-content: center; line-height: 1.25; }
.board-veh b { font-size: .88rem; font-weight: 600; }
.board-veh span { font-size: .74rem; color: var(--muted); letter-spacing: .04em; }
.board-corner { font-size: .78rem; color: var(--muted); font-weight: 600; }
.board-day { border-left: 1px solid var(--line); text-align: center; padding: .4rem 0; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1.2; font-size: .74rem; color: var(--muted); }
.board-day b { font-size: .95rem; color: var(--ink); padding: 0 .4rem; border-radius: 6px; font-weight: 600; }
.board-day.is-today b { background: var(--amber); color: #2a1f00; }
.board-cell { grid-row: 1; border-left: 1px solid var(--line); }
.board-cell.is-weekend, .board-day.is-weekend { background: rgba(16, 32, 29, .028); }
.board-cell.is-today { background: rgba(245, 179, 1, .11); }

.bar {
    grid-row: 1; z-index: 1; align-self: stretch;
    margin: .42rem .16rem; padding: 0 .6rem; border-radius: 8px;
    display: flex; align-items: center; overflow: hidden;
    font-size: .76rem; font-weight: 600; line-height: 1;
    animation: bar-in .6s cubic-bezier(.2, .7, .2, 1) both;
    animation-delay: calc(var(--i, 0) * 45ms + 150ms);
}
.bar span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar.clip-l { margin-left: 0; border-top-left-radius: 0; border-bottom-left-radius: 0; }
.bar.clip-r { margin-right: 0; border-top-right-radius: 0; border-bottom-right-radius: 0; }
.bar-out { background: var(--brand); color: #fff; }
.bar-res { background: var(--mist); color: var(--brand-dark); box-shadow: inset 0 0 0 1.5px #7fb3a8; }
.bar-ret { background: var(--amber); color: #2a1f00; }
.bar-svc {
    background: repeating-linear-gradient(135deg, #dfe6e4 0 6px, #eef2f1 6px 12px);
    color: #465753; box-shadow: inset 0 0 0 1px #b3c1be;
}
@keyframes bar-in {
    from { clip-path: inset(0 100% 0 0); opacity: 0; }
    to   { clip-path: inset(0 0 0 0); opacity: 1; }
}

.board-legend { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; margin: 0; padding: .75rem 1.15rem; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted); }
.board-legend li { display: flex; align-items: center; gap: .45rem; }
.key { display: inline-block; width: .9rem; height: .9rem; border-radius: 4px; }
.key-out { background: var(--brand); }
.key-res { background: var(--mist); box-shadow: inset 0 0 0 1.5px #7fb3a8; }
.key-ret { background: var(--amber); }
.key-svc { background: repeating-linear-gradient(135deg, #cfd9d6 0 3px, #eef2f1 3px 6px); box-shadow: inset 0 0 0 1px #b3c1be; }

/* ---------- Product mockups ---------- */
.mock-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .95rem 1.25rem; background: #fff; border-bottom: 1px solid var(--line); }
.mock-head b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.mock-head span:not(.chip):not(.mock-btn) { font-size: .84rem; color: var(--muted); }
.mock h3 { font-size: .95rem; margin: 0 0 .7rem; font-family: var(--font-display); }
.mock-btn { display: inline-block; padding: .38rem .85rem; border-radius: 8px; background: var(--brand); color: #fff; font-size: .82rem; font-weight: 600; white-space: nowrap; }

.chip { display: inline-flex; align-items: center; gap: .3rem; padding: .18rem .6rem; border-radius: 999px; font-size: .76rem; font-weight: 600; line-height: 1.35; }
.chip-ok { background: #d8ece6; color: var(--brand); }
.chip-warn { background: var(--amber-soft); color: var(--amber-ink); }
.chip-none { background: var(--grey-chip); color: #43524f; }

.kv { margin: 0; }
.kv > div { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.kv dt { font-weight: 500; color: var(--muted); }
.kv dd { margin: 0; font-weight: 600; text-align: right; }
.kv-tight > div { padding: .4rem 0; }

/* booking */
.mock-tabs { display: flex; gap: .15rem; padding: 0 .9rem; border-bottom: 1px solid var(--line); overflow: hidden; background: #fff; }
.mock-tab { padding: .7rem .55rem; font-size: .8rem; font-weight: 500; color: var(--muted); white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.mock-tab.is-active { color: var(--brand); font-weight: 600; border-bottom-color: var(--brand); }
.mock-split { display: grid; grid-template-columns: minmax(0, 1fr) 15rem; }
.mock-main { padding: 1.25rem; }
.kv-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1rem; }
.kv-total span { color: var(--muted); font-weight: 500; }
.kv-total b { font-family: var(--font-display); font-size: 1.5rem; }
.mock-side { padding: 1.25rem; background: var(--paper); border-left: 1px solid var(--line); }
.mock-side .is-owing dd { background: var(--amber); color: #2a1f00; padding: 0 .45rem; border-radius: 5px; }
.pay-list { margin: .9rem 0 1rem; }
.pay-list li { display: flex; justify-content: space-between; gap: .5rem; font-size: .84rem; padding: .55rem 0; border-top: 1px solid var(--line); }
@media (max-width: 575.98px) {
    .mock-split { grid-template-columns: 1fr; }
    .mock-side { border-left: 0; border-top: 1px solid var(--line); }
    .mock-tabs { overflow-x: auto; }
}

/* payments */
.import-summary { display: flex; gap: 2.25rem; padding: 1rem 1.25rem; background: var(--paper); border-bottom: 1px solid var(--line); }
.import-summary div { display: flex; align-items: baseline; gap: .5rem; }
.import-summary b { font-family: var(--font-display); font-size: 1.6rem; color: var(--brand); line-height: 1; }
.import-summary span { color: var(--muted); font-size: .9rem; }
.import-summary .is-review b { color: var(--amber-ink); }
.mock-table { width: 100%; font-size: .85rem; border-collapse: collapse; }
.mock-table th { padding: .6rem 1.25rem; font-weight: 600; color: var(--muted); font-size: .78rem; text-align: left; border-bottom: 1px solid var(--line); }
.mock-table td { padding: .7rem 1.25rem; border-top: 1px solid var(--line); vertical-align: middle; }
.mock-table tbody tr:first-child td { border-top: 0; }
.mock-table .num { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.mock-table .ref { font-weight: 500; letter-spacing: .02em; }
@media (max-width: 575.98px) {
    .mock-table th:first-child, .mock-table td:first-child { display: none; }
    .mock-table th, .mock-table td { padding-inline: .8rem; }
}

/* agreement */
.mock-agreement { background: #dbe7e3; }
.mock-agreement .paper { margin: 1.25rem auto; max-width: 30rem; width: calc(100% - 2.5rem); background: #fff; border-radius: 4px; padding: 1.5rem; font-size: .82rem; box-shadow: 0 10px 24px -12px rgba(8, 48, 43, .4); }
.paper h3 { font-size: .78rem; color: var(--muted); margin: 0 0 .25rem; font-weight: 700; }
.paper p { margin: 0 0 .9rem; line-height: 1.45; }
.paper-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.paper-table { width: 100%; margin: .25rem 0 1.1rem; border-collapse: collapse; }
.paper-table td { padding: .4rem 0; border-bottom: 1px solid var(--line); }
.paper-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.paper-table .total td { border-bottom: 0; border-top: 2px solid var(--ink); font-weight: 700; font-size: .95rem; }
.skel i { display: block; height: 6px; border-radius: 3px; background: #e2e9e7; margin: .5rem 0; }
.skel i.short { width: 55%; }
.sign { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.5rem; margin-top: 1.6rem; font-size: .74rem; color: var(--muted); }
.sign span { display: block; height: 1.5rem; border-bottom: 1px solid var(--ink); margin-bottom: .3rem; }
@media (max-width: 575.98px) { .paper-cols { grid-template-columns: 1fr 1fr; } }

/* customers */
.people { margin: 0; }
.people li { display: flex; align-items: center; gap: .9rem; padding: .85rem 1.25rem; border-top: 1px solid var(--line); }
.people li:first-child { border-top: 0; }
.avatar { flex: 0 0 auto; width: 2.4rem; height: 2.4rem; border-radius: 50%; display: grid; place-items: center; background: var(--mist); color: var(--brand); font-weight: 700; font-size: .82rem; }
.who { flex: 1; min-width: 0; }
.who b { display: block; font-weight: 600; font-size: .95rem; }
.who small { color: var(--muted); font-size: .82rem; }
@media (max-width: 575.98px) { .people li { flex-wrap: wrap; } .people .chip { margin-left: 3.3rem; } }

/* reports */
.report-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; padding: 1.25rem; }
.hbars { margin: 0; }
.hbars li { display: grid; grid-template-columns: 6.4rem 1fr 2.6rem; align-items: center; gap: .55rem; font-size: .82rem; margin: .6rem 0; }
.hbars i { display: block; height: 10px; width: var(--w); background: var(--brand); border-radius: 5px; }
.hbars b { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }
.vbars { display: flex; align-items: stretch; gap: .6rem; height: 11.5rem; }
.vbars > div { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: .3rem; font-size: .75rem; color: var(--muted); }
.vbars b { color: var(--ink); font-weight: 600; font-size: .74rem; }
.vbars i { display: block; width: 100%; height: calc((100% - 3.2rem) * var(--h) / 100); background: var(--brand); border-radius: 6px 6px 0 0; min-height: 4px; }
.vbars > div:last-child i { background: var(--amber); }
@media (max-width: 575.98px) { .report-split { grid-template-columns: 1fr; } }

/* ---------- Home: comparison table ---------- */
.compare { --bs-table-bg: transparent; margin: 0; }
.compare th, .compare td { padding: 1.05rem 1.1rem; border-color: var(--line); vertical-align: top; }
.compare thead th { font-size: .88rem; font-weight: 600; color: var(--muted); border-bottom: 2px solid var(--ink); }
.compare tbody th { font-weight: 600; width: 22%; }
.compare td { color: #3f524e; }
.compare td:last-child { background: #fff; color: var(--ink); font-weight: 500; }
.compare thead th:last-child { color: var(--brand); background: #fff; }
@media (max-width: 767.98px) { .compare { min-width: 40rem; } }

/* ---------- Home: feature rows ---------- */
.feature-row { margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.feature-row:last-child { margin-bottom: 0; }
.feature-row h3 { margin-bottom: 1rem; }
.ticks { margin: 1.25rem 0 1.5rem; }
.ticks li { display: flex; gap: .65rem; margin-bottom: .6rem; }
.ticks i { color: var(--brand); font-size: 1.15rem; line-height: 1.5; }

.also i { display: block; font-size: 1.6rem; color: var(--brand); margin-bottom: .6rem; }
.also > div { border-top: 1px solid #b8cdc7; padding-top: 1.25rem; }
.also h3 a { color: var(--ink); text-decoration: none; }
.also h3 a:hover { color: var(--brand); text-decoration: underline; text-decoration-color: var(--amber); text-decoration-thickness: 3px; }
.also p { color: #3f524e; font-size: .98rem; margin: 0; }

/* ---------- Steps (real sequences only) ---------- */
.steps { counter-reset: step; margin: 0; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 3.4rem 1fr; padding: 1.4rem 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before { content: counter(step); font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--brand); line-height: 1.1; }
.steps li > * { grid-column: 2; }
.steps h3 { margin: 0 0 .3rem; }
.steps p { margin: 0; color: #3f524e; }
.steps-compact li { padding: 1rem 0; grid-template-columns: 2.6rem 1fr; }
.steps-compact li::before { font-size: 1.4rem; }

/* ---------- FAQ ---------- */
.faq .accordion-item { background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.faq .accordion-item:first-child { border-top: 1px solid var(--line); }
.faq .accordion-button { background: transparent; box-shadow: none; padding: 1.15rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); letter-spacing: -0.01em; }
.faq .accordion-button:not(.collapsed) { color: var(--brand); background: transparent; }
.faq .accordion-button:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
.faq .accordion-body { padding: 0 2rem 1.3rem 0; color: #3f524e; max-width: 62ch; }

/* ---------- CTA band + footer ---------- */
.cta-band { position: relative; background: var(--brand); color: #fff; padding-block: clamp(3.25rem, 6vw, 5rem); }
.cta-band::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
    background: repeating-linear-gradient(90deg, var(--amber) 0 30px, transparent 30px 56px);
}
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: rgba(255, 255, 255, .82); margin: .9rem 0 0; max-width: 38rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.site-footer { background: var(--brand-dark); color: rgba(255, 255, 255, .74); padding: clamp(3rem, 5vw, 4.5rem) 0 1.75rem; font-size: .98rem; }
.site-footer a { color: rgba(255, 255, 255, .86); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--amber); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.footer-blurb { margin: 1.1rem 0 1.25rem; max-width: 30rem; }
.footer-contact li { margin-bottom: .4rem; }
.footer-contact i { margin-right: .5rem; color: var(--amber); }
.footer-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: .9rem; letter-spacing: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-base { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .9rem; }

/* ---------- Features index + detail ---------- */
.feature-index > li { padding-block: 2rem; border-top: 1px solid var(--line); }
.feature-index > li:last-child { border-bottom: 1px solid var(--line); }
.fi-name { display: flex; gap: .95rem; align-items: flex-start; }
.fi-name i { flex: 0 0 auto; width: 2.75rem; height: 2.75rem; display: grid; place-items: center; background: var(--mist); color: var(--brand); border-radius: 12px; font-size: 1.3rem; }
.fi-name h2 { margin: .35rem 0 0; font-size: 1.5rem; }
.fi-name a { color: var(--ink); text-decoration: none; }
.fi-name a:hover { color: var(--brand); }
.fi-intro { margin-bottom: 1rem; color: #33463f; }
.fi-points { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; margin-bottom: 1.1rem; font-size: .96rem; }
.fi-points li { display: flex; gap: .4rem; align-items: baseline; }
.fi-points i { color: var(--brand); }

.detail-list dt { border-top: 1px solid var(--line); padding-top: 1rem; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; }
.detail-list dd { margin: .35rem 0 0; color: #3f524e; max-width: 46ch; }

.related { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); text-decoration: none; height: 100%; }
.related:hover { border-color: var(--brand); color: var(--ink); }
.related i { font-size: 1.5rem; color: var(--brand); }
.related strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.related small { display: block; color: var(--muted); font-size: .92rem; margin-top: .15rem; }

/* ---------- Pricing ---------- */
.plans { --bs-table-bg: transparent; margin: 0; min-width: 44rem; }
.plans th, .plans td { padding: 1rem 1.1rem; border-color: var(--line); vertical-align: middle; }
.plans tbody th { font-weight: 600; width: 28%; }
.plans tbody td { text-align: left; }
.plans-corner { width: 28%; border-bottom: 0 !important; }
.plan-head { vertical-align: top !important; border-bottom: 2px solid var(--ink) !important; text-align: left; font-weight: 400; padding-bottom: 1.4rem !important; }
.plan-head > span { display: block; }
.plan-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; }
.plan-blurb { color: var(--muted); font-size: .92rem; margin: .2rem 0 1rem; min-height: 2.6em; }
.plan-price { margin-bottom: 1rem; }
.plan-price b { font-family: var(--font-display); font-size: 2rem; font-weight: 700; letter-spacing: -0.03em; }
.plan-price small { color: var(--muted); font-size: .9rem; }
.plans .is-featured { background: #fff; }
.plan-head.is-featured { box-shadow: inset 0 5px 0 var(--amber); }
.plans .yes { color: var(--brand); font-size: 1.4rem; }
.plans .no { color: #9fb3ae; font-size: 1.4rem; }

/* ---------- About ---------- */
.principles > div { border-top: 1px solid var(--line); padding: 1.5rem 0; }
.principles > div:last-child { border-bottom: 1px solid var(--line); }
.principles dt { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; }
.principles dd { margin: .4rem 0 0; color: #3f524e; max-width: 58ch; }

/* ---------- Contact ---------- */
.form-panel { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.25rem, 3vw, 2.25rem); box-shadow: var(--shadow); }
.form-label { font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.form-label .opt { font-weight: 400; color: var(--muted); }
.form-control, .form-select { border: 1px solid #a9bdb8; border-radius: 10px; padding: .7rem .85rem; background-color: #fff; }
.form-control:focus, .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 .2rem rgba(13, 74, 66, .2); }
.form-control.is-invalid, .form-select.is-invalid { border-color: #b23a17; background-image: none; }
.invalid-feedback { color: #a3300f; font-weight: 500; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.25rem; margin-top: 1.5rem; }
.form-status { margin: 0; font-weight: 600; }
.form-status.is-ok { color: var(--brand); }
.form-status.is-error { color: #a3300f; }
.contact-list { margin-top: 1.75rem; }
.contact-list li { display: flex; gap: 1rem; margin-bottom: 1.1rem; }
.contact-list i { color: var(--brand); font-size: 1.3rem; line-height: 1.4; }
.contact-list strong { display: block; }
.contact-list a { color: var(--ink); }

/* ---------- Legal / prose ---------- */
.prose { max-width: 46rem; }
.prose h2 { font-size: 1.45rem; margin: 2.25rem 0 .6rem; }
.prose p { line-height: 1.7; margin-bottom: 1rem; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .bar { animation: none; }
    * { transition-duration: .01ms !important; }
}

/* ---------- Additional mockups ---------- */
.mock-table .num.left { text-align: left; }
.mock-table td b { font-weight: 600; }
@media (max-width: 575.98px) { .hide-sm { display: none; } }

/* signature */
.sign .sig { height: auto; line-height: 0; padding-bottom: 2px; }
.sign .sig-date { height: 1.5rem; line-height: 1.5rem; color: var(--ink); font-size: .82rem; }

/* check-out / check-in dashboard */
.groups { padding: .5rem 1.25rem 1rem; }
.groups section { margin-top: 1rem; }
.groups h3 { display: flex; align-items: center; gap: .5rem; margin-bottom: .4rem; }
.groups li { display: grid; grid-template-columns: 5.2rem 1fr auto; gap: .75rem; align-items: center; padding: .6rem 0; border-top: 1px solid var(--line); font-size: .88rem; }
.type { font-size: .76rem; font-weight: 700; padding: .12rem .5rem; border-radius: 6px; text-align: center; }
.type-in { background: var(--amber-soft); color: var(--amber-ink); }
.type-out { background: #d8ece6; color: var(--brand); }
.groups .when { color: var(--muted); font-size: .82rem; text-align: right; }
@media (max-width: 575.98px) { .groups li { grid-template-columns: 4.6rem 1fr; } .groups .when { grid-column: 2; text-align: left; } }

/* rates */
.promo { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: center; padding: 1.1rem 1.25rem; background: var(--paper); border-top: 1px solid var(--line); }
.promo b { display: block; font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .02em; }
.promo span { color: var(--muted); font-size: .88rem; }
.promo ul { margin: 0; font-size: .86rem; color: #3f524e; display: flex; flex-wrap: wrap; gap: .3rem 1.25rem; }
.promo li::before { content: "\F26E"; font-family: bootstrap-icons; color: var(--brand); margin-right: .35rem; }
@media (max-width: 575.98px) { .promo { grid-template-columns: 1fr; gap: .5rem; } }

/* online booking wizard */
.stepper { display: flex; gap: .25rem; margin: 0; padding: .9rem 1.1rem; border-bottom: 1px solid var(--line); overflow: hidden; background: #fff; }
.stepper li { display: flex; align-items: center; gap: .45rem; font-size: .8rem; color: var(--muted); white-space: nowrap; padding-right: .9rem; }
.stepper b { width: 1.4rem; height: 1.4rem; display: grid; place-items: center; border-radius: 50%; background: var(--grey-chip); font-size: .74rem; }
.stepper .is-done b { background: #d8ece6; color: var(--brand); }
.stepper .is-active { color: var(--ink); font-weight: 600; }
.stepper .is-active b { background: var(--brand); color: #fff; }
@media (max-width: 575.98px) { .stepper { overflow-x: auto; } }
.extras { margin: 0 0 1.1rem; }
.extras li { display: grid; grid-template-columns: 1.6rem 1fr auto; align-items: center; padding: .65rem 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.extras i { color: #9fb3ae; font-size: 1.05rem; }
.extras .is-on i { color: var(--brand); }
.extras b { font-weight: 600; font-size: .85rem; color: var(--muted); }
.promo-in { display: flex; align-items: center; gap: .75rem; font-size: .88rem; }
.promo-in span:first-child { color: var(--muted); }
.promo-in b { font-family: var(--font-display); letter-spacing: .03em; }

/* email notifications */
.email-split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 1.25rem; padding: 1.1rem 1.25rem 1.25rem; }
.log { margin: 0; }
.log li { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: .65rem 0; border-top: 1px solid var(--line); }
.log li:first-child { border-top: 0; }
.email-card { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; align-self: start; background: #fff; box-shadow: 0 10px 24px -14px rgba(8, 48, 43, .35); }
.email-brand { background: var(--brand); color: #fff; padding: .7rem 1rem; font-size: .8rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; }
.email-brand i { width: 1rem; height: 1rem; border-radius: 4px; background: var(--amber); display: inline-block; }
.email-body { padding: 1rem; font-size: .86rem; }
.email-body b { font-family: var(--font-display); font-size: 1.05rem; }
.email-body p { margin: .4rem 0 .9rem; color: #3f524e; }
@media (max-width: 767.98px) { .email-split { grid-template-columns: 1fr; } }

/* access control */
.people.flush li { padding-inline: 0; }
.perm-group { margin: .9rem 0 .2rem; font-size: .76rem; font-weight: 700; color: var(--muted); }
.perms { margin: 0; }
.perms li { display: flex; justify-content: space-between; align-items: center; padding: .4rem 0; font-size: .86rem; border-bottom: 1px dashed var(--line); }
.switch { position: relative; width: 2.1rem; height: 1.15rem; border-radius: 999px; background: #c5d3cf; display: inline-block; flex: 0 0 auto; }
.switch::after { content: ""; position: absolute; top: 2px; left: 2px; width: calc(1.15rem - 4px); height: calc(1.15rem - 4px); border-radius: 50%; background: #fff; }
.switch.is-on { background: var(--brand); }
.switch.is-on::after { left: calc(2.1rem - 1.15rem + 2px); }

/* branding */
.logo-box { display: inline-grid; place-items: center; min-width: 4.6rem; height: 1.7rem; padding: 0 .6rem; border: 1px dashed #9fb3ae; border-radius: 6px; font-size: .76rem; color: var(--muted); font-weight: 500; }
.logo-box.small { min-width: 1.7rem; padding: 0; }
.content-list { margin: 0; }
.content-list li { display: flex; justify-content: space-between; gap: .5rem; padding: .5rem 0; border-bottom: 1px dashed var(--line); font-size: .86rem; }
.content-list small { color: var(--muted); }

/* dropdown with many items */
@media (min-width: 992px) {
    .site-header .navbar > .container { position: relative; }
    .navbar .nav-item.dropdown { position: static; }
    .dropdown-menu.nav-features { left: 0; right: 0; margin: .6rem auto 0; width: min(48rem, 100%); min-width: 0; display: none; }
    .dropdown-menu.nav-features.show { display: grid; grid-template-columns: 1fr 1fr; gap: 0 .5rem; }
}
.footer-links.two-col { columns: 1; }
@media (min-width: 768px) { .footer-links.two-col { columns: 2; column-gap: 1.5rem; } .footer-links.two-col li { break-inside: avoid; } }
