:root {
    --brown-dark: #5e3218;
    --brown: #80583b;
    --brown-light: #a77f61;

    --sage: #aebda5;
    --sage-dark: #71846c;

    --cream: #f7f0e8;
    --cream-dark: #eee1d3;

    --surface: #fffdf9;

    --text: #30251f;
    --muted: #78695f;

    --white: #ffffff;

    --shadow:
        0 12px 35px
        rgba(93, 55, 32, 0.10);
}



* {box-sizing: border-box;}
html {scroll-behavior: smooth;}
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--text);
}
a {
    color: inherit;
    text-decoration: none;
}
button {font: inherit;}

/* NAVBAR */

.navbar {
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    background: rgba(255, 253, 249, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(94, 50, 24, 0.08);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: var(--brown-dark);
}
.nav-brand img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}
.nav-links {
    display: flex;
    gap: 28px;
}
.nav-links a {
    color: var(--muted);
    font-size: 14px;
    transition: 0.2s;
}
.nav-links a:hover {color: var(--brown-dark);}
.mobile-menu-button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 26px;
    color: var(--brown-dark);
    cursor: pointer;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.mobile-menu.show {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mobile-menu a {
    padding: 14px;
    border-radius: 12px;
}
.mobile-menu a:hover {background: var(--cream);}


/* HERO */

.hero {

    position: relative;

    min-height:
        calc(100vh - 72px);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding: 80px 24px;

    text-align: center;

    background:
        radial-gradient(
            circle at top,
            #fffaf4,
            var(--cream)
        );
}



.hero-content {

    position: relative;

    z-index: 2;

    max-width: 700px;
}



.hero-logo-wrapper {

    width: 128px;
    height: 128px;

    margin:
        0 auto
        30px;

    padding: 5px;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 18px 45px
        rgba(94, 50, 24, 0.18);
}



.hero-logo {

    width: 100%;
    height: 100%;

    border-radius: 50%;

    object-fit: cover;
}



.eyebrow,
.section-eyebrow {

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2.5px;

    color: var(--sage-dark);
}



.hero h1 {

    margin:
        10px 0
        0;

    font-size:
        clamp(52px, 9vw, 88px);

    color: var(--brown-dark);

    line-height: 1;
}



.hero-tagline {

    margin:
        20px 0
        0;

    font-size: 22px;

    color: var(--brown);
}



.hero-description {

    max-width: 520px;

    margin:
        20px auto
        0;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.7;
}



.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 32px;
}



.button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding:
        0 24px;

    border-radius: 999px;

    font-weight: bold;

    font-size: 14px;

    transition:
        transform 0.2s,
        box-shadow 0.2s;
}



.button:hover {

    transform:
        translateY(-2px);
}



.button-primary {

    background: var(--brown-dark);

    color: white;

    box-shadow:
        0 8px 22px
        rgba(94, 50, 24, 0.22);
}



.button-secondary {

    background: white;

    color: var(--brown-dark);

    border:
        1px solid var(--cream-dark);
}



.button-light {

    background: var(--surface);

    color: var(--brown-dark);
}



.hero-decoration {

    position: absolute;

    border-radius: 50%;

    opacity: 0.55;
}



.hero-circle-one {

    width: 360px;
    height: 360px;

    background: var(--sage);

    top: -160px;
    right: -100px;
}



.hero-circle-two {

    width: 280px;
    height: 280px;

    background: #d7bba3;

    bottom: -140px;
    left: -100px;
}



/* GENERAL */

.section {

    max-width: 1120px;

    margin: 0 auto;

    padding:
        90px 24px;
}



.section-heading {

    max-width: 560px;

    margin-bottom: 36px;
}



.section-heading h2 {

    margin:
        10px 0
        0;

    color: var(--brown-dark);

    font-size:
        clamp(30px, 5vw, 44px);
}



.section-heading p {

    margin:
        14px 0
        0;

    color: var(--muted);

    line-height: 1.6;
}



/* MENU */
.menu-section {overflow: hidden;}
.menu-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: thin;
}
.menu-tab {
    flex: 0 0 auto;
    padding: 12px 20px;
    border: 1px solid rgba(94, 50, 24, 0.12);
    border-radius: 999px;
    color: var(--brown-dark);
    background: var(--surface);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        color 0.2s,
        background 0.2s,
        transform 0.2s;
}
.menu-tab:hover {transform: translateY(-2px);}
.menu-tab.active {
    color: white;
    background: var(--brown-dark);
    border-color: var(--brown-dark);
}
.menu-panels {
    max-width: 900px;
    margin: 0 auto;
}
.menu-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.menu-panel[hidden] {display: none;}
.menu-group {
    padding: 30px;
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.menu-group h3 {
    margin: 0 0 20px;
    color: var(--sage-dark);
    font-size: 24px;
}
.menu-note {
    margin: -14px 0 20px;
    color: var(--muted);
    font-size: 13px;
}
.menu-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(94, 50, 24, 0.14);
    color: var(--brown-dark);
}
.menu-item:last-child {border-bottom: 0;}
.menu-item span {line-height: 1.4;}
.menu-item strong {
    flex: 0 0 auto;
    color: var(--sage-dark);
}
.menu-item small {
    color: var(--muted);
    font-size: 12px;
}
.menu-item-description span {
    display: flex;
    flex-direction: column;
}
.menu-special-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #e87518;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}
.snow-ice-group {
    position: relative;
    grid-column: 1 / -1;
    overflow: hidden;
    padding: 40px;
    background: linear-gradient(135deg, #f5f0d9, #dce1bd);
}
.snow-ice-group h3 {
    margin-bottom: 12px;
    color: #42572a;
    font-size: 34px;
}
.snow-ice-description {
    max-width: 580px;
    color: var(--brown-dark);
    line-height: 1.7;
}
.snow-ice-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    padding-right: 100px;
}
.snow-ice-features span {
    padding: 9px 14px;
    border-radius: 999px;
    color: #42572a;
    background: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    font-weight: 700;
}
.snow-ice-price {
    position: absolute;
    right: 35px;
    bottom: 35px;
    color: #e87518;
    font-size: 46px;
    font-weight: 900;
}



