/* =========================================================
   ANDREA COFFEE CLUB
   Global Styles
========================================================= */

:root {
    --forest: #17382c;
    --forest-dark: #102a21;
    --forest-soft: #294b3c;

    --espresso: #4a3025;
    --espresso-dark: #342019;
    --coffee: #6a4938;

    --cream: #f7f1e7;
    --cream-dark: #ede2d1;
    --warm-white: #fcfaf6;

    --caramel: #b98958;
    --caramel-light: #d6b58d;

    --sage: #8a9b89;

    --black: #171714;
    --white: #ffffff;

    --border: rgba(74, 48, 37, 0.16);

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --container: 1240px;
    --radius: 4px;

    --transition: 220ms ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--espresso-dark);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button,
a {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--forest);
    color: var(--cream);
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
    line-height: 1.05;
}

h1,
h2 {
    font-family: var(--serif);
    font-weight: 500;
}

h1 em,
h2 em {
    font-style: italic;
    font-weight: 400;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--caramel);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.announcement-bar {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--forest);
    color: var(--cream);

    padding: 9px 20px;

    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.announcement-bar span {
    color: var(--caramel-light);
    font-weight: 700;
}


/* =========================================================
   HEADER / NAV
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    background: rgba(247, 241, 231, 0.96);

    border-bottom: 1px solid var(--border);
}

.navbar {
    width: min(var(--container), calc(100% - 64px));
    min-height: 82px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    color: var(--forest);

    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 0.22em;

    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;

    margin-left: auto;
}

.nav-links a {
    position: relative;

    color: var(--espresso);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;

    transition: color var(--transition);
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--caramel);

    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--forest);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 0 26px;

    border: 1px solid var(--forest);

    background: var(--forest);
    color: var(--cream);

    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.nav-cta:hover,
.primary-button:hover {
    background: var(--forest-dark);
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;
}

.mobile-menu-button span {
    display: block;

    width: 23px;
    height: 1px;

    margin: 5px auto;

    background: var(--forest);

    transition: transform var(--transition);
}

.mobile-menu {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 720px;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    background: var(--cream);
}

.hero-content {
    width: min(620px, calc(100% - 80px));

    margin: auto;
    padding: 100px 0;
}

.hero h1 {
    max-width: 650px;

    color: var(--forest);

    font-size: clamp(4rem, 7vw, 7.2rem);

    letter-spacing: -0.045em;
}

.hero-subtitle {
    max-width: 500px;

    margin-top: 30px;

    color: var(--espresso);

    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-top: 38px;
}

.text-link {
    color: var(--espresso);

    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition: color var(--transition);
}

.text-link:hover {
    color: var(--forest);
}

.text-link span {
    display: inline-block;
    margin-left: 7px;

    transition: transform var(--transition);
}

.text-link:hover span {
    transform: translateY(3px);
}

.hero-note {
    margin-top: 18px;

    color: var(--coffee);

    font-size: 0.74rem;
}

.hero-note strong {
    color: var(--forest);
}


/* =========================================================
   HERO COFFEE VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: var(--forest);
}

.hero-visual::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    border: 1px solid rgba(214, 181, 141, 0.35);
    border-radius: 50%;
}

.hero-visual::after {
    content: "SPECIALTY COFFEE · LONDON · EST. SOON";

    position: absolute;
    bottom: 38px;
    left: 50%;

    transform: translateX(-50%);

    color: rgba(247, 241, 231, 0.55);

    font-size: 0.62rem;
    letter-spacing: 0.18em;

    white-space: nowrap;
}

.coffee-card {
    position: relative;
    z-index: 2;

    width: min(390px, 70%);

    padding: 28px;

    background: var(--cream);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.28);

    transform: rotate(-3deg);

    transition: transform 500ms ease;
}

.coffee-card:hover {
    transform: rotate(0deg) translateY(-8px);
}

.coffee-card-top,
.coffee-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--espresso);

    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.coffee-card-bottom {
    align-items: flex-end;

    padding-top: 20px;

    border-top: 1px solid var(--border);
}

.coffee-card-bottom strong {
    color: var(--forest);

    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 500;
}

.coffee-cup {
    position: relative;

    height: 310px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.cup {
    position: relative;

    width: 180px;
    height: 125px;

    border-radius: 10px 10px 48px 48px;

    background: var(--warm-white);

    box-shadow:
        0 18px 30px rgba(0, 0, 0, 0.15);
}

.coffee {
    position: absolute;

    top: 13px;
    left: 12px;

    width: calc(100% - 24px);
    height: 35px;

    border-radius: 50%;

    background: var(--espresso);

    box-shadow:
        inset 0 3px 5px rgba(255, 255, 255, 0.1);
}

.handle {
    position: absolute;

    width: 54px;
    height: 64px;

    margin-left: 168px;

    border: 13px solid var(--warm-white);
    border-left: 0;

    border-radius: 0 45px 45px 0;
}

.cup-shadow {
    position: absolute;

    bottom: 55px;

    width: 250px;
    height: 35px;

    border-radius: 50%;

    background: rgba(74, 48, 37, 0.15);

    filter: blur(10px);
}


/* =========================================================
   FOUNDING SECTION
========================================================= */

