:root {
    --ease-mustard: #dfa83d;
    --ease-mustard-light: #f4dfaf;
    --ease-cream: #fbf5e8;
    --ease-paper: #fffaf0;
    --ease-brown: #33261f;
    --ease-red: #ad493c;
    --ease-olive: #59603a;
    --font-body: "DM Sans", sans-serif;
    --font-display: "DM Serif Display", serif;
    --type-hero: clamp(3.4rem, 7vw, 7.2rem);
    --type-section-title: clamp(2.75rem, 5vw, 4.5rem);
    --type-card-title: 1.35rem;
    --type-body: 1rem;
    --type-body-small: .875rem;
    --type-label: .72rem;
    --leading-body: 1.7;
    --glass-light: rgba(255, 250, 240, .66);
    --glass-light-strong: rgba(255, 255, 255, .8);
    --glass-dark: rgba(255, 250, 240, .075);
    --glass-border-light: rgba(255, 255, 255, .5);
    --glass-border-dark: rgba(255, 250, 240, .16);
    --glass-shadow: 0 18px 50px rgba(51, 38, 31, .1);
    --glass-blur: blur(16px) saturate(125%);
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
    color: var(--ease-brown);
    background: var(--ease-cream);
    font-family: var(--font-body);
    font-size: var(--type-body);
    line-height: var(--leading-body);
}

main,
section,
.container,
.container-fluid,
.row,
.row > * {
    min-width: 0;
}

