@font-face {
    font-family: 'JetBrains Mono';
    src: url('https://fonts.gstatic.com/s/jetbrainsmono/v24/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxTN1OVgaY.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ── Heritage Malaysia Navbar ── */
.hm-navbar {
    background-color: rgba(28,58,40,1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 85px;
    border-bottom: none;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
}

.hm-navbar::before,
.hm-navbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #7a5c1e 0%, #c9a84c 18%, #e8d090 40%, #f5e9b8 50%, #e8d090 60%, #c9a84c 82%, #7a5c1e 100%);
}

.hm-navbar::before {
    top: 0;
}

.hm-navbar::after {
    bottom: 0;
}

/* offset page content so it starts below fixed nav */
body {
    padding-top: 56px;
}

.hm-navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.hm-navbar__logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #c9a84c;
    color: #1c3a28;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
    flex-shrink: 0;
}

.hm-navbar__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.hm-navbar__name {
    color: #f5f0e8;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.hm-navbar__name img {
    height: 25px;
    width: auto;
    object-fit: contain;
    display: block;
}

.hm-navbar__links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    gap: 0;
    height: 100%;
}

.hm-navbar__links > li {
    height: 100%;
    display: flex;
    align-items: center;
}

.hm-navbar__links > li > a {
    color: rgba(245,240,232,0.75);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    transition: color 0.15s;
}

.hm-navbar__links > li > a:hover,
.hm-navbar__links > li > a.active {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-caret {
    font-size: 0.5rem;
    color: rgba(201,168,76,0.7);
    margin-top: 1px;
}

/* Dropdowns */
.hm-has-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.hm-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: -10px;
    background: #f5f0e8;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 220px;
    border-top: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.hm-has-dropdown:hover .hm-dropdown,
.hm-has-dropdown.open .hm-dropdown {
    display: block;
}

.hm-dropdown li a {
    display: block;
    padding: 0.75rem 1.4rem;
    color: #1c3a28;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: none;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
}

.hm-dropdown li a:hover {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    background: rgba(28,58,40,0.05);
}

/* Basket */
.hm-navbar__basket {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #c9a84c;
    color: #1c3a28;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.5rem 1.1rem 0.5rem 1.25rem;
    border-radius: 999px;
    flex-shrink: 0;
    transition: background 0.2s;
    line-height: 1;
    cursor: pointer;
}

.hm-navbar__basket:hover {
    background: #f5f0e8;
    color: #1c3a28;
}

.hm-basket-count {
    background: #1c3a28;
    color: #c9a84c;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
    position: relative;
}

.hm-basket-count::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28, 58, 40, 1);
    border-radius: 50%;
    z-index: -1;
}

.hm-navbar__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Mobile toggler */
.hm-navbar__toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hm-navbar__toggler span {
    display: block;
    width: 20px;
    height: 1px;
    background: #f5f0e8;
    border-radius: 1px;
}

@media (max-width: 1280px) {
    .hm-navbar__name {
        display: none;
    }
}

@media (max-width: 1013px) {
    .hm-navbar__name {
        display: block;
    }

    .hm-navbar__right {
        margin-left: auto;
    }
}

@media (max-width: 529px) {
    .hm-navbar__name {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hm-navbar {
        flex-wrap: wrap;
        height: auto;
        padding: 0.65rem 1rem;
    }

    .hm-navbar__toggler {
        display: flex;
    }

    .hm-navbar__links {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: auto;
        gap: 0;
        margin: 0.4rem 0 0;
    }

    .hm-navbar__links > li {
        width: 100%;
        height: auto;
    }

    .hm-navbar__links.open {
        display: flex;
    }

    .hm-navbar__links > li > a {
        height: auto;
        padding: 0.55rem 0;
        width: 100%;
    }

    .hm-has-dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .hm-dropdown {
        position: static;
        border-top: none;
        box-shadow: none;
        padding-left: 1rem;
        min-width: unset;
        width: 100%;
    }

    .hm-navbar__basket {
        margin-top: 0.5rem;
    }
}

/* ── end Heritage Malaysia Navbar ── */

/* ── Global Scroll Reveal Animations ── */
@keyframes hm-reveal-up {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes hm-reveal-left {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes hm-reveal-right {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes hm-reveal-scale {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes hm-reveal-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

[data-hm-reveal] {
    opacity: 0;
    will-change: opacity, transform;
}

[data-hm-reveal="up"]    { transform: translateY(40px); }
[data-hm-reveal="left"]  { transform: translateX(-50px); }
[data-hm-reveal="right"] { transform: translateX(50px); }
[data-hm-reveal="scale"] { transform: scale(0.9); }
[data-hm-reveal="fade"]  { transform: none; }

[data-hm-reveal].hm-revealed {
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-duration: 0.75s;
}

[data-hm-reveal="up"].hm-revealed    { animation-name: hm-reveal-up; }
[data-hm-reveal="left"].hm-revealed  { animation-name: hm-reveal-left; }
[data-hm-reveal="right"].hm-revealed { animation-name: hm-reveal-right; }
[data-hm-reveal="scale"].hm-revealed { animation-name: hm-reveal-scale; }
[data-hm-reveal="fade"].hm-revealed  { animation-name: hm-reveal-fade; }
/* ── end Global Scroll Reveal Animations ── */

:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --text: #1b2333;
    --muted: #5d6780;
    --primary: #2d63ff;
    --primary-dark: #1f4ddb;
    --border: #d9deea;
    --ok: #0f9d58;
    --error: #d93025;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#home, #story, #our-drinks, #mission, #ingredients, #partners, #findus, #contact {
    scroll-margin-top: 56px;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

/* ── Hero Section ── */
.hm-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 52px);
    min-height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hm-hero__bg {
    position: absolute;
    inset: 0;
    background: url('../img/heroo-slide.webp') center center / cover no-repeat;
    z-index: 0;
}

.hm-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.08) 0%,
        rgba(0,0,0,0.1) 60%,
        rgba(0,0,0,0.55) 100%
    );
}

.hm-hero__headline {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0 3.5rem;
    flex: 1;
    padding-top: 8vh;
    padding-bottom: 4vh;
}

.hm-hero__hl {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 1;
    letter-spacing: -0.01em;
}

.hm-hero__hl--white {
    color: #fff;
}

.hm-hero__hl--gold {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-hero__footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 3.5rem 2.5rem;
    gap: 2rem;
}

.hm-hero__est {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin: 0 0 0.6rem;
}

.hm-hero__sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.55;
    margin: 0;
    max-width: 340px;
}