/* FEATURED */

.featured-section {

    max-width: 1120px;

    margin: 0 auto;

    padding:
        0 24px
        90px;
}



.featured-card {

    overflow: hidden;

    position: relative;

    padding: 56px;

    border-radius: 32px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #8c6243,
            #5e3218
        );

    box-shadow:
        0 22px 50px
        rgba(94, 50, 24, 0.18);
}



.featured-label {

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 2px;

    opacity: 0.75;
}



.featured-content {

    display: grid;

    grid-template-columns:
        1.4fr 0.6fr;

    gap: 30px;

    align-items: center;
}



.featured-content h2 {

    max-width: 580px;

    margin:
        16px 0
        0;

    font-size:
        clamp(30px, 5vw, 48px);
}



.featured-content p {

    max-width: 520px;

    line-height: 1.7;

    opacity: 0.85;

    margin:
        18px 0
        28px;
}



.featured-art {

    display: flex;

    justify-content: center;
}



.coffee-circle {

    width: 180px;
    height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.12);

    font-size: 80px;
}



/* ABOUT */

.about-section {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 54px;
    align-items: center;
}
.about-photo {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 28px;
    background: var(--surface);
    box-shadow: 0 22px 50px rgba(94, 50, 24, 0.18);
}
.about-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.about-photo:hover img {transform: scale(1.025);}
.about-photo figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    color: white;
    background: rgba(48, 35, 25, 0.78);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}
.about-content h2 {
    margin: 10px 0 20px;
    color: var(--brown-dark);
    font-size: 44px;
}
.about-content p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}