img,
svg {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
.display-font {
    font-family: var(--font-display);
    font-weight: 400;
}

.display-3 {
    font-size: var(--type-section-title);
    line-height: 1.06;
    letter-spacing: -.025em;
}

.section-padding {
    padding: 6.5rem 0;
}

.eyebrow {
    color: var(--ease-red);
    font-size: var(--type-label);
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.navbar {
    background: rgba(251, 245, 232, .76);
    border-bottom: 1px solid rgba(255, 255, 255, .55);
    box-shadow: 0 8px 28px rgba(51, 38, 31, .07);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.navbar-brand img {
    width: 150px;
    height: 62px;
    object-fit: cover;
    object-position: center;
}

.navbar .nav-link {
    color: var(--ease-brown);
    font-size: .92rem;
    font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--ease-red);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.btn-ease {
    padding: .76rem 1.25rem;
    color: var(--ease-cream);
    background: var(--ease-red);
    border: 1px solid var(--ease-red);
    border-radius: 10px;
    font-weight: 700;
}

.btn-ease:hover,
.btn-ease:focus {
    color: var(--ease-cream);
    background: #913b31;
    border-color: #913b31;
}

.btn-outline-ease {
    padding: .76rem 1.25rem;
    color: var(--ease-brown);
    border: 1px solid rgba(51, 38, 31, .45);
    border-radius: 0;
    background: rgba(255, 250, 240, .16);
    backdrop-filter: blur(10px);
    font-weight: 700;
}

.btn-outline-ease:hover,
.btn-outline-ease:focus {
    color: var(--ease-cream);
    background: var(--ease-brown);
}

.opening-popup {
    position: fixed;
    inset: 0;
    z-index: 1080;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1rem;
    background: rgba(26, 18, 12, .72);
    backdrop-filter: blur(7px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.opening-popup.active {
    opacity: 1;
    pointer-events: auto;
}

.opening-hero {
    display: flex;
    min-height: 100%;
    align-items: center;
    padding: 1rem 0;
    transform: translateY(24px) scale(.98);
    transition: transform .35s ease;
    width: 100%;
}

.opening-popup.active .opening-hero {
    transform: translateY(0) scale(1);
}

.opening-hero__card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(51, 38, 31, .13);
    background: var(--ease-paper);
    box-shadow: 0 28px 80px rgba(51, 38, 31, .1);
}

.opening-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    color: var(--ease-brown);
    border: 0;
    border-radius: 50%;
    background: rgba(251, 245, 232, .9);
    box-shadow: 0 5px 18px rgba(51, 38, 31, .14);
    transition: color .2s, background .2s, transform .2s;
}

.opening-popup__close:hover {
    color: #fff;
    background: var(--ease-red);
    transform: rotate(6deg);
}

.opening-hero__intro {
    min-height: 100%;
    padding: clamp(1.5rem, 2vw, 2rem) clamp(3rem, 7vw, 6.5rem) clamp(3rem, 7vw, 6.5rem);
    background:
        linear-gradient(rgba(255, 250, 240, .86), rgba(255, 250, 240, .86)),
        radial-gradient(circle at 80% 10%, var(--ease-mustard-light), transparent 45%);
}

.opening-hero__logo {
    display: block;
    width: min(100%, 200px);
    height: auto;
    margin: 0 0 2rem;
}

.opening-hero h1 {
    max-width: 620px;
    margin-bottom: 1.5rem;
    font-size: var(--type-section-title);
    line-height: .98;
    letter-spacing: -.035em;
}

.opening-hero__copy {
    max-width: 570px;
    margin-bottom: 1.25rem;
    color: #806b5d;
    font-size: var(--type-body);
    line-height: var(--leading-body);
}

.opening-hero__about {
    max-width: 570px;
    margin-bottom: 2.25rem;
    padding: .9rem 1rem;
    border-left: 3px solid #bd6c2c;
    background: rgba(189, 108, 44, .07);
}

.opening-hero__about h2 {
    margin: 0 0 .3rem;
    color: var(--ease-brown);
    font-family: "DM Sans", sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.opening-hero__about p {
    margin: 0;
    color: #806b5d;
    font-size: .86rem;
    line-height: 1.5;
}

.opening-date {
    display: flex;
    width: 122px;
    min-height: 166px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ease-cream);
    background: #55301b;
    border-radius: 20px;
}

.opening-date span {
    font-size: .74rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.opening-date strong {
    color: #f0a044;
    font-family: "DM Serif Display", serif;
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 1.05;
}

.opening-date small {
    color: rgba(251, 245, 232, .55);
}

.opening-form-wrap {
    height: 100%;
    padding: clamp(2rem, 4.5vw, 4rem);
    background: #fff;
    border-left: 1px solid rgba(51, 38, 31, .1);
}

.opening-form-wrap h2 {
    margin-bottom: .45rem;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.opening-form__meta {
    margin-bottom: 2rem;
    color: #806b5d;
    font-size: .84rem;
}

.opening-form label,
.opening-form legend {
    display: block;
    margin-bottom: .5rem;
    color: var(--ease-brown);
    font-size: .8rem;
    font-weight: 700;
}

.opening-form label span {
    color: #806b5d;
    font-weight: 400;
}

.opening-form input:not([type="radio"]),
.opening-form select,
.opening-form textarea {
    width: 100%;
    padding: .82rem .9rem;
    color: var(--ease-brown);
    border: 1px solid #e6d4c3;
    border-radius: 10px;
    outline: none;
    background: #fbf8f3;
    font: inherit;
    font-size: var(--type-body-small);
    transition: border-color .2s, box-shadow .2s;
}

.opening-form input:focus,
.opening-form select:focus,
.opening-form textarea:focus {
    border-color: var(--ease-mustard);
    box-shadow: 0 0 0 3px rgba(223, 168, 61, .14);
}

.opening-form textarea {
    resize: vertical;
}

.opening-form fieldset {
    margin: 0;
    border: 0;
}

.opening-slots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

.opening-slots label {
    position: relative;
    margin: 0;
    cursor: pointer;
}

.opening-slots input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.opening-slots span {
    display: flex;
    min-height: 64px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .55rem;
    color: var(--ease-brown);
    border: 1px solid #e6d4c3;
    border-radius: 10px;
    background: #fff;
    transition: border-color .2s, background .2s, box-shadow .2s;
    min-width: 0;
}

.opening-slots strong {
    font-size: .8rem;
}

.opening-slots small {
    margin-top: .25rem;
    color: #806b5d;
    font-size: .7rem;
    font-weight: 400;
}

.opening-slots input:checked + span {
    border-color: var(--ease-red);
    background: rgba(173, 73, 60, .06);
    box-shadow: inset 0 0 0 1px var(--ease-red);
}

.opening-slots input:focus-visible + span {
    outline: 3px solid rgba(223, 168, 61, .3);
    outline-offset: 2px;
}

.opening-form__note {
    display: flex;
    gap: .6rem;
    margin: 1.4rem 0 1rem;
    padding: .85rem 1rem;
    color: #75503d;
    border: 1px solid #ecd8c5;
    border-radius: 9px;
    background: #fff8f1;
    font-size: .78rem;
    line-height: 1.55;
}

.opening-form__note i {
    color: var(--ease-red);
}

.opening-form > button {
    width: 100%;
    padding: .95rem 1.25rem;
    color: var(--ease-cream);
    border: 0;
    border-radius: 10px;
    background: var(--ease-brown);
    font-weight: 700;
    transition: background .2s, transform .2s;
}

.opening-form > button:hover {
    background: var(--ease-red);
    transform: translateY(-2px);
}

.hero {
    min-height: 790px;
    padding-top: 82px;
    background: var(--ease-mustard);
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding: 7rem 0 5rem;
}

.opening-status {
    display: flex;
    align-items: center;
    gap: .8rem;
    width: fit-content;
    color: rgba(51, 38, 31, .62);
    font-size: .82rem;
    font-weight: 500;
}

.opening-status__pill {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem .85rem;
    color: var(--ease-brown);
    border: 1px solid rgba(51, 38, 31, .35);
    border-radius: 999px;
    background: rgba(255, 250, 240, .13);
}

.opening-status__dot {
    width: .5rem;
    height: .5rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--ease-red);
    box-shadow: 0 0 0 0 rgba(173, 73, 60, .48);
    animation: status-blink 1.6s ease-in-out infinite;
}

.opening-status__divider {
    width: 1px;
    height: 1.15rem;
    background: rgba(51, 38, 31, .3);
}

@keyframes status-blink {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(173, 73, 60, .48);
    }

    50% {
        opacity: .45;
        box-shadow: 0 0 0 .3rem rgba(173, 73, 60, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .opening-status__dot {
        animation: none;
    }
}

.hero h1 {
    max-width: 670px;
    font-size: var(--type-hero);
    line-height: .92;
    letter-spacing: -.035em;
}

.hero .lead {
    max-width: 510px;
    font-size: 1.075rem;
    line-height: var(--leading-body);
}

.hero-image-wrap {
    min-height: 708px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 708px;
    object-fit: cover;
}

.hero-note {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    max-width: 210px;
    padding: 1rem 1.15rem;
    background: var(--ease-paper);
    transform: rotate(-2deg);
    box-shadow: 0 12px 30px rgba(31, 21, 16, .2);
}

.hero-note strong {
    color: var(--ease-red);
}

.intro-mark {
    width: 72px;
    height: 4px;
    margin-bottom: 1.5rem;
    background: var(--ease-mustard);
}

.about-copy {
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    line-height: 1.35;
}

.about-copy em {
    color: var(--ease-red);
}

.how-section {
    background: var(--ease-brown);
    color: var(--ease-cream);
}

.step-card {
    height: 100%;
    padding: 2rem;
    border-top: 1px solid rgba(255, 250, 240, .25);
}

.step-number {
    display: block;
    margin-bottom: 2.5rem;
    color: var(--ease-mustard);
    font-family: "DM Serif Display", serif;
    font-size: 3rem;
}

.step-card p {
    color: rgba(251, 245, 232, .7);
    line-height: 1.7;
}

.space-card {
    position: relative;
    display: flex;
    min-height: 340px;
    padding: 2rem;
    overflow: hidden;
    align-items: flex-end;
    color: var(--ease-paper);
    border: 0;
    border-radius: 24px;
    background: #362014;
    transition: transform .25s ease, box-shadow .25s ease;
}

.space-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(51, 38, 31, .2);
}

.space-card .card-icon {
    position: absolute;
    top: 2.2rem;
    right: 2.2rem;
    font-size: 1.8rem;
    opacity: .24;
}

.space-card--social {
    background: linear-gradient(145deg, #5a3219, #180d08);
}

.space-card--focus {
    background: linear-gradient(145deg, #23493b, #06110d);
}

.space-card--unwind {
    background: linear-gradient(145deg, #53302f, #120807);
}

.space-card--casual {
    background: linear-gradient(145deg, #29472d, #071008);
}

.space-card__content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.space-card .space-card__label {
    margin-bottom: 1rem;
    color: #efa13f;
    font-size: var(--type-label);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.space-card h3 {
    margin-bottom: .8rem;
    color: var(--ease-paper);
    font-size: 1.85rem;
    line-height: 1.15;
}

.space-card__content > p:not(.space-card__label) {
    max-width: 92%;
    margin-bottom: 1rem;
    color: rgba(251, 245, 232, .65);
    font-size: var(--type-body-small);
    line-height: 1.65;
}

.space-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.space-tags span {
    padding: .38rem .75rem;
    color: rgba(251, 245, 232, .72);
    border: 1px solid rgba(251, 245, 232, .16);
    border-radius: 999px;
    background: rgba(251, 245, 232, .08);
    font-size: .75rem;
}

.events-section {
    color: var(--ease-paper);
    background: var(--ease-olive);
}

.events-label {
    display: inline-flex;
    margin-bottom: 1.7rem;
    padding: .48rem .9rem;
    color: #f0a044;
    border: 1px solid rgba(251, 245, 232, .22);
    border-radius: 999px;
    font-size: var(--type-label);
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.events-section h2 {
    max-width: 570px;
    margin-bottom: 1.4rem;
    color: var(--ease-paper);
    font-size: var(--type-section-title);
    line-height: 1.02;
}

.events-intro {
    max-width: 570px;
    color: rgba(251, 245, 232, .53);
    font-size: var(--type-body);
    line-height: var(--leading-body);
}

.event-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 2.5rem 0;
}

.event-stats div {
    text-align: center;
}

.event-stats strong {
    display: block;
    margin-bottom: .4rem;
    color: #f0a044;
    font-family: "DM Serif Display", serif;
    font-size: 2rem;
    font-weight: 400;
}

.event-stats sup {
    font-size: .7em;
}

.event-stats span {
    color: rgba(251, 245, 232, .5);
    font-size: var(--type-label);
    letter-spacing: .11em;
    text-transform: uppercase;
}

.event-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}

.event-types article {
    min-height: 145px;
    padding: 1.2rem;
    border: 1px solid rgba(251, 245, 232, .17);
    border-radius: 14px;
    background: rgba(251, 245, 232, .08);
}

.event-types article > span {
    display: block;
    margin-bottom: .75rem;
    font-size: 1.25rem;
}

.event-types h3 {
    margin-bottom: .4rem;
    color: var(--ease-paper);
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.event-types p {
    margin: 0;
    color: rgba(251, 245, 232, .5);
    font-size: var(--type-body-small);
    line-height: 1.65;
}

.events-enquire {
    display: inline-flex;
    gap: .6rem;
    margin-top: 2rem;
    padding: .85rem 1.5rem;
    color: var(--ease-paper);
    border: 1px solid rgba(251, 245, 232, .5);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s, background .2s;
}

.events-enquire:hover {
    color: var(--ease-olive);
    background: var(--ease-paper);
}

.event-includes {
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(251, 245, 232, .15);
    border-radius: 24px;
    background: rgba(251, 245, 232, .08);
}

.event-includes h3 {
    margin-bottom: 2rem;
    color: var(--ease-paper);
    font-size: 1.55rem;
}

.event-includes ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.event-includes li {
    display: flex;
    gap: .9rem;
    align-items: center;
    margin-bottom: 1rem;
}

.event-includes__icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: rgba(240, 160, 68, .16);
}

.event-includes li strong,
.event-includes li small {
    display: block;
}

.event-includes li strong {
    margin-bottom: .28rem;
    font-size: var(--type-body-small);
}

.event-includes li small {
    color: rgba(251, 245, 232, .48);
    font-size: .8rem;
}

.event-book {
    margin-top: 2rem;
    padding: 1.25rem;
    border: 1px solid rgba(251, 245, 232, .16);
    border-radius: 12px;
    background: rgba(251, 245, 232, .07);
}

.event-book p {
    margin-bottom: .7rem;
    color: #f0a044;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.event-book span {
    display: block;
    margin-bottom: .9rem;
    color: rgba(251, 245, 232, .85);
    font-size: .86rem;
    line-height: 1.6;
}

.event-book a {
    color: #f0a044;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
}

.visit-section {
    background: var(--ease-mustard-light);
}

/* Stretch both columns to equal height */
.visit-section .row {
    align-items: stretch;
}

.visit-section .row>[class*="col"] {
    display: flex;
    flex-direction: column;
}

.visit-panel {
    flex: 1;
    padding: clamp(2rem, 5vw, 4.5rem);
    background: var(--ease-paper);
}

.visit-row {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(51, 38, 31, .15);
}

.visit-row span:first-child {
    color: #79695f;
}

.quote-block {
    display: flex;
    height: 100%;
    padding: clamp(2rem, 5vw, 4.5rem);
    flex-direction: column;
    justify-content: space-between;
    color: var(--ease-cream);
    background: var(--ease-red);
}

.quote-block blockquote {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.15;
}

footer {
    color: var(--ease-cream);
    background: #241a15;
}

.footer-logo {
    width: min(260px, 80%);
    aspect-ratio: 2.4 / 1;
    object-fit: cover;
    object-position: center;
}

.footer-map {
    display: block;
    width: 100%;
    height: 260px;
    border-radius: 16px;
}

footer a {
    color: rgba(251, 245, 232, .76);
    text-decoration: none;
}

footer a:hover {
    color: var(--ease-mustard);
}

.whatsapp-contact {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1060;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    border-radius: 999px;
    background: #25d366;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.whatsapp-contact i {
    font-size: 1.65rem;
    line-height: 1;
}

.whatsapp-contact:hover,
.whatsapp-contact:focus-visible {
    color: #fff;
    background: #1eae54;
    transform: translateY(-3px);
}

.footer-bottom {
    color: rgba(251, 245, 232, .52);
    border-top: 1px solid rgba(251, 245, 232, .12);
    font-size: .86rem;
}

.pricing-section {
    background: #f5ede1;
}

.pricing-heading {
    max-width: 980px;
    margin: 0 auto 4.5rem;
}

.pricing-label {
    display: inline-flex;
    margin-bottom: 1.5rem;
    padding: .45rem .9rem;
    color: #c47735;
    border: 1px solid rgba(196, 119, 53, .3);
    border-radius: 999px;
    font-size: var(--type-label);
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.pricing-heading h2 {
    margin-bottom: 1.25rem;
    font-size: var(--type-section-title);
    line-height: 1.06;
    letter-spacing: -.025em;
}

.pricing-heading > p:last-child {
    max-width: 600px;
    margin: 0 auto;
    color: #806b5d;
    font-size: var(--type-body);
    line-height: var(--leading-body);
}

.perk-card {
    height: 100%;
    min-height: 245px;
    padding: 1.6rem 1.5rem;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #e5d8c9;
    border-radius: 16px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.perk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(51, 38, 31, .09);
}

.perk-icon {
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 1.4rem;
    color: inherit;
    background: transparent;
    font-size: 1.65rem;
    line-height: 1;
}

.perk-title {
    margin-bottom: .7rem;
    font-size: var(--type-card-title);
    line-height: 1.2;
}

.perk-desc {
    color: #806b5d;
    font-size: var(--type-body-small);
    line-height: 1.65;
    margin-bottom: 0;
}

.pricing-quote-banner {
    padding: 2.5rem 3rem;
    background: var(--ease-brown);
    color: var(--ease-cream);
    border-left: 6px solid var(--ease-mustard);
}

.pricing-quote-banner p {
    font-family: "DM Serif Display", serif;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    line-height: 1.35;
    margin-bottom: 0;
}

.packages-section {
    color: var(--ease-cream);
    background: #190e08;
}

.legacy-packages {
    display: none;
}

.package-heading {
    max-width: 650px;
    margin: 0 auto 4.5rem;
}

.package-heading__label {
    display: inline-flex;
    margin-bottom: 1.6rem;
    padding: .5rem 1rem;
    color: #d59345;
    border: 1px solid rgba(213, 147, 69, .32);
    border-radius: 999px;
    background: rgba(213, 147, 69, .08);
    font-size: var(--type-label);
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.package-heading h2 {
    margin-bottom: 1.25rem;
    color: var(--ease-paper);
    font-size: var(--type-section-title);
    line-height: 1.05;
}

.package-heading > p:last-child {
    margin: 0;
    color: rgba(251, 245, 232, .55);
    font-size: var(--type-body);
    line-height: var(--leading-body);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.pace-card {
    position: relative;
    display: flex;
    min-height: 515px;
    flex-direction: column;
    padding: 2rem 1.4rem 1.4rem;
    overflow: visible;
    color: var(--ease-paper);
    border: 1px solid rgba(251, 245, 232, .16);
    border-radius: 18px;
    background: #291b14;
    transition: transform .25s ease, border-color .25s ease;
    min-width: 0;
}

.pace-card:hover {
    transform: translateY(-6px);
    border-color: rgba(223, 168, 61, .5);
}

.pace-card--featured {
    color: #fffaf0;
    border-color: #ca843c;
    background: #ca843c;
}

.pace-card__popular {
    position: absolute;
    top: 0;
    left: 50%;
    padding: .4rem .8rem;
    border-radius: 999px;
    background: #426655;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.pace-card__icon {
    display: block;
    margin: .25rem 0 1.6rem;
    font-size: 1.6rem;
}

.pace-card__eyebrow {
    margin-bottom: .85rem;
    color: rgba(251, 245, 232, .57);
    font-size: var(--type-label);
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.pace-card h3 {
    margin-bottom: .6rem;
    color: inherit;
    font-size: var(--type-card-title);
    line-height: 1.2;
}

.pace-card__price {
    align-self: flex-start;
    margin: 0 0 1rem;
    padding: .55rem .8rem .6rem;
    color: #f4b860;
    border: 1px solid rgba(244, 184, 96, .42);
    border-radius: 10px;
    background: rgba(223, 168, 61, .12);
    font-family: "DM Serif Display", serif;
    font-size: 2rem;
    line-height: 1.1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.pace-card--featured .pace-card__price {
    color: #fffaf0;
    border-color: rgba(255, 250, 240, .48);
    background: rgba(94, 48, 16, .2);
}

.package-tax-note {
    margin: .85rem .2rem 0;
    color: rgba(251, 245, 232, .5);
    font-size: .72rem;
    line-height: 1.4;
    text-align: right;
}

.pace-card__quote {
    min-height: 42px;
    margin-bottom: 1.25rem;
    color: rgba(251, 245, 232, .53);
    font-size: .82rem;
    font-style: italic;
    line-height: 1.5;
}

.pace-card ul {
    flex: 1;
    margin: 0 0 1.3rem;
    padding: 1.15rem 0 0;
    border-top: 1px solid rgba(251, 245, 232, .14);
    list-style: none;
}

.pace-card li {
    position: relative;
    margin-bottom: .8rem;
    padding-left: 1.25rem;
    color: rgba(255, 250, 240, .9);
    font-size: .82rem;
    line-height: 1.55;
}

.pace-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ease-paper);
}

.pace-card > a {
    display: block;
    padding: .8rem .7rem;
    color: var(--ease-paper);
    border-radius: 999px;
    background: rgba(251, 245, 232, .14);
    font-size: .82rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background .2s;
}

.pace-card > a:hover {
    background: rgba(251, 245, 232, .24);
}

.pace-card--featured > a {
    background: rgba(105, 55, 20, .25);
}

/* Make columns flex containers so cards stretch to equal height */
.packages-section .row>[class*="col"] {
    display: flex;
    flex-direction: column;
}

.package-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 510px;
    padding: 2rem 1.75rem;
    background: var(--ease-paper);
    border: 1px solid rgba(51, 38, 31, .14);
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(51, 38, 31, .1);
}

.package-card.featured {
    border: 2px solid var(--ease-red);
    box-shadow: 0 12px 30px rgba(173, 73, 60, .15);
}

.package-badge {
    display: inline-block;
    align-self: flex-start;
    padding: .35rem .75rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--ease-mustard-light);
    color: var(--ease-brown);
    margin-bottom: 1rem;
}

.package-card.featured .package-badge {
    background: var(--ease-red);
    color: var(--ease-cream);
}

.package-title {
    font-size: 1.75rem;
    margin-bottom: .25rem;
}

.package-subtitle {
    color: var(--ease-red);
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 1rem;
}

.package-best-for {
    font-size: .88rem;
    color: #65564d;
    background: rgba(223, 168, 61, .15);
    padding: .65rem .85rem;
    border-left: 3px solid var(--ease-mustard);
    margin-bottom: 1.25rem;
    line-height: 1.45;
    min-height: 54px;
    display: flex;
    align-items: center;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    flex-grow: 1;
}

.package-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: .65rem;
    font-size: .9rem;
    color: var(--ease-brown);
    line-height: 1.45;
}

.package-features li i {
    position: absolute;
    left: 0;
    top: .15rem;
    color: var(--ease-olive);
    font-size: 1rem;
}

.package-card.featured .package-features li i {
    color: var(--ease-red);
}

.package-value-frame {
    padding: .85rem 1rem;
    background: rgba(51, 38, 31, .04);
    font-size: .84rem;
    line-height: 1.4;
    color: #584a42;
    border-top: 1px dashed rgba(51, 38, 31, .18);
    margin-top: auto;
    min-height: 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-value-frame strong {
    color: var(--ease-brown);
    display: block;
    margin-bottom: .15rem;
}

/* ── Principle Banner ── */
.package-principle-banner {
    padding: 2rem 2.5rem;
    background: var(--ease-brown);
    color: var(--ease-cream);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
}

.package-principle-text {
    font-family: "DM Serif Display", serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.35;
    margin: 0;
    flex: 1 1 300px;
}

.package-principle-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.package-principle-pills span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .9rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    border: 1px solid rgba(251, 245, 232, .25);
    color: rgba(251, 245, 232, .75);
    border-radius: 2px;
}

.package-principle-pills span i {
    font-size: .85rem;
    color: var(--ease-red);
}

.package-principle-pills .pill-highlight {
    background: var(--ease-mustard);
    color: var(--ease-brown);
    border-color: var(--ease-mustard);
    font-weight: 800;
}

.package-principle-pills .pill-highlight i {
    color: var(--ease-brown);
}


.comparison-table-wrap {
    padding-top: 1.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--ease-paper);
    font-size: .93rem;
    color: var(--ease-brown);
}

.comparison-table thead tr {
    background: var(--ease-brown);
    color: var(--ease-cream);
}

.comparison-table th {
    padding: 1rem 1.25rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: left;
}

.comparison-table td {
    padding: .9rem 1.25rem;
    border-bottom: 1px solid rgba(51, 38, 31, .1);
    vertical-align: middle;
    line-height: 1.45;
}

.comparison-table tbody tr:hover {
    background: rgba(223, 168, 61, .07);
}

.comparison-table tr.ct-highlight {
    background: rgba(223, 168, 61, .14);
}

.comparison-table tr.ct-highlight td {
    font-weight: 600;
}

.ct-none {
    color: #b0a49a;
    font-weight: 600;
}

.ct-included {
    display: inline-block;
    padding: .25rem .65rem;
    font-size: .78rem;
    font-weight: 700;
    background: rgba(89, 96, 58, .15);
    color: var(--ease-olive);
    border-radius: 2px;
    letter-spacing: .03em;
}

@media (max-width: 991.98px) {
    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pace-card {
        min-height: 480px;
    }

    .opening-hero {
        padding: 1rem 0;
    }

    .opening-hero__intro {
        position: static;
        padding: 4rem;
    }

    .opening-form-wrap {
        border-top: 1px solid rgba(51, 38, 31, .1);
        border-left: 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy {
        padding: 5rem 0 4rem;
    }

    .hero-image-wrap,
    .hero-image {
        min-height: 520px;
    }

    .navbar-collapse {
        padding: 1rem 0 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 4.5rem 0;
    }

    .opening-popup {
        width: 100%;
        max-width: 100%;
        padding: .5rem;
    }

    .opening-hero {
        min-height: auto;
        align-items: flex-start;
        padding: 0;
        transform: none;
    }

    .opening-hero .container {
        width: 100%;
        max-width: 100%;
        padding-right: .75rem;
        padding-left: .75rem;
    }

    .opening-hero__card,
    .opening-form-wrap,
    .opening-form {
        width: 100%;
        max-width: 100%;
    }

    .opening-hero__intro,
    .opening-form-wrap {
        padding: 2rem 1.25rem;
    }

    .opening-hero__intro {
        padding-top: 1.5rem;
    }

    .opening-hero h1 {
        font-size: 2.75rem;
    }

    .opening-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .package-heading {
        margin-bottom: 3rem;
    }

    .pace-card {
        min-height: auto;
    }

    .events-section h2 {
        font-size: var(--type-section-title);
    }

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

    .event-stats {
        gap: .5rem;
    }

    .event-stats span {
        letter-spacing: .06em;
    }

    .event-stats strong {
        font-size: 1.65rem;
    }

    .event-includes {
        padding: 1.5rem 1.1rem;
    }

    .visit-row {
        flex-direction: column;
    }

    .visit-row strong {
        text-align: left !important;
        overflow-wrap: anywhere;
    }

    .navbar-brand img {
        width: 125px;
    }

    .hero h1 {
        font-size: 3.7rem;
    }

    .opening-status {
        gap: .55rem;
        font-size: .72rem;
        white-space: nowrap;
    }

    .opening-status__pill {
        gap: .4rem;
        padding: .48rem .65rem;
    }

    .hero-image-wrap,
    .hero-image {
        min-height: 420px;
    }

    .hero-note {
        right: 1rem;
        bottom: 1rem;
    }
}


/* ══════════════════════════════════════════
   CTA REGISTRATION SECTION
══════════════════════════════════════════ */
.cta-section {
    position: relative;
    background: var(--ease-brown);
    padding: 7rem 0;
    overflow: hidden;
    isolation: isolate;
}

/* Tiling diamond / cross pattern */
.cta-pattern {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    pointer-events: none;
    z-index: 0;
}

.cta-pattern span {
    border: 1px solid rgba(251, 245, 232, .06);
    position: relative;
}

.cta-pattern span::before {
    content: '';
    position: absolute;
    inset: 30%;
    border: 1px solid rgba(223, 168, 61, .1);
    transform: rotate(45deg);
}

.cta-eyebrow {
    color: var(--ease-mustard);
    font-size: var(--type-label);
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.cta-heading {
    font-size: var(--type-section-title);
    color: var(--ease-cream);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-subtext {
    color: rgba(251, 245, 232, .65);
    font-size: var(--type-body);
    line-height: var(--leading-body);
    margin-bottom: 2rem;
}

.cta-perks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-perks span {
    color: rgba(251, 245, 232, .7);
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.cta-perks span i {
    color: var(--ease-mustard);
    font-size: 1rem;
}

.cta-register-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 2.25rem;
    background: var(--ease-mustard);
    color: var(--ease-brown);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    letter-spacing: .04em;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    position: relative;
    overflow: hidden;
}

.cta-register-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .25) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform .5s ease;
}

.cta-register-btn:hover::before {
    transform: translateX(100%);
}

.cta-register-btn:hover {
    background: #e8b84b;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(223, 168, 61, .4);
}

.cta-register-btn i {
    font-size: 1.1rem;
    transition: transform .2s ease;
}

.cta-register-btn:hover i {
    transform: translateX(4px);
}

.cta-note {
    color: rgba(251, 245, 232, .35);
    font-size: .78rem;
    margin-top: 1.25rem;
    margin-bottom: 0;
    letter-spacing: .04em;
}


/* ══════════════════════════════════════════
   REGISTRATION MODAL
══════════════════════════════════════════ */

/* Overlay */
.reg-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 18, 12, .65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.reg-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Modal card */
.reg-modal {
    display: flex;
    width: 100%;
    max-width: 800px;
    max-height: 92vh;
    overflow: hidden;
    background: var(--ease-paper);
    position: relative;
    transform: translateY(28px) scale(.97);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), opacity .3s ease;
    border: 1px solid rgba(51, 38, 31, .12);
    box-shadow: 0 32px 80px rgba(20, 12, 6, .35);
}

.reg-overlay.active .reg-modal {
    transform: translateY(0) scale(1);
}

/* Close button */
.reg-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(51, 38, 31, .08);
    border: none;
    color: var(--ease-brown);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background .2s, color .2s;
    border-radius: 2px;
}

.reg-close:hover {
    background: var(--ease-red);
    color: #fff;
}

/* ── Sidebar ── */
.reg-sidebar {
    width: 200px;
    flex-shrink: 0;
    background: var(--ease-brown);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1.75rem;
    position: relative;
    overflow: hidden;
}

.reg-sidebar-pattern {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    pointer-events: none;
}

.reg-sidebar-pattern span {
    border: 1px solid rgba(251, 245, 232, .06);
    position: relative;
}

.reg-sidebar-pattern span::before {
    content: '';
    position: absolute;
    inset: 25%;
    border: 1px solid rgba(223, 168, 61, .12);
    transform: rotate(45deg);
}

.reg-sidebar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.reg-sidebar-logo {
    width: 140px;
    height: 58px;
    border-radius: 6px;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, .4));
    transition: transform .3s ease;
}

.reg-sidebar-logo:hover {
    transform: scale(1.04);
}

.reg-sidebar-tagline {
    font-size: .78rem;
    color: rgba(251, 245, 232, .35);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 1.5rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* ── Form body ── */
.reg-body {
    flex: 1;
    overflow-y: auto;
    padding: 2.5rem 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
}

/* ── Step indicator ── */
.reg-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
}

.reg-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(51, 38, 31, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(51, 38, 31, .3);
    background: transparent;
    transition: all .3s ease;
}

.reg-step.active .step-dot {
    border-color: var(--ease-mustard);
    background: var(--ease-mustard);
    color: var(--ease-brown);
}

.step-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(51, 38, 31, .35);
    transition: color .3s;
}

.reg-step.active .step-label {
    color: var(--ease-brown);
}

.reg-step-line {
    flex: 1;
    height: 2px;
    background: rgba(51, 38, 31, .12);
    margin: 0 .75rem;
    margin-bottom: 1.4rem;
    position: relative;
}

.reg-step-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: var(--ease-mustard);
    transition: width .5s ease;
}

/* ── Step panels ── */
.reg-step-panel {
    display: none;
    flex-direction: column;
    flex: 1;
    animation: panelIn .35s ease;
}

.reg-step-panel.active {
    display: flex;
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateX(16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Form typography ── */
.reg-title {
    font-family: "DM Serif Display", serif;
    font-size: 1.8rem;
    color: var(--ease-brown);
    margin-bottom: .4rem;
}

.reg-subtitle {
    color: #7a6a60;
    font-size: .9rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
}

/* ── Fields ── */
.reg-field-group {
    margin-bottom: 1.15rem;
}

.reg-label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ease-brown);
    margin-bottom: .45rem;
}

.reg-input-wrap {
    position: relative;
}

.reg-input-icon {
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(51, 38, 31, .35);
    font-size: 1rem;
    pointer-events: none;
    transition: color .2s;
}

.reg-input {
    width: 100%;
    padding: .8rem 1rem .8rem 2.75rem;
    background: rgba(51, 38, 31, .04);
    border: 1.5px solid rgba(51, 38, 31, .18);
    color: var(--ease-brown);
    font-family: "DM Sans", sans-serif;
    font-size: .95rem;
    outline: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    border-radius: 2px;
}

.reg-input::placeholder {
    color: rgba(51, 38, 31, .3);
}

.reg-input:focus {
    border-color: var(--ease-mustard);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(223, 168, 61, .15);
}

.reg-input:focus+.reg-input-icon,
.reg-input-wrap:focus-within .reg-input-icon {
    color: var(--ease-mustard);
}

.reg-error {
    display: none;
    color: var(--ease-red);
    font-size: .78rem;
    margin-top: .35rem;
}

/* ── Submit button ── */
.reg-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    width: 100%;
    padding: .9rem 1.5rem;
    background: var(--ease-brown);
    color: var(--ease-cream);
    font-family: "DM Sans", sans-serif;
    font-size: .95rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    letter-spacing: .04em;
    margin-top: 1.25rem;
    transition: background .2s, transform .2s, box-shadow .2s;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.reg-submit-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background .2s;
}

.reg-submit-btn:hover {
    background: #1a1009;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(51, 38, 31, .25);
}

.reg-submit-btn.loading {
    pointer-events: none;
    opacity: .75;
}

.reg-submit-btn i {
    font-size: 1.05rem;
}

/* ── OTP Step ── */
.otp-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.otp-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(223, 168, 61, .15);
    border: 2px solid rgba(223, 168, 61, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: var(--ease-mustard);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(223, 168, 61, .3);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(223, 168, 61, 0);
    }
}