.hm-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    align-items: center;
}

.hm-hero__btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.hm-hero__btn--gold {
    background: #c9a84c;
    color: #1c3a28;
    border: 2px solid #c9a84c;
}

.hm-hero__btn--gold:hover {
    background: #b8943f;
    border-color: #b8943f;
    color: #1c3a28;
}

.hm-hero__btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}

.hm-hero__btn--outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    color: #fff;
}

@media (max-width: 768px) {
    .hm-hero__headline {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
        gap: 0;
    }

    .hm-hero__footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem 2rem;
        gap: 1.2rem;
    }
}
/* ── end Hero Section ── */

/* ── Ingredient Ticker ── */
.hm-ticker {
    background: linear-gradient(90deg, #7a5c1e 0%, #c9a84c 18%, #e8d090 40%, #f5e9b8 50%, #e8d090 60%, #c9a84c 82%, #7a5c1e 100%);
    border-top: 1px solid rgba(122,92,30,0.4);
    border-bottom: 1px solid rgba(122,92,30,0.4);
    padding: 1.1rem 0;
    overflow: hidden;
}

.hm-ticker__track {
    display: flex;
    width: max-content;
    animation: hm-ticker-scroll 22s linear infinite;
}

.hm-ticker__group {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-right: 2.5rem;
    white-space: nowrap;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    color: #1c3a28;
    text-shadow: 0 1px 2px rgba(245,233,184,0.3);
}

.hm-ticker__sep {
    color: rgba(28,58,40,0.45);
    font-style: normal;
    font-size: 0.8em;
}

@keyframes hm-ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hm-ticker:hover .hm-ticker__track {
    animation-play-state: paused;
}
/* ── end Ingredient Ticker ── */

/* ── Story Section ── */
.hm-story {
    background-color: #f5f0e8;
    background-image: url('../img/ingredients.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 2rem;
    position: relative;
}

.hm-story::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 240, 232, 0.82);
    z-index: 0;
}

.hm-story__inner {
    position: relative;
    z-index: 1;
    max-width: 1152px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: start;
}

.hm-story__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin-bottom: 1.5rem;
}

.hm-story__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 0.95;
    color: #1c3a28;
    margin: 0;
}

.hm-story__heading--gold {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-story__right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 0.5rem;
    color: rgba(28,58,40,0.8);
    font-size: 1.05rem;
    line-height: 1.75;
}

.hm-story__right p {
    margin: 0;
}

.hm-story__quote {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    border-top: 1px solid rgba(28,58,40,0.12);
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.hm-story__quote-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 5rem;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    line-height: 1;
    flex-shrink: 0;
    margin-top: -0.5rem;
}

.hm-story__quote-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #1c3a28;
    margin: 0;
    line-height: 1.55;
}

.hm-story__banner.hm-revealed {
    border-radius: 1.5rem;
    border: 5px solid transparent;
    background-image: linear-gradient(#f5f0e8, #f5f0e8),
                      linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    overflow: hidden;
    filter: drop-shadow(0 0px 0px rgba(201, 168, 76, 2));
}

/* Banner image */
.hm-story__banner {
    position: relative;
    max-width: 1280px;
    margin: 5rem auto 0;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(28,58,40,0.1);
}

.hm-story__banner img {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    display: block;
}

.hm-story__banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(28,58,40,0.85) 0%, rgba(28,58,40,0.3) 50%, transparent 100%);
}

.hm-story__banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 4rem;
    max-width: 520px;
    color: #f5f0e8;
}

.hm-story__banner-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin: 0 0 0.75rem;
}

.hm-story__banner-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    line-height: 1.2;
    color: #f5f0e8;
    margin: 0;
}

