/* Malmesbury Golf Club - Home page */

/* ============ HERO ============ */
.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: calc(100vh - 82px);
    overflow: hidden;
    color: #fff;
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    object-position: center 52%;
    transform: scale(1.015);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(2, 20, 14, 0.82) 0%, rgba(2, 20, 14, 0.46) 48%, rgba(2, 20, 14, 0.12) 78%),
        linear-gradient(rgba(0, 0, 0, 0) 58%, rgba(2, 20, 14, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1150px, 88vw);
    margin: 0 0 clamp(160px, 18vh, 210px) clamp(24px, 7vw, 112px);
}

.hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(44px, 7.6vw, 104px);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.86;
    white-space: nowrap;
}

.hero-copy {
    max-width: 630px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.83);
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    margin-top: 34px;
}

.hero-facts {
    position: absolute;
    inset: auto 0 0;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(4, 30, 22, 0.52);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero-facts div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 115px;
    padding: 20px clamp(20px, 4vw, 64px);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div:last-child {
    border-right: 0;
}

.hero-facts strong {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: clamp(24px, 2.2vw, 36px);
    font-weight: 400;
}

.hero-facts span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 12px;
}

/* ============ INTRO BAND ============ */
.intro-band {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(24px, 4vw, 70px);
    padding: 36px clamp(24px, 7vw, 112px);
    background: var(--gold);
    color: #17241f;
}

.intro-number {
    font-family: var(--font-display);
    font-size: 74px;
    line-height: 0.8;
}

.intro-band p {
    max-width: 800px;
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
}

.intro-band a {
    white-space: nowrap;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.45);
    font-size: 14px;
    font-weight: 800;
}

/* ============ COURSE SECTION ============ */
.course-section {
    display: grid;
    grid-template-columns: minmax(360px, 0.86fr) minmax(430px, 1fr);
    align-items: center;
    gap: clamp(50px, 8vw, 130px);
    padding-block: clamp(90px, 11vw, 170px);
}

.reveal-card.reveal-ready {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-card.reveal-ready.is-revealed {
    opacity: 1;
    transform: none;
}

.course-visual {
    position: relative;
    min-height: 720px;
    background: var(--forest);
    border-radius: 20px;
    overflow: hidden;
}

.course-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0) 58%, rgba(4, 27, 20, 0.48));
}

.image-label {
    position: absolute;
    z-index: 2;
    padding: 11px 16px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    font-weight: 800;
}

.top-label {
    top: 28px;
    left: 28px;
    background: var(--gold);
    color: #17241f;
}

.bottom-label {
    bottom: 28px;
    left: 28px;
    color: #fff;
    background: rgba(5, 30, 22, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.course-copy h2,
.holes-section h2,
.rates-section h2,
.membership-heading h2,
.estate-content h2,
.events-section h2,
.visit-section h2,
.booking-section h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(48px, 5.2vw, 82px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.course-copy .lead {
    max-width: 700px;
    margin: 28px 0 38px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.feature-list {
    border-top: 1px solid var(--line);
}

.feature-list article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}

.feature-list article > span {
    padding-top: 4px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.feature-list h3 {
    margin: 0 0 7px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
}

.feature-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* ============ HOLES SECTION ============ */
.holes-section {
    background: var(--forest);
    color: #fff;
    padding: clamp(80px, 9vw, 130px) 0;
}

.holes-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: end;
    gap: clamp(50px, 8vw, 130px);
}

.holes-layout > div:first-child p:last-child {
    max-width: 560px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 16px;
    line-height: 1.75;
}

.course-plan-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.19);
    border-left: 1px solid rgba(255, 255, 255, 0.19);
}

.course-plan-summary > div {
    min-height: 106px;
    padding: 21px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.19);
    border-right: 1px solid rgba(255, 255, 255, 0.19);
}

.course-plan-summary strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
}

.course-plan-summary span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 750;
}

.hole-explorer {
    margin-top: clamp(45px, 6vw, 78px);
}

