@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 ── */
nav.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;
    width: 100%;
    z-index: 1000;
    height: 85px;
    border-bottom: none;
}
div.hm-navbar {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    gap: 1rem;
}

.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: 85px;
}

.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 .7rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.1rem;
    white-space: nowrap;
    transition: color 0.15s;
}

.hm-navbar__links > li > a:hover,
.hm-navbar__links > li > a.active {
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 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; 
    background: #f5f0e8;
    list-style: none;
    margin: 0;
    margin-top: -5px;
    z-index: 1;
    padding: 0;
    min-width: 220px;
    border-top: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.hm-dropdown li a{
    padding: 0.5rem .5rem;
}
.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: rgba(28,58,40,0.06);
    color: #7a5c1e;
    filter: none;
}

.hm-has-dropdown:hover > a,
.hm-has-dropdown.open > a {
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 1px rgba(201, 168, 76, 2));
}

/* 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-navbar__logout {
	border: 1px solid rgba(201,168,76,0.42);
	border-radius: 999px;
	background: transparent;
	color: #f5f0e8;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 0.5rem 0.9rem;
	cursor: pointer;
}

.hm-navbar__logout:hover {
	background: #c9a84c;
	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) {
  
    nav.hm-navbar {
        height: auto;
        min-height: 60px;
        padding: 0;
    }

    div.hm-navbar {
        height: auto;
        padding: 1.4rem 1.6rem !important;
        flex-wrap: wrap;
        align-items: center;
    }

    .hm-navbar__toggler {
        display: flex;
    }

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

    .hm-navbar__links {
        order: 2;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: auto;
        gap: 0;
        margin: 0.4rem 0 0;
        padding: 0;
        background: transparent;
        border-bottom: none;
    }

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

    .hm-navbar__links.open {
        display: flex;
        background: rgba(28,58,40,1);
        padding: 0.5rem 0 1rem 0;
        margin-left: calc(-1rem);
        margin-right: calc(-1rem);
        padding-left: 1rem;
        padding-right: 1rem;
        border-bottom: 5px solid transparent;
        border-image: linear-gradient(90deg, #7a5c1e 0%, #c9a84c 18%, #e8d090 40%, #f5e9b8 50%, #e8d090 60%, #c9a84c 82%, #7a5c1e 100%) 1;
    }

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

    .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-dropdown li a {
        font-size: 0.9rem;
    }

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

    .hm-has-dropdown:hover .hm-dropdown {
        display: none;
    }

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

/* ── 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.1s;
}
.hm-story-card__full .hm-revealed{
    animation-delay: 0.1s!important;
}
[data-hm-reveal].hm-revealed{
    animation-delay: 0s!important;
}

[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; }

.hm-hero,
.hm-story,
.hm-drinks,
.hm-mission,
.hm-ingredients,
.hm-partners,
.hm-findus,
.hm-contact,
.hm-footer {
    overflow-x: clip;
}
/* ── 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;
    scroll-padding-top: 112px;
}

#home,
#story,
#heritage-why,
#heritage-inspiration,
#heritage-commitment,
#our-drinks,
#mission,
#ingredients,
#partners,
#partners-looking,
#partners-why,
#partners-franchise,
#partners-cta,
#findus,
#findus-current,
#findus-journey,
#findus-future,
#findus-join,
#contact,
#contact-general,
#contact-business,
#contact-media,
#contact-form-wrap,
#contact-follow,
[id^="drink-"],
[id^="ingredient-"] {
    scroll-margin-top: 112px;
}

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, #8a6520 0%, #c9a84c 50%, #8a6520 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;
    }
    .drink-visual{
        transform: translateX(-5vh)!important;
    }
    .hm-hero{
        height: 65vh;
    }
    .hm-hero__bg{
        background: url(../img/heroo-slide.webp) 52% center / cover repeat;
    }
    .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 1rem;
    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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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.95);
    font-size: 1.05rem;
    line-height: 1.75;
}

.hm-story__right p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.1rem, 1.3vw, 1.25rem);
    font-weight: 600;
    line-height: 1.85;
    letter-spacing: 0.01em;
    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, #8a6520 0%, #c9a84c 50%, #8a6520 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__details {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 6rem 0 0;
    padding: 5rem max(2rem, calc((100% - 1440px) / 2 + 4rem));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem 2rem;
    align-items: stretch;
    overflow: hidden;
}

.hm-story__details::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/heritage-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.04);
    z-index: 0;
}

.hm-story__details::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,28,16,0.88) 0%,
        rgba(18,48,28,0.78) 35%,
        rgba(14,38,22,0.82) 65%,
        rgba(8,22,14,0.90) 100%
    );
    z-index: 0;
}

.hm-story__details > * {
    position: relative;
    z-index: 1;
}

.hm-story__details > .hm-story__details-header {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

.hm-story__details-header {
    text-align: center;
}

.hm-story__details-label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.hm-story__details-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    color: #f5f0e8;
    margin: 0;
}

.hm-story__details-heading em {
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.hm-story-card {
    background: rgba(12, 28, 18, 0.62);
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: 0.75rem;
    padding: 2.75rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(245,240,232,0.06);
}

.hm-story-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #7a5c1e 15%, #c9a84c 40%, #f5e9b8 50%, #c9a84c 60%, #7a5c1e 85%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.35s ease;
}

.hm-story-card:hover {
    background: rgba(20, 45, 28, 0.72);
    border-color: rgba(201,168,76,0.5);
    box-shadow: 0 8px 48px rgba(0,0,0,0.5), inset 0 1px 0 rgba(245,240,232,0.1);
}

.hm-story-card:hover::before {
    opacity: 1;
}

.hm-story-card__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.35em;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 50%, #f5e9b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 1.25rem;
}

.hm-story-card__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.52);
    margin-bottom: 0.75rem;
}

/* thin gold rule between label and heading */
.hm-story-card__label::after {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: linear-gradient(90deg, #c9a84c, transparent);
    margin-top: 0.75rem;
    opacity: 0.6;
}

.hm-gold {
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.hm-story-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.5rem, 2vw, 2.1rem);
    line-height: 1.25;
    color: #f5f0e8;
    margin: 0 0 1.25rem;
    letter-spacing: 0.01em;
    /* fixed height = 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(2.1rem * 1.25 * 3);
}

.hm-story-card__preview {
    margin: 0 0 1rem;
}

.hm-story-card__preview p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-weight: 400;
    color: rgba(245,240,232,0.75);
    line-height: 1.55;
    margin: 0 0 0.35rem;
}

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

.hm-story-card__full {
    margin-bottom: 0.75rem;
}

.hm-story-card__full p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-weight: 400;
    color: rgba(245,240,232,0.70);
    line-height: 1.55;
    margin: 0 0 0.35rem;
}

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

.hm-story-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    align-self: center;
    padding: 0.6rem 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(201,168,76,0.5);
    background: rgba(201,168,76,0.08);
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9a84c;
}

.hm-story-card__btn:hover {
    background: rgba(201,168,76,0.18);
    border-color: rgba(201,168,76,0.8);
    color: #f5e9b8;
}

.hm-story-card__btn[aria-expanded="true"] {
    background: #c9a84c;
    border-color: #c9a84c;
    color: #1a0e00;
}

.hm-story-card__btn[aria-expanded="true"]:hover {
    background: #f5e9b8;
    border-color: #f5e9b8;
    color: #1a0e00;
}

.hm-story__banner.hm-revealed {
    border-radius: 1.5rem;
    border: 5px solid transparent;
    background-image: linear-gradient(#f5f0e8, #f5f0e8),
                      linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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__details {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.25rem;
    }

    .hm-story__details > .hm-story__details-header {
        grid-column: 1 / -1;
    }

    .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;
}
.hm-story-card {
    opacity: 0;
    transform: translateY(30px);
}

.hm-story__details.hm-details--visible .hm-story-card:nth-child(2) {
    animation: hm-story-fade-up 0.65s ease forwards;
    animation-delay: 0.1s;
}

.hm-story__details.hm-details--visible .hm-story-card:nth-child(3) {
    animation: hm-story-fade-up 0.65s ease forwards;
    animation-delay: 0.25s;
}

.hm-story__details.hm-details--visible .hm-story-card:nth-child(4) {
    animation: hm-story-fade-up 0.65s ease forwards;
    animation-delay: 0.4s;
}
/* ── 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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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:20px 0rem;
    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;
    position: relative;
}

.hm-drink-card__img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.03) 40%,
        rgba(255,255,255,0.10) 50%,
        rgba(255,255,255,0.03) 60%,
        transparent 100%
    );
    transform: skewX(-15deg);
    opacity: 0;
    pointer-events: none;
    transition: none;
}

.hm-drink-card:hover .hm-drink-card__img-wrap::after {
    animation: hm-img-shine 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
}

@keyframes hm-img-shine {
    0%   { left: -75%; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: 130%; opacity: 0; }
}

.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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    border-top: 4px solid #c9a84c;
    padding-top: 1.25rem;
}

.hm-drink-card__divider {
    display: block;
    width: 1px;
    height: 2rem;
    flex-shrink: 0;
    background: #c9a84c;
}

.hm-drink-card__cta {
    margin-top: 0;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 40%, #f5e9b8 50%, #c9a84c 60%, #7a5c1e 100%);
    background-size: 200% auto;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a0e00;
    line-height: 1;
    vertical-align: middle;
    transition: background-position 0.4s ease;
}

.hm-drink-card__cta span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.hm-drink-card__cta:hover {
    background-position: right center;
}

.hm-drink-card__plus {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
}

.hm-drink-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0;
    padding: 0.6rem 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.12);
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    width: fit-content; 
}

.hm-drink-card__read-more:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    color: #f5e9b8;
}

/* ── Drink Modal ── */
.hm-drink-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8,18,12,0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 1.5rem;
}