@media (max-width: 900px) {
    .hm-story__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hm-story__banner img {
        aspect-ratio: 4 / 3;
    }

    .hm-story__banner-content {
        padding: 1.5rem 2rem;
    }
}
/* ── Story Section Animations ── */
@keyframes hm-story-fade-up {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes hm-story-fade-left {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes hm-story-fade-right {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes hm-story-scale-in {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

.hm-story__label,
.hm-story__heading,
.hm-story__right p,
.hm-story__quote,
.hm-story__banner-label,
.hm-story__banner-heading {
    opacity: 0;
}

.hm-story.hm-story--visible .hm-story__label {
    animation: hm-story-fade-up 0.6s ease forwards;
    animation-delay: 0.1s;
}

.hm-story.hm-story--visible .hm-story__heading {
    animation: hm-story-fade-left 0.7s ease forwards;
    animation-delay: 0.25s;
}

.hm-story.hm-story--visible .hm-story__right p:nth-child(1) {
    animation: hm-story-fade-right 0.7s ease forwards;
    animation-delay: 0.35s;
}

.hm-story.hm-story--visible .hm-story__right p:nth-child(2) {
    animation: hm-story-fade-right 0.7s ease forwards;
    animation-delay: 0.5s;
}

.hm-story.hm-story--visible .hm-story__quote {
    animation: hm-story-scale-in 0.7s ease forwards;
    animation-delay: 0.65s;
}

.hm-story.hm-story--visible .hm-story__banner-label {
    animation: hm-story-fade-up 0.6s ease forwards;
    animation-delay: 0.75s;
}

.hm-story.hm-story--visible .hm-story__banner-heading {
    animation: hm-story-fade-up 0.7s ease forwards;
    animation-delay: 0.9s;
}
/* ── end Story Section Animations ── */

/* ── end Story Section ── */

/* ── Our Drinks Section ── */
.hm-drinks {
    background-color: #1c3a28;
    padding: 6rem 2rem;
    position: relative;
}

.hm-drinks::before,
.hm-drinks::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #7a5c1e 0%, #c9a84c 18%, #e8d090 40%, #f5e9b8 50%, #e8d090 60%, #c9a84c 82%, #7a5c1e 100%);
    z-index: 2;
}

.hm-drinks::before { top: 0; }
.hm-drinks::after  { bottom: 0; }

.hm-drinks__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.hm-drinks__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 5rem;
}

.hm-drinks__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin-bottom: 1rem;
}

.hm-drinks__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
    color: #f5f0e8;
    margin: 0;
}

.hm-drinks__heading--gold {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-drinks__header-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.45);
    max-width: 260px;
    text-align: right;
    line-height: 1.7;
    margin: 0;
    flex-shrink: 0;
}

/* Grid */
.hm-drinks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: rgba(201,168,76,0.15);
}

/* Card */
.hm-drink-card {
    background-color: #1c3a28;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.hm-drink-card:hover {
    background-color: #173322;
}

.hm-drink-card__img-wrap {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: rgba(245,240,232,0.05);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hm-drink-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.hm-drink-card:hover .hm-drink-card__img-wrap img {
    transform: scale(1.08);
}

.hm-drink-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.hm-drink-card__num,
.hm-drink-card__series {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-drink-card__series {
    color: rgba(201,168,76,0.7);
}

.hm-drink-card__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.75rem;
    color: #f5f0e8;
    margin: 0 0 0.75rem;
    transition: color 0.2s;
    line-height: 1.15;
}

.hm-drink-card:hover .hm-drink-card__name {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-drink-card__desc {
    font-size: 0.875rem;
    color: rgba(245,240,232,0.6);
    line-height: 1.65;
    margin: 0 0 0.75rem;
    flex: 1;
}

.hm-drink-card__tags {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.75);
    margin: 0;
}

.hm-drink-card__cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border: none;
    background: none;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.75);
    cursor: pointer;
    transition: color 0.2s;
}

.hm-drink-card__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-image: linear-gradient(#f5f0e8, #f5f0e8),
                      linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
}

.hm-drink-card__cta:hover {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-drink-card__plus {
    font-size: 1rem;
    transition: transform 0.2s;
}

.hm-drink-card:hover .hm-drink-card__plus {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .hm-drinks__header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 3rem;
    }

    .hm-drinks__header-desc {
        text-align: left;
        max-width: 100%;
    }

    .hm-drinks__grid {
        grid-template-columns: 1fr;
    }
}
/* ── end Our Drinks Section ── */

/* ── Drink Detail Modal ── */
.hm-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.hm-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.hm-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.94);
    z-index: 2001;
    width: min(720px, calc(100vw - 2rem));
    max-height: min(85vh, 700px);
    overflow-y: auto;
    background: #1c3a28;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 6px;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.hm-modal.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.hm-modal__inner {
    padding: 2.5rem;
}

.hm-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.12);
}

.hm-modal__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin-bottom: 0.5rem;
}

.hm-modal__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    line-height: 1.15;
    color: #f5f0e8;
    margin: 0;
}

.hm-modal__close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 50%;
    color: rgba(245,240,232,0.6);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.hm-modal__close:hover {
    background: rgba(201,168,76,0.2);
    color: #f5f0e8;
}

