:root {
    --ink: #183237;
    --ink-soft: #496268;
    --green: #123f42;
    --green-2: #1c5557;
    --green-3: #2a6c69;
    --gold: #d5a13e;
    --cream: #f7f2e9;
    --sand: #e8dfd0;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(18, 63, 66, 0.12);
    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

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

h1,
h2,
h3 {
    line-height: 1.1;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.7rem, 7vw, 5.7rem);
    max-width: 900px;
    margin-bottom: 1.1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    margin-bottom: 1rem;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.section {
    padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.section--soft {
    background: linear-gradient(180deg, #fbfaf7 0%, var(--cream) 100%);
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 9999;
    transform: translateY(-180%);
    background: var(--white);
    color: var(--green);
    padding: .75rem 1rem;
    border-radius: 8px;
    font-weight: 700;
}

.skip-link:focus {
    transform: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(18, 63, 66, 0.09);
    backdrop-filter: blur(14px);
}

.header__inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    color: var(--green);
    text-decoration: none;
    min-width: 0;
}

.brand img {
    width: 95px;
    height: 63px;
    object-fit: contain;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand__text strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
}

.brand__text span {
    margin-top: .3rem;
    color: var(--ink-soft);
    font-size: .77rem;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: .2rem;
}

.nav__link {
    position: relative;
    padding: .7rem .82rem;
    border-radius: 999px;
    color: #314d52;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background-color .2s ease, color .2s ease;
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link--active {
    background: var(--cream);
    color: var(--green);
}

.nav__link--active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: .3rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateX(-50%);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(18, 63, 66, 0.15);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--green);
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    position: relative;
    min-height: min(790px, calc(100vh - 86px));
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #173b3e;
}

.hero__image,
.hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    object-fit: cover;
    object-position: center 48%;
}

.hero__overlay {
    background:
        linear-gradient(90deg, rgba(5, 27, 30, .78) 0%, rgba(5, 27, 30, .45) 48%, rgba(5, 27, 30, .10) 75%),
        linear-gradient(0deg, rgba(5, 27, 30, .58) 0%, rgba(5, 27, 30, 0) 50%);
}

.hero__content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding-top: 8rem;
    padding-bottom: clamp(5rem, 10vw, 8.5rem);
}

.hero__lead {
    max-width: 720px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .91);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.eyebrow {
    margin-bottom: .9rem;
    color: var(--green-3);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero .eyebrow,
.eyebrow--light {
    color: #f4c76b;
}

.hero__actions,
.rental-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: .8rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--gold);
    color: #213235;
}

.button--primary:hover,
.button--primary:focus-visible {
    background: #e1b65b;
}

.button--ghost {
    border-color: rgba(255, 255, 255, .68);
    color: var(--white);
    background: rgba(255, 255, 255, .08);
}

.button--secondary {
    background: var(--green);
    color: var(--white);
}

.button--light {
    background: var(--white);
    color: var(--green);
}

.button--outline-light {
    border-color: rgba(255, 255, 255, .65);
    color: var(--white);
}

.intro__grid,
.history-teaser__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: start;
}

.prose {
    max-width: 720px;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.prose p:last-child {
    margin-bottom: 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: clamp(1.7rem, 3vw, 2.35rem);
    border: 1px solid rgba(18, 63, 66, .09);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 34px rgba(18, 63, 66, .06);
}

.card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 1.4rem;
    border-radius: 16px;
    background: #e9f0ed;
    color: var(--green);
    font-size: 1.55rem;
    font-weight: 800;
}

.card h2 {
    font-size: 1.55rem;
}

.card p {
    flex: 1;
    color: var(--ink-soft);
}

.text-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.history-teaser__content p:not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 2rem;
    color: var(--ink-soft);
    font-size: 1.06rem;
}

.quote-card {
    align-self: stretch;
    display: grid;
    place-items: center;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 30px;
    background:
        radial-gradient(circle at 70% 20%, rgba(213, 161, 62, .18), transparent 30%),
        var(--green);
    color: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.quote-card img {
    width: min(220px, 65%);
    margin-bottom: 1rem;
    filter: drop-shadow(0 9px 16px rgba(0,0,0,.16));
}

.quote-card blockquote {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
}

.rental-cta {
    padding-top: 0;
}

.rental-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(2.2rem, 5vw, 4.4rem);
    border-radius: 30px;
    background:
        linear-gradient(120deg, rgba(10, 49, 52, .98), rgba(30, 89, 87, .96));
    color: var(--white);
    box-shadow: var(--shadow);
}

.rental-cta__inner > div:first-child {
    max-width: 720px;
}

.rental-cta h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.rental-cta p:not(.eyebrow) {
    margin-bottom: 0;
    color: rgba(255,255,255,.84);
}

.rental-cta__actions {
    min-width: 245px;
    flex-direction: column;
}

.site-footer {
    margin-top: 1rem;
    padding-top: 4rem;
    background: #0d3033;
    color: rgba(255, 255, 255, .82);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr .8fr;
    gap: clamp(2rem, 7vw, 5rem);
    padding-bottom: 3rem;
}

.footer__brand img {
    width: 170px;
    margin-bottom: 1rem;
}

.footer__brand p {
    color: #f4c76b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
}

.footer__contact h2,
.footer__links h2 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer__contact address {
    margin-bottom: .9rem;
    font-style: normal;
}

.footer__contact a,
.footer__links a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.footer__contact a:hover,
.footer__links a:hover,
.footer__contact a:focus-visible,
.footer__links a:focus-visible {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .55rem;
}

.footer__bottom {
    padding: 1.25rem 0 1.6rem;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.55);
    font-size: .88rem;
}

.footer__bottom p {
    margin: 0;
}

@media (max-width: 980px) {
    .brand__text {
        display: none;
    }

    .nav__link {
        padding-inline: .65rem;
        font-size: .9rem;
    }

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

    .card:last-child {
        grid-column: 1 / -1;
    }

    .rental-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .rental-cta__actions {
        width: 100%;
        min-width: 0;
        flex-direction: row;
    }
}

