.hero,
.page-hero {
    --parallax-y: 0px;
    position: relative;
    display: grid;
    overflow: hidden;
    isolation: isolate;
    background: var(--wood-deep);
}

.hero {
    min-height: calc(100vh - 86px);
    align-items: center;
}

.hero::before,
.page-hero::before {
    position: absolute;
    inset: -90px 0;
    z-index: -4;
    content: "";
    background-image: var(--hero-image, var(--page-hero-image));
    background-position: center;
    background-size: cover;
    filter: saturate(0.62) contrast(1.1);
    transform: translateY(var(--parallax-y)) scale(1.06);
}

.hero-overlay,
.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(17, 13, 10, 0.97) 0%, rgba(27, 19, 14, 0.86) 52%, rgba(33, 23, 17, 0.28) 100%),
        linear-gradient(0deg, rgba(33, 23, 17, 0.72), transparent 52%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.58;
    pointer-events: none;
    background:
        radial-gradient(800px 520px at 12% 20%, rgba(212, 192, 161, 0.12), transparent 60%),
        radial-gradient(650px 420px at 88% 24%, rgba(165, 78, 45, 0.13), transparent 66%);
    mix-blend-mode: screen;
}

.hero-road-line {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 10%;
    width: 2px;
    height: 100%;
    opacity: 0.4;
    background: repeating-linear-gradient(to bottom, var(--beige) 0 70px, transparent 70px 118px);
    transform: rotate(12deg);
    transform-origin: top;
}

.hero-deco,
.cta-deco {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(212, 192, 161, 0.25);
    pointer-events: none;
}

.hero-deco-a {
    top: 18%;
    right: 7%;
    width: 145px;
    height: 145px;
    transform: rotate(45deg);
    animation: decoFloat 7s ease-in-out infinite;
}

.hero-deco-b {
    right: 17%;
    bottom: 17%;
    width: 96px;
    height: 96px;
    transform: rotate(12deg);
    animation: decoFloat 8s ease-in-out 0.8s infinite reverse;
}

.hero-content {
    padding-top: 72px;
    padding-bottom: 92px;
}

.hero-brand-seal {
    width: 112px;
    height: 112px;
    margin-bottom: 22px;
}

.hero-brand-seal img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.4));
}

.hero h1 {
    margin-bottom: 26px;
    font-size: clamp(3.8rem, 9vw, 8.5rem);
    letter-spacing: -0.055em;
}

.hero p {
    max-width: 650px;
    margin-bottom: 34px;
    color: rgba(240, 229, 212, 0.84);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-proof {
    display: flex;
    gap: 28px;
    margin-top: 44px;
    color: var(--muted);
    font-family: var(--font-interface);
    font-size: 0.82rem;
}

.hero-proof span {
    display: flex;
    gap: 7px;
    align-items: baseline;
}

.hero-proof strong {
    color: var(--cream);
    font-family: var(--font-brand);
    font-size: 1.7rem;
}

.scroll-cue {
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 50%;
    display: grid;
    gap: 4px;
    justify-items: center;
    color: var(--beige);
    font-family: var(--font-interface);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue i {
    animation: scrollBounce 1.6s infinite;
}

.page-hero {
    min-height: 62vh;
    align-items: center;
    padding: 120px 0 100px;
}

.page-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.4rem, 8vw, 7rem);
    letter-spacing: -0.045em;
}

.page-hero p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(240, 229, 212, 0.84);
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.highlight-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(90deg, var(--wood-deep), #2d211a, var(--wood-deep));
}

.highlight-item {
    display: flex;
    gap: 13px;
    min-height: 112px;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-right: 1px solid var(--border);
    color: var(--cream);
    font-family: var(--font-interface);
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
}

.highlight-item:last-child {
    border-right: 0;
}

.highlight-icon {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--beige);
    background: var(--wood-deep);
    transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.highlight-item:hover .highlight-icon {
    color: var(--wood-deep);
    background: var(--beige);
    transform: translateY(-4px) rotate(-5deg);
}

.about-section,
.content-section {
    background:
        radial-gradient(circle at 10% 80%, rgba(98, 69, 47, 0.18), transparent 28%),
        var(--asphalt);
}

.road-frame {
    position: relative;
    margin: 0 0 26px 26px;
}