.hm-modal__body {
    color: rgba(245,240,232,0.65);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hm-modal__body p {
    margin: 0 0 1.25rem;
}

.hm-modal__body p:last-child {
    margin-bottom: 0;
}

.hm-modal__subheading {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin: 2rem 0 0.75rem;
}

.hm-modal__subheading:first-child {
    margin-top: 0;
}

.hm-modal__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.hm-modal__list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.06);
    color: rgba(245,240,232,0.7);
}

.hm-modal__list li:last-child {
    border-bottom: none;
}

.hm-modal__tags {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.75);
    margin: 0 0 0.75rem;
}

.hm-modal__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.hm-modal__features li {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.6);
    padding: 0.75rem 1rem;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 3px;
    line-height: 1.5;
}

.hm-modal__features li::before {
    content: '✦';
    color: rgba(201,168,76,0.5);
    margin-right: 0.5rem;
}

@media (max-width: 600px) {
    .hm-modal__inner {
        padding: 1.5rem;
    }
    .hm-modal {
        width: calc(100vw - 1rem);
        max-height: min(90vh, 600px);
        top: 50%;
    }
    .hm-modal__features {
        grid-template-columns: 1fr;
    }
}

.hm-modal__footer {
    border-top: 1px solid rgba(201,168,76,0.12);
    padding-top: 1.25rem;
    margin-top: 0.5rem;
}

.hm-modal__cta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0.85rem 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.75);
    cursor: pointer;
    transition: color 0.2s;
}

.hm-modal__cta:hover {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-modal__plus {
    font-size: 1rem;
    transition: transform 0.2s;
}

.hm-modal__cta:hover .hm-modal__plus {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .hm-modal__inner {
        padding: 1.5rem;
    }
    .hm-modal {
        width: calc(100vw - 1rem);
        max-height: min(90vh, 600px);
        top: 50%;
    }
    .hm-modal__features {
        grid-template-columns: 1fr;
    }
}
/* ── end Drink Detail Modal ── */

/* ── Mission Section ── */
.hm-mission {
    background-color: #ede8de;
    padding: 6rem 2rem;
}

.hm-mission__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Image column */
.hm-mission__img-col {
    position: relative;
}

.hm-mission__img-col img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 1rem;
    display: block;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.hm-mission__promise {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: #1c3a28;
    color: #f5f0e8;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(201,168,76,0.3);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.hm-mission__promise-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin: 0 0 0.35rem;
}

.hm-mission__promise-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.35rem;
    font-weight: 700;
    color: #f5f0e8;
    margin: 0;
}

/* Content column */
.hm-mission__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin-bottom: 1rem;
}

.hm-mission__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 0.95;
    color: #1c3a28;
    margin: 0 0 2rem;
}

.hm-mission__heading--gold {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-mission__intro {
    font-size: 1rem;
    color: rgba(28,58,40,0.7);
    line-height: 1.7;
    margin: 0 0 2.5rem;
}

/* Mission list */
.hm-mission__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hm-mission__item {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(28,58,40,0.1);
}

.hm-mission__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    letter-spacing: 0.05em;
    flex-shrink: 0;
    padding-top: 0.15rem;
}

.hm-mission__item-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1c3a28;
    margin: 0 0 0.35rem;
}

.hm-mission__item-desc {
    font-size: 0.85rem;
    color: rgba(28,58,40,0.6);
    line-height: 1.6;
    margin: 0;
}

/* Stats */
.hm-mission__stats {
    max-width: 1280px;
    margin: 5rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(28,58,40,0.1);
    border-radius: 1rem;
    overflow: hidden;
}

.hm-mission__stat {
    background: #ede8de;
    padding: 2.5rem 2rem;
    text-align: center;
}

.hm-mission__stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: #1c3a28;
    margin: 0 0 0.75rem;
    line-height: 1;
}

.hm-mission__stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(28,58,40,0.6);
    margin: 0;
}

@media (max-width: 900px) {
    .hm-mission__inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hm-mission__promise {
        right: 0;
    }

    .hm-mission__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ── end Mission Section ── */

/* ── Ingredients Section ── */
.hm-ingredients {
    background-color: #f5f0e8;
    padding: 6rem 2rem;
}

.hm-ingredients__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.hm-ingredients__header {
    max-width: 720px;
    margin-bottom: 4rem;
}

.hm-ingredients__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin-bottom: 1rem;
}

.hm-ingredients__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 0.95;
    color: #1c3a28;
    margin: 0 0 1.5rem;
}

.hm-ingredients__heading--gold {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-ingredients__intro {
    font-size: 1rem;
    color: rgba(28,58,40,0.7);
    line-height: 1.7;
    margin: 0;
}

/* Grid */
.hm-ingredients__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(28,58,40,0.1);
}

/* Card */
.hm-ing-card {
    background: #f5f0e8;
    padding: 2rem;
    transition: background 0.2s;
}

.hm-ing-card:hover {
    background: none;
    background-image: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
}

.hm-ing-card__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin: 0 0 0.75rem;
}

.hm-ing-card:hover .hm-ing-card__num {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #000;
    filter: none;
}