@media (max-width: 760px) {
    .header__inner {
        min-height: 74px;
    }

    .brand img {
        width: 79px;
        height: 53px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: .2rem;
        padding: 1rem;
        background: rgba(255,255,255,.98);
        border-bottom: 1px solid rgba(18, 63, 66, .12);
        box-shadow: 0 18px 30px rgba(18,63,66,.08);
    }

    .nav.is-open {
        display: flex;
    }

    .nav__link {
        padding: .88rem 1rem;
        border-radius: 12px;
    }

    .nav__link--active::after {
        display: none;
    }

    .hero {
        min-height: 670px;
    }

    .hero__overlay {
        background:
            linear-gradient(0deg, rgba(5, 27, 30, .84) 0%, rgba(5, 27, 30, .35) 72%, rgba(5, 27, 30, .12) 100%);
    }

    .hero__content {
        padding-bottom: 4.5rem;
    }

    .intro__grid,
    .history-teaser__grid,
    .footer__grid {
        grid-template-columns: 1fr;
    }

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

    .card:last-child {
        grid-column: auto;
    }

    .quote-card {
        min-height: 370px;
    }

    .rental-cta__actions {
        flex-direction: column;
    }

    .rental-cta__actions .button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .button {
        width: 100%;
    }

    .rental-cta__inner,
    .quote-card {
        border-radius: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Lodge venue page */
.page-lodge .site-footer {
    margin-top: 0;
}

.venue-hero {
    position: relative;
    min-height: min(760px, calc(100vh - 86px));
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #173b3e;
}

.venue-hero__image,
.venue-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.venue-hero__image {
    object-fit: cover;
    object-position: center 46%;
}

.venue-hero__overlay {
    background:
        linear-gradient(90deg, rgba(6, 25, 27, .83) 0%, rgba(6, 25, 27, .52) 48%, rgba(6, 25, 27, .16) 78%),
        linear-gradient(0deg, rgba(6, 25, 27, .70) 0%, rgba(6, 25, 27, .02) 58%);
}

.venue-hero__content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding-top: 8rem;
    padding-bottom: clamp(4.5rem, 9vw, 7.5rem);
}

.venue-hero h1 {
    max-width: 850px;
    font-size: clamp(2.7rem, 6.5vw, 5.6rem);
}

.venue-hero__lead {
    max-width: 760px;
    margin-bottom: 2rem;
    color: rgba(255,255,255,.91);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.venue-facts {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    background: var(--green);
    color: var(--white);
}

.venue-facts__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.venue-fact {
    min-height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.45rem 1.1rem;
    border-right: 1px solid rgba(255,255,255,.14);
    text-align: center;
}

.venue-fact:last-child {
    border-right: 0;
}

.venue-fact strong {
    display: block;
    color: #f4c76b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.1;
}

.venue-fact span {
    margin-top: .35rem;
    color: rgba(255,255,255,.78);
    font-size: .88rem;
}

.split-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.split-feature__media--stacked {
    position: relative;
    min-height: 560px;
    padding-right: 10%;
    padding-bottom: 8%;
}

.split-feature__main {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.split-feature__accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 43%;
    aspect-ratio: 1.15 / 1;
    object-fit: cover;
    border: 8px solid var(--white);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(18,63,66,.22);
}

.split-feature__content p:not(.eyebrow) {
    color: var(--ink-soft);
    font-size: 1.06rem;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.7rem;
}

.pill-row span {
    padding: .48rem .8rem;
    border: 1px solid rgba(18,63,66,.12);
    border-radius: 999px;
    background: var(--cream);
    color: var(--green);
    font-size: .84rem;
    font-weight: 800;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.6rem;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading p:not(.eyebrow) {
    color: var(--ink-soft);
    font-size: 1.06rem;
}

.timeline-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.timeline-card {
    position: relative;
    min-height: 245px;
    padding: 2rem;
    overflow: hidden;
    border: 1px solid rgba(18,63,66,.1);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(18,63,66,.06);
}

.timeline-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold);
}

.timeline-card--featured {
    background: var(--green);
    color: var(--white);
    transform: translateY(-8px);
}

.timeline-card__day {
    margin-bottom: .45rem;
    color: var(--green-3);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.timeline-card--featured .timeline-card__day {
    color: #f4c76b;
}

.timeline-card__time {
    margin-bottom: 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.15;
}

.timeline-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.timeline-card--featured p {
    color: rgba(255,255,255,.8);
}

.center-note {
    max-width: 780px;
    margin: 2rem auto 0;
    color: var(--ink-soft);
    text-align: center;
}

.amenity-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, .72fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.lead-copy {
    max-width: 700px;
    color: var(--ink-soft);
    font-size: 1.07rem;
}

.amenity-list {
    display: grid;
    gap: .9rem;
    margin-top: 2rem;
}

.amenity-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(18,63,66,.09);
    border-radius: 16px;
    background: #fbfaf7;
}

.amenity-item__number {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: #f4c76b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.amenity-item strong,
.amenity-item span:not(.amenity-item__number) {
    display: block;
}

.amenity-item strong {
    margin-bottom: .2rem;
    color: var(--ink);
}

.amenity-item span:not(.amenity-item__number) {
    color: var(--ink-soft);
    font-size: .92rem;
}

.amenity-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--green);
    box-shadow: var(--shadow);
}

.amenity-photo-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.amenity-photo-card__caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 16px;
    background: rgba(8,35,37,.78);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.amenity-photo-card__caption strong,
.amenity-photo-card__caption span {
    display: block;
}

.amenity-photo-card__caption span {
    margin-top: .25rem;
    color: rgba(255,255,255,.75);
    font-size: .88rem;
}

.kitchen-section {
    background: var(--green);
    color: var(--white);
}

.kitchen-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.kitchen-gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: .85rem;
}

.kitchen-gallery img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 20px;
}

.kitchen-gallery img:last-child {
    margin-top: 3rem;
}

.kitchen-copy p:not(.eyebrow) {
    color: rgba(255,255,255,.8);
    font-size: 1.06rem;
}

.notice {
    display: grid;
    gap: .25rem;
    margin-top: 1.5rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
}

.notice--light {
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
}

.notice--light span {
    color: rgba(255,255,255,.73);
}

.venue-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 170px;
    gap: .75rem;
}

.venue-gallery__item {
    grid-column: span 4;
    grid-row: span 2;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--cream);
}

.venue-gallery__item--wide {
    grid-column: span 8;
}

.venue-gallery__item--tall {
    grid-row: span 3;
}

.venue-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.venue-gallery__item:hover img {
    transform: scale(1.025);
}

.booking-grid {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: start;
}

.detail-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-card {
    padding: 1.55rem;
    border: 1px solid rgba(18,63,66,.09);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(18,63,66,.05);
}

.detail-card h3 {
    margin-bottom: .65rem;
    color: var(--green);
    font-size: 1.15rem;
}

.detail-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: .94rem;
}

.booking-process__grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.booking-process__image img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

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

.steps-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: .9rem;
    align-items: start;
}

.steps-list > li > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: #f4c76b;
    font-weight: 900;
}

.steps-list strong {
    display: block;
    margin-bottom: .2rem;
    color: var(--ink);
}

.steps-list p {
    margin: 0;
    color: var(--ink-soft);
}

.booking-process__note {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--gold);
    color: var(--ink-soft);
    font-size: .93rem;
}

.button--plain {
    border-color: rgba(18,63,66,.18);
    background: var(--white);
    color: var(--green);
}

.button--plain:hover,
.button--plain:focus-visible {
    background: var(--cream);
}

.venue-final-cta {
    position: relative;
    min-height: 560px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--green);
}

.venue-final-cta__image,
.venue-final-cta__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.venue-final-cta__image {
    object-fit: cover;
    object-position: center 58%;
}

.venue-final-cta__overlay {
    background: linear-gradient(90deg, rgba(5,27,30,.88) 0%, rgba(5,27,30,.64) 50%, rgba(5,27,30,.25) 100%);
}

.venue-final-cta__content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
    color: var(--white);
}