.otp-email-hint strong {
    color: var(--ease-brown);
}

.otp-inputs-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: .5rem;
}

.otp-box {
    width: 48px;
    height: 58px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: "DM Serif Display", serif;
    color: var(--ease-brown);
    background: rgba(51, 38, 31, .04);
    border: 2px solid rgba(51, 38, 31, .18);
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s, transform .15s;
    border-radius: 4px;
    caret-color: var(--ease-mustard);
}

.otp-box:focus {
    border-color: var(--ease-mustard);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(223, 168, 61, .2);
    transform: scale(1.08);
}

.otp-box:not(:placeholder-shown) {
    background: rgba(223, 168, 61, .08);
    border-color: rgba(223, 168, 61, .5);
}

.otp-separator {
    font-size: 1.4rem;
    color: rgba(51, 38, 31, .2);
    margin: 0 .15rem;
    user-select: none;
}

.otp-error {
    display: block;
    text-align: center;
    margin-top: .25rem;
}

.otp-resend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
    font-size: .84rem;
    color: #7a6a60;
}

.otp-resend-btn {
    background: none;
    border: none;
    color: var(--ease-red);
    font-size: .84rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    transition: opacity .2s;
}

.otp-resend-btn:disabled {
    color: #9e8e85;
    cursor: default;
}

