:root {
    --olive-950: #151910;
    --olive-900: #1d2317;
    --olive-850: #242c1c;
    --olive-800: #2e3824;
    --olive-700: #465536;
    --olive-600: #63754b;
    --cream: #f3eddf;
    --cream-2: #e7deca;
    --sand: #cdbf9e;
    --ink: #11140e;
    --gold: #c5a765;
    --rust: #a8583b;
    --line: rgba(243, 237, 223, 0.16);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
    --radius: 22px;
    --max: 1180px;

    /* Brand font: condensed, architectural, legible, and available on many systems. */
    --font-brand:
        "Bahnschrift Condensed", "Aptos Display", "Arial Narrow", sans-serif;
    --font-body: "Aptos", "Segoe UI", Inter, Arial, sans-serif;
    --font-editorial: Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--cream);
    background:
        radial-gradient(
            circle at top left,
            rgba(99, 117, 75, 0.18),
            transparent 34%
        ),
        linear-gradient(180deg, var(--olive-950), var(--olive-900) 46%, #12160d);
    font-family: var(--font-body);
    line-height: 1.6;
}

a {
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
button,
input,
textarea,
select {
    font: inherit;
}
section {
    scroll-margin-top: 84px;
}

.container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0 0 18px;
    font-family: var(--font-editorial);
    font-weight: 600;
    line-height: 1.05;
}

h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    letter-spacing: -0.055em;
}
h2 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    letter-spacing: -0.035em;
}
h3 {
    font-size: 1.55rem;
}
p {
    margin: 0 0 18px;
}
.lead {
    max-width: 760px;
    color: var(--cream-2);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}
.muted {
    color: rgba(243, 237, 223, 0.72);
}
.small {
    font-size: 0.92rem;
}

.brand-wordmark {
    font-family: var(--font-brand);
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(21, 25, 16, 0.82);
    backdrop-filter: blur(16px);
}

.nav {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    color: var(--cream);
    font-size: 1rem;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.95rem;
}

.nav-links a {
    color: rgba(243, 237, 223, 0.82);
    text-decoration: none;
}

.nav-links a:hover {
    color: #fff;
}

.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--cream);
    color: var(--ink);
    cursor: pointer;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

/* Explicit specificity fixes the invisible header button. */
.nav-links .btn,
.nav-links .btn:visited,
.nav-links .btn:hover {
    color: var(--ink);
}

.btn:hover {
    transform: translateY(-2px);
}
.btn-outline {
    border-color: rgba(243, 237, 223, 0.35);
    background: transparent;
    color: var(--cream);
}
.btn-outline:hover {
    color: var(--cream);
}

.hero {
    position: relative;
    display: grid;
    min-height: 88vh;
    align-items: end;
    overflow: hidden;
    padding: 84px 0 54px;
}

.hero::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(21, 25, 16, 0.96) 0%,
            rgba(21, 25, 16, 0.78) 52%,
            rgba(21, 25, 16, 0.35) 100%
        ),
        url("images/hero-renovation.svg") center / cover no-repeat;
    content: "";
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 180px;
    background: linear-gradient(transparent, var(--olive-950));
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 48px;
}

.hero-copy {
    max-width: 760px;
}
.hero-wordmark {
    margin-bottom: 12px;
    font-family: var(--font-brand);
    font-size: clamp(4.6rem, 13vw, 10rem);
    font-weight: 700;
    letter-spacing: 0.055em;
    line-height: 0.82;
    text-transform: uppercase;
}
.hero-copy .tagline {
    margin-bottom: 22px;
    color: var(--cream);
    font-family: var(--font-editorial);
    font-size: clamp(1.6rem, 3.2vw, 2.8rem);
}

.hero-copy h1 {
    white-space: nowrap;
    font-size: clamp(4.5rem, 8vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
}

@media (max-width: 1250px) {
    .hero-copy h1 {
        font-size: clamp(4.2rem, 7vw, 6.8rem);
    }

    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(29, 35, 23, 0.82);
    box-shadow: var(--shadow);
}

.hero-grid {
    grid-template-columns: 1.35fr 0.65fr;
    gap: 56px;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.92rem;
}
.progress {
    height: 13px;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(243, 237, 223, 0.12);
}
.progress > span {
    display: block;
    width: 12%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold), #dfc983);
}
.stat {
    margin-bottom: 8px;
    font-family: var(--font-editorial);
    font-size: 2.4rem;
    line-height: 1;
}