.venue-final-cta h2 {
    max-width: 750px;
    font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.venue-final-cta p:not(.eyebrow) {
    max-width: 690px;
    margin-bottom: 1.7rem;
    color: rgba(255,255,255,.82);
    font-size: 1.08rem;
}

@media (max-width: 1080px) {
    .venue-facts__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .venue-fact:nth-child(3) {
        border-right: 0;
    }

    .venue-fact:nth-child(n+4) {
        border-top: 1px solid rgba(255,255,255,.14);
    }

    .venue-fact:nth-child(5) {
        grid-column: span 2;
    }

    .amenity-layout,
    .kitchen-grid,
    .booking-process__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .venue-gallery {
        grid-auto-rows: 150px;
    }
}

@media (max-width: 860px) {
    .split-feature,
    .amenity-layout,
    .kitchen-grid,
    .booking-grid,
    .booking-process__grid {
        grid-template-columns: 1fr;
    }

    .split-feature__media--stacked {
        min-height: 480px;
    }

    .split-feature__main {
        min-height: 450px;
    }

    .timeline-cards {
        grid-template-columns: 1fr;
    }

    .timeline-card,
    .timeline-card--featured {
        min-height: 0;
        transform: none;
    }

    .amenity-photo-card {
        max-width: 590px;
        margin-inline: auto;
    }

    .kitchen-copy {
        order: -1;
    }

    .detail-cards {
        grid-template-columns: 1fr 1fr;
    }

    .booking-process__image img {
        min-height: 420px;
        max-height: 620px;
    }

    .venue-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .venue-gallery__item,
    .venue-gallery__item--wide,
    .venue-gallery__item--tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .venue-gallery__item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .venue-hero {
        min-height: 690px;
    }

    .venue-hero__overlay {
        background: linear-gradient(0deg, rgba(5,27,30,.9) 0%, rgba(5,27,30,.45) 70%, rgba(5,27,30,.18) 100%);
    }

    .venue-hero__image {
        object-position: 53% center;
    }

    .venue-facts__grid {
        grid-template-columns: 1fr 1fr;
    }

    .venue-fact,
    .venue-fact:nth-child(3),
    .venue-fact:nth-child(5) {
        grid-column: span 1;
        border-right: 1px solid rgba(255,255,255,.14);
        border-top: 1px solid rgba(255,255,255,.14);
    }

    .venue-fact:nth-child(1),
    .venue-fact:nth-child(2) {
        border-top: 0;
    }

    .venue-fact:nth-child(even),
    .venue-fact:last-child {
        border-right: 0;
    }

    .venue-fact:last-child {
        grid-column: 1 / -1;
    }

    .split-feature__media--stacked {
        min-height: 420px;
        padding-right: 6%;
        padding-bottom: 10%;
    }

    .split-feature__main {
        min-height: 400px;
    }

    .split-feature__accent {
        width: 48%;
        border-width: 5px;
    }

    .kitchen-gallery {
        grid-template-columns: 1fr;
    }

    .kitchen-gallery img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .kitchen-gallery img:last-child {
        display: none;
        margin-top: 0;
    }

    .detail-cards {
        grid-template-columns: 1fr;
    }

    .venue-gallery {
        grid-auto-rows: 190px;
    }
}

@media (max-width: 540px) {
    .venue-fact {
        min-height: 104px;
        padding: 1.05rem .65rem;
    }

    .venue-fact strong {
        font-size: 1.18rem;
    }

    .venue-fact span {
        font-size: .78rem;
    }

    .split-feature__media--stacked {
        min-height: 350px;
    }

    .split-feature__main {
        min-height: 335px;
        border-radius: 20px;
    }

    .split-feature__accent {
        display: none;
    }

    .amenity-item {
        grid-template-columns: 56px 1fr;
        padding: .85rem;
    }

    .amenity-item__number {
        width: 50px;
        height: 50px;
        font-size: 1.08rem;
    }

    .venue-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .venue-gallery__item,
    .venue-gallery__item--wide,
    .venue-gallery__item--tall {
        grid-column: span 1;
    }

    .venue-gallery__item:nth-child(n+5) {
        display: none;
    }

    .booking-process__image img {
        min-height: 340px;
        border-radius: 20px;
    }

    .venue-final-cta {
        min-height: 610px;
    }

    .venue-final-cta__overlay {
        background: linear-gradient(0deg, rgba(5,27,30,.92) 0%, rgba(5,27,30,.58) 70%, rgba(5,27,30,.28) 100%);
    }
}

/* ------------------------------------------------------------
   Our History page
   ------------------------------------------------------------ */
.history-hero {
    position: relative;
    min-height: min(720px, calc(100vh - 86px));
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #173b3e;
}

.history-hero__image,
.history-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.history-hero__image {
    object-fit: cover;
    object-position: center 46%;
}

.history-hero__overlay {
    background:
        linear-gradient(90deg, rgba(5, 27, 30, .86) 0%, rgba(5, 27, 30, .58) 50%, rgba(5, 27, 30, .18) 80%),
        linear-gradient(0deg, rgba(5, 27, 30, .68) 0%, rgba(5, 27, 30, 0) 58%);
}

.history-hero__content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    padding-top: 8rem;
    padding-bottom: clamp(5rem, 10vw, 8rem);
    color: var(--white);
}

.history-hero h1 {
    max-width: 940px;
    font-size: clamp(3rem, 7vw, 5.4rem);
}

.history-hero__lead {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255,255,255,.9);
    font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.history-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: start;
}

.history-intro__copy {
    font-size: 1.04rem;
}

.history-era__grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.history-era__media {
    position: relative;
    min-height: 640px;
}

.history-era__media img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.history-era__media--lake img {
    object-position: center 42%;
}

.history-era__stamp {
    position: absolute;
    right: -1.5rem;
    bottom: 2rem;
    width: 180px;
    height: 180px;
    display: grid;
    place-content: center;
    text-align: center;
    border: 7px solid rgba(255,255,255,.75);
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    box-shadow: 0 16px 40px rgba(8,34,36,.24);
}

.history-era__stamp strong {
    display: block;
    color: #f4c76b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
    line-height: 1;
}

.history-era__stamp span {
    display: block;
    max-width: 110px;
    margin: .45rem auto 0;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.history-era__content > p:not(.eyebrow),
.history-transition__content > p:not(.eyebrow) {
    color: var(--ink-soft);
    font-size: 1.02rem;
}

.history-callout {
    margin-top: 2rem;
    padding: 1.25rem 1.35rem;
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    background: rgba(255,255,255,.72);
}

.history-callout strong {
    display: block;
    margin-bottom: .35rem;
    color: var(--green);
}

.history-callout p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: .94rem;
}

.history-pavilion__heading {
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: end;
    margin-bottom: 3rem;
}

.history-pavilion__heading > p {
    margin-bottom: .4rem;
    color: var(--ink-soft);
    font-size: 1.04rem;
}

.history-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
    overflow: hidden;
    border-radius: 28px;
    background: var(--green);
    box-shadow: var(--shadow);
}

.history-feature__image img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
}

.history-feature__facts {
    display: grid;
    align-content: center;
    padding: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
}

.history-feature__facts article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: .9rem;
    padding: 1.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.history-feature__facts article:last-child {
    border-bottom: 0;
}

.history-feature__facts article > span {
    color: #f4c76b;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.history-feature__facts h3 {
    margin-bottom: .45rem;
    font-size: 1.25rem;
}

.history-feature__facts p {
    margin-bottom: 0;
    color: rgba(255,255,255,.76);
    font-size: .93rem;
}

.history-resort {
    position: relative;
    min-height: 650px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--green);
}

.history-resort__background,
.history-resort__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.history-resort__background {
    object-fit: cover;
    object-position: center 58%;
}

.history-resort__overlay {
    background: linear-gradient(90deg, rgba(5,27,30,.91) 0%, rgba(5,27,30,.77) 48%, rgba(5,27,30,.32) 100%);
}