.hm-drink-modal[hidden] { display: none; }

.hm-drink-modal__box {
    position: relative;
    background: #0e1f14;
    border: 1px solid rgba(201,168,76,0.3);
    border-top: 3px solid #c9a84c;
    border-radius: 0.75rem;
    padding: 2.5rem 2.25rem;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}

.hm-drink-modal__close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: rgba(245,240,232,0.4);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
}

.hm-drink-modal__close:hover { color: #f5f0e8; }

.hm-drink-modal__series {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.6);
    margin-bottom: 0.75rem;
}

.hm-drink-modal__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #f5f0e8;
    margin: 0 0 1rem;
    line-height: 1.15;
}

.hm-drink-modal__tags {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    color: #c9a84c;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

.hm-drink-modal__body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(245,240,232,0.72);
    line-height: 1.75;
    margin: 0;
}

@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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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;
    text-align: right;
}

.hm-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 40%, #f5e9b8 50%, #c9a84c 60%, #7a5c1e 100%);
    background-size: 200% auto;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a0e00;
    line-height: 1;
    transition: background-position 0.4s ease;
}

.hm-modal__cta:hover {
    background-position: right center;
}

.hm-modal__plus {
    font-size: 1rem;
    line-height: 1;
}

@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: 2 / 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;
    max-width: calc(100% - 1rem);
    box-sizing: border-box;
    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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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: #1c3a28;
    border: 1px solid #c9a84c;
    padding: 2rem 1rem;
    text-align: center;
}

.hm-mission__stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: #c9a84c;
    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(255,255,255,0.75);
    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 {
    position: relative;
    background-color: #0a1c10;
    padding: 7rem 2rem;
    overflow: hidden;
}

.hm-ingredients::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/heritage-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.07;
    z-index: 0;
}

.hm-ingredients__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
}

.hm-ingredients__header {
    max-width: 820px;
    margin: 0 auto 5rem;
    text-align: center;
}

.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, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
    margin-bottom: 1.25rem;
}

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

.hm-ingredients__heading--gold {
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 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(245,240,232,0.65);
    line-height: 1.75;
    margin: 0;
}

.hm-ingredients__intro p {
    margin: 0 0 0.9rem;
}

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

.hm-ingredients__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.hm-ing-card {
    background: rgba(18, 14, 8, 0.55);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 0.5rem;
    padding: 2rem;
    transition: border-color 0.3s, background 0.3s;
}

.hm-ing-card:hover {
    background: rgba(28, 58, 40, 0.65);
    border-color: rgba(201,168,76,0.5);
}

.hm-ing-card__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 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__name {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.75rem;
    color: #f5f0e8;
    margin: 0 0 0rem;
    line-height: 1.1;
    padding-bottom: 0;
}

.hm-ing-card__lead {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(201,168,76,0.85);
    line-height: 1.4;
    margin:  0.2rem 0;
     border-bottom: 3px solid  rgba(201,168,76,0.85);
     padding-bottom: 0.5rem;
}

.hm-ing-card__desc {
    font-size: 0.85rem;
    color: rgba(245,240,232,0.6);
    line-height: 1.5;
    margin: 0 0 0;
    padding-top: 0.75rem;
}

.hm-ing-card__list-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c9a84c;
    margin: 1.25rem 0 0.5rem;
}

.hm-ing-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hm-ing-card__list li {
    position: relative;
    padding-left: 1.05rem;
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(245,240,232,0.6);
}

.hm-ing-card__list li::before {
    content: '';
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 999px;
    background: #c9a84c;
}

