:root {
    color-scheme: light;
    --ink: #101814;
    --forest: #123b32;
    --forest-deep: #092a23;
    --forest-soft: #24574b;
    --sage: #c4d3c1;
    --sage-pale: #e7eee2;
    --lime: #e8eeae;
    --cream: #f5efe3;
    --paper: #fcfaf5;
    --white: #fff;
    --coral: #e78e6b;
    --gold: #d8af5d;
    --muted: #646d67;
    --line: rgba(16, 24, 20, .13);
    --shadow: 0 30px 80px rgba(18, 59, 50, .16);
    font-family: Arial, Helvetica, sans-serif;
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

img {
    max-width: 100%;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

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

h1,
h2,
h3 {
    text-wrap: balance;
}

.page-shell {
    width: min(1280px, calc(100% - 72px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 200;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    color: var(--white);
    background: var(--forest);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.promo-bar {
    color: var(--cream);
    background: var(--ink);
}

.promo-bar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.promo-bar-inner p {
    margin: 0;
    color: rgba(245, 239, 227, .78);
}

.promo-bar-inner a {
    color: var(--lime);
    font-weight: 800;
    text-decoration: none;
}

.promo-badge {
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--coral);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}

.site-header {
    position: relative;
    z-index: 20;
    background: rgba(252, 250, 245, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 106px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand {
    width: fit-content;
    color: var(--ink);
    text-decoration: none;
}

.brand img,
.footer-brand img,
.mini-brand img {
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.brand img {
    width: 62px;
    height: 62px;
    mix-blend-mode: multiply;
}

.brand > span {
    padding-left: 13px;
    border-left: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-style: italic;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.desktop-nav a,
.footer-links a {
    position: relative;
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.desktop-nav a::after,
.footer-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-login {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 18px;
    padding: 0 20px;
    border-radius: 999px;
    color: var(--cream);
    background: var(--forest);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-login:hover,
.header-login:focus-visible {
    background: var(--forest-deep);
    box-shadow: 0 12px 30px rgba(18, 59, 50, .2);
    transform: translateY(-2px);
}

.header-login svg,
.button svg,
.closing-cta svg {
    width: 20px;
    height: 20px;
}

.member-controls {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 12px;
}

.member-greeting {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--forest);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.member-avatar {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--forest-deep);
    background: var(--lime);
    font-size: 12px;
}

.member-controls form {
    margin: 0;
}

.member-controls button {
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.auth-notice {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.auth-notice-error {
    color: #762c20;
    background: #f8ded7;
}

.auth-notice-success {
    color: var(--forest-deep);
    background: var(--sage-pale);
}

.hero {
    min-height: 750px;
    display: grid;
    grid-template-columns: minmax(0, .93fr) minmax(500px, 1.07fr);
    align-items: center;
    gap: clamp(48px, 7vw, 112px);
    padding-top: 68px;
    padding-bottom: 82px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: var(--forest);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    display: block;
    background: currentColor;
}

.eyebrow-compact {
    margin-bottom: 18px;
}

.eyebrow-light {
    color: var(--lime);
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

h1 {
    max-width: 700px;
    margin-bottom: 28px;
    font-size: clamp(64px, 6.8vw, 104px);
    line-height: .92;
    letter-spacing: -.055em;
}

h1 em,
h2 em {
    color: var(--forest);
    font-weight: inherit;
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 36px;
    color: #4d5751;
    font-size: clamp(18px, 1.5vw, 21px);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

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

.button-primary {
    color: var(--cream);
    background: var(--forest);
    box-shadow: 0 16px 38px rgba(18, 59, 50, .18);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--forest-deep);
    box-shadow: 0 20px 42px rgba(18, 59, 50, .26);
}

.button-link {
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    text-decoration-color: rgba(16, 24, 20, .32);
    text-underline-offset: 6px;
}

.button-link span {
    margin-left: 6px;
    color: var(--forest);
}

.hero-promises {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.hero-promises li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-promises li > span {
    width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--forest-deep);
    background: var(--sage-pale);
    font-size: 10px;
}

.hero-showcase {
    position: relative;
    min-height: 600px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.hero-showcase::before {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 20px 0 30px 40px;
    border-radius: 48% 48% 18% 18%;
    background: linear-gradient(145deg, #dbe7d7, #eef2d2 58%, #f5d4c5);
    transform: rotate(3deg);
}

.hero-showcase::after {
    content: "";
    position: absolute;
    z-index: -2;
    width: 82%;
    height: 82%;
    border: 1px solid rgba(18, 59, 50, .22);
    border-radius: 50%;
}

.showcase-glow {
    position: absolute;
    z-index: -1;
    width: 74%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, .62);
    filter: blur(12px);
}

.membership-card {
    position: relative;
    z-index: 2;
    width: min(470px, 78%);
    aspect-ratio: 1.55;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 30px 32px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 26px;
    color: var(--cream);
    background:
        radial-gradient(circle at 88% 14%, rgba(232, 238, 174, .28) 0 13%, transparent 13.4%),
        radial-gradient(circle at 12% 100%, rgba(231, 142, 107, .34) 0 23%, transparent 23.4%),
        linear-gradient(135deg, var(--forest-soft), var(--forest-deep));
    box-shadow: 0 36px 72px rgba(9, 42, 35, .28);
    transform: rotate(-5deg);
}

.membership-card::before,
.membership-card::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(245, 239, 227, .16);
    border-radius: 50%;
}

.membership-card::before {
    width: 260px;
    height: 260px;
    right: -120px;
    bottom: -160px;
}

.membership-card::after {
    width: 180px;
    height: 180px;
    right: -75px;
    bottom: -118px;
}

.membership-card-top,
.membership-card-footer,
.mini-brand {
    display: flex;
    align-items: center;
}

.membership-card-top,
.membership-card-footer {
    position: relative;
    z-index: 1;
    justify-content: space-between;
}

.mini-brand {
    gap: 10px;
}

.mini-brand img {
    width: 46px;
    height: 46px;
    background: var(--cream);
}

.mini-brand span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-style: italic;
}

.card-spark {
    color: var(--lime);
    font-size: 26px;
}

.membership-card-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.membership-card-copy small,
.membership-card-footer {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.membership-card-copy small {
    color: rgba(245, 239, 227, .65);
}

.membership-card-copy strong {
    overflow: hidden;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 400;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.membership-card-footer {
    color: rgba(245, 239, 227, .68);
}

.membership-card-footer > span:last-child {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(245, 239, 227, .36);
    border-radius: 50%;
    color: var(--lime);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-style: italic;
}

.reward-ticket {
    position: absolute;
    z-index: 4;
    min-width: 158px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 18px 44px rgba(16, 24, 20, .16);
}

.reward-ticket > span {
    margin-bottom: 26px;
    font-size: 13px;
    font-weight: 900;
}

.reward-ticket strong {
    margin-bottom: 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 400;
}

.reward-ticket small {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.reward-ticket-points {
    top: 58px;
    left: 2px;
    color: var(--forest-deep);
    background: var(--lime);
    transform: rotate(6deg);
}

.reward-ticket-gift {
    right: -6px;
    bottom: 74px;
    color: var(--cream);
    background: var(--coral);
    transform: rotate(4deg);
}

.showcase-note {
    position: absolute;
    z-index: 5;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--forest-deep);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.showcase-note span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 5px rgba(231, 142, 107, .15);
}

.member-dashboard {
    padding-top: 110px;
    padding-bottom: 128px;
}

.dashboard-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .55fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 58px;
}

.dashboard-heading h2,
.section-heading h2,
.journey-copy h2,
.closing h2 {
    margin-bottom: 0;
    font-size: clamp(50px, 5.8vw, 82px);
    line-height: .98;
    letter-spacing: -.045em;
}

.dashboard-heading > p,
.section-heading > p:last-child,
.closing-copy > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 18px;
}

.dashboard-card {
    position: relative;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
}

.dashboard-card-featured {
    color: var(--cream);
    background: var(--forest);
}

.dashboard-card-label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: auto;
    color: var(--lime);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7be3a8;
    box-shadow: 0 0 0 5px rgba(123, 227, 168, .1);
}

.dashboard-card-featured > strong {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 400;
}

.dashboard-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.dashboard-card-featured p {
    max-width: 360px;
    color: rgba(245, 239, 227, .68);
}

.dashboard-card a {
    position: relative;
    z-index: 1;
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.dashboard-orbit {
    position: absolute;
    top: 6px;
    right: -82px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(232, 238, 174, .12);
    border-radius: 50%;
}

.dashboard-orbit::before,
.dashboard-orbit::after {
    content: "";
    position: absolute;
    inset: 36px;
    border: 1px solid rgba(232, 238, 174, .12);
    border-radius: 50%;
}

.dashboard-orbit::after {
    inset: 74px;
    background: var(--coral);
    border: 0;
}

.dashboard-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: auto;
    border-radius: 18px;
    color: var(--forest);
    background: var(--sage-pale);
}

.dashboard-icon svg {
    width: 34px;
    height: 34px;
}

.coming-soon {
    margin-bottom: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--forest);
    background: var(--lime);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.dashboard-card h3 {
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 400;
}

.dashboard-card:not(.dashboard-card-featured) p {
    margin-bottom: 0;
}

.benefits {
    padding-top: 126px;
    padding-bottom: 132px;
    background: var(--sage-pale);
}

.section-heading {
    max-width: 1020px;
    margin-bottom: 64px;
}

.section-heading h2 {
    margin-bottom: 28px;
}

.section-heading > p:last-child {
    max-width: 620px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-card {
    min-height: 550px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 26px;
}

.benefit-card-points {
    color: var(--cream);
    background: var(--forest);
}

.benefit-card-rewards {
    color: var(--forest-deep);
    background: var(--lime);
}

.benefit-card-surprises {
    color: var(--forest-deep);
    background: var(--coral);
}

.benefit-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.benefit-topline small {
    font: inherit;
    opacity: .7;
}

.benefit-illustration {
    position: relative;
    width: 210px;
    height: 190px;
    margin: 58px auto auto;
}

.coin-stack i {
    position: absolute;
    left: 50%;
    width: 128px;
    height: 58px;
    border: 2px solid var(--lime);
    border-radius: 50%;
    background: var(--forest-soft);
    transform: translateX(-50%);
}

.coin-stack i:nth-child(1) { bottom: 22px; }
.coin-stack i:nth-child(2) { bottom: 58px; }
.coin-stack i:nth-child(3) { bottom: 94px; }

.coin-stack b {
    position: absolute;
    z-index: 2;
    top: 28px;
    left: 50%;
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    border: 2px solid var(--lime);
    border-radius: 50%;
    color: var(--forest-deep);
    background: var(--lime);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-style: italic;
    transform: translateX(-50%) rotate(-8deg);
}

.gift-box i {
    position: absolute;
    right: 20px;
    bottom: 16px;
    left: 20px;
    height: 108px;
    border: 2px solid var(--forest);
    border-radius: 8px;
}

.gift-box::before {
    content: "";
    position: absolute;
    top: 47px;
    right: 8px;
    left: 8px;
    height: 28px;
    border: 2px solid var(--forest);
    background: var(--lime);
}

.gift-box b {
    position: absolute;
    z-index: 1;
    top: 48px;
    bottom: 16px;
    left: 50%;
    width: 24px;
    border-right: 2px solid var(--forest);
    border-left: 2px solid var(--forest);
    transform: translateX(-50%);
}

.gift-box span {
    position: absolute;
    z-index: 2;
    top: 2px;
    left: 50%;
    font-size: 45px;
    transform: translateX(-50%);
}

.botanical-mark i {
    position: absolute;
    width: 74px;
    height: 118px;
    border: 2px solid var(--forest-deep);
    border-radius: 100% 0 100% 0;
    transform-origin: bottom right;
}

.botanical-mark i:nth-child(1) { left: 18px; bottom: 30px; transform: rotate(-27deg); }
.botanical-mark i:nth-child(2) { left: 69px; bottom: 38px; transform: rotate(7deg) scale(.86); }
.botanical-mark i:nth-child(3) { right: 8px; bottom: 20px; transform: rotate(37deg) scale(.68); }

.botanical-mark b {
    position: absolute;
    z-index: 2;
    top: 30px;
    right: 55px;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--coral);
    background: var(--forest-deep);
    font-size: 36px;
}

.benefit-card h3 {
    margin-bottom: 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3vw, 45px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.025em;
}

.benefit-card p {
    max-width: 340px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.65;
    opacity: .72;
}

.journey {
    color: var(--cream);
    background: var(--ink);
}

.journey-grid {
    min-height: 760px;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr);
    align-items: center;
    gap: clamp(70px, 10vw, 150px);
    padding-top: 110px;
    padding-bottom: 110px;
}

.journey-copy h2 {
    margin-bottom: 28px;
}

.journey-copy h2 em {
    color: var(--coral);
}

.journey-copy > p:not(.eyebrow) {
    max-width: 520px;
    margin-bottom: 34px;
    color: rgba(245, 239, 227, .62);
    font-size: 16px;
    line-height: 1.7;
}

.button-cream {
    color: var(--forest-deep);
    background: var(--cream);
}

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

.journey-steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.journey-steps li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 26px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(245, 239, 227, .14);
}

.journey-steps li:first-child {
    border-top: 1px solid rgba(245, 239, 227, .14);
}

.journey-steps li > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(232, 238, 174, .36);
    border-radius: 50%;
    color: var(--lime);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-style: italic;
}

.journey-steps h3 {
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.journey-steps p {
    margin: 0;
    color: rgba(245, 239, 227, .56);
    font-size: 14px;
    line-height: 1.6;
}

.closing {
    min-height: 600px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 70px;
    padding-top: 96px;
    padding-bottom: 96px;
}

.closing-copy > p:last-child {
    max-width: 580px;
    margin-top: 28px;
}

.closing-cta {
    width: 196px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 50%;
    color: var(--cream);
    background: var(--coral);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transform: rotate(-6deg);
    transition: transform .25s ease, box-shadow .25s ease;
}

.closing-cta:hover,
.closing-cta:focus-visible {
    box-shadow: 0 24px 52px rgba(231, 142, 107, .28);
    transform: rotate(0) scale(1.04);
}

footer {
    color: var(--cream);
    background: var(--forest-deep);
}

.footer-main {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.footer-brand img {
    width: 58px;
    height: 58px;
    background: var(--cream);
}

.footer-brand > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
}

.footer-brand span {
    color: rgba(245, 239, 227, .48);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 28px;
}

.footer-links a {
    color: var(--cream);
    font-size: 11px;
}

.footer-bottom {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(245, 239, 227, .12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(245, 239, 227, .42);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

@media (max-width: 1080px) {
    .page-shell {
        width: min(100% - 48px, 1280px);
    }

    .desktop-nav {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 56px;
        padding-top: 82px;
    }

    .hero-copy {
        max-width: 820px;
    }

    .hero-showcase {
        width: min(720px, 100%);
        margin-inline: auto;
    }

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

    .dashboard-card-featured {
        grid-column: 1 / -1;
        min-height: 330px;
    }

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

    .benefit-card:last-child {
        grid-column: 1 / -1;
        min-height: 480px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
        gap: 72px;
    }
}

@media (max-width: 720px) {
    .page-shell {
        width: min(100% - 28px, 1280px);
    }

    .promo-bar-inner {
        min-height: 48px;
        justify-content: space-between;
        gap: 10px;
    }

    .promo-bar-inner p {
        display: none;
    }

    .site-header {
        backdrop-filter: none;
    }

    .header-inner {
        min-height: 86px;
        gap: 12px;
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .brand > span {
        padding-left: 10px;
        font-size: 19px;
    }

    .header-login {
        min-height: 42px;
        gap: 8px;
        padding: 0 14px;
        font-size: 11px;
    }

    .header-login svg {
        display: none;
    }

    .member-controls {
        gap: 6px;
    }

    .member-greeting > span:last-child {
        display: none;
    }

    .member-controls button {
        padding-inline: 12px;
    }

    .hero {
        min-height: auto;
        gap: 46px;
        padding-top: 58px;
        padding-bottom: 64px;
    }

    h1 {
        font-size: clamp(51px, 16.5vw, 74px);
    }

    .hero-lead {
        font-size: 17px;
    }

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

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

    .hero-showcase {
        min-height: 490px;
    }

    .hero-showcase::before {
        inset: 16px 0 28px;
    }

    .membership-card {
        width: min(86%, 410px);
        padding: 22px;
        border-radius: 20px;
    }

    .mini-brand img {
        width: 38px;
        height: 38px;
    }

    .mini-brand span {
        font-size: 17px;
    }

    .membership-card-copy strong {
        font-size: clamp(28px, 9vw, 42px);
    }

    .membership-card-footer > span:first-child {
        max-width: 185px;
        font-size: 7px;
    }

    .reward-ticket {
        min-width: 118px;
        padding: 14px;
    }

    .reward-ticket > span {
        margin-bottom: 16px;
    }

    .reward-ticket strong {
        font-size: 15px;
    }

    .reward-ticket-points {
        top: 34px;
        left: -2px;
    }

    .reward-ticket-gift {
        right: -2px;
        bottom: 68px;
    }

    .showcase-note {
        max-width: 260px;
        bottom: 10px;
        text-align: center;
    }

    .member-dashboard,
    .benefits {
        padding-top: 88px;
        padding-bottom: 94px;
    }

    .dashboard-heading {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-bottom: 42px;
    }

    .dashboard-heading h2,
    .section-heading h2,
    .journey-copy h2,
    .closing h2 {
        font-size: clamp(43px, 13vw, 61px);
    }

    .dashboard-heading > p,
    .section-heading > p:last-child,
    .closing-copy > p:last-child {
        font-size: 15px;
    }

    .dashboard-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-card,
    .dashboard-card-featured {
        min-height: 350px;
        grid-column: auto;
    }

    .section-heading {
        margin-bottom: 46px;
    }

    .benefit-card,
    .benefit-card:last-child {
        min-height: 500px;
        grid-column: auto;
    }

    .benefit-illustration {
        margin-top: 42px;
    }

    .journey-grid {
        min-height: auto;
        gap: 58px;
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .journey-steps li {
        grid-template-columns: 48px 1fr;
        gap: 18px;
    }

    .journey-steps li > span {
        width: 42px;
        height: 42px;
    }

    .journey-steps h3 {
        font-size: 24px;
    }

    .closing {
        min-height: 620px;
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .closing-cta {
        width: 158px;
        justify-self: end;
    }

    .footer-main {
        align-items: flex-start;
        flex-direction: column;
        gap: 38px;
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .footer-links {
        justify-content: flex-start;
        gap: 22px;
    }

    .footer-bottom {
        min-height: 86px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }
}

@media (max-width: 410px) {
    .membership-card {
        width: 90%;
    }

    .membership-card-copy small {
        font-size: 7px;
    }

    .reward-ticket-points {
        left: -8px;
    }

    .reward-ticket-gift {
        right: -8px;
    }
}

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

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

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