.history-resort__content {
    position: relative;
    z-index: 1;
    max-width: 970px;
    padding-top: 5rem;
    padding-bottom: 5rem;
    color: var(--white);
}

.history-resort h2 {
    max-width: 760px;
}

.history-resort__content > p:not(.eyebrow) {
    max-width: 750px;
    color: rgba(255,255,255,.85);
    font-size: 1.08rem;
}

.history-resort__highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 2.4rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 18px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
}

.history-resort__highlights div {
    min-height: 150px;
    padding: 1.35rem;
    background: rgba(5,27,30,.45);
}

.history-resort__highlights strong,
.history-resort__highlights span {
    display: block;
}

.history-resort__highlights strong {
    margin-bottom: .45rem;
    color: #f4c76b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.history-resort__highlights span {
    color: rgba(255,255,255,.76);
    font-size: .88rem;
}

.history-transition__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.history-transition__content .button {
    margin-top: .7rem;
}

.history-transition__visual {
    position: relative;
    padding-bottom: 5rem;
}

.history-transition__visual > img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.history-register-card {
    position: absolute;
    right: 1.5rem;
    bottom: 0;
    width: min(390px, calc(100% - 3rem));
    padding: 1.4rem 1.5rem;
    border-radius: 18px;
    background: var(--green);
    color: var(--white);
    box-shadow: 0 18px 42px rgba(8,34,36,.22);
}

.history-register-card span {
    display: block;
    margin-bottom: .3rem;
    color: #f4c76b;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.history-register-card strong {
    display: block;
    margin-bottom: .45rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.32rem;
    line-height: 1.2;
}

.history-register-card p {
    margin-bottom: 0;
    color: rgba(255,255,255,.75);
    font-size: .88rem;
}

.history-timeline__heading {
    max-width: 760px;
}

.history-timeline__list {
    position: relative;
    max-width: 980px;
    margin: 3rem auto 0;
    padding: 0;
    list-style: none;
}

.history-timeline__list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 114px;
    width: 2px;
    background: var(--sand);
}

.history-timeline__list li {
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 3.2rem;
    padding: 0 0 2.2rem;
}

.history-timeline__list li::before {
    content: "";
    position: absolute;
    top: .42rem;
    left: 107px;
    width: 16px;
    height: 16px;
    border: 4px solid var(--white);
    border-radius: 50%;
    background: var(--green-3);
    box-shadow: 0 0 0 2px var(--sand);
}

.history-timeline__list time {
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 700;
    text-align: right;
}

.history-timeline__list h3 {
    margin-bottom: .35rem;
    color: var(--green);
    font-size: 1.18rem;
}

.history-timeline__list p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.history-timeline__list .history-timeline__featured::before {
    background: var(--gold);
}

.history-timeline__list .history-timeline__featured time {
    color: #a57216;
}

.history-preservation {
    padding-bottom: 2.2rem;
    background: var(--green);
    color: var(--white);
}

.history-preservation__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.history-preservation__grid p:not(.eyebrow) {
    color: rgba(255,255,255,.79);
}

.history-preservation__image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 22px 50px rgba(0,0,0,.18);
}

.history-source-note {
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.12);
}

.history-source-note p {
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: .82rem;
}

@media (max-width: 980px) {
    .history-intro__grid,
    .history-era__grid,
    .history-pavilion__heading,
    .history-transition__grid,
    .history-preservation__grid {
        grid-template-columns: 1fr;
    }

    .history-intro__grid,
    .history-pavilion__heading {
        gap: 1.4rem;
    }

    .history-era__media {
        max-width: 680px;
        min-height: 520px;
        margin-inline: auto;
    }

    .history-era__media img {
        min-height: 520px;
    }

    .history-feature {
        grid-template-columns: 1fr;
    }

    .history-feature__image img {
        min-height: 470px;
    }

    .history-feature__facts {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding: 0 1.5rem;
    }

    .history-feature__facts article {
        grid-template-columns: 1fr;
        padding: 1.6rem 1rem;
        border-right: 1px solid rgba(255,255,255,.14);
        border-bottom: 0;
    }

    .history-feature__facts article:last-child {
        border-right: 0;
    }

    .history-resort__highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .history-transition__visual {
        max-width: 760px;
        margin-inline: auto;
    }
}

@media (max-width: 700px) {
    .history-hero {
        min-height: 670px;
    }

    .history-hero__image {
        object-position: 52% center;
    }

    .history-hero__overlay {
        background: linear-gradient(0deg, rgba(5,27,30,.92) 0%, rgba(5,27,30,.62) 64%, rgba(5,27,30,.26) 100%);
    }

    .history-era__media,
    .history-era__media img {
        min-height: 430px;
    }

    .history-era__stamp {
        right: .8rem;
        bottom: -1.5rem;
        width: 145px;
        height: 145px;
        border-width: 5px;
    }

    .history-era__stamp strong {
        font-size: 1.8rem;
    }

    .history-era__content {
        padding-top: 1rem;
    }

    .history-feature__image img {
        min-height: 390px;
    }

    .history-feature__facts {
        grid-template-columns: 1fr;
        padding: 1rem 1.4rem;
    }

    .history-feature__facts article {
        grid-template-columns: 40px 1fr;
        padding: 1.25rem 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.14);
    }

    .history-feature__facts article:last-child {
        border-bottom: 0;
    }

    .history-resort {
        min-height: 760px;
    }

    .history-resort__overlay {
        background: linear-gradient(0deg, rgba(5,27,30,.94) 0%, rgba(5,27,30,.66) 68%, rgba(5,27,30,.30) 100%);
    }

    .history-resort__highlights {
        grid-template-columns: 1fr 1fr;
    }

    .history-resort__highlights div {
        min-height: 130px;
    }

    .history-transition__visual > img {
        min-height: 420px;
    }

    .history-register-card {
        right: .8rem;
        width: calc(100% - 1.6rem);
    }

    .history-timeline__list::before {
        left: 20px;
    }

    .history-timeline__list li {
        grid-template-columns: 1fr;
        gap: .25rem;
        padding-left: 3.2rem;
        padding-bottom: 2rem;
    }

    .history-timeline__list li::before {
        left: 13px;
    }

    .history-timeline__list time {
        text-align: left;
        font-size: 1.22rem;
    }

    .history-preservation__image img {
        height: 360px;
    }
}

@media (max-width: 460px) {
    .history-resort__highlights {
        grid-template-columns: 1fr;
    }

    .history-resort__highlights div {
        min-height: 0;
    }

    .history-transition__visual {
        padding-bottom: 7.5rem;
    }

    .history-register-card {
        padding: 1.15rem 1.2rem;
    }
}

/* =========================
   Events page
   ========================= */
.events-hero {
    position: relative;
    min-height: min(760px, calc(100vh - 86px));
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #173b3e;
}

.events-hero__image,
.events-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.events-hero__image {
    object-fit: cover;
    object-position: center 52%;
}

.events-hero__overlay {
    background:
        linear-gradient(90deg, rgba(5,27,30,.80) 0%, rgba(5,27,30,.48) 50%, rgba(5,27,30,.10) 78%),
        linear-gradient(0deg, rgba(5,27,30,.65) 0%, rgba(5,27,30,.02) 58%);
}

.events-hero__content {
    position: relative;
    z-index: 1;
    padding-top: 8rem;
    padding-bottom: clamp(5rem, 10vw, 8rem);
    color: var(--white);
}