/* ── Ingredient Tabs ── */
.hm-ing-tabs {
    margin-top: 0.75rem;
}

.hm-ing-tabs__nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(201,168,76,0.25);
    margin-bottom: 1rem;
}

.hm-ing-tabs__btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.45);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 0.85rem 0.6rem;
    cursor: pointer;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.hm-ing-tabs__btn:hover {
    color: rgba(201,168,76,0.75);
}

.hm-ing-tabs__btn--active {
    color: #c9a84c;
    border-bottom-color: #c9a84c;
}

.hm-ing-tabs__panel {
    display: none;
}

.hm-ing-tabs__panel--active {
    display: block;
}

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

.hm-ingredients__commitment-block {
    background: rgba(28,58,40,0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(201,168,76,0.22);
    border-radius: 0.5rem;
    padding: 2.5rem;
}
.hm-banner__img.for_desktop{
	display: block;
}
.hm-banner__img.for_mobile{
	display: none;
}
.hm-ingredients__subheading {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    line-height: 1.15;
    color: #f5f0e8;
    margin: 0.75rem 0 1.25rem;
}

.hm-ingredients__commitment-block p {
    font-size: 0.9rem;
    color: rgba(245,240,232,0.65);
    line-height: 1.75;
    margin: 0 0 0.9rem;
}

.hm-ingredients__commitment-block .hm-ing-card__list-title {
    color: #c9a84c;
}

.hm-ingredients__commitment-block .hm-ing-card__list li {
    color: rgba(245,240,232,0.65);
}

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

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

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

    .hm-ing-card,
    .hm-ingredients__commitment-block {
        padding: 1.5rem;
    }
	
}
/* ── end Ingredients Section ── */

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

.hm-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7a5c1e 0%, #c9a84c 18%, #f5e9b8 50%, #c9a84c 82%, #7a5c1e 100%);
}

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

/* Header — split left heading / right desc */
.hm-partners__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 4rem;
    margin-bottom: 5rem;
    padding-bottom: 0rem;
    border-bottom: 1px solid rgba(28,58,40,0.12);
}

.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%, #c9a84c 70%, #7a5c1e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

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

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

.hm-partners__header-desc {
    color: rgba(28,58,40,0.65);
    line-height: 1.75;
    margin: 0;
    font-size: 0.95rem;
}

.hm-partners__header-desc p {
    margin: 0 0 0.9rem;
}

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

/* Section headings */
.hm-partners__section-heading {
    max-width: 680px;
    margin: 0 0 2.5rem;
}

.hm-partners__subheading {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.1;
    color: #1c3a28;
    margin: 0.5rem 0 0;
}

/* Partner cards grid — 4 col */
.hm-partners__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 5rem;
}

.hm-partner-card {
    background: #fff;
    border: 1px solid rgba(28,58,40,0.1);
    border-top: 3px solid #c9a84c;
    border-radius: 0.5rem;
    padding: 2rem;
    transition: box-shadow 0.25s, transform 0.25s;
}

.hm-partner-card:hover {
    box-shadow: 0 8px 32px rgba(28,58,40,0.1);
    transform: translateY(-3px);
}

.hm-partner-card__num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: #c9a84c;
    margin: 0 0 0.75rem;
}

.hm-partner-card__name {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.65rem;
    color: #1c3a28;
    margin: 0 0 0.75rem;
    line-height: 1.1;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201,168,76,0.25);
}

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

.hm-partner-card__desc:last-of-type {
    margin-bottom: 0;
}

.hm-partner-card__list-title,
.hm-partners__future-copy h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a5c1e;
    margin: 1.25rem 0 0.5rem;
}

.hm-partner-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hm-partner-card__list li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.83rem;
    line-height: 1.7;
    color: rgba(28,58,40,0.65);
}

.hm-partner-card__list li::before {
    content: '';
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 999px;
    background: #c9a84c;
}

/* ── Why Partner Section ── */
.hm-partners-why {
    background: #0f2318;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.hm-partners-why::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a84c 30%, #f5e9b8 50%, #c9a84c 70%, transparent);
}

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

.hm-partners-why__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.hm-partners-why__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.hm-partners-why__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    color: #f5f0e8;
    margin: 0;
}

.hm-partners__why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.hm-partners__why-item {
    background: rgba(28,58,40,0.45);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 0.75rem;
    padding: 2.25rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.hm-partners__why-item:hover {
    background: rgba(28,58,40,0.85);
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-4px);
}

.hm-partners__why-icon {
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem;
    transition: background 0.25s, border-color 0.25s;
}

.hm-partners__why-item:hover .hm-partners__why-icon {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.45);
}

.hm-partners__why-icon svg {
    width: 100%;
    height: 100%;
}

.hm-partners__why-item h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.25;
    color: #c9a84c;
    margin: 0;
}

.hm-partners__why-item p {
    font-size: 0.82rem;
    color: rgba(245,240,232,0.55);
    line-height: 1.72;
    margin: 0;
}

/* ── Franchise Section ── */
.hm-franchise {
    background: #0f2318;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.hm-franchise::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/heritage-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.05;
    z-index: 0;
}

.hm-franchise__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 6rem;
    align-items: center;
}

.hm-franchise__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.25rem;
}

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

.hm-franchise__ornament {
    width: 120px;
}

.hm-franchise__right p {
    font-size: 0.92rem;
    color: rgba(245,240,232,0.62);
    line-height: 1.82;
    margin: 0 0 0.9rem;
}

.hm-franchise__right p:last-of-type {
    margin-bottom: 0;
}

.hm-franchise__right h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a84c;
    margin: 2rem 0 0.6rem;
}

.hm-franchise__btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: transparent;
    color: #c9a84c;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.9rem 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(201,168,76,0.5);
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.hm-franchise__btn:hover {
    background: #c9a84c;
    color: #0f2318;
    border-color: #c9a84c;
}

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

/* CTA */
.hm-partners__cta {
    text-align: center;
}

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

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