/* MEMBERSHIP */
.membership-section {
    padding: 70px 24px;
    background: #e4e9df;
}
.membership-card {
    max-width: 1120px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
    padding: 50px;
    border-radius: 32px;
    background: linear-gradient(145deg, #80583b, #5e3218);
    color: white;
    box-shadow:
        0 22px 55px
        rgba(94, 50, 24, 0.2);
}
.section-eyebrow.light {color: #cbd6c5;}
.membership-copy h2 {
    margin:
        12px 0
        0;
    max-width: 600px;
    font-size: clamp(30px, 5vw, 46px);
}
.membership-copy > p {
    max-width: 580px;
    line-height: 1.7;
    opacity: 0.85;
}
.membership-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}
.membership-features span {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 13px;
}
.member-help {
    margin-top: 28px;
    font-size: 13px;
    opacity: 0.7 !important;
}
.membership-preview {
    min-height: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px;
    border:
        1px solid
        rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
}
.membership-preview img {
    width: 70px;
    border-radius: 50%;
    margin-bottom: 18px;
}
.membership-preview > span {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.7;
}
.preview-name {
    margin-top: 24px;
    font-size: 24px;
    font-weight: bold;
}
.preview-code {
    margin-top: 7px;
    opacity: 0.7;
}
.preview-points {
    margin-top: 35px;
    font-size: 42px;
    font-weight: bold;
    color: #f5dda8;
}
.membership-preview small {
    margin-top: 5px;
    letter-spacing: 2px;
    opacity: 0.7;
}



/* LOCATION */
.location-section {background: linear-gradient(180deg, var(--cream) 0%, #f7f0e2 100%);}
.location-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, 0.65fr);
    gap: 24px;
    align-items: stretch;
}
.map-card {
    min-height: 520px;
    overflow: hidden;
    border: 8px solid var(--surface);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.map-frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 504px;
    border: 0;
    border-radius: 20px;
}
.location-details {
    display: grid;
    gap: 18px;
}
.location-detail-card {
    padding: 30px;
    border-radius: 24px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.location-detail-card.compact {padding: 24px 30px;}
.location-label {
    display: inline-block;
    color: var(--sage-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}
.location-detail-card h3 {
    margin: 12px 0 10px;
    color: var(--brown-dark);
    font-size: 28px;
}
.location-detail-card address, .location-detail-card p {
    margin: 0;
    color: var(--muted);
    font-style: normal;
    line-height: 1.7;
}
.location-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    line-height: 1.2;
    text-align: center;
}
.location-small-heading {
    margin: 10px 0 6px !important;
    font-size: 20px !important;
}
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 18px;
    padding: 0 20px;
    border-radius: 999px;
    color: white;
    background: #238636;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}
.whatsapp-link:hover {
    transform: translateY(-2px);
    background: #1c702d;
}



/* FOOTER */
.footer {
    padding: 60px 24px;
    text-align: center;
    background: var(--brown-dark);
    color: white;
}
.footer img {
    width: 74px;
    border-radius: 50%;
}
.footer h2 {
    margin:
        14px 0
        4px;
}
.footer p {
    margin: 0;
    opacity: 0.7;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 28px 0;
}
.footer-links a {
    font-size: 14px;
    opacity: 0.8;
}
.footer small {opacity: 0.5;}



/* Homepage Navigation */
.nav-account {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .nav-signin, .nav-register {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 18px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
        transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    /* Sign In Outline Button */
    .nav-signin {
        border: 1px solid rgba(94, 50, 24, 0.28);
        color: var(--brown-dark);
        background: transparent;
    }
    .nav.signin:hover {
        transform:translateY(-2px);
        border-color: var(--brown-dark);
        background: rgba(94, 50, 24, 0.06);
    }

    /* Register: Primary Button */
    .nav-register {
        border: 1px solid var(--brown-dark);
        color: white;
        background: var(--brown-dark);
        box-shadow: 0 7px 18px rgba(94, 50, 24, 0.16);
    }

    .nav-register:hover {
        transform: translateY(-2px);
        background: var(--sage-dark);
        border-color: var(--sage-dark);
        box-shadow: 0 10px 22px rgba(94, 50, 24, 0.2);
    }
.nav-account[hidden], .mobile-account[hidden], #myCardLink[hidden], #mobileMyCardLink[hidden] {display: none !important;}
.nav-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(94, 50, 24, 0.28);
    border-radius: 999px;
    color: var(--brown-dark);
    background: transparent;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.nav-logout:hover {
    transform: translateY(-2px);
    border-color: var(--brown-dark);
    background: rgba(94, 50, 24, 0.06);
}
#myCardLink {
    color: white;
    background: var(--brown-dark);
    border-color: var(--brown-dark);
}
.mobile-account {
    display: grid;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(94, 50, 24, 0.12);
}
.mobile-account button {
    width: 100%;
    padding: 13px 16px;
    border: 0;
    border-radius: 12px;
    color: white;
    background: var(--brown-dark);
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}
.mobile-register {
    color: var(--sage-dark) !important;
    font-weight: 800 !important;
}

/* Floating WA Icon */
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 8px 18px 8px 8px;
    border-radius: 999px;
    color: white;
    background: #238636;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(28, 112, 45, 0.3);
    transition: transform 0.2s, background 0.2s;
}
.floating-whatsapp:hover {
    transform: translateY(-3px);
    background: #1c702d;
}
.floating-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
/* Tablet */
@media (max-width: 850px) {
    .nav-links {display: none;}
    .mobile-menu-button {display: block;}
    .menu-grid {grid-template-columns: repeat(2, 1fr);}
    .featured-content {grid-template-columns: 1fr;}
    .featured-art {display: none;}
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-photo {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
    }
    .about-content {
        max-width: 680px;
        margin: 0 auto;
    }
    .membership-card {
        grid-template-columns: 1fr;
        padding: 34px;
    }
    .nav-account {display: none;}
    .location-layout {grid-template-columns: 1fr;}
    .map-card {min-height: 420px;}
    .map-frame {min-height: 404px;}
    .location-detail-card {
        padding: 24px;
        text-align: center;
    }
    .location-detail-card.compact {padding: 24px}
    .location-button {width: 100%;}
    .location-detail-card address, .location-detail-card p {
        margin-left: auto;
        margin-right: auto;
        max-width: 620px;
    }
    .whatsapp-link {justify-content: center;}

}


/* Phone */
@media (max-width: 520px) {
    .navbar {padding: 0 18px;}
    .hero {
        min-height: auto;
        padding: 70px 18px 85px;
    }
    .hero-logo-wrapper {
        width: 104px;
        height: 104px;
    }
    .hero-tagline {font-size: 19px;}
    .menu-grid {grid-template-columns: 1fr;}
    .section {padding: 70px 18px;}
    .featured-section {padding: 0 18px 70px;}
    .featured-card {padding: 34px 26px;}
    .membership-section {padding: 50px 18px;}
    .membership-card {padding: 30px 22px;}
    .membership-preview {min-height: 320px;}
    .location-layout {grid-template-columns: 1fr;}
    .map-card {
        min-height: 340px;
        border-width: 5px;
        border-radius: 22px;
    }
    .map-frame {
        min-height: 330px;
        border-radius: 17px;
    }
    .location-detail-card, .location-detail-card.compact {padding: 24px;}
    .location-button {width: 100%;}
    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        min-height: 0;
        padding: 9px;
        justify-content: center;
    }
    .floating-whatsapp-icon {
        width: 36px;
        height: 36px;
    }
    .floating-whatsapp-text {display: none;}
}