.proof {
    padding: 26px 0 80px;
}
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.proof-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(243, 237, 223, 0.04);
}
.check {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--olive-600);
    font-weight: 900;
}

.section {
    padding: 96px 0;
    border-top: 1px solid var(--line);
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
}
.quote {
    color: var(--cream);
    font-family: var(--font-editorial);
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 1.2;
}

.media-card {
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--olive-850);
}
.media-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.gap-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.compare {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(243, 237, 223, 0.035);
}
.compare ul {
    margin: 0;
    padding-left: 1.15rem;
}

.transformation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}
.transform-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(243, 237, 223, 0.04);
}
.transform-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.transform-card .label {
    padding: 18px 20px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.features-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 34px;
}
.feature {
    min-height: 190px;
    padding: 28px;
    border-radius: 18px;
    background: var(--cream);
    color: var(--ink);
}
.feature .icon {
    margin-bottom: 18px;
    font-size: 1.7rem;
}

.funding-box {
    padding: 36px;
    border: 1px solid rgba(243, 237, 223, 0.14);
    border-radius: var(--radius);
    background: var(--olive-800);
    box-shadow: var(--shadow);
}
.funding-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 28px 0;
}
.funding-numbers > div {
    padding: 22px;
    border-radius: 16px;
    background: rgba(243, 237, 223, 0.06);
}
.funding-numbers strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-editorial);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
}
.commitment-note {
    padding: 18px 20px;
    margin: 22px 0;
    border-left: 4px solid var(--gold);
    background: rgba(243, 237, 223, 0.06);
}
.use-of-funds {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 28px;
}
.use-of-funds div {
    padding: 18px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    text-align: center;
    font-size: 0.92rem;
}

.tiers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 36px;
}
.tier {
    position: relative;
    display: flex;
    min-height: 390px;
    flex-direction: column;
    padding: 28px 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(243, 237, 223, 0.05);
}
.tier.featured {
    transform: translateY(-10px);
    background: var(--cream);
    color: var(--ink);
    box-shadow: var(--shadow);
}
.badge {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}
.tier-price {
    margin-bottom: 14px;
    font-size: 2rem;
    font-weight: 900;
}
.tier ul {
    margin: 18px 0 28px;
    padding-left: 1.1rem;
    color: inherit;
    opacity: 0.88;
}
.tier .btn {
    margin-top: auto;
}
.tier.featured .btn {
    background: var(--olive-900);
    color: var(--cream);
}

.namesake-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
    gap: 24px;
    padding: 26px;
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--ink);
}
.namesake-card img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    border-radius: 18px;
    object-fit: cover;
}
.menu-card {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    justify-content: center;
    padding: 36px;
    border-radius: 18px;
    background: var(--olive-900);
    color: var(--cream);
}
.menu-card .drink-name {
    margin-bottom: 24px;
    font-family: var(--font-brand);
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 0.95;
    text-transform: uppercase;
}

.reward-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
}
.reward-list div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
}
.wall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 28px;
}
.wall div {
    display: grid;
    min-height: 76px;
    place-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(243, 237, 223, 0.04);
    text-align: center;
}
.wall .occupied {
    border-color: rgba(197, 167, 101, 0.72);
    background: rgba(197, 167, 101, 0.12);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 30px;
}
.timeline-step {
    padding-top: 16px;
    border-top: 3px solid rgba(243, 237, 223, 0.14);
}
.timeline-step.done {
    border-top-color: var(--gold);
}
.timeline-step strong {
    display: block;
    margin-bottom: 6px;
}

details {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}
summary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}
summary::-webkit-details-marker {
    display: none;
}
summary::after {
    color: var(--gold);
    content: "+";
    font-size: 1.4rem;
}
details[open] summary::after {
    content: "–";
}
details p {
    margin-top: 14px;
    color: rgba(243, 237, 223, 0.72);
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 28px;
}
.social-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(243, 237, 223, 0.04);
    text-decoration: none;
}
.form-shell {
    overflow: hidden;
    padding: 22px;
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--ink);
    box-shadow: var(--shadow);
}
.form-shell iframe {
    width: 100%;
    min-height: 1160px;
    border: 0;
    border-radius: 16px;
    background: #fff;
}
.legal-note {
    margin-top: 18px;
    color: rgba(243, 237, 223, 0.68);
    font-size: 0.88rem;
}