@media (max-width: 1100px) {
    .hm-partners__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hm-partners__why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hm-partners__header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hm-partners__grid {
        grid-template-columns: 1fr;
    }
    .hm-partners__why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hm-partners__why-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hm-partners__why-grid {
        grid-template-columns: 1fr;
    }
	.hm-mission__content{
		margin-top: 80px;
	}

}
/* ── 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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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;
}

.hm-findus__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.hm-findus__locations-wrap {
    min-width: 0;
}

.hm-findus__section-heading {
    margin-bottom: 2rem;
}

.hm-findus__section-heading p,
.hm-findus__journey-copy p,
.hm-findus__join p {
    font-size: 0.95rem;
    color: rgba(28,58,40,0.7);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.hm-findus__subheading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    line-height: 1;
    color: #1c3a28;
    margin: 0 0 1rem;
}

.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, #8a6520 0%, #c9a84c 50%, #8a6520 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;
}

.hm-findus__note {
    background: #1c3a28;
    padding: 1.5rem;
    margin-top: 1px;
}

.hm-findus__note p {
    font-size: 0.875rem;
    color: rgba(245,240,232,0.72);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.hm-findus__note h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: 1.55rem;
    line-height: 1.1;
    color: #f5f0e8;
    margin: 1.25rem 0 0.75rem;
}

.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%;
    max-width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
    display: block;
}

.hm-findus__journey,
.hm-findus__join {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
    padding: 3rem;
    border: 1px solid rgba(28,58,40,0.12);
    background: #ede8de;
    margin-bottom: 4rem;
}

.hm-findus__future {
    margin-bottom: 4rem;
}

.hm-findus__future-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(28,58,40,0.12);
}

.hm-findus-plan {
    background: #f5f0e8;
    padding: 1.6rem;
}

.hm-findus-plan h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: 1.35rem;
    line-height: 1.1;
    color: #1c3a28;
    margin: 0 0 0.75rem;
}

.hm-findus-plan p {
    font-size: 0.85rem;
    color: rgba(28,58,40,0.68);
    line-height: 1.65;
    margin: 0;
}

.hm-findus__join {
    background: #1c3a28;
    margin-bottom: 0;
}

.hm-findus__join .hm-findus__subheading {
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 0px rgba(201, 168, 76, 2));
}

.hm-findus__join p {
    color: rgba(245,240,232,0.72);
}

.hm-findus__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.2em;
    text-transform: uppercase;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    margin-top: 0.5rem;
}

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

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

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

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

    .hm-findus__journey,
    .hm-findus__join {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

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

@media (max-width: 600px) {
    .hm-findus {
        padding: 4rem 1rem;
    }

    .hm-findus__inner {
        max-width: 100%;
        overflow: hidden;
    }

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

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

    .hm-findus__journey,
    .hm-findus__join,
    .hm-findus-plan {
        padding: 1.5rem;
    }

    .hm-findus__map,
    .hm-findus__map iframe {
        width: 100%;
        max-width: 100%;
        min-height: 250px;
    }
}
/* ── end Find Us Section ── */

/* ── Contact Section ── */
/* ── Contact Section ── */
.hm-contact {
    background-color: #f0ebe0;
    padding: 7rem 2rem;
    border-top: 3px solid #c9a84c;
}

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

/* Left column — sticky */
.hm-contact__left {
    position: sticky;
    top: 6rem;
}

.hm-contact__left::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 2px;
    background: linear-gradient(90deg, #c9a84c, transparent);
    margin-top: 2rem;
}

.hm-contact__label {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.25rem;
    border-left: 2px solid #c9a84c;
    padding-left: 0.75rem;
}

.hm-contact__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    line-height: 0.93;
    color: #1c3a28;
    margin: 0 0 2rem;
    letter-spacing: -0.01em;
}

.hm-contact__heading--gold {
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

/* Right column stack */
.hm-contact__right {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hm-contact__panel,
.hm-contact__form-wrap {
    background: #fff;
    border: 1px solid rgba(28,58,40,0.08);
    border-left: 3px solid transparent;
    padding: 2.25rem 2rem;
    position: relative;
    transition: border-color 0.2s;
}

.hm-contact__panel:hover,
.hm-contact__form-wrap:hover {
    border-left-color: #c9a84c;
}

.hm-contact__subheading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.1;
    color: #1c3a28;
    margin: 0.25rem 0 0.9rem;
}

.hm-contact__body-copy {
    font-size: 0.9rem;
    color: rgba(28,58,40,0.65);
    line-height: 1.75;
    margin: 0 0 0.75rem;
}

.hm-contact__body-copy:last-child {
    margin-bottom: 0;
}

/* Email cards grid */
.hm-contact__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.15rem;
}

.hm-contact-card {
    background: #fff;
    border: 1px solid rgba(28,58,40,0.08);
    border-top: 3px solid transparent;
    padding: 1.6rem 1.75rem;
    text-decoration: none;
    display: block;
    transition: border-color 0.22s, background 0.22s, transform 0.2s, box-shadow 0.2s;
}

.hm-contact-card:hover {
    background: #1c3a28;
    border-top-color: #c9a84c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(28,58,40,0.18);
}

.hm-contact-card__type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.63rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 0.6rem;
}

.hm-contact-card__email {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 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, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* HQ block */
.hm-contact__hq {
    background: #1c3a28;
    border-left: 3px solid #c9a84c;
    padding: 2.25rem 2rem;
    position: relative;
}

.hm-contact__hq-type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 0.9rem;
}

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

.hm-contact__hq-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hm-contact__hq-tel {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

.hm-contact__hq-web {
    font-size: 0.8rem;
    color: rgba(245,240,232,0.35);
    font-family: 'JetBrains Mono', monospace;
}

/* Opportunities side by side */
.hm-contact__opportunities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem;
}

.hm-contact__opportunities .hm-contact__panel {
    height: 100%;
}

.hm-contact__list {
    display: grid;
    gap: 0.45rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.25rem;
}

.hm-contact__list li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.84rem;
    color: rgba(28,58,40,0.65);
    line-height: 1.5;
}

.hm-contact__list li::before {
    content: "";
    position: absolute;
    top: 0.52rem;
    left: 0;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 999px;
    background: #c9a84c;
}

.hm-contact__inline-link {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #7a5c1e;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.35);
    padding-bottom: 0.1rem;
    word-break: break-all;
    transition: color 0.15s, border-color 0.15s;
}

.hm-contact__inline-link:hover {
    color: #c9a84c;
    border-color: #c9a84c;
}

/* Contact form */
.hm-contact-form {
    margin-top: 1.5rem;
}

.hm-contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hm-contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.hm-contact-form__field--full {
    grid-column: 1 / -1;
}

.hm-contact-form__field span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(28,58,40,0.55);
}

.hm-contact-form__field input,
.hm-contact-form__field textarea {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid rgba(28,58,40,0.18);
    border-radius: 0;
    background: transparent;
    color: #1c3a28;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0.7rem 0;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.hm-contact-form__field textarea {
    resize: vertical;
    min-height: 8rem;
    border: 1.5px solid rgba(28,58,40,0.18);
    padding: 0.75rem;
    background: rgba(245,240,232,0.5);
}

.hm-contact-form__field input:focus,
.hm-contact-form__field textarea:focus {
    border-color: #c9a84c;
}

.hm-contact-form__submit {
    border: 0;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 50%, #7a5c1e 100%);
    background-size: 200% 100%;
    color: #1a0e00;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    margin-top: 1.75rem;
    cursor: pointer;
    transition: background-position 0.4s, box-shadow 0.2s;
}