.otp-back-btn {
    background: none;
    border: none;
    color: rgba(51, 38, 31, .45);
    font-size: .82rem;
    cursor: pointer;
    padding: .5rem 0 0;
    margin: .5rem auto 0;
    display: flex;
    align-items: center;
    gap: .35rem;
    transition: color .2s;
}

.otp-back-btn:hover {
    color: var(--ease-brown);
}

/* ── Success step ── */
.success-wrap {
    text-align: center;
    padding: 1rem 0;
}

.success-icon-ring {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(223, 168, 61, .2), rgba(223, 168, 61, .05));
    border: 2px solid var(--ease-mustard);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--ease-mustard);
    margin: 0 auto 1.5rem;
    animation: successPop .5s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes successPop {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    margin-bottom: .5rem;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    background: rgba(89, 96, 58, .12);
    color: var(--ease-olive);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    margin: 1rem 0 1.5rem;
    border-radius: 20px;
}

.success-badge i {
    color: var(--ease-olive);
    font-size: 1rem;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .reg-sidebar {
        display: none;
    }

    .reg-body {
        padding: 2rem 1.5rem;
    }

    .reg-modal {
        max-height: 96vh;
    }

    .otp-box {
        width: 40px;
        height: 50px;
        font-size: 1.2rem;
    }

    .cta-section {
        padding: 5rem 0;
    }
}