.hm-ing-card__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.85rem;
    color: #1c3a28;
    margin: 0 0 0.75rem;
    line-height: 1.1;
}

.hm-ing-card__desc {
    font-size: 0.875rem;
    color: rgba(28,58,40,0.65);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px) {
    .hm-ingredients__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .hm-ingredients__grid {
        grid-template-columns: 1fr;
    }
}
/* ── end Ingredients Section ── */

/* ── Partners Section ── */
.hm-partners {
    background-color: #1c3a28;
    padding: 6rem 2rem;
    position: relative;
}

.hm-partners::before,
.hm-partners::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #7a5c1e 0%, #c9a84c 18%, #e8d090 40%, #f5e9b8 50%, #e8d090 60%, #c9a84c 82%, #7a5c1e 100%);
    z-index: 2;
}

.hm-partners::before { top: 0; }
.hm-partners::after  { bottom: 0; }

.hm-partners__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.hm-partners__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 4rem;
}

.hm-partners__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin-bottom: 1rem;
}

.hm-partners__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
    color: #f5f0e8;
    margin: 0;
}

.hm-partners__heading--gold {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-partners__header-desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.45);
    max-width: 260px;
    text-align: right;
    line-height: 1.7;
    margin: 0;
    flex-shrink: 0;
}

/* Grid */
.hm-partners__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.15);
}

.hm-partner-card {
    background: #1c3a28;
    padding: 2.5rem;
    transition: background 0.2s;
}

.hm-partner-card:hover {
    background: #173322;
}

.hm-partner-card__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin: 0 0 1rem;
}

.hm-partner-card__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.85rem;
    color: #f5f0e8;
    margin: 0 0 0.75rem;
    line-height: 1.1;
    transition: color 0.2s;
}

.hm-partner-card:hover .hm-partner-card__name {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-partner-card__desc {
    font-size: 0.875rem;
    color: rgba(245,240,232,0.6);
    line-height: 1.65;
    margin: 0;
}

/* CTA */
.hm-partners__cta {
    text-align: center;
    margin-top: 4rem;
}

.hm-partners__btn {
    display: inline-block;
    background: #c9a84c;
    color: #1c3a28;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    transition: background 0.2s;
}

.hm-partners__btn:hover {
    background: #f5f0e8;
    color: #1c3a28;
}

@media (max-width: 768px) {
    .hm-partners__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hm-partners__header-desc {
        text-align: left;
        max-width: 100%;
    }

    .hm-partners__grid {
        grid-template-columns: 1fr;
    }
}
/* ── end Partners Section ── */

/* ── Find Us Section ── */
.hm-findus {
    background-color: #f5f0e8;
    padding: 6rem 2rem;
}

.hm-findus__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.hm-findus__header {
    max-width: 720px;
    margin-bottom: 4rem;
}

.hm-findus__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin-bottom: 1rem;
}

.hm-findus__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 0.95;
    color: #1c3a28;
    margin: 0 0 1.5rem;
}

.hm-findus__heading--gold {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-findus__intro {
    font-size: 1rem;
    color: rgba(28,58,40,0.7);
    line-height: 1.7;
    margin: 0;
}

/* Body: 2-col layout */
.hm-findus__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Location cards grid */
.hm-findus__locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(28,58,40,0.1);
}

.hm-findus-card {
    background: #f5f0e8;
    padding: 1.5rem;
    transition: background 0.2s;
}

.hm-findus-card:hover {
    background: #ede8de;
}

.hm-findus-card__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin: 0 0 0.5rem;
}

.hm-findus-card__title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1c3a28;
    margin: 0 0 0.5rem;
}

.hm-findus-card__desc {
    font-size: 0.825rem;
    color: rgba(28,58,40,0.6);
    line-height: 1.6;
    margin: 0;
}

/* Map */
.hm-findus__map {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
    border: 1px solid rgba(28,58,40,0.1);
    min-height: 420px;
}

.hm-findus__map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .hm-findus__body {
        grid-template-columns: 1fr;
    }

    .hm-findus__map {
        min-height: 300px;
    }

    .hm-findus__map iframe {
        min-height: 300px;
    }
}
/* ── end Find Us Section ── */

/* ── Contact Section ── */
.hm-contact {
    background-color: #ede8de;
    padding: 6rem 2rem;
}

.hm-contact__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start;
}

.hm-contact__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin-bottom: 1rem;
}

.hm-contact__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 0.95;
    color: #1c3a28;
    margin: 0 0 1.5rem;
}

.hm-contact__heading--gold {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-contact__intro {
    font-size: 1rem;
    color: rgba(28,58,40,0.7);
    line-height: 1.7;
    margin: 0;
}

/* Email cards grid */
.hm-contact__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(28,58,40,0.1);
    margin-bottom: 1px;
}

.hm-contact-card {
    background: #ede8de;
    padding: 2rem;
    text-decoration: none;
    display: block;
    transition: background 0.2s, color 0.2s;
}

.hm-contact-card:hover {
    background: #1c3a28;
}

.hm-contact-card__type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin: 0 0 0.75rem;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-contact-card__email {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #1c3a28;
    margin: 0;
    word-break: break-all;
    transition: color 0.2s;
}