.hm-contact-form__submit:hover {
    background-position: right center;
    box-shadow: 0 4px 18px rgba(201,168,76,0.35);
}

/* Closing / follow section */
.hm-contact__closing {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 2.5rem;
    background: #1c3a28;
    border-left: 3px solid #c9a84c;
    padding: 2.5rem 2rem;
}

.hm-contact__closing .hm-contact__label {
    border-left: none;
    padding-left: 0;
}

.hm-contact__closing .hm-contact__subheading {
    color: rgba(245,240,232,0.95);
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    margin-top: 0.25rem;
}

.hm-contact__closing p {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.62);
    line-height: 1.8;
    margin: 0 0 0.9rem;
}

.hm-contact__closing h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1.1;
    color: rgba(245,240,232,0.9);
    margin: 1rem 0 0.6rem;
}

.hm-contact__closing strong {
    color: rgba(245,240,232,0.9);
}

.hm-contact__closing em {
    color: rgba(201,168,76,0.8);
}

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

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

    .hm-contact__left {
        position: static;
    }

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

    .hm-contact__opportunities,
    .hm-contact__closing {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hm-contact {
        padding: 5rem 1.25rem;
    }

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

    .hm-contact__panel,
    .hm-contact__form-wrap,
    .hm-contact__hq,
    .hm-contact-card,
    .hm-contact__closing {
        padding: 1.5rem 1.25rem;
    }

    .hm-contact-form__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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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 Theme ── */
.swal2-container {
    z-index: 9999 !important;
}

.swal2-popup {
    background: #0e1f14 !important;
    border: 1px solid rgba(201,168,76,0.3) !important;
    border-top: 3px solid #c9a84c !important;
    border-radius: 1.25rem !important;
    box-shadow: 0 24px 80px rgba(0,0,0,0.7) !important;
    padding: 2rem !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    height: 400px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.swal2-title {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 700 !important;
    font-size: 1.8rem !important;
    color: #f5f0e8 !important;
    padding: 0 !important;
    margin-bottom: 0.5rem !important;
}

.swal2-html-container,
.swal2-content {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    color: rgba(245,240,232,0.65) !important;
    margin: 0 !important;
}

.swal2-icon {
    margin: 0 auto 1.25rem !important;
}

/* success icon — fix mask elements that default to white */
.swal2-icon.swal2-success {
    border-color: rgba(201,168,76,0.4) !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(201,168,76,0.25) !important;
}

.swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #c9a84c !important;
}

.swal2-icon.swal2-success .swal2-success-fix,
.swal2-icon.swal2-success::before,
.swal2-icon.swal2-success::after {
    background-color: #0e1f14 !important;
}

.swal2-icon.swal2-warning {
    border-color: rgba(201,168,76,0.6) !important;
    color: #c9a84c !important;
}

.swal2-icon.swal2-error {
    border-color: rgba(180,60,60,0.6) !important;
    color: #c97a7a !important;
}

.swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
    background-color: #c97a7a !important;
}

.swal2-confirm {
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 40%, #f5e9b8 50%, #c9a84c 60%, #7a5c1e 100%) !important;
    background-size: 200% auto !important;
    color: #1a0e00 !important;
    border: none !important;
    border-radius: 999px !important;
    font-family: 'Segoe UI', Arial, sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 0.6rem 2rem !important;
    box-shadow: none !important;
}

.swal2-cancel {
    background: rgba(255,255,255,0.08) !important;
    color: rgba(245,240,232,0.6) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 999px !important;
    font-family: 'Segoe UI', Arial, sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 0.6rem 2rem !important;
    box-shadow: none !important;
}

.swal2-timer-progress-bar {
    background: linear-gradient(90deg, #7a5c1e, #c9a84c, #f5e9b8) !important;
}
/* ── end SweetAlert2 Theme ── */

/* ── 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;
}

.hm-order-nav-products {
    cursor: pointer;
}

/* ── 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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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;
}

.hm-order-affiliate__card {
    background: #f5f0e8;
    border: 1px solid rgba(28,58,40,0.12);
    border-radius: 0.45rem;
    padding: 1rem;
}

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

.hm-order-affiliate__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.hm-order-affiliate__code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1c3a28;
    word-break: break-all;
}

.hm-order-affiliate__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.1rem;
    color: #1c3a28;
    text-align: right;
}

/* 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: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 576px) {
    .hm-order-payment {
        grid-template-columns: 1fr;
    }
}

.hm-order-payment__option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f5f0e8;
    border: 2px solid rgba(28,58,40,0.12);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.hm-order-payment__option:hover {
    border-color: #c9a84c;
    background: #f9f5ee;
}

.hm-order-payment__option.active,
.hm-order-payment__option:has(input[type="radio"]:checked) {
    border-color: #1c3a28;
    background: #ede8de;
    box-shadow: 0 4px 12px rgba(28,58,40,0.05);
}

.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.active .hm-order-payment__radio,
.hm-order-payment__option input[type="radio"]:checked + .hm-order-payment__radio {
    border-color: #1c3a28;
}

.hm-order-payment__option.active .hm-order-payment__radio::after,
.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__icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(28,58,40,0.06);
    color: #1c3a28;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hm-order-payment__option.active .hm-order-payment__icon-wrapper,
.hm-order-payment__option:has(input[type="radio"]:checked) .hm-order-payment__icon-wrapper {
    background: rgba(201,168,76,0.18);
    color: #c9a84c;
    transform: scale(1.08);
}

.hm-order-payment__icon {
    width: 20px;
    height: 20px;
}

.hm-order-payment__text-wrapper {
    display: flex;
    flex-direction: column;
}

.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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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, #8a6520 0%, #c9a84c 50%, #8a6520 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;
}

/* ── Product List Page ── */
.hm-product-list-page {
    background:
        radial-gradient(circle at 12% 12%, rgba(201,168,76,0.18) 0, transparent 26rem),
        radial-gradient(circle at 86% 4%, rgba(245,240,232,0.10) 0, transparent 22rem),
        #1c3a28;
    min-height: 100vh;
    padding: 4.5rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.hm-product-list-page::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(245,240,232,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,240,232,0.045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 80%);
}

.hm-product-list-hero,
.hm-product-list-catalog {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hm-product-list-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 3rem;
    align-items: end;
    padding: 0.75rem 0 2.25rem;
}

.hm-product-list-hero__label,
.hm-product-list-catalog__label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #8a6520 0%, #c9a84c 50%, #8a6520 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-product-list-hero__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 0.95;
    color: #f5f0e8;
    max-width: 860px;
    margin: 0;
}

.hm-product-list-hero__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;
}