.events-hero__lead {
    max-width: 760px;
    margin-bottom: 2rem;
    color: rgba(255,255,255,.91);
    font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.events-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 7vw, 6.5rem);
    align-items: start;
}

.events-intro__copy {
    max-width: 720px;
}

.events-upcoming__heading {
    max-width: 690px;
    margin-bottom: 2.4rem;
}

.events-list {
    display: grid;
    gap: 1.25rem;
}

.event-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(18,63,66,.10);
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(18,63,66,.07);
}

.event-card--primary {
    border-color: rgba(213,161,62,.28);
}

.event-card__date {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: var(--white);
    text-align: center;
}

.event-card--primary .event-card__date {
    background: linear-gradient(145deg, var(--green), #215b5d);
}

.event-card__date span {
    margin-bottom: .25rem;
    color: #f1c46d;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.event-card__date strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.35rem, 5vw, 4rem);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.04em;
}

.event-card__body {
    padding: clamp(1.7rem, 4vw, 2.7rem);
}

.event-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .85rem;
}

.event-card__topline time {
    color: var(--ink-soft);
    font-size: .88rem;
    font-weight: 700;
}

.event-card__category {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: .25rem .7rem;
    border-radius: 999px;
    background: var(--cream);
    color: var(--green-2);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.event-card h3 {
    margin-bottom: .85rem;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.event-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.5rem;
    margin-bottom: 1rem;
    color: var(--ink-soft);
    font-size: .9rem;
    font-weight: 700;
}

.event-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
}

.event-card__meta svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-card__body > p {
    max-width: 800px;
    margin-bottom: 1.2rem;
    color: var(--ink-soft);
}

.event-card__link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--green);
    font-weight: 850;
    text-decoration: none;
}

.event-card__link span {
    transition: transform .18s ease;
}

.event-card__link:hover span,
.event-card__link:focus-visible span {
    transform: translateX(4px);
}

.events-calendar-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem 1.7rem;
    border: 1px dashed rgba(18,63,66,.20);
    border-radius: 20px;
    background: rgba(255,255,255,.55);
}

.events-calendar-note strong {
    display: block;
    margin-bottom: .18rem;
    color: var(--green);
    font-size: 1.04rem;
}

.events-calendar-note p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .9rem;
}

.events-traditions__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: end;
    margin-bottom: 2.4rem;
}

.events-traditions__heading > p {
    margin-bottom: .6rem;
    color: var(--ink-soft);
}

.tradition-grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    grid-template-rows: repeat(2, minmax(260px, 1fr));
    gap: 1rem;
}

.tradition-card {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    border-radius: 26px;
    color: var(--white);
    isolation: isolate;
}

.tradition-card--large {
    grid-row: 1 / span 2;
    min-height: 595px;
}

.tradition-card > img,
.tradition-card__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tradition-card > img {
    z-index: -2;
    object-fit: cover;
    transition: transform .55s ease;
}

.tradition-card:hover > img {
    transform: scale(1.025);
}

.tradition-card__overlay {
    z-index: -1;
    background: linear-gradient(0deg, rgba(5,27,30,.88) 0%, rgba(5,27,30,.22) 72%);
}

.tradition-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: clamp(1.5rem, 4vw, 2.4rem);
}

.tradition-card__content > span {
    display: inline-block;
    margin-bottom: .65rem;
    color: #f4c76b;
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.tradition-card h3 {
    margin-bottom: .65rem;
    font-size: clamp(1.45rem, 3vw, 2.4rem);
}

.tradition-card p {
    max-width: 650px;
    margin-bottom: 0;
    color: rgba(255,255,255,.84);
    font-size: .92rem;
}

.events-meetings__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.events-meetings__content > p:not(.eyebrow) {
    max-width: 640px;
    color: var(--ink-soft);
}

.next-meeting {
    display: grid;
    gap: .1rem;
    max-width: 470px;
    margin: 1.7rem 0 1.8rem;
    padding: 1.2rem 1.35rem;
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(18,63,66,.07);
}

.next-meeting span {
    color: var(--green-3);
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.next-meeting strong {
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
}

.next-meeting small {
    color: var(--ink-soft);
    font-weight: 650;
}

.events-meetings__image img {
    width: 100%;
    height: 510px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.events-private {
    position: relative;
    min-height: 650px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--green);
}

.events-private__background,
.events-private__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.events-private__background {
    object-fit: cover;
    object-position: center;
}

.events-private__overlay {
    background: linear-gradient(90deg, rgba(5,27,30,.90) 0%, rgba(5,27,30,.69) 53%, rgba(5,27,30,.28) 100%);
}

.events-private__content {
    position: relative;
    z-index: 1;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.events-private__content h2,
.events-private__content p {
    max-width: 720px;
}

.events-private__content p:not(.eyebrow) {
    margin-bottom: 1.8rem;
    color: rgba(255,255,255,.87);
    font-size: 1.05rem;
}

.events-contact__panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: clamp(2rem, 5vw, 3.2rem);
    border-radius: 26px;
    background: var(--cream);
}

.events-contact__panel > div:first-child {
    max-width: 680px;
}

.events-contact__panel h2 {
    margin-bottom: .65rem;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.events-contact__panel p:not(.eyebrow) {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.events-contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    flex-shrink: 0;
}

@media (max-width: 980px) {
    .events-intro__grid,
    .events-meetings__grid,
    .events-traditions__heading {
        grid-template-columns: 1fr;
    }

    .events-intro__grid,
    .events-traditions__heading {
        gap: 1.3rem;
    }

    .tradition-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .tradition-card--large {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 480px;
    }

    .events-meetings__image {
        order: -1;
    }

    .events-meetings__image img {
        max-width: 780px;
        height: 460px;
        margin-inline: auto;
    }

    .events-contact__panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .events-hero {
        min-height: 680px;
    }

    .events-hero__image {
        object-position: 54% center;
    }

    .events-hero__overlay {
        background: linear-gradient(0deg, rgba(5,27,30,.92) 0%, rgba(5,27,30,.63) 67%, rgba(5,27,30,.18) 100%);
    }

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

    .event-card__date {
        min-height: 0;
        flex-direction: row;
        justify-content: flex-start;
        gap: .6rem;
        padding: .85rem 1.4rem;
        text-align: left;
    }

    .event-card__date span {
        margin: 0;
    }

    .event-card__date strong {
        font-size: 1.5rem;
    }

    .event-card__topline {
        align-items: flex-start;
        flex-direction: column;
        gap: .5rem;
    }

    .events-calendar-note {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .tradition-card,
    .tradition-card--large {
        min-height: 420px;
    }

    .events-meetings__image img {
        height: 390px;
    }

    .events-private {
        min-height: 720px;
        align-items: end;
    }

    .events-private__overlay {
        background: linear-gradient(0deg, rgba(5,27,30,.94) 0%, rgba(5,27,30,.62) 72%, rgba(5,27,30,.20) 100%);
    }

    .events-contact__actions {
        width: 100%;
        flex-direction: column;
    }

    .events-contact__actions .button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 460px) {
    .event-card__body {
        padding: 1.35rem;
    }

    .event-card__meta {
        flex-direction: column;
        gap: .5rem;
    }

    .tradition-card,
    .tradition-card--large {
        min-height: 390px;
    }
}

/* =========================================================
   Members page
   ========================================================= */
.members-hero {
    position: relative;
    min-height: 650px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--green);
}

.members-hero__image,
.members-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.members-hero__image {
    object-fit: cover;
    object-position: center 53%;
}

.members-hero__overlay {
    background:
        linear-gradient(90deg, rgba(5,27,30,.88) 0%, rgba(5,27,30,.61) 50%, rgba(5,27,30,.18) 100%),
        linear-gradient(0deg, rgba(5,27,30,.46) 0%, transparent 56%);
}

.members-hero__content {
    position: relative;
    z-index: 1;
    padding-top: 8rem;
    padding-bottom: clamp(4.5rem, 9vw, 7rem);
    color: var(--white);
}

.members-hero h1 {
    max-width: 850px;
}

.members-hero__lead {
    max-width: 760px;
    margin-bottom: 2rem;
    color: rgba(255,255,255,.89);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.members-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: end;
    margin-bottom: 2.5rem;
}

.members-section-heading > p {
    margin-bottom: .5rem;
    color: var(--ink-soft);
}

.member-action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.member-action-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    min-height: 132px;
    padding: 1.35rem;
    border: 1px solid rgba(18,63,66,.10);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(18,63,66,.055);
    color: var(--ink);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.member-action-card:hover,
.member-action-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(18,63,66,.2);
    box-shadow: 0 17px 38px rgba(18,63,66,.11);
}

.member-action-card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: var(--cream);
    color: var(--green);
}

.member-action-card__icon svg,
.document-feature-card__icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.member-action-card__content {
    display: grid;
    gap: .28rem;
}

.member-action-card__content strong {
    color: var(--green);
    font-size: 1.04rem;
}

.member-action-card__content > span {
    color: var(--ink-soft);
    font-size: .88rem;
    line-height: 1.45;
}

.member-action-card__arrow {
    color: var(--gold);
    font-size: 1.35rem;
    font-weight: 800;
    transition: transform .2s ease;
}

.member-action-card:hover .member-action-card__arrow,
.member-action-card:focus-visible .member-action-card__arrow {
    transform: translateX(4px);
}

.members-arch__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.members-arch__content > p:not(.eyebrow) {
    max-width: 660px;
    color: var(--ink-soft);
    font-size: 1.02rem;
}

.members-arch__steps {
    display: grid;
    gap: .8rem;
    margin: 1.7rem 0 2rem;
}

.members-arch__steps > div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: .85rem;
    align-items: start;
}