/* ── Glass surfaces ─────────────────────────
   Applied selectively to layered UI surfaces.
─────────────────────────────────────────── */
.opening-hero__card {
    border-color: var(--glass-border-light);
    background: var(--glass-light);
    box-shadow: 0 28px 80px rgba(26, 18, 12, .22);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.opening-form-wrap {
    background: rgba(255, 255, 255, .84);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.opening-form input:not([type="radio"]),
.opening-form select,
.opening-form textarea,
.opening-slots span {
    background: rgba(255, 250, 240, .68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
}

.opening-popup__close,
.hero-note {
    border: 1px solid var(--glass-border-light);
    background: var(--glass-light-strong);
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.step-card {
    border-color: rgba(255, 250, 240, .16);
    background: rgba(255, 250, 240, .035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pricing-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(223, 168, 61, .18), transparent 24rem),
        radial-gradient(circle at 88% 80%, rgba(173, 73, 60, .1), transparent 28rem),
        #f5ede1;
}

.perk-card {
    border-color: var(--glass-border-light);
    background: var(--glass-light);
    box-shadow: 0 10px 30px rgba(51, 38, 31, .045);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.packages-section {
    background:
        radial-gradient(circle at 20% 15%, rgba(173, 73, 60, .2), transparent 28rem),
        radial-gradient(circle at 84% 75%, rgba(223, 168, 61, .12), transparent 32rem),
        #190e08;
}

.pace-card {
    border-color: var(--glass-border-dark);
    background: rgba(255, 250, 240, .07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 18px 40px rgba(0, 0, 0, .12);
    backdrop-filter: blur(14px) saturate(115%);
    -webkit-backdrop-filter: blur(14px) saturate(115%);
}

.pace-card--featured {
    border-color: rgba(255, 226, 187, .5);
    background: linear-gradient(145deg, rgba(223, 151, 73, .92), rgba(183, 108, 43, .88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 22px 45px rgba(0, 0, 0, .2);
}

#spaces {
    background:
        radial-gradient(circle at 8% 12%, rgba(223, 168, 61, .12), transparent 25rem),
        radial-gradient(circle at 90% 85%, rgba(89, 96, 58, .1), transparent 28rem),
        var(--ease-cream);
}

.space-card {
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 16px 36px rgba(51, 38, 31, .1);
}

.space-tags span {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.events-section {
    background:
        radial-gradient(circle at 12% 15%, rgba(240, 160, 68, .1), transparent 28rem),
        radial-gradient(circle at 85% 80%, rgba(255, 250, 240, .06), transparent 30rem),
        var(--ease-olive);
}

.event-types article,
.event-includes,
.event-book {
    border-color: var(--glass-border-dark);
    background: var(--glass-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.visit-panel {
    border: 1px solid var(--glass-border-light);
    background: rgba(255, 250, 240, .78);
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.cta-section {
    background:
        radial-gradient(circle at 50% 20%, rgba(223, 168, 61, .12), transparent 30rem),
        var(--ease-brown);
}

.cta-register-btn {
    border: 1px solid rgba(255, 250, 240, .28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 14px 36px rgba(0, 0, 0, .18);
}

@media (prefers-reduced-transparency: reduce) {
    .navbar,
    .opening-hero__card,
    .perk-card,
    .pace-card,
    .event-types article,
    .event-includes,
    .event-book,
    .visit-panel {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

.opening-otp {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(173, 73, 60, .25);
    border-radius: 12px;
    background: rgba(255, 250, 240, .75);
}

.opening-otp[hidden] {
    display: none;
}

.opening-otp p {
    margin: .25rem 0 .75rem;
    color: #6d5b50;
    font-size: .9rem;
}

.opening-otp__spam-note {
    display: block;
    margin: -.35rem 0 .75rem;
    color: #806b5d;
    font-size: .75rem;
    line-height: 1.45;
}

.opening-otp input {
    text-align: center;
    letter-spacing: .5rem;
    font-size: 1.35rem;
    font-weight: 700;
}

#openingVerifyButton {
    width: 100%;
    margin-top: .85rem;
    padding: .95rem 1.25rem;
    color: var(--ease-cream);
    border: 0;
    border-radius: 10px;
    background: var(--ease-brown);
    box-shadow: 0 8px 20px rgba(51, 38, 31, .16);
    font-weight: 700;
    transition: background .2s, box-shadow .2s, transform .2s;
}

#openingVerifyButton:hover:not(:disabled) {
    background: var(--ease-red);
    box-shadow: 0 10px 24px rgba(173, 73, 60, .22);
    transform: translateY(-2px);
}

#openingVerifyButton:focus-visible,
.opening-otp .opening-resend:focus-visible {
    outline: 3px solid rgba(223, 168, 61, .38);
    outline-offset: 2px;
}

#openingVerifyButton:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
}

.opening-otp .opening-resend {
    display: block;
    width: fit-content;
    margin-top: .65rem;
    margin-right: auto;
    margin-left: auto;
    padding: .35rem .65rem;
    background: transparent;
    color: #294f40;
    border: 0;
    border-radius: 6px;
    box-shadow: none;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s, background .2s;
}

.opening-otp .opening-resend:hover:not(:disabled) {
    color: var(--ease-red);
    background: rgba(173, 73, 60, .07);
}

.opening-otp .opening-resend:disabled {
    color: #806b5d;
    opacity: .55;
    cursor: not-allowed;
    text-decoration: none;
}