.hm-product-list-hero__desc {
    color: rgba(245,240,232,0.65);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 540px;
    margin: 1.5rem 0 0;
}

.hm-product-list-hero__panel {
    background: rgba(245,240,232,0.08);
    border: 1px solid rgba(201,168,76,0.24);
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 28px 80px rgba(0,0,0,0.18);
}

.hm-product-list-hero__panel-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.45);
    margin: 0 0 0.75rem;
}

.hm-product-list-hero__panel-total {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 2.1rem;
    line-height: 1;
    color: #f5f0e8;
    margin: 0 0 1.25rem;
}

.hm-product-list-hero__checkout,
.hm-product-list-hero__link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 1.25rem;
}

.hm-product-list-hero__checkout {
    border: none;
    background: linear-gradient(135deg, #7a5c1e 0%, #c9a84c 40%, #f5e9b8 50%, #c9a84c 60%, #7a5c1e 100%);
    background-size: 200% auto;
    color: #1c3a28;
    cursor: pointer;
    transition: background-position 0.35s ease;
}

.hm-product-list-hero__checkout:hover {
    background-position: right center;
}

.hm-product-list-hero__link {
    border: 1px solid rgba(245,240,232,0.22);
    color: rgba(245,240,232,0.72);
    margin-top: 0.75rem;
    transition: border-color 0.2s, color 0.2s;
}

.hm-product-list-hero__link:hover {
    border-color: rgba(201,168,76,0.55);
    color: #f5e9b8;
}

.hm-product-list-catalog {
    background: #f5f0e8;
    border-radius: 0.9rem;
    padding: 2rem;
    box-shadow: 0 30px 100px rgba(0,0,0,0.22);
}

.hm-product-list-catalog__header {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: flex-end;
    border-bottom: 1px solid rgba(28,58,40,0.10);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.hm-product-list-catalog__note {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(28,58,40,0.45);
    text-align: right;
    max-width: 340px;
    margin: 0;
}

.hm-product-list-catalog__search {
    margin-bottom: 1.5rem;
}

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

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

.hm-product-list-catalog__search-input:focus {
    border-color: #c9a84c;
}

.hm-product-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(28,58,40,0.12);
    overflow: hidden;
    border-radius: 0.55rem;
}

.hm-product-list-card {
    background: #f5f0e8;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    opacity: 0;
    animation: hm-reveal-up 0.75s ease forwards;
}

.hm-product-list-card__image {
    aspect-ratio: 4 / 4.5;
    background: #1c3a28;
    overflow: hidden;
    position: relative;
}

.hm-product-list-card__image::after {
    content: '';
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.85), transparent);
}

.hm-product-list-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease, opacity 0.3s ease;
}

.hm-product-list-card:hover .hm-product-list-card__image img {
    transform: scale(1.07);
}

.hm-product-list-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
}

.hm-product-list-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    min-height: 1rem;
    margin-bottom: 0.75rem;
}

.hm-product-list-card__meta span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(28,58,40,0.48);
}

.hm-product-list-card__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 800;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.02;
    color: #1c3a28;
    margin: 0 0 0.85rem;
}

.hm-product-list-card__desc {
    color: rgba(28,58,40,0.64);
    line-height: 1.7;
    font-size: 0.9rem;
    margin: 0 0 1rem;
    flex: 1;
}

.hm-product-list-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    min-height: 1.7rem;
    margin-bottom: 1.25rem;
}

.hm-product-list-card__tags span {
    border: 1px solid rgba(28,58,40,0.14);
    border-radius: 999px;
    color: rgba(28,58,40,0.58);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.55rem;
}

.hm-product-list-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 4px solid #c9a84c;
    padding-top: 1.25rem;
}

.hm-product-list-card__price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1c3a28;
    margin: 0;
    white-space: nowrap;
}

.hm-product-list-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: 999px;
    background: #1c3a28;
    color: #f5f0e8;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.7rem 1.1rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hm-product-list-card__cta:hover {
    background: #c9a84c;
    color: #1c3a28;
    transform: translateY(-2px);
}

.hm-product-list-card__plus {
    font-size: 1.05rem;
    line-height: 1;
}

.hm-product-list-state {
    grid-column: 1 / -1;
    background: #f5f0e8;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
}

.hm-product-list-state__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1c3a28;
    margin: 0 0 0.75rem;
}

.hm-product-list-state__desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(28,58,40,0.45);
    margin: 0;
}

/* ── Auth Pages ── */
.hm-auth-page {
	background:
		linear-gradient(180deg, rgba(255,245,190,0.55) 0, rgba(255,245,190,0) 5.5rem),
		#f5f0e8;
	min-height: 100vh;
	padding: 5rem 1rem 2.5rem;
	color: #1c3a28;
}