/*.footer {
    padding: 56px 0 100px;
    border-top: 1px solid var(--line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 32px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}
.footer-links a {
    color: rgba(243, 237, 223, 0.7);
}*/

.footer {
    border-top: 1px solid var(--line);
    padding: 72px 0 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(520px, 1.5fr);
    gap: 64px;
    align-items: start;
}

.footer-grid > div,
.footer-links {
    align-self: start;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 16px 28px;
    padding-top: 2px;
}

.footer-links a {
    display: inline-block;
    width: fit-content;
    color: var(--cream);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer .brand {
    display: inline-block;
    margin-bottom: 12px;
}

.footer p {
    margin: 0;
}

.footer p + p {
    margin-top: 28px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 560px) {
    .footer {
        padding: 52px 0 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.sticky-cta {
    position: fixed;
    z-index: 80;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: none;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--cream);
    color: var(--ink);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 980px) {
    .nav-links a:not(.btn) {
        display: none;
    }
    .hero-grid,
    .two-col,
    .namesake-card {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: auto;
        padding-top: 120px;
    }
    .proof-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .tiers {
        grid-template-columns: 1fr 1fr;
    }
    .tier.featured {
        transform: none;
    }
    .use-of-funds {
        grid-template-columns: repeat(3, 1fr);
    }
    .timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    .sticky-cta {
        display: flex;
    }
    .footer {
        padding-bottom: 120px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 22px), var(--max));
    }
    .nav {
        min-height: 64px;
    }
    .nav .btn {
        min-height: 42px;
        padding-inline: 16px;
    }
    .section {
        padding: 72px 0;
    }
    .proof-grid,
    .gap-grid,
    .features-grid,
    .transformation,
    .funding-numbers,
    .tiers,
    .reward-list,
    .wall,
    .social-grid,
    .timeline,
    .use-of-funds {
        grid-template-columns: 1fr;
    }
    .hero-card {
        padding: 22px;
    }
    .funding-box {
        padding: 24px 18px;
    }
    .tier {
        min-height: auto;
    }
    .namesake-card {
        padding: 18px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-links {
        justify-content: flex-start;
    }
}

/* HERO POSITION FIX — keep content close to header */
.hero {
    min-height: 0 !important;
    height: auto !important;
    display: block !important;
    padding: 72px 0 72px !important;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center !important;
    min-height: 0 !important;
    height: auto !important;
}

/* =========================================
   MOBILE HERO — FINAL OVERRIDE
   ========================================= */

@media screen and (max-width: 900px) {
    .hero {
        min-height: auto !important;
        height: auto !important;
        display: block !important;
        padding: 64px 0 72px !important;
        overflow: hidden;
    }

    .hero-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 42px !important;
        align-items: start !important;
        width: 100% !important;
        min-height: 0 !important;
    }

    .hero-copy,
    .hero-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .hero-copy h1 {
        white-space: nowrap !important;
        font-size: clamp(4rem, 19vw, 6rem) !important;
        line-height: 0.88 !important;
        letter-spacing: -0.055em !important;
        max-width: 100% !important;
        margin-bottom: 26px !important;
    }

    .hero-copy .tagline {
        font-size: clamp(1.9rem, 8vw, 2.7rem) !important;
        line-height: 1.12 !important;
        max-width: 100% !important;
        margin-bottom: 28px !important;
    }

    .hero-copy .lead {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 1.1rem !important;
        line-height: 1.65 !important;
    }

    .hero-card {
        position: static !important;
        margin: 0 !important;
        padding: 24px !important;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-actions .btn-outline {
        display: none;
    }

    .sticky-cta {
        display: flex !important;
        left: 16px !important;
        right: 16px !important;
        bottom: calc(14px + env(safe-area-inset-bottom)) !important;
        width: auto !important;
        min-height: 58px !important;
    }

    body {
        padding-bottom: 92px;
    }
}