.road-frame::before {
    position: absolute;
    z-index: -1;
    inset: 24px 24px -24px -24px;
    content: "";
    border: 1px solid var(--beige);
    border-radius: var(--radius-md);
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.road-frame-reverse {
    margin: 0 26px 26px 0;
}

.road-frame-reverse::before {
    inset: -24px -24px 24px 24px;
}

.road-frame img {
    width: 100%;
    min-height: 530px;
    border-radius: var(--radius-md);
    object-fit: cover;
    filter: saturate(0.65) contrast(1.08);
    transition: filter 0.55s ease, transform 0.75s ease;
}

.image-hover-frame {
    overflow: visible;
}

.image-hover-frame:hover img {
    filter: saturate(0.9) contrast(1.06);
    transform: scale(1.025);
}

.image-hover-frame:hover::before {
    opacity: 0.85;
    transform: translate(7px, 7px);
}

.frame-stamp {
    position: absolute;
    right: 24px;
    bottom: 24px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--cream);
    background: rgba(33, 23, 17, 0.86);
    font-family: var(--font-interface);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-section p,
.content-section p {
    max-width: 640px;
    font-size: 1.04rem;
}

.services-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(rgba(33, 23, 17, 0.94), rgba(33, 23, 17, 0.94)),
        repeating-linear-gradient(90deg, #302219 0 5px, #281c15 5px 10px);
}

.experience-section,
.process-section {
    background:
        radial-gradient(circle at 86% 20%, rgba(133, 31, 28, 0.16), transparent 35%),
        var(--asphalt);
}

.lead-copy {
    font-size: 1.08rem;
}

.experience-steps {
    display: grid;
    gap: 15px;
    margin-top: 34px;
}

.experience-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.experience-step:hover {
    border-color: var(--border);
    background: rgba(56, 38, 27, 0.54);
    transform: translateX(6px);
}

.step-number {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border: 2px solid rgba(212, 192, 161, 0.8);
    border-radius: 50%;
    color: var(--cream);
    background: var(--wood-deep);
    font-weight: 700;
    transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.experience-step:hover .step-number {
    color: var(--wood-deep);
    background: var(--beige);
    transform: rotate(-6deg);
}

.experience-step h3 {
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.experience-step p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.compact-steps {
    margin-top: 0;
}

.units-section,
.booking-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(133, 31, 28, 0.18), transparent 42%),
        #170e0b;
}

.units-heading {
    display: grid;
    max-width: none;
    grid-template-columns: 1fr minmax(300px, 560px);
    gap: 40px;
    align-items: end;
}

.units-heading p {
    margin: 0;
}

.instagram-section {
    padding-top: clamp(56px, 7vw, 108px);
    background: #170e0b;
}

.instagram-panel,
.location-note {
    display: flex;
    justify-content: space-between;
    gap: 34px;
    align-items: center;
    padding: clamp(38px, 6vw, 76px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 95% 0%, rgba(165, 78, 45, 0.2), transparent 35%),
        linear-gradient(135deg, var(--wood-dark), var(--asphalt));
    box-shadow: var(--shadow);
}

.instagram-panel h2,
.location-note h2 {
    max-width: 800px;
    margin-bottom: 0;
    font-size: clamp(2rem, 4.5vw, 4rem);
}

.instagram-panel .btn,
.location-note .btn {
    flex: 0 0 auto;
}

.location-note-section {
    padding-top: 0;
    background: #170e0b;
}

.location-note p {
    margin-bottom: 0;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 11vw, 170px) 0;
    background:
        linear-gradient(rgba(20, 15, 12, 0.86), rgba(20, 15, 12, 0.93)),
        var(--cta-image) center/cover;
}

.final-cta::before,
.final-cta::after {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    content: "";
    opacity: 0.34;
    background: repeating-linear-gradient(to bottom, var(--beige) 0 70px, transparent 70px 118px);
}

.final-cta::before {
    left: 9%;
    transform: rotate(-9deg);
}

.final-cta::after {
    right: 9%;
    transform: rotate(9deg);
}

.cta-deco-a {
    top: 12%;
    left: 7%;
    width: 132px;
    height: 132px;
    transform: rotate(12deg);
}

.cta-deco-b {
    right: 7%;
    bottom: 12%;
    width: 170px;
    height: 170px;
    transform: rotate(-12deg);
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    max-width: 900px;
    margin: 0 auto 34px;
}

.cta-logo {
    width: 86px;
    height: 86px;
    margin: 0 auto 24px;
}

.cta-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}

.error-page {
    display: grid;
    min-height: 75vh;
    align-items: center;
    padding: 100px 0;
    background:
        radial-gradient(circle at 50% 30%, rgba(133, 31, 28, 0.22), transparent 36%),
        var(--asphalt);
}

.error-page img {
    width: 130px;
    height: 130px;
    margin: 0 auto 28px;
    border-radius: 50%;
}

.error-page h1 {
    max-width: 900px;
    margin: 0 auto 22px;
    font-size: clamp(3rem, 7vw, 6rem);
}