.hm-contact-card:hover .hm-contact-card__email {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

/* HQ block */
.hm-contact__hq {
    background: #1c3a28;
    padding: 2rem;
}

.hm-contact__hq-type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin: 0 0 0.75rem;
}

.hm-contact__hq-address {
    font-size: 0.875rem;
    color: rgba(245,240,232,0.9);
    line-height: 1.7;
    margin: 0 0 1.25rem;
}

.hm-contact__hq-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.hm-contact__hq-tel {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    text-decoration: none;
    transition: color 0.15s;
}

.hm-contact__hq-tel:hover {
    color: #f5f0e8;
}

.hm-contact__hq-web {
    font-size: 0.825rem;
    color: rgba(245,240,232,0.4);
}

@media (max-width: 900px) {
    .hm-contact__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hm-contact__grid {
        grid-template-columns: 1fr;
    }
}
/* ── end Contact Section ── */

.container {
    max-width: 960px;
    margin: -1.5rem auto 2rem;
    padding: 0 1.25rem;
    display: grid;
    gap: 1rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
}

.page_section.hidden {
    display: none;
}

.card h2 {
    margin-top: 0;
}

.feature_list {
    margin: 0.75rem 0 0;
    padding-left: 1.1rem;
}

.form_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.form_grid label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.92rem;
}

.form_grid .full {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.6rem 0.7rem;
    font: inherit;
    color: inherit;
    background: #fff;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #c8d8ff;
    border-color: #aac2ff;
}

.btn {
    border: 0;
    border-radius: 8px;
    padding: 0.62rem 0.95rem;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn_primary {
    background: var(--primary);
    color: #fff;
}

.btn_primary:hover {
    background: var(--primary-dark);
}

.btn_secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.feedback {
    margin: 0.75rem 0 0;
    min-height: 1.1rem;
    color: var(--muted);
}

.feedback.ok {
    color: var(--ok);
}

.feedback.error {
    color: var(--error);
}

.summary {
    margin-top: 0.9rem;
    padding: 0.8rem;
    background: #f8faff;
    border: 1px solid #d8e3ff;
    border-radius: 8px;
}

/* ── Footer ── */
.hm-footer {
    background-color: #1c3a28;
    padding: 5rem 2rem 0;
    position: relative;
}

.hm-footer::before,
.hm-footer::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #7a5c1e 0%, #c9a84c 18%, #e8d090 40%, #f5e9b8 50%, #e8d090 60%, #c9a84c 82%, #7a5c1e 100%);
    z-index: 2;
}

.hm-footer::before { top: 0; }
.hm-footer::after  { bottom: 0; }


.hm-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    padding-bottom: 5rem;
}

.hm-footer__brand {
    max-width: 280px;
}

.hm-footer__brand-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.8rem;
    color: #f5f0e8;
    margin: 0 0 1rem;
    line-height: 1.1;
}

.hm-footer__brand-desc {
    font-size: 0.78rem;
    color: rgba(245,240,232,0.4);
    line-height: 1.7;
    margin: 0;
}

.hm-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.hm-footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hm-footer__col-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin: 0 0 0.5rem;
}

.hm-footer__link {
    font-size: 0.875rem;
    color: rgba(245,240,232,0.6);
    text-decoration: none;
    transition: color 0.15s;
    word-break: break-all;
}

.hm-footer__link:hover {
    color: #f5f0e8;
}

.hm-footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(245,240,232,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hm-footer__copy,
.hm-footer__tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.3);
    margin: 0;
}

@media (max-width: 768px) {
    .hm-footer__inner {
        flex-direction: column;
        gap: 2.5rem;
        padding-bottom: 3rem;
    }

    .hm-footer__brand {
        max-width: 100%;
    }

    .hm-footer__nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hm-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
/* ── Basket Drawer ── */
.hm-basket-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1100;
    backdrop-filter: blur(2px);
}

.hm-basket-overlay.open {
    display: block;
}

.hm-basket-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 460px;
    background: #f5f0e8;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.2);
}

.hm-basket-drawer.open {
    transform: translateX(0);
}

/* Header */
.hm-basket-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid rgba(28,58,40,0.1);
    flex-shrink: 0;
}

.hm-basket-drawer__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin: 0 0 0.25rem;
}

.hm-basket-drawer__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1c3a28;
    margin: 0;
}

.hm-basket-drawer__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.85rem;
    color: #1c3a28;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    flex-shrink: 0;
}

.hm-basket-drawer__close:hover {
    background: rgba(28,58,40,0.08);
}

/* Items list */
.hm-basket-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hm-basket-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #ede8de;
    border-radius: 0.5rem;
    padding: 1rem 1.1rem;
}

.hm-basket-item__info {
    min-width: 0;
    flex: 1;
}

.hm-basket-item__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    color: #1c3a28;
    margin: 0 0 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hm-basket-item__remove {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(28,58,40,0.5);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s;
}