.members-arch__steps > div > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-weight: 850;
}

.members-arch__steps p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .92rem;
}

.members-arch__steps strong {
    color: var(--ink);
}

.members-arch__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
}

.members-arch__image {
    position: relative;
}

.members-arch__image > img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.members-arch__note {
    position: absolute;
    right: 1.3rem;
    bottom: 1.3rem;
    left: 1.3rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 16px;
    background: rgba(5,27,30,.88);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.members-arch__note strong {
    display: block;
    margin-bottom: .25rem;
    color: #f4c76b;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.members-arch__note span {
    display: block;
    color: rgba(255,255,255,.87);
    font-size: .88rem;
    line-height: 1.5;
}

.document-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.document-feature-card {
    display: flex;
    min-height: 315px;
    flex-direction: column;
    padding: 1.7rem;
    border: 1px solid rgba(18,63,66,.10);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(18,63,66,.06);
}

.document-feature-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
    border-radius: 15px;
    background: #eaf1ee;
    color: var(--green);
}

.document-feature-card__meta {
    margin-bottom: .6rem;
    color: var(--green-3);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.document-feature-card h3 {
    margin-bottom: .7rem;
    color: var(--green);
    font-size: 1.35rem;
}

.document-feature-card p {
    flex: 1;
    color: var(--ink-soft);
    font-size: .92rem;
}

.document-feature-card a {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--green);
    font-weight: 850;
    text-decoration: none;
}

.document-feature-card a:hover,
.document-feature-card a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.division-documents {
    overflow: hidden;
    border: 1px solid rgba(18,63,66,.11);
    border-radius: 24px;
    background: #fbfaf7;
}

.division-documents__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.8rem 2rem;
    background: var(--green);
    color: var(--white);
}

.division-documents__heading > div > span {
    color: #f4c76b;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.division-documents__heading h3 {
    margin: .35rem 0 0;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.division-documents__heading p {
    max-width: 480px;
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: .88rem;
}

.division-document-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.division-document {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    min-height: 76px;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid rgba(18,63,66,.09);
    color: var(--ink);
    text-decoration: none;
    font-weight: 750;
    transition: background-color .2s ease;
}

.division-document:nth-child(odd) {
    border-right: 1px solid rgba(18,63,66,.09);
}

.division-document:hover,
.division-document:focus-visible {
    background: var(--white);
}

.division-document__pdf {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 32px;
    border-radius: 8px;
    background: #f0e8da;
    color: #7d5920;
    font-size: .66rem;
    font-weight: 950;
    letter-spacing: .08em;
}

.division-document__arrow {
    color: var(--gold);
    font-size: 1rem;
}

.division-documents__notice {
    display: flex;
    gap: .7rem;
    align-items: baseline;
    padding: 1rem 1.4rem;
    background: #f1eadf;
    color: var(--ink-soft);
    font-size: .86rem;
}

.division-documents__notice strong {
    color: var(--green);
    white-space: nowrap;
}

.division-documents__notice a {
    color: var(--green);
    font-weight: 800;
}

.members-meetings__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.members-meetings__content > p:not(.eyebrow) {
    max-width: 650px;
    color: var(--ink-soft);
}

.meeting-date-card {
    display: grid;
    gap: .15rem;
    max-width: 500px;
    margin: 1.6rem 0;
    padding: 1.25rem 1.4rem;
    border-left: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(18,63,66,.07);
}

.meeting-date-card > span {
    color: var(--green-3);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.meeting-date-card strong {
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
}

.meeting-date-card small {
    color: var(--ink-soft);
    font-weight: 650;
}

.members-meetings__annual {
    margin-bottom: 1.7rem;
    font-size: .9rem;
}

.members-meetings__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.board-layout {
    display: grid;
    gap: 2.2rem;
}

.board-group-title {
    margin-bottom: 1rem;
    color: var(--green);
    font-size: 1.1rem;
}

.board-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .85rem;
}

.board-card-grid--officers {
    grid-template-columns: repeat(4, 1fr);
}

.board-card {
    min-height: 185px;
    padding: 1.35rem;
    border: 1px solid rgba(18,63,66,.10);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(18,63,66,.045);
}

.board-card--compact {
    min-height: 150px;
}

.board-card__role {
    display: inline-block;
    margin-bottom: .8rem;
    color: var(--green-3);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.board-card h4 {
    margin: 0 0 .9rem;
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

.board-card__details {
    display: grid;
    gap: .25rem;
    color: var(--ink-soft);
    font-size: .86rem;
}

.board-card__details a {
    color: var(--green);
    font-weight: 800;
    text-decoration: none;
}

.board-card__details a:hover,
.board-card__details a:focus-visible {
    text-decoration: underline;
}

.board-support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .85rem;
    padding-top: .2rem;
}

.board-support-grid article {
    display: grid;
    gap: .2rem;
    padding: 1.1rem 1.2rem;
    border-radius: 15px;
    background: var(--cream);
}

.board-support-grid span {
    color: var(--green-3);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.board-support-grid strong {
    color: var(--green);
}

.board-support-grid a {
    color: var(--ink-soft);
    font-size: .85rem;
    font-weight: 750;
    text-decoration: none;
}

.members-park__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: end;
    margin-bottom: 2.3rem;
}

.members-park__heading > p {
    margin-bottom: .5rem;
    color: var(--ink-soft);
}

.park-rule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .85rem;
}

.park-rule-card {
    position: relative;
    min-height: 245px;
    padding: 1.45rem;
    overflow: hidden;
    border: 1px solid rgba(18,63,66,.08);
    border-radius: 18px;
    background: var(--white);
}

.park-rule-card__number {
    display: block;
    margin-bottom: 1.25rem;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.park-rule-card h3 {
    margin-bottom: .6rem;
    color: var(--green);
    font-size: 1.16rem;
}

.park-rule-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .87rem;
    line-height: 1.55;
}

.park-gate-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1.15rem 1.3rem;
    border-radius: 16px;
    background: #f3e8d7;
}