.route-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(98, 69, 47, 0.2), transparent 28%),
        radial-gradient(circle at 88% 78%, rgba(165, 78, 45, 0.12), transparent 25%),
        var(--asphalt);
}

/* =========================================================
   Routed pages — each route has its own composition
   ========================================================= */
.route-label {
    display: block;
    margin-bottom: 18px;
    color: rgba(212, 192, 161, 0.72);
    font-family: var(--font-interface);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* About */
.about-masthead {
    position: relative;
    overflow: hidden;
    padding: clamp(88px, 10vw, 158px) 0 clamp(96px, 11vw, 170px);
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 10% 20%, rgba(165, 78, 45, 0.15), transparent 28%),
        linear-gradient(125deg, #181411 0 58%, #2b1c15 58% 100%);
}

.about-masthead-texture {
    position: absolute;
    inset: 0;
    opacity: 0.23;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, transparent 0 49.7%, rgba(212, 192, 161, 0.13) 50%, transparent 50.3%),
        repeating-linear-gradient(0deg, rgba(255,255,255,.015) 0 1px, transparent 1px 7px);
}

.about-masthead-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: clamp(54px, 8vw, 118px);
    align-items: center;
}

.about-masthead-copy h1 {
    max-width: 780px;
    margin-bottom: 30px;
    font-size: clamp(4.4rem, 8.4vw, 8rem);
    letter-spacing: -0.058em;
}

.about-masthead-copy > p {
    max-width: 660px;
    font-size: clamp(1.04rem, 1.55vw, 1.3rem);
}

.about-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    margin-top: 42px;
    padding-top: 26px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--font-interface);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.about-facts span {
    display: inline-flex;
    gap: 8px;
    align-items: baseline;
}

.about-facts strong {
    color: var(--cream);
    font-family: var(--font-brand);
    font-size: 1.65rem;
}

.about-portrait {
    position: relative;
    max-width: 530px;
    margin-left: auto;
}

.about-portrait::before {
    position: absolute;
    inset: 28px -28px -28px 28px;
    content: "";
    border: 1px solid var(--beige);
    border-radius: 180px 180px 24px 24px;
    opacity: 0.42;
}

.about-portrait-frame {
    position: relative;
    height: min(650px, 68vw);
    min-height: 500px;
    overflow: hidden;
    border-radius: 180px 180px 24px 24px;
    box-shadow: var(--shadow);
}

.about-portrait-frame::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(18, 14, 11, 0.04), rgba(18, 14, 11, 0.76));
}

.about-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.62) contrast(1.08);
    transition: transform .8s ease, filter .5s ease;
}

.about-portrait:hover .about-portrait-frame img {
    filter: saturate(.9) contrast(1.06);
    transform: scale(1.045);
}

.about-image-index {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 22px;
    color: var(--beige);
    font-family: var(--font-interface);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .15em;
}

.about-seal {
    position: absolute;
    z-index: 3;
    bottom: 44px;
    left: -44px;
    width: 112px;
    height: 112px;
    padding: 7px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--cream);
    box-shadow: 0 18px 45px rgba(0,0,0,.38);
    transition: transform .35s ease;
}

.about-portrait:hover .about-seal {
    transform: rotate(-7deg) scale(1.04);
}

.about-seal img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.about-portrait-caption {
    position: relative;
    margin: 28px 0 0 44px;
    font-family: var(--font-interface);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-manifesto {
    background: var(--cream);
}

.about-manifesto .route-label,
.about-manifesto p {
    color: #6d5a49;
}

.about-manifesto h2,
.about-manifesto h3 {
    color: var(--wood-deep);
}

.about-manifesto-title {
    display: grid;
    grid-template-columns: minmax(180px, .35fr) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
    margin-bottom: 76px;
}

.about-manifesto-title h2 {
    max-width: 990px;
    margin: 0;
    font-size: clamp(3rem, 6.5vw, 6rem);
    letter-spacing: -.045em;
}

.about-manifesto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(33,23,17,.22);
    border-bottom: 1px solid rgba(33,23,17,.22);
}

.about-manifesto-grid > div {
    min-height: 280px;
    padding: 38px 32px;
    border-right: 1px solid rgba(33,23,17,.22);
}

.about-manifesto-grid > div:last-child {
    border-right: 0;
}

.about-manifesto-grid h3 {
    margin-bottom: 18px;
    font-size: 2rem;
}

.manifesto-number {
    display: block;
    margin-bottom: 36px;
    color: var(--oxblood);
    font-family: var(--font-interface);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .2em;
}