.hm-basket-item__remove:hover {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-basket-item__qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.hm-basket-item__btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #1c3a28;
    color: #f5f0e8;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}

.hm-basket-item__btn:hover {
    background: #c9a84c;
    color: #1c3a28;
}

.hm-basket-item__count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #1c3a28;
    width: 1.5rem;
    text-align: center;
}

/* Form */
.hm-basket-drawer__form {
    border-top: 1px solid rgba(28,58,40,0.1);
    background: #ede8de;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-shrink: 0;
}

.hm-basket-drawer__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.hm-basket-drawer__total-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(28,58,40,0.6);
}

.hm-basket-drawer__total-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.75rem;
    color: #1c3a28;
    line-height: 1;
}

.hm-basket-input {
    width: 100%;
    background: #f5f0e8;
    border: 1px solid rgba(28,58,40,0.15);
    border-radius: 0.4rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #1c3a28;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
}

.hm-basket-input::placeholder {
    color: rgba(28,58,40,0.4);
}

.hm-basket-input:focus {
    border-color: #c9a84c;
}

.hm-basket-submit {
    width: 100%;
    background: #1c3a28;
    color: #f5f0e8;
    border: none;
    border-radius: 999px;
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.25rem;
    transition: background 0.2s, color 0.2s;
}

.hm-basket-submit:hover {
    background: #c9a84c;
    color: #1c3a28;
}

.hm-basket-note {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(28,58,40,0.5);
    text-align: center;
    margin: 0;
}
/* ── end Basket Drawer ── */

/* ── SweetAlert2 z-index fix ── */
.swal2-container {
    z-index: 9999 !important;
}

/* ── end Footer ── */

@media (max-width: 700px) {
    .form_grid {
        grid-template-columns: 1fr;
    }
}

/* ── Continue Shopping Link (order page nav) ── */
.hm-order-back {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1c3a28;
    background: #c9a84c;
    text-decoration: none;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    transition: background 0.2s;
}

.hm-order-back:hover {
    background: #f5f0e8;
    color: #1c3a28;
}

/* ── Order Page ── */
.hm-order-page {
    background-color: #f5f0e8;
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
}

.hm-order-page__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.hm-order-page__header {
    margin-bottom: 3rem;
}

.hm-order-page__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin-bottom: 1rem;
}

.hm-order-page__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 0.95;
    color: #1c3a28;
    margin: 0;
}

.hm-order-page__heading--gold {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

/* Grid */
.hm-order-page__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

/* Sections */
.hm-order-section {
    background: #ede8de;
    border-radius: 0.5rem;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}

.hm-order-section__title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #1c3a28;
    margin: 0 0 1.25rem;
}

/* Order Items */
.hm-order-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(28,58,40,0.08);
}

.hm-order-item:last-child {
    border-bottom: none;
}

.hm-order-item__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    color: #1c3a28;
    margin: 0 0 0.15rem;
}

.hm-order-item__price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(28,58,40,0.5);
    margin: 0;
}

.hm-order-item__remove {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(28,58,40,0.5);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.15s;
    margin-top: 0.25rem;
}

.hm-order-item__remove:hover {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hm-order-item__qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hm-order-item__btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #1c3a28;
    color: #f5f0e8;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}

.hm-order-item__btn:hover {
    background: #c9a84c;
    color: #1c3a28;
}

.hm-order-item__count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #1c3a28;
    width: 1.5rem;
    text-align: center;
}

.hm-order-item__line-total {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1c3a28;
    text-align: right;
    min-width: 70px;
}

/* Empty state */
.hm-order-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.hm-order-empty__text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(28,58,40,0.4);
    margin: 0 0 1rem;
}

.hm-order-empty__link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1c3a28;
    background: #c9a84c;
    text-decoration: none;
    padding: 0.65rem 1.5rem;
    border-radius: 999px;
    display: inline-block;
    transition: background 0.2s;
}

.hm-order-empty__link:hover {
    background: #b8943f;
    color: #1c3a28;
}

/* Fulfilment Method */
.hm-order-fulfilment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hm-order-fulfilment__btn {
    background: #f5f0e8;
    border: 2px solid rgba(28,58,40,0.12);
    border-radius: 0.5rem;
    padding: 1.25rem;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, background 0.2s;
}

.hm-order-fulfilment__btn:hover {
    border-color: #c9a84c;
}

.hm-order-fulfilment__btn.active {
    border-color: #1c3a28;
    background: #ede8de;
}

.hm-order-fulfilment__icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hm-order-fulfilment__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1c3a28;
    margin-bottom: 0.25rem;
}

.hm-order-fulfilment__desc {
    display: block;
    font-size: 0.75rem;
    color: rgba(28,58,40,0.55);
}

/* Form */
.hm-order-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hm-order-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.hm-order-input {
    width: 100%;
    background: #f5f0e8;
    border: 1px solid rgba(28,58,40,0.15);
    border-radius: 0.4rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #1c3a28;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
}

.hm-order-input::placeholder {
    color: rgba(28,58,40,0.4);
}

.hm-order-input:focus {
    border-color: #c9a84c;
}

.hm-order-textarea {
    resize: vertical;
    min-height: 60px;
}