.park-gate-warning__icon {
    width: 42px;
    height: 42px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: #2c302f;
    font-weight: 950;
}

.park-gate-warning strong {
    display: block;
    color: var(--green);
}

.park-gate-warning p {
    margin: .1rem 0 0;
    color: var(--ink-soft);
    font-size: .88rem;
}

.members-scholarship__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}

.members-scholarship__image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.members-scholarship__content > p:not(.eyebrow) {
    max-width: 600px;
    margin-bottom: 1.8rem;
    color: var(--ink-soft);
}

.members-contact {
    padding-top: 0;
}

.members-contact__panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: clamp(2.2rem, 5vw, 3.5rem);
    border-radius: 28px;
    background:
        radial-gradient(circle at 85% 15%, rgba(213,161,62,.18), transparent 30%),
        var(--green);
    color: var(--white);
}

.members-contact__panel > div:first-child {
    max-width: 680px;
}

.members-contact__panel h2 {
    margin-bottom: .7rem;
}

.members-contact__panel p:not(.eyebrow) {
    margin-bottom: 0;
    color: rgba(255,255,255,.82);
}

.members-contact__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    flex-shrink: 0;
}

@media (max-width: 1080px) {
    .member-action-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .board-card-grid--officers,
    .park-rule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .board-support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .members-section-heading,
    .members-arch__grid,
    .members-meetings__grid,
    .members-park__heading,
    .members-scholarship__grid {
        grid-template-columns: 1fr;
    }

    .members-section-heading,
    .members-park__heading {
        gap: 1rem;
    }

    .members-arch__image,
    .members-meetings__image {
        order: -1;
    }

    .members-arch__image > img,
    .members-meetings__image img {
        height: 430px;
    }

    .document-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .document-feature-card:first-child {
        grid-column: 1 / -1;
        min-height: 260px;
    }

    .board-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .members-scholarship__image img {
        height: 420px;
    }

    .members-contact__panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .members-hero {
        min-height: 690px;
    }

    .members-hero__image {
        object-position: 63% center;
    }

    .members-hero__overlay {
        background: linear-gradient(0deg, rgba(5,27,30,.94) 0%, rgba(5,27,30,.67) 69%, rgba(5,27,30,.2) 100%);
    }

    .member-action-grid,
    .document-feature-grid,
    .board-card-grid,
    .board-card-grid--officers,
    .board-support-grid,
    .park-rule-grid {
        grid-template-columns: 1fr;
    }

    .document-feature-card:first-child {
        grid-column: auto;
    }

    .document-feature-card {
        min-height: 0;
    }

    .division-documents__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .division-document-list {
        grid-template-columns: 1fr;
    }

    .division-document:nth-child(odd) {
        border-right: 0;
    }

    .division-documents__notice {
        align-items: flex-start;
        flex-direction: column;
    }

    .members-arch__image > img,
    .members-meetings__image img,
    .members-scholarship__image img {
        height: 360px;
    }

    .board-card,
    .board-card--compact {
        min-height: 0;
    }

    .park-rule-card {
        min-height: 0;
    }

    .members-contact__actions {
        width: 100%;
        flex-direction: column;
    }

    .members-contact__actions .button {
        width: 100%;
    }
}

@media (max-width: 460px) {
    .member-action-card {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: .8rem;
        padding: 1.1rem;
    }

    .member-action-card__icon {
        width: 46px;
        height: 46px;
    }

    .member-action-card__arrow {
        display: none;
    }

    .members-arch__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .members-arch__actions .button {
        width: 100%;
    }

    .division-document {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        padding-inline: 1rem;
        font-size: .9rem;
    }
}

/* ================================================================
   Lake Management District page
   ================================================================ */
.lmd-hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--green-dark, #082f33);
}

.lmd-hero__image,
.lmd-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lmd-hero__image {
    object-fit: cover;
    object-position: center 52%;
}

.lmd-hero__overlay {
    background:
        linear-gradient(90deg, rgba(5, 27, 30, .88) 0%, rgba(5, 27, 30, .55) 48%, rgba(5, 27, 30, .15) 100%),
        linear-gradient(0deg, rgba(5, 27, 30, .72) 0%, transparent 60%);
}

.lmd-hero__content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding-top: 9rem;
    padding-bottom: clamp(4rem, 9vw, 7.5rem);
    color: var(--white);
}

.lmd-hero__content h1 {
    max-width: 800px;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5.7rem);
    line-height: .96;
}

.lmd-hero__lead {
    max-width: 730px;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.08rem, 2.2vw, 1.35rem);
    line-height: 1.6;
}

.lmd-status-strip {
    position: relative;
    z-index: 3;
    background: var(--green);
    color: var(--white);
}

.lmd-status-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.lmd-status-strip__grid > div {
    padding: 1.65rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.lmd-status-strip__grid > div:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.lmd-status-strip strong,
.lmd-status-strip span {
    display: block;
}

.lmd-status-strip strong {
    margin-bottom: .2rem;
    color: var(--gold-light, #e7c978);
    font-size: 1.55rem;
}

.lmd-status-strip span {
    color: rgba(255, 255, 255, .74);
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.lmd-intro__grid,
.lmd-lake__grid,
.lmd-committee__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(2.8rem, 7vw, 6rem);
    align-items: center;
}

.lmd-intro__content > p:not(.eyebrow),
.lmd-lake__content > p:not(.eyebrow),
.lmd-committee__grid > div:first-child > p:not(.eyebrow) {
    color: var(--ink-soft);
}

.lmd-intro__content .lead-copy {
    color: var(--ink) !important;
    font-size: 1.1rem;
    line-height: 1.72;
}

.lmd-renewal-callout {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(16, 63, 67, .12);
    border-radius: 18px;
    background: #f5f0e6;
}

.lmd-renewal-callout__icon {
    width: 42px;
    height: 42px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-weight: 900;
}

.lmd-renewal-callout strong {
    display: block;
    margin-bottom: .2rem;
    color: var(--green);
}

.lmd-renewal-callout p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .92rem;
}

.lmd-intro__image,
.lmd-lake__image {
    margin: 0;
}

.lmd-intro__image img,
.lmd-lake__image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.lmd-intro__image figcaption {
    margin-top: .75rem;
    color: var(--ink-soft);
    font-size: .82rem;
    text-align: right;
}

.lmd-priority-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}