/* Services */
.services-masthead {
    position: relative;
    overflow: hidden;
    padding: clamp(92px, 11vw, 170px) 0;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(90deg, rgba(33,23,17,.98), rgba(33,23,17,.86)),
        repeating-linear-gradient(90deg, #34251d 0 6px, #2c1f18 6px 12px);
}

.services-masthead::after {
    position: absolute;
    top: -12%;
    right: 4%;
    width: 380px;
    height: 380px;
    content: "";
    border: 1px solid rgba(212,192,161,.16);
    border-radius: 50%;
    box-shadow: 0 0 0 58px rgba(212,192,161,.035), 0 0 0 116px rgba(212,192,161,.025);
}

.services-masthead-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(430px, .72fr);
    gap: clamp(56px, 8vw, 120px);
    align-items: end;
}

.services-title-block h1 {
    max-width: 820px;
    margin-bottom: 28px;
    font-size: clamp(4.2rem, 8.7vw, 8.2rem);
    letter-spacing: -.06em;
}

.services-title-block > p {
    max-width: 660px;
    margin-bottom: 32px;
    font-size: 1.08rem;
}

.services-index {
    position: relative;
    z-index: 3;
    display: grid;
    border-top: 1px solid var(--border);
}

.services-index a {
    display: grid;
    grid-template-columns: 46px 1fr 22px;
    gap: 16px;
    align-items: center;
    padding: 17px 4px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    transition: padding .25s ease, color .25s ease, background .25s ease;
}

.services-index a:hover {
    padding-right: 12px;
    padding-left: 12px;
    color: var(--beige);
    background: rgba(212,192,161,.05);
}

.services-index span,
.services-index i {
    color: var(--beige);
    font-family: var(--font-interface);
    font-size: .68rem;
}

.services-index strong {
    font-size: 1.02rem;
    font-weight: 500;
}

.service-ledger {
    padding: clamp(90px, 10vw, 150px) 0;
    background: #171411;
}

.service-ledger-heading {
    display: grid;
    grid-template-columns: .38fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 62px;
}

.service-ledger-heading h2 {
    max-width: 900px;
    margin: 0;
}

.service-ledger-list {
    border-top: 1px solid var(--border);
}

.service-ledger-row {
    display: grid;
    grid-template-columns: 70px 150px minmax(0, 1fr) 120px;
    gap: 28px;
    align-items: center;
    min-height: 190px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    transition: padding .35s ease, background .35s ease;
}

.service-ledger-row:hover {
    padding-right: 18px;
    padding-left: 18px;
    background: linear-gradient(90deg, rgba(98,69,47,.24), transparent);
}

.service-ledger-number {
    color: var(--beige);
    font-family: var(--font-interface);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .2em;
}

.service-ledger-media {
    height: 136px;
    overflow: hidden;
    border-radius: 8px;
}

.service-ledger-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.58) contrast(1.08);
    transition: transform .65s ease, filter .4s ease;
}

.service-ledger-row:hover .service-ledger-media img {
    filter: saturate(.95) contrast(1.05);
    transform: scale(1.08);
}

.service-ledger-copy h3 {
    margin-bottom: 8px;
    font-size: clamp(1.65rem, 3vw, 2.7rem);
}

.service-ledger-copy p {
    max-width: 650px;
    margin-bottom: 8px;
}

.service-ledger-copy small {
    color: var(--beige);
    font-family: var(--font-interface);
    font-size: .65rem;
}

.service-ledger-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--cream);
    font-family: var(--font-interface);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-decoration: none;
    text-transform: uppercase;
}

.service-ledger-action b {
    transition: transform .25s ease;
}

.service-ledger-action:hover {
    color: var(--beige);
}

.service-ledger-action:hover b {
    transform: translate(3px, -3px);
}

/* Units */
.units-masthead {
    position: relative;
    padding: clamp(88px, 10vw, 150px) 0 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 0, rgba(133,31,28,.2), transparent 34%),
        #170e0b;
}

.units-masthead-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .45fr);
    gap: 60px;
    align-items: end;
    padding-bottom: 70px;
}

.units-masthead-top h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(4.4rem, 9vw, 8.4rem);
    letter-spacing: -.06em;
}

.units-masthead-top > p {
    max-width: 500px;
    margin: 0 0 12px;
    font-size: 1.06rem;
}

.units-route-line {
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    align-items: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.units-route-line > i {
    position: relative;
    height: 1px;
    background: var(--beige);
}

.units-route-line > i::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    content: "";
    border-top: 1px solid var(--beige);
    border-right: 1px solid var(--beige);
    transform: translateY(-50%) rotate(45deg);
}