.founding-section {
    padding: 120px 0;

    background: var(--forest);
    color: var(--cream);
}

.founding-inner {
    width: min(var(--container), calc(100% - 64px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;

    align-items: center;
}

.founding-copy h2 {
    max-width: 600px;

    font-size: clamp(3rem, 5vw, 5rem);
}

.founding-copy p:not(.eyebrow) {
    max-width: 520px;

    margin-top: 28px;

    color: rgba(247, 241, 231, 0.76);

    font-size: 1rem;
}

.counter-card {
    padding: 45px;

    border: 1px solid rgba(214, 181, 141, 0.35);

    background: rgba(255, 255, 255, 0.035);
}

.counter-label {
    color: var(--caramel-light);

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.counter-number {
    margin: 18px 0 25px;

    color: var(--cream);

    font-family: var(--serif);
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 1;
}

.counter-divider {
    margin: 0 6px;

    color: var(--caramel);
}

.counter-progress {
    width: 100%;
    height: 4px;

    overflow: hidden;

    background: rgba(247, 241, 231, 0.14);
}

.counter-progress-fill {
    width: 0%;
    height: 100%;

    background: var(--caramel-light);

    transition: width 700ms ease;
}

.counter-card p {
    margin-top: 20px;

    color: rgba(247, 241, 231, 0.58);

    font-size: 0.74rem;
}


/* =========================================================
   CONCEPT
========================================================= */

.concept-section {
    padding: 130px 0;

    background: var(--cream);
}

.section-heading {
    width: min(var(--container), calc(100% - 64px));

    margin: 0 auto 70px;
}

.section-heading h2 {
    max-width: 720px;

    color: var(--forest);

    font-size: clamp(3rem, 5vw, 5.2rem);
}

.concept-grid {
    width: min(var(--container), calc(100% - 64px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.concept-card {
    min-height: 310px;

    padding: 38px;

    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.concept-card:last-child {
    border-right: 0;
}

.concept-number {
    display: block;

    margin-bottom: 75px;

    color: var(--caramel);

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.concept-card h3 {
    margin-bottom: 14px;

    color: var(--forest);

    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
}

.concept-card p {
    max-width: 320px;

    color: var(--coffee);

    font-size: 0.88rem;
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.how-section {
    padding: 130px 0;

    background: var(--cream-dark);
}

.how-heading {
    width: min(var(--container), calc(100% - 64px));

    margin: 0 auto 80px;
}

.how-heading h2 {
    max-width: 800px;

    color: var(--espresso-dark);

    font-size: clamp(3rem, 5vw, 5rem);
}

.steps {
    width: min(var(--container), calc(100% - 64px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
}

.step {
    min-height: 290px;

    padding: 32px 28px;

    border-right: 1px solid var(--border);
}

.step:last-child {
    border-right: 0;
}

.step-number {
    display: block;

    margin-bottom: 70px;

    color: var(--caramel);

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.step h3 {
    margin-bottom: 14px;

    color: var(--forest);

    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 500;
}

.step p {
    color: var(--coffee);

    font-size: 0.86rem;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    background: var(--warm-white);
}

.benefits-visual {
    min-height: 680px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            var(--coffee) 0%,
            var(--espresso-dark) 55%,
            #20150f 100%
        );
}

.benefits-visual::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(214, 181, 141, 0.35);
    border-radius: 50%;
}

.benefit-stamp {
    position: relative;
    z-index: 2;

    width: 260px;
    height: 260px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--caramel-light);
    border-radius: 50%;

    color: var(--cream);

    text-align: center;

    transform: rotate(-8deg);
}

.benefit-stamp span {
    margin-bottom: 18px;

    color: var(--caramel-light);

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.benefit-stamp strong {
    font-family: var(--serif);
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 0.95;
}

.benefits-content {
    padding: 110px 9%;
}

.benefits-content h2 {
    max-width: 580px;

    color: var(--forest);

    font-size: clamp(3rem, 4.5vw, 4.8rem);
}

.benefit-list {
    margin-top: 50px;

    list-style: none;
}

.benefit-list li {
    display: flex;
    gap: 20px;

    padding: 22px 0;

    border-top: 1px solid var(--border);
}

.benefit-list li:last-child {
    border-bottom: 1px solid var(--border);
}

.benefit-list li > span {
    width: 32px;

    font-size: 1.2rem;
}

.benefit-list strong {
    display: block;

    color: var(--espresso);

    font-size: 0.88rem;
}

.benefit-list p {
    margin-top: 3px;

    color: var(--coffee);

    font-size: 0.76rem;
}


/* =========================================================
   MEMBERSHIP
========================================================= */

.membership-section {
    padding: 135px 0;

    background: var(--forest);
    color: var(--cream);
}

.membership-heading {
    width: min(720px, calc(100% - 64px));

    margin: 0 auto 75px;

    text-align: center;
}

.membership-heading h2 {
    font-size: clamp(3rem, 5vw, 5rem);
}

.membership-heading > p:last-child {
    max-width: 560px;

    margin: 25px auto 0;

    color: rgba(247, 241, 231, 0.68);

    font-size: 0.9rem;
}

.membership-grid {
    width: min(var(--container), calc(100% - 64px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.membership-card {
    position: relative;

    min-height: 600px;

    padding: 30px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(247, 241, 231, 0.17);

    background: rgba(255, 255, 255, 0.035);

    transition:
        transform var(--transition),
        background var(--transition);
}

.membership-card:hover {
    transform: translateY(-7px);

    background: rgba(255, 255, 255, 0.065);
}

.membership-card.featured {
    border-color: var(--caramel);
}

.membership-card.black-tier {
    border-color: var(--caramel-light);
    background:
        linear-gradient(
            145deg,
            rgba(18, 18, 16, 0.96),
            rgba(38, 30, 24, 0.96)
        );
}

.membership-card.black-tier:hover {
    background:
        linear-gradient(
            145deg,
            rgba(25, 25, 22, 0.98),
            rgba(48, 37, 29, 0.98)
        );
}

.membership-card.black-tier .tier-header {
    color: var(--caramel-light);
}

.membership-card.black-tier h3 {
    color: var(--cream);
}

.membership-card.black-tier .tier-button {
    background: var(--caramel);
    color: var(--espresso-dark);
    border-color: var(--caramel);
}

.membership-card.black-tier .tier-button:hover {
    background: var(--cream);
    color: var(--espresso-dark);
}

.tier-badge {
    position: absolute;
    top: 0;
    right: 0;

    padding: 7px 12px;

    background: var(--caramel);

    color: var(--espresso-dark);

    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.tier-header {
    display: flex;
    justify-content: space-between;

    color: var(--caramel-light);

    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.11em;
}

.membership-card h3 {
    margin-top: 55px;

    font-family: var(--serif);
    font-size: 4.2rem;
    font-weight: 400;
}

.price-period {
    color: rgba(247, 241, 231, 0.58);

    font-size: 0.74rem;
}

.tier-divider {
    width: 100%;
    height: 1px;

    margin: 28px 0;

    background: rgba(247, 241, 231, 0.15);
}

.membership-card ul {
    list-style: none;
}

.membership-card li {
    position: relative;

    margin-bottom: 14px;
    padding-left: 18px;

    color: rgba(247, 241, 231, 0.76);

    font-size: 0.75rem;
}

.membership-card li::before {
    content: "•";

    position: absolute;
    left: 0;

    color: var(--caramel-light);
}

.membership-card li strong {
    color: var(--cream);
}

.tier-button {
    width: 100%;

    min-height: 48px;

    margin-top: auto;

    border: 1px solid var(--caramel-light);

    background: transparent;
    color: var(--cream);

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition:
        background var(--transition),
        color var(--transition);
}

.tier-button:hover {
    background: var(--caramel-light);
    color: var(--espresso-dark);
}

.membership-note {
    width: min(var(--container), calc(100% - 64px));

    margin: 35px auto 0;

    color: rgba(247, 241, 231, 0.48);

    text-align: center;
    font-size: 0.7rem;
}


/* =========================================================
   LONDON
========================================================= */

.london-section {
    min-height: 620px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            var(--espresso-dark),
            var(--forest)
        );
}

.london-section::before {
    content: "LONDON";

    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    color: rgba(247, 241, 231, 0.045);

    font-family: var(--serif);
    font-size: clamp(8rem, 22vw, 25rem);
    line-height: 1;

    white-space: nowrap;
}

.london-content {
    position: relative;
    z-index: 2;

    width: min(700px, calc(100% - 64px));

    text-align: center;
}

.london-content h2 {
    color: var(--cream);

    font-size: clamp(3.5rem, 6vw, 6rem);
}

.london-content > p:not(.eyebrow) {
    max-width: 550px;

    margin: 30px auto;

    color: rgba(247, 241, 231, 0.7);

    font-family: var(--serif);
    font-size: 1.15rem;
}

.london-location {
    display: inline-block;

    color: var(--caramel-light);

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 130px 0;

    background: var(--cream);
}

.faq-heading {
    width: min(var(--container), calc(100% - 64px));

    margin: 0 auto 65px;
}

.faq-heading h2 {
    color: var(--forest);

    font-size: clamp(3rem, 5vw, 5rem);
}

.faq-list {
    width: min(900px, calc(100% - 64px));

    margin: 0 auto;
}

.faq-list details {
    border-top: 1px solid var(--border);
}

.faq-list details:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-list summary {
    min-height: 85px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    list-style: none;

    cursor: pointer;

    color: var(--espresso);

    font-family: var(--serif);
    font-size: 1.35rem;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--caramel);

    font-family: var(--sans);
    font-size: 1.4rem;
    font-weight: 400;

    transition: transform var(--transition);
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 720px;

    padding: 0 50px 28px 0;

    color: var(--coffee);

    font-size: 0.86rem;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 130px 30px;

    background: var(--cream-dark);

    text-align: center;
}

.final-cta-content {
    width: min(750px, 100%);

    margin: 0 auto;
}

.final-cta h2 {
    color: var(--forest);

    font-size: clamp(3.5rem, 6vw, 6rem);
}

.final-cta p:not(.eyebrow):not(.final-note) {
    max-width: 520px;

    margin: 25px auto 35px;

    color: var(--coffee);

    font-family: var(--serif);
    font-size: 1.15rem;
}

.light-button {
    border-color: var(--forest);
}

.final-note {
    margin-top: 17px;

    color: var(--coffee);

    font-size: 0.7rem;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 70px 0 25px;

    background: var(--espresso-dark);
    color: var(--cream);
}

.footer-main {
    width: min(var(--container), calc(100% - 64px));

    margin: 0 auto 70px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;
}

.footer-logo {
    color: var(--cream);

    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.footer-brand p {
    margin-top: 22px;

    color: rgba(247, 241, 231, 0.5);

    font-family: var(--serif);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.footer-links h4 {
    margin-bottom: 20px;

    color: var(--caramel-light);

    font-size: 0.64rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links a {
    display: block;

    margin-bottom: 11px;

    color: rgba(247, 241, 231, 0.62);

    font-size: 0.72rem;

    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-bottom {
    width: min(var(--container), calc(100% - 64px));

    margin: 0 auto;

    padding-top: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(247, 241, 231, 0.12);

    color: rgba(247, 241, 231, 0.35);

    font-size: 0.62rem;
}


/* =========================================================
   MODAL
========================================================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 5000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(16, 42, 33, 0.72);

    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 2;

    width: min(520px, 100%);

    padding: 50px;

    background: var(--cream);

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.3);

    animation: modalIn 250ms ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;

    width: 38px;
    height: 38px;

    border: 0;
    background: transparent;

    color: var(--espresso);

    font-size: 1.8rem;
    font-weight: 300;
}

.modal-content h2 {
    color: var(--forest);

    font-size: 3.1rem;
}

.modal-content > p:not(.eyebrow):not(.secure-note) {
    margin-top: 18px;

    color: var(--coffee);

    font-size: 0.9rem;
}

.modal-notice {
    margin: 28px 0;

    padding: 20px;

    border-left: 3px solid var(--caramel);

    background: var(--cream-dark);
}

.modal-notice strong {
    display: block;

    color: var(--forest);

    font-size: 0.8rem;
}

.modal-notice span {
    display: block;

    margin-top: 6px;

    color: var(--coffee);

    font-size: 0.72rem;
}

.modal-checkout {
    width: 100%;

    border: 0;
}

.secure-note {
    margin-top: 15px;

    color: var(--coffee);

    text-align: center;
    font-size: 0.65rem;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav-links {
        gap: 20px;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        width: min(760px, calc(100% - 64px));

        padding: 90px 0;
    }

    .hero-visual {
        min-height: 560px;
    }

    .founding-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .membership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .concept-grid {
        grid-template-columns: 1fr;
    }

    .concept-card {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .concept-card:last-child {
        border-bottom: 0;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step:nth-child(2) {
        border-right: 0;
    }

    .benefits-section {
        grid-template-columns: 1fr;
    }

    .benefits-visual {
        min-height: 500px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 720px) {

    .announcement-bar {
        font-size: 0.61rem;
    }

    .navbar {
        width: calc(100% - 36px);
        min-height: 72px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu {
        position: absolute;
        left: 0;
        right: 0;

        padding: 20px;

        display: none;
        flex-direction: column;
        gap: 3px;

        background: var(--cream);

        border-bottom: 1px solid var(--border);
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        padding: 15px;

        color: var(--espresso);

        font-size: 0.8rem;
        font-weight: 600;
    }

    .mobile-menu-cta {
        margin-top: 8px;

        background: var(--forest);
        color: var(--cream) !important;

        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .hero-content {
        width: calc(100% - 40px);

        padding: 80px 0;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 17vw, 5rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .primary-button {
        width: 100%;
        padding: 0 20px;

        text-align: center;
    }

    .hero-visual {
        min-height: 500px;
    }

    .coffee-card {
        width: 78%;
    }

    .coffee-card::before {
        font-size: 4rem;
    }

    .founding-section,
    .concept-section,
    .how-section,
    .membership-section,
    .faq-section {
        padding: 90px 0;
    }

    .founding-inner,
    .section-heading,
    .concept-grid,
    .how-heading,
    .steps,
    .membership-grid,
    .membership-note,
    .faq-heading,
    .faq-list {
        width: calc(100% - 40px);
    }

    .counter-card {
        padding: 30px 24px;
    }

    .counter-number {
        font-size: 3.5rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        min-height: auto;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .step:last-child {
        border-bottom: 0;
    }

    .membership-grid {
        grid-template-columns: 1fr;
    }

    .membership-card {
        min-height: auto;
    }

    .benefits-content {
        padding: 80px 20px;
    }

    .benefits-visual {
        min-height: 430px;
    }

    .benefits-visual::before {
        width: 300px;
        height: 300px;
    }

    .benefit-stamp {
        width: 210px;
        height: 210px;
    }

    .benefit-stamp strong {
        font-size: 1.9rem;
    }

    .london-section {
        min-height: 520px;
    }

    .london-section::before {
        font-size: 8rem;
    }

    .footer-main {
        width: calc(100% - 40px);

        margin-bottom: 50px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-links > div:last-child {
        grid-column: span 2;
    }

    .footer-bottom {
        width: calc(100% - 40px);

        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .modal-content {
        padding: 40px 25px;
    }

    .modal-content h2 {
        font-size: 2.6rem;
    }
}

/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-hero {
    padding: 110px 0 100px;
    background: var(--forest);
    color: var(--cream);
}

.legal-hero-inner {
    width: min(900px, calc(100% - 64px));
    margin: 0 auto;
}

.legal-hero h1 {
    max-width: 850px;
    font-size: clamp(4rem, 7vw, 7rem);
    letter-spacing: -0.045em;
}

.legal-hero-inner > p:not(.eyebrow) {
    max-width: 650px;
    margin-top: 28px;
    color: rgba(247, 241, 231, 0.72);
    font-family: var(--serif);
    font-size: 1.2rem;
}

.legal-updated {
    display: inline-block;
    margin-top: 28px;
    color: var(--caramel-light);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =========================================================
   LEGAL CONTENT LAYOUT
========================================================= */

.legal-section {
    padding: 100px 0 130px;
    background: var(--cream);
}

.legal-layout {
    width: min(1120px, calc(100% - 64px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 90px;
    align-items: start;
}


/* =========================================================
   LEGAL SIDEBAR
========================================================= */

.legal-sidebar {
    position: sticky;
    top: 30px;

    display: flex;
    flex-direction: column;
    gap: 13px;
}

.legal-sidebar > span {
    margin-bottom: 8px;

    color: var(--caramel);

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.legal-sidebar a {
    color: var(--coffee);

    font-size: 0.69rem;
    line-height: 1.4;

    transition: color var(--transition);
}

.legal-sidebar a:hover {
    color: var(--forest);
}


/* =========================================================
   LEGAL ARTICLE
========================================================= */

.legal-content {
    max-width: 760px;
}

.legal-intro {
    margin-bottom: 70px;

    padding: 30px;

    border-left: 3px solid var(--caramel);

    background: var(--cream-dark);
}

.legal-intro p {
    margin-bottom: 12px;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-content section {
    scroll-margin-top: 40px;

    margin-bottom: 75px;
}

.legal-number {
    display: block;
    margin-bottom: 13px;

    color: var(--caramel);

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.legal-content h2 {
    margin-bottom: 24px;

    color: var(--forest);

    font-size: clamp(2rem, 3vw, 2.8rem);
}

.legal-content p,
.legal-content li {
    color: var(--coffee);

    font-size: 0.9rem;
    line-height: 1.8;
}

.legal-content p {
    margin-bottom: 18px;
}

.legal-content ul {
    margin: 25px 0;
    padding-left: 22px;
}

.legal-content li {
    margin-bottom: 11px;
    padding-left: 5px;
}

.legal-content strong {
    color: var(--espresso-dark);
}


/* =========================================================
   LEGAL HIGHLIGHT
========================================================= */

.legal-highlight {
    margin: 30px 0;

    padding: 28px 30px;

    border: 1px solid rgba(185, 137, 88, 0.35);

    background: var(--cream-dark);
}

.legal-highlight strong {
    display: block;

    margin-bottom: 8px;

    color: var(--forest);

    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
}

.legal-highlight p {
    margin-bottom: 0;
}


/* =========================================================
   LEGAL CONTACT
========================================================= */

.legal-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;

    margin-top: 28px;
    padding: 25px 28px;

    border: 1px solid var(--border);

    background: var(--warm-white);
}

.legal-contact strong {
    color: var(--forest);

    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 500;
}

.legal-contact span,
.legal-contact a {
    color: var(--coffee);

    font-size: 0.8rem;
}

.legal-contact a {
    color: var(--forest);
    font-weight: 600;
}


/* =========================================================
   LEGAL FOOTER NOTE
========================================================= */

.legal-footer-note {
    margin-top: 20px;
    padding-top: 35px;

    border-top: 1px solid var(--border);
}

.legal-footer-note p {
    color: var(--coffee);
    font-size: 0.75rem;
}

.legal-footer-note a {
    display: inline-block;
    margin-top: 10px;

    color: var(--forest);

    font-size: 0.73rem;
    font-weight: 700;
}


/* =========================================================
   LEGAL MOBILE
========================================================= */

@media (max-width: 900px) {

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .legal-sidebar {
        position: static;

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;

        padding-bottom: 30px;

        border-bottom: 1px solid var(--border);
    }

    .legal-sidebar > span {
        grid-column: 1 / -1;
    }

    .legal-sidebar a {
        padding: 6px 0;
    }

}


@media (max-width: 720px) {

    .legal-hero {
        padding: 75px 0 70px;
    }

    .legal-hero-inner {
        width: calc(100% - 40px);
    }

    .legal-hero h1 {
        font-size: clamp(3.5rem, 16vw, 5rem);
    }

    .legal-hero-inner > p:not(.eyebrow) {
        font-size: 1.05rem;
    }

    .legal-section {
        padding: 75px 0 90px;
    }

    .legal-layout {
        width: calc(100% - 40px);
    }

    .legal-sidebar {
        grid-template-columns: 1fr;
    }

    .legal-content section {
        margin-bottom: 60px;
    }

    .legal-intro,
    .legal-highlight {
        padding: 23px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 0.84rem;
    }

}

.legal-subheading {
    margin: 32px 0 14px;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
    padding: 120px 0 110px;

    background: var(--forest);
    color: var(--cream);
}

.contact-hero-inner {
    width: min(900px, calc(100% - 64px));

    margin: 0 auto;
}

.contact-hero h1 {
    max-width: 850px;

    font-size: clamp(4rem, 7vw, 7rem);

    letter-spacing: -0.045em;
}

.contact-hero-inner > p:not(.eyebrow) {
    max-width: 620px;

    margin-top: 30px;

    color: rgba(247, 241, 231, 0.72);

    font-family: var(--serif);
    font-size: 1.2rem;
    line-height: 1.55;
}


/* =========================================================
   CONTACT CARDS
========================================================= */

.contact-section {
    padding: 110px 0 130px;

    background: var(--cream);
}

.contact-grid {
    width: min(var(--container), calc(100% - 64px));

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.contact-card {
    min-height: 380px;

    padding: 38px;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: var(--cream);

    transition:
        background var(--transition),
        transform var(--transition);
}

.contact-card:hover {
    background: var(--warm-white);
}

.contact-number {
    display: block;

    margin-bottom: 55px;

    color: var(--caramel);

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.contact-label {
    display: block;

    margin-bottom: 13px;

    color: var(--caramel);

    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-card h2 {
    margin-bottom: 16px;

    color: var(--forest);

    font-size: 2.4rem;
}

.contact-card p {
    max-width: 400px;

    color: var(--coffee);

    font-size: 0.84rem;
    line-height: 1.7;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 28px;

    color: var(--forest);

    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    transition: color var(--transition);
}

.contact-link span {
    transition: transform var(--transition);
}

.contact-link:hover {
    color: var(--caramel);
}

.contact-link:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   CONTACT NOTE
========================================================= */

.contact-note-section {
    padding: 130px 30px;

    background: var(--cream-dark);

    text-align: center;
}

.contact-note {
    width: min(760px, 100%);

    margin: 0 auto;
}

.contact-note h2 {
    color: var(--forest);

    font-size: clamp(3rem, 5vw, 5rem);
}

.contact-note > p:not(.eyebrow) {
    max-width: 570px;

    margin: 28px auto 35px;

    color: var(--coffee);

    font-family: var(--serif);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-note .primary-button {
    margin-top: 5px;
}


/* =========================================================
   CONTACT MOBILE
========================================================= */

@media (max-width: 720px) {

    .contact-hero {
        padding: 80px 0 75px;
    }

    .contact-hero-inner {
        width: calc(100% - 40px);
    }

    .contact-hero h1 {
        font-size: clamp(3.5rem, 16vw, 5rem);
    }

    .contact-hero-inner > p:not(.eyebrow) {
        font-size: 1.05rem;
    }

    .contact-section {
        padding: 75px 0 90px;
    }

    .contact-grid {
        width: calc(100% - 40px);

        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: auto;

        padding: 30px;
    }

    .contact-number {
        margin-bottom: 40px;
    }

    .contact-card h2 {
        font-size: 2.1rem;
    }

    .contact-note-section {
        padding: 90px 20px;
    }

}

