:root {
    --forest: #163226;
    --forest-deep: #0e2119;
    --gold: #c4a35a;
    --gold-soft: #e6d3a1;
    --cream: #f6f0e4;
    --paper: #fbf8f2;
    --ink: #221910;
    --muted: #5d5348;
    --line: rgba(34, 25, 16, 0.12);
    --shadow: 0 18px 50px rgba(14, 33, 25, 0.16);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
    font-size: 1.05rem;
    line-height: 1.65;
}

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

a {
    color: var(--forest);
}

h1,
h2,
h3,
.site-mark {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    margin: 0 0 0.4em;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin: 0 0 0.45em;
}

h3 {
    font-size: 1.55rem;
    margin: 0 0 0.3em;
}

p {
    margin: 0 0 1em;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    background: var(--gold);
    color: var(--ink);
    padding: 0.4rem 0.8rem;
    z-index: 20;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(1120px, calc(100% - 2.4rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(251, 248, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 84px;
}

.site-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.site-mark {
    font-size: 1.8rem;
    letter-spacing: 0.18em;
}

.site-tag {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.site-nav .menu {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
}

.site-nav a:hover,
.site-nav .current-menu-item a {
    color: var(--forest);
}

.header-actions {
    display: flex;
    gap: 0.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.55rem 1.05rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
}

.btn-primary {
    background: var(--forest);
    color: var(--cream);
}

.btn-ghost,
.btn-light {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.btn-light {
    background: rgba(251, 248, 242, 0.16);
    color: var(--cream);
    border-color: rgba(251, 248, 242, 0.35);
}

.hero,
.page-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(180deg, rgba(14, 33, 25, 0.15), rgba(14, 33, 25, 0.72)),
        var(--hero-image) center / cover no-repeat;
    color: var(--cream);
}

.page-hero {
    min-height: 36vh;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.hero-overlay {
    display: none;
}

.hero-copy,
.page-hero .container {
    position: relative;
    padding: 4.5rem 0 3.5rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-soft);
    margin-bottom: 0.8rem;
}

.lede {
    max-width: 38rem;
    font-size: 1.15rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--cream);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: start;
}

.section-title {
    max-width: 16ch;
    margin-bottom: 2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.price {
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-note {
    margin-top: 1.5rem;
    color: var(--muted);
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1.1rem;
}

.steps li {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.1rem 1.2rem;
}

.steps strong {
    display: block;
    margin-bottom: 0.25rem;
}

.cta {
    background: var(--forest-deep);
    color: var(--cream);
    padding: 4rem 0;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}

.page-shell {
    padding-bottom: 4rem;
}

.prose {
    max-width: 46rem;
}

.prose h2 {
    margin-top: 1.8rem;
}

.notice,
.booking-frame {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: var(--shadow);
}

.booking-intro {
    margin-bottom: 1.5rem;
}

.hbe-bookings-group + .hbe-bookings-group {
    margin-top: 2rem;
}

.hbe-bookings-group h2 {
    font-size: 1.45rem;
    margin: 0 0 1rem;
}

.hbe-bookings-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.hbe-booking-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
}

.hbe-booking-main {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hbe-booking-when {
    color: var(--muted);
    font-size: 0.95rem;
}

.hbe-booking-status {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest);
}

.hbe-booking-status--pending {
    color: #9a6700;
}

.hbe-booking-status--canceled,
.hbe-booking-status--rejected,
.hbe-booking-status--no-show {
    color: #8b3a3a;
}

.site-footer {
    background: var(--forest);
    color: var(--cream);
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer a {
    color: var(--gold-soft);
}

.site-footer h2 {
    font-size: 1.2rem;
}

.footer-blurb,
.footer-meta {
    color: rgba(246, 240, 228, 0.78);
}

@media (max-width: 860px) {
    .header-inner,
    .split,
    .card-grid,
    .footer-grid,
    .cta-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .header-inner {
        padding: 0.9rem 0;
    }

    .site-nav .menu,
    .header-actions {
        flex-wrap: wrap;
    }

    .hero {
        min-height: 70vh;
    }
}