.units-route-line a {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 4px 18px;
    padding: 28px 20px;
    color: var(--text);
    text-decoration: none;
    transition: background .28s ease, padding .28s ease;
}

.units-route-line a:hover {
    padding-left: 30px;
    background: rgba(212,192,161,.05);
}

.units-route-line a > span {
    grid-row: 1 / 3;
    align-self: center;
    color: var(--beige);
    font-size: 2.6rem;
}

.units-route-line strong {
    font-size: 1.45rem;
}

.units-route-line small {
    color: var(--muted);
    font-family: var(--font-interface);
    font-size: .68rem;
}

/* Booking */
.booking-experience {
    display: grid;
    min-height: calc(100vh - 86px);
    grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr);
    background: #171411;
}

.booking-experience-aside {
    position: sticky;
    top: 86px;
    height: calc(100vh - 86px);
    overflow: hidden;
    border-right: 1px solid var(--border);
    background:
        linear-gradient(rgba(25,18,14,.84), rgba(25,18,14,.93)),
        url('https://imagedelivery.net/xaKlCos5cTg_1RWzIu_h-A/b51c5f33-697b-4d80-b8a7-0ad19d6cba00/public') center/cover;
}

.booking-experience-aside::after {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .5;
    background: radial-gradient(circle at 20% 20%, rgba(212,192,161,.15), transparent 35%);
}

.booking-aside-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: clamp(54px, 7vw, 110px);
}

.booking-aside-logo {
    width: 104px;
    height: 104px;
    margin-bottom: 34px;
    border-radius: 50%;
    box-shadow: 0 16px 38px rgba(0,0,0,.38);
}

.booking-aside-inner h1 {
    max-width: 760px;
    margin-bottom: 28px;
    font-size: clamp(4rem, 7vw, 7.2rem);
    letter-spacing: -.055em;
}

.booking-aside-inner > p {
    max-width: 620px;
    font-size: 1.05rem;
}

.booking-steps {
    display: grid;
    gap: 14px;
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
}

.booking-steps li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--cream);
    font-family: var(--font-interface);
    font-size: .78rem;
    font-weight: 700;
}

.booking-steps span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--beige);
}

.booking-experience-options {
    padding: clamp(66px, 8vw, 120px) clamp(32px, 7vw, 110px);
}

.booking-options-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--font-interface);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.booking-options-heading strong {
    color: var(--beige);
}

.booking-choice-list {
    display: grid;
    gap: 26px;
}

.booking-choice {
    position: relative;
    display: grid;
    grid-template-columns: 74px minmax(290px, 1fr) minmax(210px, .42fr);
    gap: 28px;
    align-items: start;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0, rgba(165,78,45,.16), transparent 34%),
        linear-gradient(145deg, #301914, #211711);
    box-shadow: var(--shadow);
    transition: transform .35s ease, border-color .35s ease;
}

.booking-choice:hover {
    border-color: rgba(212,192,161,.68);
    transform: translateY(-6px);
}

.booking-choice-number {
    padding-top: 44px;
    color: rgba(212,192,161,.42);
    font-size: clamp(3.6rem, 5vw, 5.4rem);
    line-height: 1;
}

.booking-choice-main h2 {
    min-height: 2.08em;
    margin-bottom: 16px;
    font-size: clamp(2.55rem, 3.7vw, 3.9rem);
}

.booking-choice-main address {
    margin: 0;
    color: var(--cream);
    font-style: normal;
}

.booking-choice-main address span {
    color: var(--muted);
}

.booking-choice-meta {
    display: grid;
    gap: 10px;
    align-self: center;
    padding-left: 24px;
    border-left: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--font-interface);
    font-size: .72rem;
}

.booking-choice-meta > span,
.booking-choice-meta > a {
    display: flex;
    gap: 8px;
    align-items: center;
}

.booking-choice-meta i.fa-star {
    color: #f2bd4f;
}

.booking-choice-meta .status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
}

.booking-choice-meta a {
    color: var(--beige);
    font-weight: 800;
    text-decoration: none;
}

.booking-choice-actions {
    grid-column: 2 / 4;
    display: flex;
    gap: 22px;
    align-items: center;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.booking-note {
    max-width: 700px;
    margin: 34px auto 0;
    font-family: var(--font-interface);
    font-size: .7rem;
    text-align: center;
}

.booking-choice-meta .is-closed .status-dot {
    background: #b55e4c;
    box-shadow: 0 0 0 5px rgba(181, 94, 76, 0.14);
    animation: none;
}

.booking-choice-meta .is-soon .status-dot {
    background: #dcb05a;
    box-shadow: 0 0 0 5px rgba(220, 176, 90, 0.14);
}