.lmd-priority-card {
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    padding: 1.8rem;
    overflow: hidden;
    border: 1px solid rgba(16, 63, 67, .09);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(6, 36, 39, .06);
}

.lmd-priority-card__number {
    display: block;
    margin-bottom: 3.3rem;
    color: var(--gold);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.lmd-priority-card h3 {
    margin-bottom: .65rem;
    color: var(--green);
}

.lmd-priority-card p {
    margin-bottom: 1.35rem;
    color: var(--ink-soft);
    font-size: .93rem;
    line-height: 1.65;
}

.lmd-priority-card a {
    margin-top: auto;
    color: var(--green);
    font-size: .88rem;
    font-weight: 800;
    text-decoration: none;
}

.lmd-priority-card a:hover {
    text-decoration: underline;
}

.lmd-advisory {
    padding-top: 0;
}

.lmd-advisory__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(2.2rem, 5vw, 4rem);
    border-radius: 28px;
    background:
        radial-gradient(circle at 85% 10%, rgba(213, 161, 62, .19), transparent 28%),
        var(--green);
    color: var(--white);
}

.lmd-advisory__content h2 {
    color: var(--white);
}

.lmd-advisory__content > p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
}

.lmd-advisory__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}

.lmd-advisory__rule {
    display: flex;
    gap: 1rem;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
}

.lmd-advisory__rule > span {
    width: 46px;
    height: 46px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: #2a302e;
    font-size: 1.25rem;
    font-weight: 950;
}

.lmd-advisory__rule strong {
    display: block;
    margin-bottom: .3rem;
    color: var(--white);
    font-size: 1.08rem;
}

.lmd-advisory__rule p {
    margin: 0;
    color: rgba(255, 255, 255, .73);
    font-size: .9rem;
}

.lmd-event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.lmd-event-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 285px;
    overflow: hidden;
    border: 1px solid rgba(16, 63, 67, .1);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(6, 36, 39, .06);
}

.lmd-event-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem .5rem;
    background: var(--green);
    color: var(--white);
}

.lmd-event-card__date span,
.lmd-event-card__date small {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.lmd-event-card__date strong {
    margin: .15rem 0;
    color: var(--gold-light, #e7c978);
    font-size: 2.2rem;
    line-height: 1;
}

.lmd-event-card__body {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.lmd-event-card__type {
    margin-bottom: .55rem;
    color: var(--gold-dark, #8f671c);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.lmd-event-card h3 {
    margin-bottom: .55rem;
    color: var(--green);
    font-size: 1.25rem;
}

.lmd-event-card p {
    color: var(--ink-soft);
    font-size: .9rem;
    line-height: 1.55;
}

.lmd-event-card__meta {
    display: grid;
    gap: .25rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(16, 63, 67, .08);
    color: var(--ink-soft);
    font-size: .78rem;
}

.lmd-meetings__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.35rem 1.5rem;
    border-radius: 18px;
    background: #e9e5da;
}

.lmd-meetings__footer p {
    margin: 0;
    color: var(--ink-soft);
}

.lmd-meeting-fallback {
    padding: 2rem;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.lmd-lake-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
    margin: 1.8rem 0;
}

.lmd-lake-facts > div {
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: #f3eee4;
}

.lmd-lake-facts strong,
.lmd-lake-facts span {
    display: block;
}

.lmd-lake-facts strong {
    color: var(--green);
    font-size: 1.35rem;
}

.lmd-lake-facts span {
    color: var(--ink-soft);
    font-size: .8rem;
}

.lmd-contact-card {
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 26px;
    background: var(--green);
    color: var(--white);
    box-shadow: var(--shadow);
}

.lmd-contact-card__label {
    display: inline-block;
    margin-bottom: 1.2rem;
    color: var(--gold-light, #e7c978);
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.lmd-contact-card h3 {
    color: var(--white);
}

.lmd-contact-card > p {
    color: rgba(255, 255, 255, .78);
}

.lmd-contact-card dl {
    display: grid;
    gap: .9rem;
    margin: 1.6rem 0;
}

.lmd-contact-card dl > div {
    padding-top: .9rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.lmd-contact-card dt {
    margin-bottom: .2rem;
    color: rgba(255, 255, 255, .55);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.lmd-contact-card dd {
    margin: 0;
    color: var(--white);
}

.lmd-contact-card a {
    color: var(--white);
}

.lmd-resource-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.lmd-resource-grid > a {
    position: relative;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border: 1px solid rgba(16, 63, 67, .11);
    border-radius: 20px;
    background: var(--white);
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.lmd-resource-grid > a:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 63, 67, .24);
    box-shadow: 0 18px 45px rgba(6, 36, 39, .09);
}

.lmd-resource-grid strong {
    display: block;
    margin-bottom: .65rem;
    color: var(--green);
    font-size: 1.05rem;
}

.lmd-resource-grid span {
    color: var(--ink-soft);
    font-size: .88rem;
    line-height: 1.55;
}

.lmd-resource-grid b {
    margin-top: auto;
    color: var(--gold-dark, #8f671c);
    font-size: 1.2rem;
}

/* Member document applicability note */
.division-document__text {
    display: grid;
    gap: .18rem;
}

.division-document__text strong {
    color: inherit;
    font-size: inherit;
}

.division-document__text small {
    max-width: 620px;
    color: var(--ink-soft);
    font-size: .76rem;
    line-height: 1.4;
}

@media (max-width: 1080px) {
    .lmd-priority-grid,
    .lmd-resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lmd-event-grid {
        grid-template-columns: 1fr;
    }

    .lmd-event-card {
        min-height: 0;
    }
}

@media (max-width: 900px) {
    .lmd-intro__grid,
    .lmd-lake__grid,
    .lmd-committee__grid,
    .lmd-advisory__panel {
        grid-template-columns: 1fr;
    }

    .lmd-status-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lmd-status-strip__grid > div:nth-child(2) {
        border-right: 0;
    }

    .lmd-lake__image {
        order: -1;
    }

    .lmd-intro__image img,
    .lmd-lake__image img {
        height: 450px;
    }

    .lmd-meetings__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .lmd-hero {
        min-height: 700px;
    }

    .lmd-hero__image {
        object-position: 57% center;
    }

    .lmd-hero__overlay {
        background: linear-gradient(0deg, rgba(5,27,30,.95) 0%, rgba(5,27,30,.69) 70%, rgba(5,27,30,.2) 100%);
    }

    .lmd-hero__content {
        padding-bottom: 4rem;
    }

    .lmd-priority-grid,
    .lmd-resource-grid {
        grid-template-columns: 1fr;
    }

    .lmd-priority-card,
    .lmd-resource-grid > a {
        min-height: 0;
    }

    .lmd-priority-card__number {
        margin-bottom: 1.5rem;
    }

    .lmd-intro__image img,
    .lmd-lake__image img {
        height: 360px;
    }

    .lmd-advisory__actions {
        flex-direction: column;
    }

    .lmd-advisory__actions .button {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .lmd-status-strip__grid {
        grid-template-columns: 1fr;
    }

    .lmd-status-strip__grid > div,
    .lmd-status-strip__grid > div:first-child {
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

    .lmd-event-card {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .lmd-event-card__date strong {
        font-size: 1.9rem;
    }

    .lmd-lake-facts {
        grid-template-columns: 1fr;
    }
}