.hole-tabs {
    display: grid;
    grid-template-columns: repeat(18, 1fr);
    gap: 1px;
    padding: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.hole-tabs button {
    position: relative;
    min-height: 58px;
    border: 0;
    background: #133d31;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-display);
    font-size: 17px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.hole-tabs button.back-nine {
    background: #173f32;
    color: var(--gold-light);
}

.hole-tabs button:hover {
    background: #1d4b3e;
    color: #fff;
}

.hole-tabs button.active {
    z-index: 1;
    background: var(--gold);
    color: var(--forest-deep);
    box-shadow: inset 0 -4px 0 var(--gold-light);
}

.hole-plan-card {
    margin-top: 14px;
    background: var(--paper);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.hole-plan-meta {
    display: grid;
    grid-template-columns: 1.1fr 0.65fr 0.85fr 1fr;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.hole-plan-meta > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 105px;
    padding: 18px 26px;
    border-right: 1px solid var(--line);
}

.hole-plan-meta > div:last-child {
    border-right: 0;
}

.hole-plan-meta span {
    color: #738079;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 800;
}

.hole-plan-meta strong {
    margin-top: 5px;
    color: var(--forest);
    font-family: var(--font-display);
    font-size: 29px;
    font-weight: 400;
}

.hole-plan-meta .hole-title {
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    gap: 12px;
    background: var(--gold);
}

.hole-plan-meta .hole-title span {
    color: rgba(10, 47, 37, 0.62);
}

.hole-plan-meta .hole-title strong {
    font-size: 46px;
}

.hole-plan-meta .plan-status strong {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
}

.hole-plan-visual {
    display: grid;
    place-items: center;
    min-height: 500px;
    padding: clamp(22px, 4vw, 58px);
    background: #fff;
}

.hole-plan-visual img {
    display: block;
    width: 100%;
    max-height: 700px;
    object-fit: contain;
    animation: hole-plan-in 0.28s both;
}

.hole-plan-visual.aerial-view {
    background: #e8e2d5;
}

@keyframes hole-plan-in {
    0% { opacity: 0; transform: translateY(7px); }
    100% { opacity: 1; transform: none; }
}

.hole-plan-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    min-height: 83px;
    padding: 16px 24px;
    background: var(--cream);
    border-top: 1px solid var(--line);
}

.hole-plan-footer > p {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
}

.hole-plan-footer > p strong {
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
}

.hole-plan-footer > p span {
    color: var(--muted);
    font-size: 11px;
}

.hole-controls {
    display: flex;
    flex: none;
    align-items: center;
    gap: 16px;
}

.hole-controls button {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--forest);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.hole-controls button:hover {
    background: var(--forest);
    color: #fff;
}

.hole-controls span {
    min-width: 60px;
    text-align: center;
    color: var(--muted);
    letter-spacing: 0.08em;
    font-size: 10px;
    font-weight: 800;
}

/* ============ RATES ============ */
.rates-section {
    padding-block: clamp(90px, 10vw, 150px);
}

.rate-toggle {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
}

.rate-toggle button {
    min-height: 42px;
    padding: 8px 16px;
    background: none;
    border: 0;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.rate-toggle button.active {
    background: var(--forest);
    color: #fff;
}

.rate-period {
    margin: 38px 0 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 13px;
    font-weight: 750;
}

.rate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.rate-grid article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
    padding: 28px;
    background: #fff;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.rate-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.rate-grid strong {
    margin-top: 28px;
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.rate-grid span {
    color: #819087;
    font-size: 12px;
}

.rates-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 28px;
}

.rates-footer p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ============ MEMBERSHIP ============ */
.membership-section {
    background: var(--forest-deep);
    color: #fff;
    padding: clamp(90px, 10vw, 150px) 0;
}

.membership-heading {
    align-items: flex-end;
    margin-bottom: clamp(34px, 4vw, 58px);
}

.membership-heading > div {
    max-width: 900px;
}

.membership-heading > p {
    max-width: 440px;
    margin: 0 0 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.75;
}

.member-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 44px 0 22px;
}

.member-benefits span {
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    font-weight: 750;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.membership-grid article {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.035);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.membership-grid article.featured-membership {
    background: var(--gold);
    color: #15231e;
}

.popular-tag {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 8px 10px;
    background: var(--forest);
    color: #fff;
    border-radius: 999px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 800;
}

.member-name {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 13px;
    font-weight: 750;
}

.featured-membership .member-name {
    color: rgba(21, 35, 30, 0.65);
}

.membership-grid strong {
    margin-top: 27px;
    font-family: var(--font-display);
    font-size: 47px;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.per-year {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
}

.featured-membership .per-year {
    color: rgba(21, 35, 30, 0.6);
}

.member-detail {
    margin: 28px 0 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.featured-membership .member-detail {
    color: rgba(21, 35, 30, 0.75);
}

.entry-fee {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
}

.featured-membership .entry-fee {
    color: rgba(21, 35, 30, 0.6);
}

.membership-grid article > a {
    align-self: flex-start;
    margin-top: 18px;
    padding: 12px 0 7px;
    border-bottom: 1px solid;
    color: inherit;
    font-size: 13px;
    font-weight: 800;
}

.membership-note {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    margin-top: 24px;
}

.membership-note p {
    max-width: 850px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    line-height: 1.65;
}

.membership-all {
    flex: none;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.membership-all:hover {
    background: rgba(255, 255, 255, 0.07);
}

/* ============ ESTATE ============ */
.estate-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 970px;
    overflow: hidden;
    color: #fff;
}

.estate-section > img,
.estate-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.estate-section > img {
    object-fit: cover;
    object-position: center;
}

.estate-overlay {
    background:
        linear-gradient(90deg, rgba(2, 19, 14, 0.94) 0%, rgba(2, 19, 14, 0.78) 56%, rgba(2, 19, 14, 0.36) 100%),
        linear-gradient(rgba(0, 0, 0, 0) 45%, rgba(2, 19, 14, 0.68));
}

.estate-content {
    position: relative;
    z-index: 2;
    padding: clamp(90px, 10vw, 150px) 0;
}

.estate-content h2 {
    max-width: 950px;
    margin-bottom: clamp(42px, 5vw, 78px);
    font-size: clamp(58px, 7.5vw, 112px);
    line-height: 0.95;
}

.estate-intro {
    max-width: 720px;
    margin: 28px 0 46px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.75;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 540px));
    gap: 14px;
}

.role-grid article {
    position: relative;
    min-height: 310px;
    padding: 30px;
    background: rgba(5, 35, 26, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.role-grid article:last-child {
    background: rgba(213, 166, 42, 0.92);
    border-color: transparent;
    color: #17241f;
}

.role-index {
    position: absolute;
    top: 26px;
    right: 26px;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-display);
    font-size: 28px;
}

.role-grid article:last-child .role-index {
    color: rgba(23, 36, 31, 0.35);
}

.role-kicker {
    margin: 0 0 40px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
}

.role-grid h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 35px;
    font-weight: 400;
}

.role-grid article > p:not(.role-kicker) {
    max-width: 420px;
    margin: 16px 0 26px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.65;
}

.role-grid article:last-child > p:not(.role-kicker) {
    color: rgba(23, 36, 31, 0.7);
}

.role-grid a {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 8px 0;
    border-bottom: 1px solid;
    font-size: 12px;
    font-weight: 800;
}

.estate-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1095px;
    margin-top: 14px;
    background: rgba(4, 29, 21, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.estate-stats div {
    min-height: 106px;
    padding: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.estate-stats div:last-child {
    border: 0;
}

.estate-stats strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 400;
}

.estate-stats span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.52);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 9px;
}

/* ============ EVENTS ============ */
.events-section {
    padding-block: clamp(90px, 10vw, 150px);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.event-grid article {
    display: flex;
    flex-direction: column;
    min-height: 360px;
    padding: 27px;
    background: #fff;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.2s ease, transform 0.2s ease;
}

.event-grid article:hover {
    background: var(--cream);
    transform: translateY(-4px);
}

.event-date {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 30px;
}

.event-type {
    margin: 42px 0 8px;
    color: #829087;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 800;
}

.event-grid h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.15;
}

.event-grid article > p:last-of-type {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.event-grid a {
    align-self: flex-start;
    margin-top: auto;
    padding: 8px 0;
    border-bottom: 1px solid;
    font-size: 11px;
    font-weight: 800;
}

/* ============ VISIT ============ */
.visit-section {
    background: var(--forest);
    color: #fff;
    padding: clamp(90px, 10vw, 150px) 0;
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    align-items: center;
    gap: clamp(60px, 9vw, 150px);
}

.visit-copy {
    max-width: 650px;
    margin: 28px 0 38px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.75;
}

.contact-list {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-list a {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-list span {
    color: var(--gold-light);
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
}

.contact-list strong {
    overflow-wrap: anywhere;
    font-size: 14px;
    font-weight: 600;
}

.visit-card {
    --card-pad: 42px;
    position: relative;
    min-height: 600px;
    padding: var(--card-pad);
    background: var(--cream);
    color: var(--ink);
    border-radius: 250px 250px 8px 8px;
    overflow: hidden;
}

.visit-card-image {
    position: relative;
    z-index: 2;
    display: block;
    width: calc(100% + var(--card-pad) * 2);
    max-width: none;
    aspect-ratio: 5 / 4;
    height: auto;
    margin: calc(var(--card-pad) * -1) calc(var(--card-pad) * -1) 30px;
    object-fit: cover;
    object-position: center;
}

.visit-card > p {
    position: relative;
    z-index: 2;
    text-align: center;
    font-family: var(--font-display);
    font-size: 27px;
}

.distance-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin-top: 38px;
}

.distance-list span {
    padding: 13px;
    background: rgba(251, 250, 245, 0.7);
    border: 1px solid var(--line);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 10px;
}

.distance-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--forest);
    text-transform: none;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 400;
}

.visit-card > a {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    padding: 15px 18px;
    background: var(--forest);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

/* ============ BOOKING ============ */
.booking-section {
    background: var(--gold);
    padding: clamp(85px, 9vw, 130px) 0;
}

.booking-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: clamp(55px, 8vw, 120px);
}

.booking-section .eyebrow {
    color: rgba(20, 34, 29, 0.63);
}

.booking-options {
    border-top: 1px solid rgba(20, 34, 29, 0.27);
}

.booking-options a {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 3px 18px;
    width: 100%;
    padding: 23px 0;
    border-bottom: 1px solid rgba(20, 34, 29, 0.27);
    color: var(--ink);
    text-align: left;
}

.booking-options a > span {
    grid-row: 1 / 3;
    color: rgba(20, 34, 29, 0.55);
    font-size: 10px;
    font-weight: 800;
}

.booking-options strong {
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 400;
}

.booking-options small {
    color: rgba(20, 34, 29, 0.65);
    font-size: 11px;
}

.booking-options i {
    grid-area: 1 / 3 / 3;
    font-size: 25px;
    font-style: normal;
    transition: transform 0.2s ease;
}

.booking-options a:hover i {
    transform: translateX(6px);
}

/* ============ MOBILE ACTION BAR ============ */
.mobile-action-bar {
    display: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
    .hero-content {
        width: calc(100% - 48px);
        margin-bottom: 175px;
        margin-left: 24px;
    }

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

    .hero-facts div {
        min-height: 84px;
        padding: 14px 24px;
    }

    .course-section {
        grid-template-columns: 1fr;
    }

    .course-visual {
        width: min(660px, 100%);
        min-height: 680px;
    }

    .holes-layout {
        grid-template-columns: 1fr;
    }

    .hole-tabs {
        grid-template-columns: repeat(9, 1fr);
    }

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

    .membership-heading,
    .visit-layout,
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .estate-section {
        min-height: 1100px;
    }

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

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

    .hero-image {
        object-position: 62% center;
    }

    .hero-shade {
        background: linear-gradient(rgba(2, 20, 14, 0.15), rgba(2, 20, 14, 0.48) 28%, rgba(2, 20, 14, 0.92) 100%);
    }

    .hero-content {
        margin-bottom: 250px;
    }

    .hero h1 {
        font-size: clamp(46px, 13vw, 76px);
        white-space: normal;
    }

    .hero-copy {
        font-size: 16px;
        line-height: 1.55;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-facts div {
        padding: 13px 24px;
    }

    .hero-facts strong {
        font-size: 24px;
    }

    .hero-facts span {
        font-size: 9px;
    }

    .intro-band {
        grid-template-columns: auto 1fr;
        gap: 18px;
        padding: 26px 24px;
    }

    .intro-number {
        font-size: 54px;
    }

    .intro-band p {
        font-size: 13px;
    }

    .intro-band a {
        grid-column: 2;
        justify-self: start;
    }

    .course-visual {
        border-radius: 16px;
        min-height: 520px;
    }

    .course-copy h2,
    .holes-section h2,
    .rates-section h2,
    .membership-heading h2,
    .estate-content h2,
    .events-section h2,
    .visit-section h2,
    .booking-section h2 {
        font-size: 47px;
    }

    .course-copy .lead {
        font-size: 16px;
        line-height: 1.65;
    }

    .course-plan-summary {
        grid-template-columns: 1fr;
    }

    .hole-tabs {
        grid-template-columns: repeat(6, 1fr);
    }

    .hole-tabs button {
        min-height: 52px;
    }

    .hole-plan-meta {
        grid-template-columns: repeat(2, 1fr);
    }

    .hole-plan-meta > div {
        min-height: 88px;
        padding: 14px 17px;
        border-bottom: 1px solid var(--line);
    }

    .hole-plan-meta > div:nth-child(2) {
        border-right: 0;
    }

    .hole-plan-meta .hole-title strong {
        font-size: 38px;
    }

    .hole-plan-meta strong {
        font-size: 23px;
    }

    .hole-plan-visual {
        min-height: 330px;
        padding: 18px;
    }

    .hole-plan-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .hole-controls {
        justify-content: space-between;
        width: 100%;
    }

    .rates-footer {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .rate-grid article {
        min-height: 156px;
        padding: 20px;
    }

    .rate-grid strong {
        font-size: 36px;
    }

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

    .membership-grid article {
        min-height: 300px;
    }

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

    .member-benefits {
        flex-wrap: nowrap;
        margin-inline: -24px;
        padding-inline: 24px;
        overflow-x: auto;
    }

    .member-benefits span {
        flex: none;
    }

    .estate-section {
        align-items: flex-start;
        min-height: 1500px;
    }

    .estate-content {
        padding-top: 95px;
    }

    .estate-content h2 {
        font-size: 54px;
    }

    .role-grid,
    .estate-stats {
        grid-template-columns: 1fr;
    }

    .role-grid article {
        min-height: 300px;
    }

    .estate-stats div {
        min-height: 80px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .event-grid article {
        min-height: 315px;
    }

    .visit-card {
        --card-pad: 28px;
        min-height: 520px;
        border-radius: 170px 170px 8px 8px;
    }

    .contact-list a {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    /* Sticky mobile action bar */
    .mobile-action-bar {
        position: fixed;
        inset: auto 0 0;
        z-index: 60;
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        padding: 8px;
        background: rgba(251, 250, 245, 0.96);
        border-top: 1px solid var(--line);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .mobile-action-bar a {
        display: grid;
        place-items: center;
        min-height: 48px;
        color: var(--forest);
        font-size: 12px;
        font-weight: 800;
    }

    .mobile-action-bar .mobile-book {
        background: var(--forest);
        color: #fff;
    }
}