.hm-auth-shell {
	width: min(100%, 440px);
	min-height: calc(100vh - 9.5rem);
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.hm-auth-shell::after {
	content: '';
	position: absolute;
	left: -2rem;
	right: -2rem;
	bottom: -1.5rem;
	height: 230px;
	pointer-events: none;
	background: url('../img/ornament.png') left bottom / 220px auto no-repeat;
	opacity: 0.24;
}

.hm-auth-back {
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid rgba(28,58,40,0.14);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #1c3a28;
	text-decoration: none;
	font-size: 1.7rem;
	line-height: 1;
	margin-bottom: 1rem;
	background: rgba(245,240,232,0.72);
	position: relative;
	z-index: 1;
}

.hm-auth-card {
	background: rgba(245,240,232,0.86);
	border: 1px solid rgba(28,58,40,0.10);
	border-radius: 0.5rem;
	padding: 2rem;
	box-shadow: 0 24px 80px rgba(28,58,40,0.12);
	position: relative;
	z-index: 1;
}

.hm-auth-step {
	display: none;
}

.hm-auth-step--active {
	display: block;
}

.hm-auth-label {
	display: block;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.64rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(28,58,40,0.46);
	margin-bottom: 0.85rem;
}

.hm-auth-heading {
	font-family: 'Playfair Display', Georgia, serif;
	font-style: italic;
	font-weight: 800;
	font-size: clamp(2.1rem, 8vw, 3rem);
	line-height: 0.98;
	color: #1c3a28;
	margin: 0 0 0.75rem;
}

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

.hm-auth-copy {
	color: rgba(28,58,40,0.58);
	font-size: 0.92rem;
	line-height: 1.7;
	margin: 0 0 1.5rem;
}

.hm-auth-field {
	display: block;
	margin-bottom: 1rem;
}

.hm-auth-field > span {
	display: block;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1c3a28;
	margin-bottom: 0.42rem;
}

.hm-auth-field input,
.hm-auth-phone,
.hm-auth-phone select {
	background: #fffdf8;
	border: 1px solid rgba(28,58,40,0.14);
	color: #1c3a28;
}

.hm-auth-field input {
	width: 100%;
	border-radius: 0.45rem;
	padding: 0.88rem 1rem;
	outline: none;
	font-size: 0.92rem;
}

.hm-auth-field input:focus,
.hm-auth-phone:focus-within {
	border-color: #c9a84c;
	box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
}

.hm-auth-phone {
	display: flex;
	border-radius: 0.45rem;
	overflow: hidden;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.hm-auth-phone select {
	width: 116px;
	border: none;
	border-right: 1px solid rgba(28,58,40,0.10);
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.74rem;
	font-weight: 700;
	padding: 0 0.65rem;
	outline: none;
}

.hm-auth-phone input {
	border: none;
	border-radius: 0;
	box-shadow: none;
	min-width: 0;
}

.hm-auth-button {
	width: 100%;
	min-height: 3.15rem;
	border: none;
	border-radius: 0.45rem;
	background: #1f6f3b;
	color: #f5f0e8;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 16px 30px rgba(31,111,59,0.2);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}

.hm-auth-button:hover {
	background: #1c3a28;
	color: #f5f0e8;
	transform: translateY(-1px);
}

.hm-auth-button:disabled {
	opacity: 0.68;
	cursor: wait;
}

.hm-auth-button--ghost {
	background: #fffdf8;
	color: #1c3a28;
	border: 1px solid rgba(28,58,40,0.16);
	box-shadow: none;
}

.hm-auth-button--ghost:hover {
	background: #ede8de;
	color: #1c3a28;
}

.hm-auth-divider {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	color: rgba(28,58,40,0.36);
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.62rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 1.15rem 0;
}

.hm-auth-divider::before,
.hm-auth-divider::after {
	content: '';
	height: 1px;
	flex: 1;
	background: rgba(28,58,40,0.10);
}

.hm-auth-message {
	min-height: 1.2rem;
	font-size: 0.82rem;
	line-height: 1.45;
	margin: 0.25rem 0 0.85rem;
}

.hm-auth-message--error {
	color: #b42318;
}

.hm-auth-message--success {
	color: #1f6f3b;
}

.hm-auth-icon {
	width: 4.2rem;
	height: 4.2rem;
	border-radius: 50%;
	background: rgba(31,111,59,0.10);
	color: #1f6f3b;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.45rem;
	margin: 0 auto 1.25rem;
}

.hm-auth-otp {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.55rem;
	margin: 1.3rem 0 0.4rem;
}

.hm-auth-otp input {
	aspect-ratio: 1;
	width: 100%;
	border: 1px solid rgba(28,58,40,0.18);
	border-radius: 0.45rem;
	background: #fffdf8;
	text-align: center;
	font-family: 'JetBrains Mono', monospace;
	font-size: 1.25rem;
	font-weight: 700;
	color: #1c3a28;
	outline: none;
}

.hm-auth-otp input:focus {
	border-color: #1f6f3b;
	box-shadow: 0 0 0 3px rgba(31,111,59,0.14);
}

.hm-auth-link-button {
	width: 100%;
	border: none;
	background: none;
	color: #1f6f3b;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: 1rem;
	cursor: pointer;
}

.hm-auth-check {
	display: flex;
	gap: 0.7rem;
        align-items: center;
	color: rgba(28,58,40,0.72);
	font-size: 0.82rem;
	line-height: 1.45;
	margin: 0.25rem 0 1rem;
}

.hm-auth-check input {
	margin-top: 0.15rem;
	accent-color: #1f6f3b;
}

.hm-auth-switch,
.hm-auth-footnote {
	text-align: center;
	color: rgba(28,58,40,0.46);
	font-size: 0.8rem;
	line-height: 1.6;
	margin: 1.25rem 0 0;
}

.hm-auth-switch a {
	color: #1f6f3b;
	font-weight: 700;
	text-decoration: none;
}

.hm-auth-footnote {
	position: relative;
	z-index: 1;
	font-size: 0.68rem;
	margin-top: 1.25rem;
}

.hm-profile-page {
	background:
		linear-gradient(180deg, rgba(255,245,190,0.55) 0, rgba(255,245,190,0) 5.5rem),
		#f5f0e8;
	min-height: 100vh;
	padding: 6rem 1rem 3rem;
	color: #1c3a28;
}

.hm-profile-shell {
	width: min(100%, 960px);
	margin: 0 auto;
}

.hm-profile-header {
	display: grid;
	grid-template-columns: 5rem 1fr;
	gap: 1.25rem;
	align-items: center;
	margin-bottom: 1.5rem;
}

.hm-profile-avatar {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: #1f6f3b;
	color: #f5f0e8;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'JetBrains Mono', monospace;
	font-size: 1.35rem;
	font-weight: 700;
}

.hm-profile-tabs {
	display: flex;
	gap: 0.5rem;
	border-bottom: 1px solid rgba(28,58,40,0.12);
	margin-bottom: 1rem;
	overflow-x: auto;
}

.hm-profile-tab {
	border: none;
	border-bottom: 2px solid transparent;
	background: transparent;
	color: rgba(28,58,40,0.56);
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.85rem 0.95rem;
	white-space: nowrap;
	cursor: pointer;
}

.hm-profile-tab.active {
	border-bottom-color: #c9a84c;
	color: #1c3a28;
}

.hm-profile-panel {
	display: none;
}

.hm-profile-panel.active {
	display: block;
}

.hm-profile-card {
	background: rgba(245,240,232,0.88);
	border: 1px solid rgba(28,58,40,0.10);
	border-radius: 0.5rem;
	padding: 1.25rem;
	box-shadow: 0 18px 50px rgba(28,58,40,0.10);
}

.hm-profile-card__head {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.hm-profile-card__head h2 {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0;
}

.hm-profile-card__button {
	border: 1px solid rgba(28,58,40,0.14);
	border-radius: 0.45rem;
	background: #fffdf8;
	color: #1c3a28;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.62rem 0.85rem;
	text-decoration: none;
}

.hm-profile-form {
	margin-top: 1rem;
}

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

.hm-profile-addresses {
	display: grid;
	gap: 0.85rem;
}

.hm-profile-address {
	border: 1px solid rgba(28,58,40,0.10);
	border-radius: 0.5rem;
	background: #fffdf8;
	padding: 1rem;
}

.hm-profile-address__head {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.45rem;
	color: #1c3a28;
}

.hm-profile-address__head span {
	border-radius: 999px;
	background: rgba(201,168,76,0.18);
	color: #7a5c1e;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.62rem;
	font-weight: 700;
	padding: 0.2rem 0.55rem;
	text-transform: uppercase;
}

.hm-profile-address p,
.hm-profile-address small {
	display: block;
	color: rgba(28,58,40,0.68);
	line-height: 1.55;
	margin: 0;
}

.hm-profile-address .hm-profile-card__button {
	margin-top: 0.8rem;
}

.hm-profile-orders {
	display: grid;
	gap: 0.85rem;
}

.hm-profile-order {
	border: 1px solid rgba(28,58,40,0.10);
	border-radius: 0.5rem;
	background: #fffdf8;
	color: inherit;
	padding: 1rem;
	text-decoration: none;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.hm-profile-order:hover {
	border-color: rgba(201,168,76,0.46);
	color: inherit;
	transform: translateY(-1px);
}

.hm-profile-order__head {
	display: flex;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.45rem;
	color: #1c3a28;
}

.hm-profile-order__head span {
	border-radius: 999px;
	background: rgba(28,58,40,0.08);
	color: #1c3a28;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.62rem;
	font-weight: 700;
	padding: 0.2rem 0.55rem;
	text-transform: uppercase;
}

.hm-profile-order__meta {
	display: grid;
	gap: 0.2rem;
}

.hm-profile-order p,
.hm-profile-order small {
	display: block;
	color: rgba(28,58,40,0.68);
	line-height: 1.55;
	margin: 0;
}

.hm-profile-order p {
	color: #1c3a28;
	font-weight: 700;
	margin-top: 0.55rem;
}

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

.hm-order-detail__top,
.hm-order-detail-section--full {
	grid-column: 1 / -1;
}

.hm-order-detail__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.hm-order-detail__top span {
	border-radius: 999px;
	background: rgba(201,168,76,0.18);
	color: #7a5c1e;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.66rem;
	font-weight: 700;
	padding: 0.3rem 0.7rem;
	text-transform: uppercase;
}

.hm-order-detail-section {
	border-top: 1px solid rgba(28,58,40,0.08);
	padding-top: 1rem;
}

.hm-order-detail-section h2 {
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 0.85rem;
	text-transform: uppercase;
}

.hm-order-detail__track {
	width: auto;
	min-height: 0;
	border: 1px solid rgba(201,168,76,0.52);
	border-radius: 999px;
	background: #1c3a28;
	box-shadow: 0 10px 22px rgba(28,58,40,0.16);
	display: inline-flex;
	gap: 0.45rem;
	letter-spacing: 0.1em;
	margin-top: 1rem;
	padding: 0.72rem 1rem;
	vertical-align: top;
}

.hm-order-detail__track::after {
	content: '↗';
	font-size: 0.7rem;
	line-height: 1;
	opacity: 0.78;
}

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

.hm-order-detail-items,
.hm-order-detail-item {
	display: grid;
	grid-template-columns: 1fr auto auto;
	gap: 1rem;
	align-items: center;
	border: 1px solid rgba(28,58,40,0.08);
	border-radius: 0.5rem;
	background: #fffdf8;
	padding: 0.9rem;
}

.hm-order-detail-item small {
	display: block;
	color: rgba(28,58,40,0.58);
	margin-top: 0.2rem;
}

.hm-order-detail-timeline {
	display: grid;
	gap: 0;
	position: relative;
}

.hm-order-detail-timeline::before {
	content: '';
	position: absolute;
	top: 0.35rem;
	bottom: 0.35rem;
	left: 0.48rem;
	width: 2px;
	background: linear-gradient(180deg, rgba(201,168,76,0.15), rgba(201,168,76,0.76), rgba(201,168,76,0.15));
}

.hm-order-detail-timeline__item {
	border-left: 0;
	background: #fffdf8;
	margin-left: 0.5rem;
	padding: 0 0 1rem 1.45rem;
	position: relative;
}

.hm-order-detail-timeline__item::before {
	content: '';
	position: absolute;
	top: 0.28rem;
	left: -0.42rem;
	width: 0.82rem;
	height: 0.82rem;
	border: 2px solid #c9a84c;
	border-radius: 50%;
	background: #fffdf8;
	box-shadow: 0 0 0 4px rgba(201,168,76,0.14);
}

.hm-order-detail-timeline__item:last-child {
	padding-bottom: 0;
}

.hm-order-detail-timeline__item span,
.hm-order-detail-timeline__item small {
	display: block;
	color: rgba(28,58,40,0.58);
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.66rem;
	font-weight: 700;
	text-transform: uppercase;
}

.hm-order-detail-timeline__item strong {
	display: block;
	color: #1c3a28;
	margin: 0.2rem 0;
}

.hm-profile-list {
	display: grid;
	gap: 0.75rem;
	margin: 0;
}

.hm-profile-list div {
	display: grid;
	grid-template-columns: 7.5rem 1fr;
	gap: 0.75rem;
	border-top: 1px solid rgba(28,58,40,0.08);
	padding-top: 0.75rem;
}

.hm-profile-list dt {
	color: rgba(28,58,40,0.52);
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.66rem;
	font-weight: 700;
	text-transform: uppercase;
}

.hm-profile-list dd {
	margin: 0;
	color: #1c3a28;
	font-size: 0.9rem;
}

.hm-profile-empty {
	color: rgba(28,58,40,0.58);
	font-size: 0.88rem;
	line-height: 1.6;
	margin: 0;
}

.hm-navbar__links > li > a :hover{
    color: rgb(28, 58, 40);

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

	.hm-profile-form__row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.hm-order-detail,
	.hm-order-detail-item {
		grid-template-columns: 1fr;
	}

    .hm-product-list-hero {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .hm-product-list-catalog__header {
        display: block;
    }

    .hm-product-list-catalog__note {
        text-align: left;
        margin-top: 0.75rem;
    }

    .hm-product-list-grid {
        grid-template-columns: 1fr 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-product-list-page {
        padding: 4.25rem 1rem 3rem;
    }

    .hm-product-list-hero__heading {
        font-size: clamp(2.1rem, 12vw, 3.2rem);
    }

    .hm-product-list-catalog {
        padding: 1rem;
    }

    .hm-product-list-grid {
        grid-template-columns: 1fr;
    }

    .hm-product-list-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .hm-product-list-card__cta {
        width: 100%;
    }

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

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

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

/* ── WhatsApp Float Button ── */
.hm-wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: transform 0.2s, filter 0.2s;
}

.hm-wa-float:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
}

.hm-wa-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ── Banner Section ── */
.hm-banner {
    width: 100%;
    line-height: 0;
    border-top: 3px solid #c9a84c;
    border-bottom: 3px solid #c9a84c;
}

.hm-banner__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
@media (max-width: 529px) {
  
.hm-banner__img.for_desktop{
	display: none;
}
.hm-banner__img.for_mobile{
	display: block;
}
}