/* Shipping */
.hm-order-shipping {
    margin-top: 1rem;
    background: #f5f0e8;
    border-radius: 0.4rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hm-order-shipping__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(28,58,40,0.6);
    margin: 0;
}

.hm-order-shipping__price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1c3a28;
    margin: 0;
}

/* Payment */
.hm-order-payment {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hm-order-payment__option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(28,58,40,0.08);
    cursor: pointer;
    transition: background 0.15s;
}

.hm-order-payment__option:last-child {
    border-bottom: none;
}

.hm-order-payment__option:hover {
    background: rgba(245,240,232,0.5);
}

.hm-order-payment__option input[type="radio"] {
    display: none;
}

.hm-order-payment__radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(28,58,40,0.25);
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.15s;
}

.hm-order-payment__option input[type="radio"]:checked + .hm-order-payment__radio {
    border-color: #1c3a28;
}

.hm-order-payment__option input[type="radio"]:checked + .hm-order-payment__radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: #1c3a28;
    border-radius: 50%;
}

.hm-order-payment__name {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1c3a28;
    margin-bottom: 0.15rem;
}

.hm-order-payment__desc {
    display: block;
    font-size: 0.75rem;
    color: rgba(28,58,40,0.55);
}

/* Summary */
.hm-order-summary {
    background: #1c3a28;
    border-radius: 0.5rem;
    padding: 1.75rem;
    position: sticky;
    top: 120px;
}

.hm-order-summary__title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin: 0 0 1.25rem;
}

.hm-order-summary__items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.hm-order-summary__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.825rem;
    color: rgba(245,240,232,0.7);
    line-height: 1.5;
}

.hm-order-summary__totals {
    border-top: 1px solid rgba(201,168,76,0.15);
    padding-top: 1rem;
}

.hm-order-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.825rem;
    color: rgba(245,240,232,0.6);
    padding: 0.35rem 0;
}

.hm-order-summary__row--shipping {
    color: rgba(245,240,232,0.5);
    font-style: italic;
}

.hm-order-summary__divider {
    border-top: 1px solid rgba(201,168,76,0.15);
    margin: 0.75rem 0;
}

.hm-order-summary__row--total {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f5f0e8;
    padding-top: 0.5rem;
}

/* Submit */
.hm-order-submit {
    width: 100%;
    background: #c9a84c;
    color: #1c3a28;
    border: none;
    border-radius: 999px;
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 1.25rem;
    transition: background 0.2s, color 0.2s;
}

.hm-order-submit:hover {
    background: #f5f0e8;
    color: #1c3a28;
}

.hm-order-note {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.35);
    text-align: center;
    margin: 0.75rem 0 0;
}

/* ── Thank You Page ── */
.hm-thankyou-page {
    background-color: #f5f0e8;
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hm-thankyou-page__inner {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.hm-thankyou-card {
    background: #1c3a28;
    border-radius: 0.5rem;
    padding: 3rem;
    text-align: center;
}

.hm-thankyou-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #c9a84c;
    color: #1c3a28;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.hm-thankyou-card__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin: 0 0 1rem;
}

.hm-thankyou-card__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    color: #f5f0e8;
    margin: 0 0 1.25rem;
}

.hm-thankyou-card__heading--gold {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-thankyou-card__desc {
    font-size: 0.95rem;
    color: rgba(245,240,232,0.65);
    line-height: 1.7;
    margin: 0 0 2rem;
}

/* Detail rows */
.hm-thankyou-detail {
    text-align: left;
    background: rgba(245,240,232,0.05);
    border-radius: 0.4rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.hm-thankyou-detail__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.hm-thankyou-detail__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
}

.hm-thankyou-detail__value {
    font-size: 0.875rem;
    color: #f5f0e8;
}

.hm-thankyou-detail__divider {
    border-top: 1px solid rgba(201,168,76,0.12);
    margin: 0.75rem 0;
}

.hm-thankyou-detail__items-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.45);
    margin: 0 0 0.5rem;
}

.hm-thankyou-detail__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.8rem;
    color: rgba(245,240,232,0.7);
}

.hm-thankyou-detail__row--total {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #c9a84c;
}

.hm-thankyou-card__btn {
    display: inline-block;
    background: #c9a84c;
    color: #1c3a28;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.85rem 2.5rem;
    border-radius: 999px;
    transition: background 0.2s;
}

.hm-thankyou-card__btn:hover {
    background: #f5f0e8;
    color: #1c3a28;
}

/* ── Responsive: Order Page ── */
@media (max-width: 900px) {
    .hm-order-page__grid {
        grid-template-columns: 1fr;
    }

    .hm-order-fulfilment {
        grid-template-columns: 1fr;
    }

    .hm-order-form__row {
        grid-template-columns: 1fr;
    }

    .hm-order-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hm-order-item__line-total {
        text-align: left;
    }

    .hm-order-summary {
        position: static;
    }
}

@media (max-width: 600px) {
    .hm-order-page {
        padding: 6rem 1rem 2rem;
    }

    .hm-order-section {
        padding: 1.25rem;
    }

    .hm-thankyou-card {
        padding: 2rem 1.5rem;
    }

    .hm-thankyou-page {
        padding: 6rem 1rem 2rem;
    }
}
