@charset "utf-8";

:root {
    --hh-ink: #171a18;
    --hh-green: #214d43;
    --hh-green-bright: #4f8b7d;
    --hh-purple: #75649a;
    --hh-purple-light: #e9e4f1;
    --hh-coral: #f56546;
    --hh-yellow: #ffc12f;
    --hh-paper: #ffffff;
    --hh-soft: #f3f6f4;
    --hh-warm: #f7f3ec;
    --hh-line: #e1e4e2;
    --hh-muted: #666e6a;
    --hh-shell: min(1360px, calc(100vw - 72px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.hh-page {
    margin: 0;
    color: var(--hh-ink);
    background: var(--hh-paper);
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -.018em;
    word-break: keep-all;
    text-rendering: optimizeLegibility;
}

/* The legacy mobile header reserved space on #wrap. Storefront pages use the
   new in-flow header, so keeping that padding creates a blank strip above it. */
body.hh-page #wrap { padding-top: 0; }

.hh-page a { color: inherit; text-decoration: none; }
.hh-page img { display: block; max-width: 100%; }
.hh-page button,
.hh-page input { font: inherit; }
.hh-page button { color: inherit; }
.hh-shell { width: var(--hh-shell); margin-inline: auto; }
.hh-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.hh-skip {
    position: fixed;
    z-index: 1000;
    top: -80px;
    left: 24px;
    padding: 12px 18px;
    color: #fff !important;
    background: var(--hh-ink);
    transition: top .2s;
}
.hh-skip:focus { top: 16px; }

/* Utility announcement */
.hh-notice {
    height: 38px;
    color: #fff;
    background: var(--hh-ink);
    font-size: 14px;
    letter-spacing: 0;
}
.hh-notice__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.hh-notice__inner strong { color: var(--hh-yellow); font-weight: 800; }
.hh-notice__inner a { margin-left: 8px; color: #fff; font-weight: 700; }

/* New Origin-inspired two-tier header */
.hh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 156px;
    background: rgba(255, 255, 255, .985);
    border-bottom: 0;
    transition: height .2s, box-shadow .2s;
}
.hh-header.is-scrolled {
    height: 138px;
    box-shadow: 0 8px 28px rgba(16, 21, 19, .07);
}
.hh-header__main {
    height: 94px;
    border-bottom: 0;
    transition: height .2s;
}
.hh-header.is-scrolled .hh-header__main { height: 82px; }
.hh-header__main-inner {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(190px, 1fr) 302px minmax(240px, 1fr);
    align-items: center;
    column-gap: 34px;
}
.hh-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    color: var(--hh-ink);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.055em;
}
.hh-logo img { width: 174px; height: auto; display: block; }
.hh-logo__wordmark {
    display: inline-block;
    font-size: inherit;
    font-weight: 550;
    letter-spacing: -.055em;
    transform: scaleX(.97);
    transform-origin: left center;
    white-space: nowrap;
}
.hh-search {
    width: 302px;
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px 0 18px;
    background: #fff;
    border: 1px solid #d9dedb;
    border-radius: 999px;
    transition: border-color .2s, box-shadow .2s;
}
.hh-search:focus-within {
    border-color: #747d78;
    box-shadow: 0 0 0 3px rgba(7, 95, 73, .08);
}
.hh-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--hh-ink);
    font-size: 15px;
    font-weight: 600;
}
.hh-search input::-webkit-search-cancel-button { display: none; }
.hh-search button,
.hh-icon-link,
.hh-menu-button { border: 0; background: none; padding: 0; }
.hh-search button { width: 28px; height: 28px; display: grid; place-items: center; cursor: pointer; }
.hh-search svg,
.hh-icon-link svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.hh-utility {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    color: #59615d;
    font-size: 13px;
    font-weight: 450;
    white-space: nowrap;
}
.hh-utility a {
    display: inline-flex;
    align-items: center;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
}
.hh-utility a + a::before {
    content: "";
    width: 1px;
    height: 10px;
    margin: 0 14px;
    background: #d9ddda;
}
.hh-utility a:hover { color: var(--hh-green); }
.hh-header__nav-row { height: 62px; transition: height .2s; }
.hh-header.is-scrolled .hh-header__nav-row { height: 56px; }
.hh-header__nav-inner { height: 100%; display: flex; align-items: center; }
.hh-category-trigger {
    min-width: 126px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-right: 34px;
    margin-right: 40px;
    border-right: 1px solid #dfe3e0;
    font-size: 17px;
    font-weight: 500;
}
.hh-category-trigger__icon { width: 18px; display: grid; gap: 4px; }
.hh-category-trigger__icon i { width: 18px; height: 1.5px; display: block; background: currentColor; }
.hh-nav { height: 100%; display: flex; align-items: center; gap: 48px; }
.hh-nav a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -.01em;
}
.hh-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--hh-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s;
}
.hh-nav a:hover::after { transform: scaleX(1); }
.hh-header__actions { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.hh-icon-link { position: relative; width: 32px; height: 32px; display: grid; place-items: center; }
.hh-icon-link svg { width: 25px; height: 25px; }
.hh-cart > span {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--hh-coral);
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 800;
}
.hh-header__compact {
    position: absolute;
    inset: 0;
    height: 72px;
    visibility: hidden;
    background: rgba(255, 255, 255, .99);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .16s ease, transform .2s ease, visibility 0s linear .2s;
    pointer-events: none;
}
.hh-header__compact-inner {
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.hh-header__compact .hh-logo { margin-right: 40px; font-size: 28px; }
.hh-header__compact .hh-category-trigger {
    min-width: auto;
    gap: 10px;
    padding-right: 22px;
    margin-right: 26px;
    font-size: 15px;
}
.hh-header__compact .hh-nav { flex: 0 0 auto; gap: 30px; }
.hh-header__compact .hh-nav a { font-size: 15px; }
.hh-header__compact .hh-search { width: 260px; height: 40px; margin-left: auto; }
.hh-header__compact .hh-search input { font-size: 14px; }
.hh-header__compact .hh-header__actions { gap: 16px; margin-left: 18px; }
.hh-header__compact .hh-icon-link svg { width: 23px; height: 23px; }
.hh-menu-button {
    position: relative;
    width: 40px;
    height: 40px;
    display: none;
    padding: 0;
    color: var(--hh-ink);
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: background .18s ease;
}
.hh-menu-button span {
    position: absolute;
    top: 19px;
    left: 9px;
    width: 22px;
    height: 1.5px;
    display: block;
    margin: 0;
    background: currentColor;
    transform-origin: center;
    transition: transform .22s ease;
}
.hh-menu-button span:first-child { transform: translateY(-4px); }
.hh-menu-button span:last-child { transform: translateY(4px); }
.hh-menu-button[aria-expanded="true"] { background: #f2f5f3; }
.hh-menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.hh-menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.hh-mobile-actions { display: none; }
.hh-mobile-nav { display: none; }

.hh-eyebrow {
    margin: 0 0 18px;
    color: var(--hh-green);
    font-size: 13px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .15em;
}

@media (min-width: 921px) {
    .hh-header { overflow: hidden; transition: height .26s ease, box-shadow .2s ease; }
    .hh-header.is-scrolled { height: 72px; }
    .hh-header__main,
    .hh-header__nav-row { transition: height .24s ease, opacity .14s ease, visibility 0s linear 0s; }
    .hh-header.is-scrolled .hh-header__main,
    .hh-header.is-scrolled .hh-header__nav-row {
        height: 0;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }
    .hh-header.is-scrolled .hh-header__compact {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        transition-delay: .07s, .04s, 0s;
        pointer-events: auto;
    }
    .hh-header__main-inner { transform: translateY(6px); }
    .hh-header__nav-inner { transform: translateY(-4px); }
}

/* Campaign rail: same-ratio product stories across PC and mobile */
.hh-campaign {
    --hh-campaign-card-width: min(30vw, 420px);
    --hh-campaign-gap: 24px;
    --hh-campaign-edge: max(20px, calc((100vw - var(--hh-campaign-card-width) - var(--hh-campaign-card-width) - var(--hh-campaign-card-width) - var(--hh-campaign-gap) - var(--hh-campaign-gap)) / 2));
    padding: 24px 0 22px;
    overflow: hidden;
    background: #fff;
}
.hh-campaign__rail {
    width: max-content;
    display: flex;
    gap: var(--hh-campaign-gap);
    padding: 0;
    overflow: visible;
    outline: 0;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    will-change: transform;
    backface-visibility: hidden;
}
.hh-campaign__rail.is-dragging { cursor: grabbing; }
/* Boundary clones are visible cards too; retain their native link interactions. */
.hh-campaign__rail [data-campaign-clone] { pointer-events: auto; }
.hh-campaign__rail.is-native-loop {
    width: 100%;
    padding-inline: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    cursor: auto;
    will-change: auto;
    transform: none !important;
    -webkit-overflow-scrolling: touch;
}
.hh-campaign__rail.is-native-loop::-webkit-scrollbar { display: none; }
.hh-campaign__rail.is-native-loop > .hh-campaign-card { scroll-snap-align: center; }
.hh-campaign__rail.is-native-loop.is-rebasing { scroll-snap-type: none; }
.hh-campaign-card {
    flex: 0 0 var(--hh-campaign-card-width);
    aspect-ratio: 16 / 21;
    overflow: hidden;
    border-radius: 19px;
    background: #e7e6e2;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.hh-campaign-card > a { position: relative; width: 100%; height: 100%; display: block; color: #fff; -webkit-user-drag: none; }
.hh-campaign-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    filter: saturate(.94) contrast(1.03);
    transform: none;
    transition: filter .35s ease;
    -webkit-user-drag: none;
    pointer-events: none;
}
.hh-campaign-card--cover img { object-fit: cover; }
.hh-campaign-card:hover img { filter: saturate(1) contrast(1.04); }
.hh-campaign-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 13, 12, .06) 0%, rgba(10, 13, 12, .08) 34%, rgba(10, 13, 12, .84) 100%),
        linear-gradient(90deg, rgba(10, 13, 12, .07), transparent 58%);
}
.hh-campaign-card.is-primary .hh-campaign-card__shade {
    background:
        linear-gradient(180deg, rgba(26, 14, 49, .06) 0%, rgba(26, 14, 49, .08) 34%, rgba(24, 13, 45, .88) 100%),
        linear-gradient(90deg, rgba(39, 18, 70, .08), transparent 58%);
}
.hh-campaign-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 30px 38px;
}
.hh-campaign-card__kicker {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 560;
    letter-spacing: -.01em;
    opacity: .84;
}
.hh-campaign-card__content > strong {
    display: block;
    font-size: clamp(25px, 2vw, 32px);
    line-height: 1.2;
    letter-spacing: -.018em;
    word-spacing: .02em;
    font-weight: 600;
}
.hh-campaign-card__description {
    max-width: 92%;
    margin-top: 11px;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 450;
    opacity: .78;
}
.hh-campaign__controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 20px; }
.hh-campaign__count { min-width: 44px; margin: 0; text-align: left; font-size: 13px; font-weight: 560; letter-spacing: .04em; }
.hh-campaign__count strong { font-weight: 820; }
.hh-campaign__count span { margin-left: 5px; color: #8b918e; }
.hh-campaign__progress {
    --hh-campaign-progress: .1667;
    position: relative;
    width: 126px;
    height: 2px;
    overflow: hidden;
    background: #d7dad8;
}
.hh-campaign__progress > span {
    position: absolute;
    inset: 0;
    background: var(--hh-ink);
    transform: scaleX(var(--hh-campaign-progress));
    transform-origin: left center;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

/* Quick access */
.hh-quick {
    position: relative;
    padding: 34px 0 8px;
    background: #fff;
}
.hh-quick__list {
    width: min(var(--hh-shell), 1380px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.hh-quick-chip {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px 6px 7px;
    border: 1px solid #dde1de;
    border-radius: 999px;
    color: #1d2421;
    background: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: 570;
    letter-spacing: -.018em;
    white-space: nowrap;
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.hh-quick-chip:hover {
    transform: translateY(-2px);
    border-color: #a9afac;
    background: #fafaf8;
}
.hh-quick-chip__icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #272d2a;
}
.hh-quick-chip__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.hh-quick-chip--member .hh-quick-chip__icon { background: #eee9ff; }
.hh-quick-chip--coupon .hh-quick-chip__icon { background: #fff0df; }
.hh-quick-chip--event .hh-quick-chip__icon { background: #fff5c7; }
.hh-quick-chip--bulk .hh-quick-chip__icon { background: #e8f1f7; }
.hh-quick-chip--night .hh-quick-chip__icon { background: #ece9f5; }
.hh-quick-chip--meal .hh-quick-chip__icon { background: #f1eddf; }
.hh-quick-chip--balance .hh-quick-chip__icon { background: #dff4e8; }

.hh-button {
    min-width: 230px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 22px;
    margin-top: 27px;
    border: 2px solid var(--hh-ink);
    font-size: 16px;
    font-weight: 800;
    transition: color .2s, background .2s, border-color .2s, transform .2s;
}
.hh-button:hover { transform: translateY(-2px); }
.hh-button--dark { color: #fff !important; background: var(--hh-ink); }
.hh-button--dark:hover { background: var(--hh-purple); border-color: var(--hh-purple); }
/* Shared editorial rhythm */
.hh-section { padding: 118px 0; }
.hh-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 44px; }
.hh-section-heading h2,
.hh-trust h2,
.hh-brand h2 { margin: 0; font-size: clamp(42px, 3.7vw, 56px); line-height: 1.18; letter-spacing: -.045em; font-weight: 850; }
.hh-section-heading > p { max-width: 430px; margin: 0 0 4px; color: var(--hh-muted); font-size: 17px; font-weight: 550; }
.hh-section-heading .hh-section-heading__note {
    max-width: 570px;
    margin: 16px 0 0;
    color: var(--hh-muted);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
    letter-spacing: -.015em;
}
.hh-text-link { display: inline-flex; align-items: center; color: var(--hh-ink); font-size: 15px; font-weight: 800; }
.hh-text-link:hover { color: var(--hh-purple); }

/* Need-state navigation */
.hh-concerns { background: #fff; }
.hh-concern-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.hh-concern-card {
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 30px 29px;
    border: 1px solid transparent;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.hh-concern-card:hover { transform: translateY(-7px); box-shadow: 0 18px 36px rgba(16, 21, 19, .11); border-color: rgba(16, 21, 19, .15); }
.hh-concern-card--night { background: #eee9ff; }
.hh-concern-card--balance { background: #fff0df; }
.hh-concern-card--active { background: #dff4e8; }
.hh-concern-card--daily { background: #e8f1f7; }
.hh-concern-card__index { position: absolute; top: 29px; right: 28px; color: #424a46; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.hh-concern-card__icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--hh-purple);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 38px;
    line-height: 1;
}
.hh-concern-card--balance .hh-concern-card__icon { background: #e96a3f; }
.hh-concern-card--active .hh-concern-card__icon { background: var(--hh-green-bright); }
.hh-concern-card--daily .hh-concern-card__icon { background: #367693; }
.hh-concern-card h3 { margin: 27px 0 9px; font-size: 28px; line-height: 1.22; letter-spacing: -.035em; font-weight: 850; }
.hh-concern-card p { margin: 0; color: #4d5652; font-size: 16px; font-weight: 560; line-height: 1.62; }
.hh-concern-card .hh-text-link { margin-top: auto; font-size: 13px; }

/* Product shelf */
.hh-products { background: #fff; }
.hh-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.hh-product-card { min-width: 0; }
.hh-product-card__image { position: relative; aspect-ratio: 1 / .94; overflow: hidden; background: #f6f6f3; }
.hh-product-card__image > a { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 18px; }
.hh-product-card__image img {
    width: min(100%, 300px);
    height: auto;
    max-height: 250px;
    object-fit: contain;
    mix-blend-mode: multiply;
    image-rendering: auto;
    transition: transform .35s ease;
}
.hh-product-card:hover .hh-product-card__image img { transform: translateY(-4px); }
.hh-product-card__rank {
    position: absolute;
    top: 16px;
    left: 16px;
    min-width: 34px;
    height: 27px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--hh-ink);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .06em;
}
.hh-wish {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--hh-line);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}
.hh-wish svg { width: 18px; height: 18px; fill: transparent; stroke: var(--hh-ink); stroke-width: 1.6; transition: fill .2s, stroke .2s; }
.hh-wish.is-active svg { fill: var(--hh-coral); stroke: var(--hh-coral); }
.hh-product-card__soldout { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); padding: 9px 17px; color: #fff; background: rgba(16, 21, 19, .82); font-size: 12px; font-weight: 700; }
.hh-product-card__body { padding: 20px 2px 0; }
.hh-product-card__body > p { margin: 0 0 8px; color: var(--hh-green); font-size: 13px; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hh-product-card__body h3 { min-height: 58px; margin: 0; font-size: 20px; line-height: 1.4; letter-spacing: -.025em; font-weight: 750; }
.hh-product-card__price { min-height: 34px; display: flex; align-items: baseline; align-content: flex-start; flex-wrap: wrap; gap: 7px; margin-top: 9px; }
.hh-product-card__price strong { color: var(--hh-coral); font-size: 18px; font-weight: 850; }
.hh-product-card__price span { font-size: 23px; font-weight: 850; }
.hh-product-card__price del { color: #8c938f; font-size: 13px; }
.hh-product-card__meta { min-height: 18px; display: flex; align-items: center; gap: 0; margin-top: 11px; color: #727a76; font-size: 12px; font-weight: 650; }
.hh-product-card__meta span:first-child { color: inherit; }
.hh-product-card__rating-star { color: var(--hh-yellow); }
.hh-product-card__meta span + span::before { content: "·"; margin: 0 7px; color: #a8aeaa; }

/* Video library */
.hh-video { padding-top: 78px; background: #f3f0e8; }
.hh-video + .hh-concerns { padding-top: 32px; }
.hh-video-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.05fr) minmax(320px, 1fr);
    gap: 24px;
    align-items: stretch;
}
.hh-video-layout--single { grid-template-columns: minmax(0, 1fr); }
.hh-video-layout--single .hh-video-stage { width: 100%; max-width: 1180px; margin: 0 auto; }
.hh-video-stage {
    position: relative;
    isolation: isolate;
    aspect-ratio: 16 / 9;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 54px;
    color: #fff;
    text-align: center;
    background:
        radial-gradient(circle at 76% 22%, rgba(122, 102, 175, .34), transparent 34%),
        radial-gradient(circle at 20% 86%, rgba(45, 112, 88, .28), transparent 38%),
        linear-gradient(135deg, #111513 0%, #232925 100%);
}
.hh-video-stage::before {
    content: 'HUNHUNHAN';
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, .035);
    font-size: clamp(80px, 10vw, 150px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.07em;
    white-space: nowrap;
}
.hh-video-stage.has-video { padding: 0; background: #111; }
.hh-video-stage.has-video::before { display: none; }
.hh-video-stage > iframe { width: 100%; height: 100%; display: block; border: 0; }
.hh-video-stage__play {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(5px);
}
.hh-video-stage__play svg { width: 31px; height: 31px; fill: none; stroke: #fff; stroke-width: 1.35; stroke-linejoin: round; }
.hh-video-stage > p { margin: 0 0 11px; color: rgba(255, 255, 255, .62); font-size: 11px; font-weight: 750; letter-spacing: .18em; }
.hh-video-stage > strong { max-width: 640px; font-size: clamp(25px, 2.15vw, 34px); line-height: 1.3; letter-spacing: -.03em; font-weight: 680; }
.hh-video-stage > span:last-child { margin-top: 13px; color: rgba(255, 255, 255, .57); font-size: 13px; font-weight: 480; }
.hh-video-list {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--hh-line);
}
.hh-video-item {
    width: 100%;
    flex: 1 1 0;
    min-height: 100px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 13px;
    padding: 18px 17px 18px 20px;
    border: 0;
    border-bottom: 1px solid var(--hh-line);
    border-left: 3px solid transparent;
    color: var(--hh-ink);
    background: #fff;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease;
}
.hh-video-item:hover,
.hh-video-item.is-active { background: #f6f6f3; }
.hh-video-item.is-active { border-left-color: var(--hh-green); }
.hh-video-item__number { align-self: start; padding-top: 3px; color: #858c88; font-size: 10px; font-weight: 760; letter-spacing: .08em; }
.hh-video-item__copy { min-width: 0; display: block; }
.hh-video-item__copy small { display: block; margin-bottom: 7px; color: var(--hh-green); font-size: 9px; font-weight: 780; letter-spacing: .12em; }
.hh-video-item__copy strong { display: block; font-size: 16px; line-height: 1.45; letter-spacing: -.02em; font-weight: 620; }
.hh-video-item__play {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid #d8ddda;
    border-radius: 50%;
}
.hh-video-item__play svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linejoin: round; }

/* Evidence and reassurance */
.hh-trust { padding: 98px 0; color: #fff; background: var(--hh-green); }
.hh-trust__grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); }
.hh-trust__intro { display: flex; flex-direction: column; justify-content: center; padding-right: 54px; }
.hh-trust__intro .hh-eyebrow { color: var(--hh-yellow); }
.hh-trust__item { position: relative; min-height: 302px; padding: 4px 30px 0; border-left: 1px solid rgba(255, 255, 255, .34); }
.hh-trust__item > span { position: absolute; top: 0; right: 28px; color: rgba(255, 255, 255, .65); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.hh-trust__item svg { width: 56px; height: 56px; margin-top: 41px; fill: none; stroke: var(--hh-yellow); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.hh-trust__item h3 { margin: 37px 0 13px; font-size: 22px; font-weight: 800; }
.hh-trust__item p { margin: 0; color: rgba(255, 255, 255, .78); font-size: 15px; font-weight: 550; line-height: 1.7; }

/* Customer proof */
.hh-stories { background: #fff; }
.hh-story-layout { display: grid; grid-template-columns: 1.56fr 1fr; gap: 54px; }
.hh-ugc-grid { display: grid; grid-template-columns: 1.12fr .88fr; grid-template-rows: repeat(2, 246px); gap: 14px; }
.hh-ugc-card { position: relative; overflow: hidden; background: #ecefea; }
.hh-ugc-card:first-child { grid-row: 1 / 3; }
.hh-ugc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.hh-ugc-card:hover img { transform: scale(1.025); }
.hh-ugc-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(16, 21, 19, .58)); }
.hh-ugc-card span { position: absolute; z-index: 2; left: 17px; bottom: 14px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.hh-review-panel { padding: 4px 0 0; }
.hh-review-panel__top { display: flex; align-items: center; gap: 18px; padding-bottom: 21px; border-bottom: 3px solid var(--hh-ink); }
.hh-review-panel__top > strong { font-size: 54px; line-height: 1; letter-spacing: -.04em; font-weight: 900; }
.hh-review-panel__top div > span { color: var(--hh-yellow); font-size: 14px; letter-spacing: .07em; }
.hh-review-panel__top p { margin: 2px 0 0; color: var(--hh-muted); font-size: 13px; font-weight: 600; }
.hh-review-list { margin-bottom: 22px; }
.hh-review-item { display: block; padding: 20px 0 18px; border-bottom: 1px solid var(--hh-line); }
.hh-review-item__meta { display: flex; justify-content: space-between; color: var(--hh-yellow); font-size: 10px; font-weight: 750; letter-spacing: .05em; }
.hh-review-item__meta time { color: #878f8b; letter-spacing: 0; }
.hh-review-item h3 { margin: 9px 0 6px; font-size: 17px; font-weight: 800; }
.hh-review-item p { display: -webkit-box; overflow: hidden; margin: 0; color: #59625d; font-size: 14px; font-weight: 530; line-height: 1.58; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.hh-review-item small { display: block; margin-top: 9px; color: #7d8581; font-size: 11px; font-weight: 600; }

/* Recurring editorial columns */
.hh-columns { background: #fff; }
.hh-column-grid { display: grid; grid-template-columns: 1.34fr 1fr 1fr; gap: 18px; align-items: stretch; }
.hh-column-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #f8f7f3;
    border: 1px solid #e2e1dc;
    transition: transform .25s ease, box-shadow .25s ease;
}
.hh-column-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(16, 21, 19, .09); }
.hh-column-card__visual {
    position: relative;
    isolation: isolate;
    height: 276px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 28px;
}
.hh-column-card--feature .hh-column-card__visual { height: 340px; }
.hh-column-card__visual::before,
.hh-column-card__visual::after { content: ""; position: absolute; z-index: -1; border-radius: 50%; }
.hh-column-card__visual::before { width: 230px; height: 230px; right: -38px; top: -54px; border: 1px solid currentColor; opacity: .24; }
.hh-column-card__visual::after { width: 115px; height: 115px; right: 50px; top: 46px; background: currentColor; opacity: .08; }
.hh-column-card__visual > span { font-size: clamp(45px, 5vw, 74px); font-weight: 780; line-height: .84; letter-spacing: -.075em; }
.hh-column-card--feature .hh-column-card__visual > span { font-size: clamp(62px, 7vw, 102px); }
.hh-column-card__visual > i { position: absolute; top: 24px; left: 28px; font-size: 11px; font-style: normal; font-weight: 750; letter-spacing: .12em; }
.hh-column-card__visual--sleep { color: #f0edff; background: linear-gradient(145deg, #242031, #4b4162); }
.hh-column-card__visual--meal { color: #412e1d; background: #e5cfac; }
.hh-column-card__visual--daily { color: #163c30; background: #cbded5; }
.hh-column-card__body { flex: 1 1 auto; display: flex; flex-direction: column; align-items: flex-start; padding: 29px 28px 31px; }
.hh-column-card__body > span { color: var(--hh-green); font-size: 10px; font-weight: 780; letter-spacing: .13em; }
.hh-column-card__body h3 { margin: 13px 0 11px; font-size: 22px; line-height: 1.4; letter-spacing: -.03em; font-weight: 690; }
.hh-column-card--feature .hh-column-card__body h3 { font-size: 29px; }
.hh-column-card__body p { margin: 0; color: #5e6662; font-size: 14px; font-weight: 480; line-height: 1.68; }
.hh-column-card__body strong { margin-top: auto; padding-top: 27px; font-size: 13px; font-weight: 700; }
.hh-column-card__body strong b { margin-left: 5px; font-size: 15px; font-weight: 500; }

/* Curated social proof: short video + blog/feed stories in one chapter */
.hh-community { overflow: hidden; background: #f5f3ee; border-top: 1px solid #e5e1d8; }
.hh-community__part { padding-top: 35px; border-top: 1px solid #cfcac0; }
.hh-community__part--curated { margin-top: 96px; }
.hh-social-platform + .hh-social-platform { margin-top: 54px; padding-top: 42px; border-top: 1px solid #d8d4cc; }
.hh-social-platform__heading { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:19px; }
.hh-social-platform__heading span { display:inline-flex; align-items:center; min-height:29px; padding:0 11px; border-radius:999px; color:#fff; background:#1c6b50; font-size:9px; font-weight:800; letter-spacing:.11em; }
.hh-social-platform--instagram .hh-social-platform__heading span { background:linear-gradient(105deg,#8a3ab9,#e95950,#fccc63); }
.hh-social-platform__heading strong { color:#5f6863; font-size:13px; font-weight:560; }
@media (max-width: 620px) {
    .hh-social-platform + .hh-social-platform { margin-top: 42px; padding-top: 32px; }
    .hh-social-platform__heading { align-items:flex-start; flex-direction:column; gap:9px; margin-bottom:16px; }
    .hh-social-platform__heading strong { font-size:12px; }
}
.hh-community__part-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.hh-community__part-heading div > span { display: block; margin-bottom: 6px; color: var(--hh-green); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.hh-community__part-heading h3 { margin: 0; font-size: 29px; line-height: 1.32; letter-spacing: -.035em; font-weight: 700; }
.hh-community__part-heading > p { margin: 0 0 4px; color: #6b706d; font-size: 13px; font-weight: 500; }
.hh-drag-region { position: relative; }
.hh-short-rail {
    width: min(100%, 1100px);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-inline: auto;
}
.hh-short-card { position: relative; aspect-ratio: 9 / 16; min-width: 0; overflow: hidden; color: #fff !important; background: #252525; border-radius: 14px; }
.hh-short-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.hh-short-card:hover img { transform: scale(1.025); }
.hh-short-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 10, 9, .38) 0%, transparent 30%, transparent 48%, rgba(8, 10, 9, .8) 100%); }
.hh-short-card__platform { position: absolute; top: 18px; left: 18px; font-size: 9px; font-weight: 780; letter-spacing: .11em; }
.hh-short-card__play { position: absolute; top: 50%; left: 50%; width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .75); border-radius: 50%; background: rgba(14, 16, 15, .18); backdrop-filter: blur(3px); transform: translate(-50%, -50%); }
.hh-short-card__play svg { width: 23px; height: 23px; fill: none; stroke: #fff; stroke-width: 1.3; stroke-linejoin: round; }
.hh-short-card > strong { position: absolute; right: 50px; bottom: 24px; left: 18px; font-size: 17px; line-height: 1.45; letter-spacing: -.025em; font-weight: 620; }
.hh-short-card > small { position: absolute; right: 18px; bottom: 27px; font-size: 9px; font-weight: 750; letter-spacing: .08em; }
.hh-curated-rail { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.hh-curated-card { min-width: 0; min-height: 262px; display: grid; grid-template-columns: 42% 1fr; overflow: hidden; background: #fff; border: 1px solid #dfdcd4; transition: transform .25s ease, box-shadow .25s ease; }
.hh-curated-card:hover { transform: translateY(-4px); box-shadow: 0 15px 36px rgba(16, 21, 19, .08); }
.hh-curated-card__image { min-width: 0; overflow: hidden; }
.hh-curated-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.hh-curated-card:hover .hh-curated-card__image img { transform: scale(1.025); }
.hh-curated-card__body { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; padding: 25px 23px 23px; }
.hh-curated-card__body small { color: var(--hh-green); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.hh-curated-card__body > strong { margin-top: 13px; font-size: 18px; line-height: 1.48; letter-spacing: -.025em; font-weight: 680; }
.hh-curated-card__body > span { display: -webkit-box; overflow: hidden; margin-top: 10px; color: #656d69; font-size: 13px; font-weight: 480; line-height: 1.62; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.hh-curated-card__body > b { margin-top: auto; padding-top: 18px; font-size: 12px; font-weight: 700; }
.hh-curated-card__body > b i { margin-left: 4px; font-style: normal; font-weight: 500; }

/* Brand manifesto */
.hh-brand { min-height: 640px; display: grid; grid-template-columns: 1.12fr .88fr; background: #151126; }
.hh-brand__image { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--hh-purple); padding: 36px; }
.hh-brand__image::before { content: ""; position: absolute; width: 440px; height: 440px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; }
.hh-brand__image img { position: relative; z-index: 1; width: min(100%, 600px); height: auto; object-fit: contain; box-shadow: 0 24px 65px rgba(21, 13, 48, .32); }
.hh-brand__copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 78px max(54px, calc((100vw - 1360px) / 2)) 78px 74px; color: #fff; }
.hh-brand__copy .hh-eyebrow { color: var(--hh-yellow); }
.hh-brand__copy > p:not(.hh-eyebrow) { margin: 27px 0 0; color: rgba(255, 255, 255, .75); font-size: 17px; font-weight: 530; line-height: 1.75; }
.hh-brand__copy > p + p:not(.hh-eyebrow) { margin-top: 8px; }
.hh-button--line { margin-top: 34px; color: #fff !important; border-color: #fff; background: transparent; }
.hh-button--line:hover { color: var(--hh-ink) !important; background: var(--hh-yellow); border-color: var(--hh-yellow); }
.hh-brand__signature { margin-top: 45px; color: #dad1ff; font-family: Georgia, serif; font-size: 20px; font-style: italic; }

/* Footer */
.hh-footer { padding: 72px 0 27px; color: rgba(255, 255, 255, .72); background: #0d1512; font-size: 13px; }
.hh-footer__top { display: grid; grid-template-columns: 2.1fr repeat(3, .74fr) 1.1fr; gap: 34px; padding-bottom: 51px; }
.hh-logo--footer { color: #fff !important; font-size: 28px; }
.hh-logo--footer img { width: 150px; filter: brightness(0) invert(1); }
.hh-footer__brand p { margin: 17px 0 0; color: rgba(255, 255, 255, .52); font-weight: 550; }
.hh-footer__links { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.hh-footer__links strong { margin-bottom: 6px; color: #fff; font-size: 12px; font-weight: 850; letter-spacing: .13em; }
.hh-footer__links a:hover { color: var(--hh-yellow); }
.hh-footer__contact > span { display: block; color: rgba(255, 255, 255, .55); }
.hh-footer__contact strong { display: block; margin-top: 3px; color: #fff; font-size: 25px; font-weight: 850; letter-spacing: -.01em; }
.hh-footer__contact p { margin: 8px 0 0; line-height: 1.7; }
.hh-newsletter { display: flex; align-items: center; justify-content: space-between; gap: 48px; padding: 28px 0; border-top: 1px solid rgba(255, 255, 255, .2); border-bottom: 1px solid rgba(255, 255, 255, .2); }
.hh-newsletter > div { display: flex; flex-direction: column; }
.hh-newsletter strong { color: #fff; font-size: 17px; font-weight: 800; }
.hh-newsletter span { margin-top: 2px; color: rgba(255, 255, 255, .52); }
.hh-newsletter form { width: 370px; display: flex; border-bottom: 1px solid rgba(255, 255, 255, .55); }
.hh-newsletter input { width: 100%; padding: 10px 2px; color: #fff; border: 0; outline: 0; background: transparent; font-size: 13px; }
.hh-newsletter input::placeholder { color: rgba(255, 255, 255, .45); }
.hh-newsletter button { flex: 0 0 auto; color: var(--hh-yellow); border: 0; background: transparent; font-size: 12px; font-weight: 800; cursor: pointer; }
.hh-footer__bottom { display: flex; justify-content: space-between; gap: 35px; padding-top: 24px; color: rgba(255, 255, 255, .4); font-size: 11px; line-height: 1.8; }
.hh-footer__bottom p { margin: 0; }
.hh-footer__bottom p:last-child { text-align: right; letter-spacing: .06em; }

@media (max-width: 1160px) {
    :root { --hh-shell: min(100% - 50px, 1080px); }
    .hh-header__main-inner { grid-template-columns: minmax(175px, 1fr) 270px minmax(215px, 1fr); column-gap: 25px; }
    .hh-logo img { width: 162px; }
    .hh-search { width: 270px; }
    .hh-category-trigger { margin-right: 32px; }
    .hh-nav { gap: 34px; }
    .hh-concern-card { padding-inline: 23px; }
    .hh-trust__intro { padding-right: 34px; }
    .hh-trust__item { padding-inline: 23px; }
    .hh-brand__copy { padding-left: 55px; padding-right: 44px; }
    .hh-footer__top { grid-template-columns: 1.65fr repeat(3, .78fr) 1.1fr; gap: 21px; }
}

@media (min-width: 921px) and (max-width: 1160px) {
    .hh-header__compact .hh-logo { margin-right: 22px; font-size: 25px; }
    .hh-header__compact .hh-category-trigger { gap: 0; margin-right: 20px; padding-right: 18px; }
    .hh-header__compact .hh-category-trigger > span:last-child { display: none; }
    .hh-header__compact .hh-nav { gap: 20px; }
    .hh-header__compact .hh-nav a { font-size: 14px; }
    .hh-header__compact .hh-search { width: clamp(180px, 21vw, 220px); height: 38px; }
    .hh-header__compact .hh-header__actions { gap: 12px; margin-left: 14px; }
}

@media (max-width: 920px) {
    :root { --hh-shell: calc(100% - 40px); }
    .hh-header { height: 70px; }
    .hh-header.is-scrolled { height: 56px; }
    .hh-header__main { height: 70px; border-bottom: 0; }
    .hh-header.is-scrolled .hh-header__main { height: 56px; }
    .hh-header__main-inner { display: flex; }
    .hh-search,
    .hh-utility,
    .hh-header__nav-row { display: none; }
    .hh-header__compact { display: none; }
    .hh-mobile-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-left: auto;
        transition: gap .2s ease;
    }
    .hh-mobile-actions .hh-icon-link {
        overflow: visible;
        opacity: 1;
        transform: translateX(0);
        transition: width .2s ease, opacity .14s ease, transform .2s ease, visibility 0s linear 0s;
    }
    .hh-header.is-scrolled .hh-mobile-actions { gap: 0; }
    .hh-header.is-scrolled .hh-mobile-actions .hh-icon-link {
        width: 0;
        overflow: hidden;
        visibility: hidden;
        opacity: 0;
        transform: translateX(10px);
        pointer-events: none;
        transition: width .2s ease, opacity .12s ease, transform .2s ease, visibility 0s linear .2s;
    }
    .hh-header .hh-logo { transition: font-size .2s ease; }
    .hh-header.is-scrolled .hh-logo { font-size: 28px; }
    .hh-menu-button { display: block; }
    .hh-mobile-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        max-height: 0;
        padding: 0 16px;
        overflow: hidden;
        background: rgba(255, 255, 255, .99);
        border-radius: 0 0 22px 22px;
        box-shadow: none;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: max-height .28s ease, padding .28s ease, opacity .18s ease, transform .24s ease, box-shadow .2s ease;
    }
    .hh-mobile-nav.is-open {
        max-height: 380px;
        padding: 14px 16px 18px;
        box-shadow: 0 18px 34px rgba(16, 27, 23, .11);
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .hh-mobile-nav a {
        min-height: 60px;
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 11px 12px;
        color: var(--hh-ink);
        background: transparent;
        border: 0;
        border-radius: 14px;
        box-shadow: inset 0 0 0 1px #dfe7e3;
        font-size: 15px;
        font-weight: 650;
        line-height: 1.25;
        transition: color .18s ease, background .18s ease, transform .18s ease;
    }
    .hh-mobile-nav a:first-child {
        grid-column: 1 / -1;
        min-height: 64px;
        background: #eef5f2;
        box-shadow: inset 0 0 0 1px rgba(31, 91, 75, .07);
    }
    .hh-mobile-nav a::after {
        content: "";
        width: 7px;
        height: 7px;
        flex: 0 0 auto;
        margin-left: auto;
        border-top: 1.5px solid currentColor;
        border-right: 1.5px solid currentColor;
        opacity: .5;
        transform: rotate(45deg);
    }
    .hh-mobile-nav a:active { transform: scale(.985); }
    .hh-mobile-nav__account {
        grid-column: 1 / -1;
        padding-top: 10px;
        border-top: 1px solid #e7ece9;
    }
    .hh-mobile-nav__account a,
    .hh-mobile-nav__account a:first-child {
        min-height: 50px;
        padding: 8px 12px;
        color: #34413c;
        background: #fff;
        box-shadow: inset 0 0 0 1px #dfe7e3;
        font-size: 14px;
        font-weight: 550;
    }
    .hh-mobile-nav__account .hh-mobile-nav__icon { color: #346555; }
    .hh-mobile-nav__icon {
        width: 26px;
        height: 36px;
        flex: 0 0 26px;
        display: grid;
        place-items: center;
        color: var(--hh-green);
        background: transparent;
        border: 0;
        border-radius: 0;
    }
    .hh-mobile-nav__icon svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
    .hh-campaign { padding-top: 18px; }
    .hh-campaign__rail { gap: 14px; padding-inline: 0; }
    .hh-campaign-card { flex-basis: calc((100vw - 54px) / 2); }
    .hh-section { padding: 92px 0; }
    .hh-concern-grid { grid-template-columns: repeat(2, 1fr); }
    .hh-product-grid { grid-template-columns: repeat(2, 1fr); row-gap: 46px; }
    .hh-video-layout { grid-template-columns: 1fr; }
    .hh-video-list { display: grid; grid-template-columns: repeat(2, 1fr); }
    .hh-video-item { min-height: 112px; }
    .hh-column-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hh-column-card--feature { grid-column: 1 / -1; display: grid; grid-template-columns: 1.08fr 1fr; }
    .hh-column-card--feature .hh-column-card__visual { height: 100%; min-height: 370px; }
    .hh-short-rail { gap: 14px; }
    .hh-community__part--curated { margin-top: 80px; }
    .hh-curated-rail { grid-template-columns: 1fr; }
    .hh-curated-card { min-height: 250px; }
    .hh-trust__grid { grid-template-columns: repeat(3, 1fr); }
    .hh-trust__intro { grid-column: 1 / -1; padding: 0 0 52px; }
    .hh-trust__item:first-of-type { border-left: 0; padding-left: 0; }
    .hh-story-layout { grid-template-columns: 1fr; }
    .hh-note-grid { grid-template-columns: repeat(2, 1fr); }
    .hh-note-card--feature { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr; }
    .hh-note-card--feature .hh-note-card__art { height: 100%; min-height: 340px; }
    .hh-brand { min-height: 0; grid-template-columns: 1fr; }
    .hh-brand__image { min-height: 560px; }
    .hh-brand__copy { padding: 80px 40px; }
    .hh-footer__top { grid-template-columns: 1.7fr repeat(3, 1fr); }
    .hh-footer__contact { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, .16); }
}

@media (max-width: 620px) {
    :root { --hh-shell: calc(100% - 32px); }
    body.hh-page { font-size: 16px; }
    .hh-notice { height: 34px; font-size: 12px; }
    .hh-notice__inner { justify-content: flex-start; gap: 5px; overflow: hidden; white-space: nowrap; }
    .hh-notice__inner > span { display: none; }
    .hh-notice__inner a { margin-left: auto; }
    .hh-mobile-actions { gap: 13px; }
    .hh-header .hh-logo { font-size: 27px; }
    .hh-header.is-scrolled .hh-logo { font-size: 24px; }
    .hh-header.is-scrolled .hh-mobile-actions { gap: 0; }
    .hh-header .hh-logo img { width: 139px; }
    .hh-campaign { padding: 12px 0 16px; }
    .hh-campaign__rail { gap: 12px; padding-inline: 0; }
    .hh-campaign__rail.is-native-loop {
        padding-inline: 24px;
        scroll-padding-inline: 24px;
    }
    .hh-campaign-card { flex-basis: calc(100vw - 48px); border-radius: 16px; }
    .hh-campaign-card__content { padding: 30px 23px; }
    .hh-campaign-card__kicker { margin-bottom: 8px; font-size: 12px; }
    .hh-campaign-card__content > strong { font-size: 25px; }
    .hh-campaign-card__description { font-size: 14px; }
    .hh-campaign__controls { margin-top: 13px; }
    .hh-quick {
        padding: 24px 0 0;
        overflow: hidden;
    }
    .hh-quick::before,
    .hh-quick::after {
        content: '';
        position: absolute;
        z-index: 2;
        top: 24px;
        width: 30px;
        height: 50px;
        pointer-events: none;
        opacity: 0;
        transition: opacity .18s ease;
    }
    .hh-quick::before {
        left: 0;
        background: linear-gradient(90deg, #fff 10%, rgba(255, 255, 255, 0));
    }
    .hh-quick::after {
        right: 0;
        background: linear-gradient(270deg, #fff 10%, rgba(255, 255, 255, 0));
    }
    .hh-quick.has-left-overflow::before,
    .hh-quick.has-right-overflow::after { opacity: 1; }
    .hh-quick__list {
        width: 100%;
        min-width: 0;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        padding: 0 16px 8px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        cursor: grab;
        user-select: none;
    }
    .hh-quick__list.is-dragging { cursor: grabbing; }
    .hh-quick__list.is-dragging .hh-quick-chip { pointer-events: none; transform: none; }
    .hh-quick__list::-webkit-scrollbar { display: none; }
    .hh-quick-chip {
        min-height: 50px;
        gap: 8px;
        padding: 5px 12px 5px 5px;
        font-size: 13.5px;
    }
    .hh-quick-chip__icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
    .hh-quick-chip__icon svg { width: 19px; height: 19px; }
    .hh-button { min-width: 218px; height: 54px; }
    .hh-section { padding: 76px 0; }
    .hh-section-heading { display: block; margin-bottom: 32px; }
    .hh-section-heading h2,
    .hh-trust h2,
    .hh-brand h2 { font-size: 35px; }
    .hh-section-heading > p { margin-top: 14px; font-size: 15px; }
    .hh-section-heading .hh-section-heading__note { margin-top: 11px; font-size: 14px; }
    .hh-section-heading > .hh-text-link { margin-top: 16px; }
    .hh-concern-grid { gap: 9px; }
    .hh-concern-card { min-height: 270px; padding: 22px 17px 20px; }
    .hh-concern-card__icon { width: 55px; height: 55px; font-size: 29px; }
    .hh-concern-card__index { top: 19px; right: 15px; font-size: 9px; }
    .hh-concern-card h3 { margin-top: 20px; font-size: 22px; }
    .hh-concern-card p { font-size: 14px; }
    .hh-concern-card .hh-text-link { font-size: 12px; }
    .hh-product-grid { gap: 35px 12px; }
    .hh-product-card__image > a { padding: 10px; }
    .hh-product-card__image img { max-height: 185px; }
    .hh-product-card__body { padding-top: 14px; }
    .hh-product-card__body > p { font-size: 12px; }
    .hh-product-card__body h3 { min-height: 49px; font-size: 17px; }
    .hh-product-card__price { min-height: 50px; gap: 4px 6px; margin-top: 8px; }
    .hh-product-card__price span { font-size: 19px; }
    .hh-product-card__price del { width: 100%; }
    .hh-product-card__meta { min-height: 16px; font-size: 10px; }
    .hh-product-card__meta span + span::before { margin: 0 5px; }
    .hh-video { padding-top: 58px; }
    .hh-video + .hh-concerns { padding-top: 14px; }
    .hh-video-stage { padding: 32px 20px; }
    .hh-video-stage__play { width: 62px; height: 62px; margin-bottom: 19px; }
    .hh-video-stage__play svg { width: 25px; height: 25px; }
    .hh-video-stage > strong { font-size: 22px; }
    .hh-video-stage > span:last-child { margin-top: 9px; font-size: 11px; }
    .hh-video-list { grid-template-columns: 1fr; }
    .hh-video-item {
        min-height: 86px;
        grid-template-columns: 24px minmax(0, 1fr) 28px;
        padding: 15px 13px 15px 15px;
    }
    .hh-video-item__copy small { margin-bottom: 5px; }
    .hh-video-item__copy strong { font-size: 14px; }
    .hh-column-grid { align-items: stretch; }
    .hh-column-card--feature { grid-column: auto; display: flex; }
    .hh-column-card__visual,
    .hh-column-card--feature .hh-column-card__visual { height: 225px; min-height: 0; }
    .hh-column-card--feature .hh-column-card__visual { height: 255px; }
    .hh-column-card__visual { padding: 22px; }
    .hh-column-card__visual > i { top: 19px; left: 22px; }
    .hh-column-card__body { padding: 23px 21px 25px; }
    .hh-column-card__body h3,
    .hh-column-card--feature .hh-column-card__body h3 { font-size: 21px; }
    .hh-column-card__body p { font-size: 13px; }
    .hh-community__part { padding-top: 25px; }
    .hh-community__part--curated { margin-top: 68px; }
    .hh-community__part-heading { display: block; margin-bottom: 23px; }
    .hh-community__part-heading h3 { font-size: 23px; }
    .hh-community__part-heading > p { margin-top: 8px; font-size: 12px; }
    .hh-drag-region::before,
    .hh-drag-region::after {
        content: "";
        position: absolute;
        z-index: 3;
        top: 0;
        bottom: 8px;
        width: 34px;
        pointer-events: none;
        opacity: 0;
        transition: opacity .18s ease;
    }
    .hh-drag-region::before { left: -16px; background: linear-gradient(90deg, #f5f3ee 12%, rgba(245, 243, 238, 0)); }
    .hh-drag-region::after { right: -16px; background: linear-gradient(270deg, #f5f3ee 12%, rgba(245, 243, 238, 0)); }
    .hh-drag-region.has-left-overflow::before,
    .hh-drag-region.has-right-overflow::after { opacity: 1; }
    .hh-product-grid,
    .hh-column-grid,
    .hh-short-rail,
    .hh-curated-rail {
        width: calc(100% + 32px);
        display: flex;
        justify-content: flex-start;
        gap: 12px;
        margin-inline: -16px;
        padding: 0 16px 8px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        scroll-snap-type: none;
        user-select: none;
    }
    .hh-product-grid,
    .hh-column-grid,
    .hh-short-rail,
    .hh-curated-rail { touch-action: pan-y; }
    .hh-column-grid:not(.is-native-loop),
    .hh-short-rail:not(.is-native-loop),
    .hh-curated-rail:not(.is-native-loop) {
        width: max-content;
        overflow: visible;
        overscroll-behavior: auto;
        will-change: transform;
        backface-visibility: hidden;
    }
    [data-drag-rail].is-native-loop {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 16px;
        touch-action: pan-x pan-y;
        cursor: auto;
        will-change: auto;
        transform: none !important;
        -webkit-overflow-scrolling: touch;
    }
    [data-drag-rail].is-native-loop > * { scroll-snap-align: center; }
    [data-drag-rail].is-native-loop.is-rebasing { scroll-snap-type: none; }
    .hh-ring-region { overflow: hidden; }
    .hh-ring-region [data-drag-rail] > *,
    .hh-ring-region [data-drag-rail] img {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    .hh-ring-region [data-loop-clone] { pointer-events: none; }
    .hh-product-grid::-webkit-scrollbar,
    .hh-column-grid::-webkit-scrollbar,
    .hh-short-rail::-webkit-scrollbar,
    .hh-curated-rail::-webkit-scrollbar { display: none; }
    .hh-drag-region.is-scrollable [data-drag-rail] { cursor: grab; }
    [data-drag-rail].is-dragging { cursor: grabbing !important; }
    [data-drag-rail].is-dragging,
    [data-drag-rail].is-settling { scroll-snap-type: none; }
    [data-drag-rail].is-dragging a { pointer-events: none; }
    .hh-product-drag-region.is-scrollable [data-product-rail] { cursor: grab; }
    [data-product-rail].is-dragging { cursor: grabbing !important; }
    [data-product-rail].is-dragging,
    [data-product-rail].is-settling { scroll-snap-type: none; }
    [data-product-rail].is-dragging a,
    [data-product-rail].is-dragging button { pointer-events: none; }
    .hh-products .hh-drag-region::before { background: linear-gradient(90deg, #fff 12%, rgba(255, 255, 255, 0)); }
    .hh-products .hh-drag-region::after { background: linear-gradient(270deg, #fff 12%, rgba(255, 255, 255, 0)); }
    .hh-product-card { flex: 0 0 min(300px, calc(100vw - 54px)); scroll-snap-align: start; }
    .hh-column-card { flex: 0 0 300px; scroll-snap-align: start; }
    .hh-column-card__visual,
    .hh-column-card--feature .hh-column-card__visual { height: 225px; }
    .hh-short-card { flex: 0 0 232px; scroll-snap-align: start; }
    .hh-short-card > strong { font-size: 16px; }
    .hh-curated-card { flex: 0 0 316px; min-height: 228px; grid-template-columns: 125px 1fr; scroll-snap-align: start; }
    .hh-curated-card__body { padding: 20px 17px 18px; }
    .hh-curated-card__body > strong { font-size: 16px; }
    .hh-curated-card__body > span { font-size: 12px; -webkit-line-clamp: 3; }
    .hh-trust { padding: 76px 0; }
    .hh-trust__grid { grid-template-columns: 1fr; }
    .hh-trust__item,
    .hh-trust__item:first-of-type { min-height: 0; display: grid; grid-template-columns: 64px 1fr; padding: 28px 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .3); }
    .hh-trust__item > span { top: 30px; right: 0; }
    .hh-trust__item svg { grid-row: 1 / 3; width: 44px; height: 44px; margin: 0; }
    .hh-trust__item h3 { margin: 0 35px 6px 0; font-size: 19px; }
    .hh-trust__item p { margin: 0; font-size: 14px; }
    .hh-ugc-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 305px 170px; }
    .hh-ugc-card:first-child { grid-column: 1 / -1; grid-row: auto; }
    .hh-story-layout { gap: 42px; }
    .hh-note-grid { grid-template-columns: 1fr; }
    .hh-note-card--feature { grid-column: auto; display: block; }
    .hh-note-card--feature .hh-note-card__art { height: 265px; min-height: 0; }
    .hh-note-card__art { height: 220px; }
    .hh-brand__image { min-height: 400px; padding: 22px 16px; }
    .hh-brand__copy { padding: 66px 24px; }
    .hh-brand__copy > p:not(.hh-eyebrow) { font-size: 15px; }
    .hh-brand__signature { margin-top: 39px; }
    .hh-footer { padding-top: 57px; }
    .hh-footer__top { grid-template-columns: 1fr 1fr; gap: 34px 25px; }
    .hh-footer__brand { grid-column: 1 / -1; }
    .hh-footer__links:nth-of-type(3) { display: none; }
    .hh-footer__contact { grid-column: 1 / -1; }
    .hh-newsletter { display: block; }
    .hh-newsletter form { width: 100%; margin-top: 22px; }
    .hh-footer__bottom { display: block; }
    .hh-footer__bottom p:last-child { margin-top: 18px; text-align: left; }
}

/* Color system v0.3 — white foundation, evergreen trust and category accents */
body.hh-page { color: var(--hh-ink); background: var(--hh-paper); }
.hh-notice { background: var(--hh-ink); }
.hh-notice__inner strong { color: var(--hh-yellow); }
.hh-header { background: rgba(255, 255, 255, .985); }
.hh-search { background: #fff; border-color: #dce1de; }
.hh-search:focus-within { border-color: var(--hh-green); box-shadow: 0 0 0 3px rgba(33, 77, 67, .1); }
.hh-utility { color: #616965; }
.hh-utility a:hover,
.hh-text-link:hover { color: var(--hh-purple); }
.hh-utility a + a::before,
.hh-category-trigger { border-color: var(--hh-line); }
.hh-nav a::after { background: var(--hh-green); }
.hh-cart > span { background: var(--hh-coral); border-color: var(--hh-paper); }

.hh-campaign { background: #fff; }
.hh-campaign-card { background: #f2f4f3; }
.hh-campaign__count span { color: #7b827e; }
.hh-campaign__progress { background: #d8dedb; }
.hh-campaign__progress > span { background: var(--hh-ink); }

.hh-quick { background: #fff; }
.hh-quick-chip { color: var(--hh-ink); background: #fff; border-color: #dfe4e1; }
.hh-quick-chip:hover { background: #f5f8f6; border-color: #aebdb7; }
.hh-quick-chip__icon { color: #244c43; }
.hh-quick-chip--member .hh-quick-chip__icon { background: #e9e4f1; }
.hh-quick-chip--coupon .hh-quick-chip__icon { background: #f5e0da; }
.hh-quick-chip--event .hh-quick-chip__icon { background: #f8edc8; }
.hh-quick-chip--bulk .hh-quick-chip__icon { background: #dfece7; }
.hh-quick-chip--night .hh-quick-chip__icon { background: #e7e3f0; }
.hh-quick-chip--meal .hh-quick-chip__icon { background: #f5e4d4; }
.hh-quick-chip--balance .hh-quick-chip__icon { background: #dcebe5; }

.hh-products { background: var(--hh-paper); }
.hh-product-card__image { background: #f6f4f0; }
.hh-product-card__body > p { color: var(--hh-green); }
.hh-product-card__price strong { color: var(--hh-coral); }
.hh-product-card__price del { color: #858c88; }
.hh-product-card__meta { color: #59615d; }
.hh-product-card__meta span:first-child { color: inherit; }
.hh-product-card__rating-star { color: var(--hh-yellow); }
.hh-product-card__meta span + span::before { color: #a7afab; }

.hh-button--dark { background: var(--hh-green); border-color: var(--hh-green); }
.hh-button--dark:hover { background: #173b33; border-color: #173b33; }

.hh-video { background: #f3f6f4; }
.hh-video-stage {
    background:
        radial-gradient(circle at 78% 20%, rgba(117, 100, 154, .25), transparent 34%),
        radial-gradient(circle at 18% 88%, rgba(79, 139, 125, .28), transparent 40%),
        linear-gradient(135deg, #14201c 0%, #20372f 100%);
}
.hh-video-list { border-color: #d6dfdb; }
.hh-video-item { color: var(--hh-ink); background: #fff; border-color: #dbe2df; }
.hh-video-item:hover,
.hh-video-item.is-active { background: #f6faf8; }
.hh-video-item.is-active { border-left-color: var(--hh-green); }
.hh-video-item__number { color: #77817c; }
.hh-video-item__play { border-color: #ced8d3; }

.hh-columns { background: var(--hh-paper); }
.hh-column-card { background: #fbfcfb; border-color: #e0e5e2; }
.hh-column-card__visual--sleep { color: #f1edf7; background: linear-gradient(145deg, #2d283a, #75649a); }
.hh-column-card__visual--meal { color: #4d3b18; background: #ead49b; }
.hh-column-card__visual--daily { color: #173f35; background: #c9dfd6; }
.hh-column-card__body > span { color: var(--hh-green); }
.hh-column-card__body p { color: #606965; }

.hh-community { background: #f7f3ec; border-color: #e5dfd6; }
.hh-community__part { border-color: #dcd5ca; }
.hh-community__part-heading div > span,
.hh-curated-card__body small { color: var(--hh-green); }
.hh-community__part-heading > p,
.hh-curated-card__body > span { color: #656b68; }
.hh-curated-card { background: #fff; border-color: #e1ddd5; }

.hh-brand { background: #173b33; }
.hh-brand__image { background: #4f6b63; }
.hh-brand__image::before { border-color: rgba(255, 253, 249, .23); }
.hh-brand__image img { box-shadow: 0 24px 65px rgba(10, 35, 29, .32); }
.hh-brand__copy .hh-eyebrow { color: var(--hh-yellow); }
.hh-brand__copy > p:not(.hh-eyebrow) { color: rgba(255, 253, 249, .73); }
.hh-button--line { border-color: #fffdf9; color: #fffdf9 !important; }
.hh-button--line:hover { color: var(--hh-ink) !important; background: var(--hh-yellow); border-color: var(--hh-yellow); }
.hh-brand__signature { color: #c9dfd6; }

.hh-footer { background: #151513; }
.hh-footer__links a:hover,
.hh-newsletter button { color: var(--hh-yellow); }

@media (max-width: 620px) {
    .hh-quick::before { background: linear-gradient(90deg, #fff 10%, rgba(255, 255, 255, 0)); }
    .hh-quick::after { background: linear-gradient(270deg, #fff 10%, rgba(255, 255, 255, 0)); }
    .hh-products .hh-drag-region::before { background: linear-gradient(90deg, #fff 12%, rgba(255, 255, 255, 0)); }
    .hh-products .hh-drag-region::after { background: linear-gradient(270deg, #fff 12%, rgba(255, 255, 255, 0)); }
    .hh-columns .hh-drag-region::before { background: linear-gradient(90deg, #fff 12%, rgba(255, 255, 255, 0)); }
    .hh-columns .hh-drag-region::after { background: linear-gradient(270deg, #fff 12%, rgba(255, 255, 255, 0)); }
    .hh-community .hh-drag-region::before { background: linear-gradient(90deg, #f7f3ec 12%, rgba(247, 243, 236, 0)); }
    .hh-community .hh-drag-region::after { background: linear-gradient(270deg, #f7f3ec 12%, rgba(247, 243, 236, 0)); }
}

/* Typography hierarchy v0.1 — one clear emphasis level per content role */
body.hh-page {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: -.012em;
}

/* Utility and navigation */
.hh-notice { font-size: 14px; font-weight: 500; }
.hh-notice__inner strong,
.hh-notice__inner a { font-weight: 700; }
.hh-search input { font-size: 15px; font-weight: 500; letter-spacing: -.01em; }
.hh-utility { font-size: 13px; font-weight: 400; }
.hh-category-trigger,
.hh-nav a { font-size: 17px; font-weight: 500; letter-spacing: -.01em; }
.hh-quick-chip { font-size: 15px; font-weight: 500; letter-spacing: -.01em; }
.hh-button { font-size: 15px; font-weight: 600; }

/* Shared hierarchy */
.hh-eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
}
.hh-section-heading h2,
.hh-brand h2 {
    font-size: clamp(42px, 3.25vw, 48px);
    line-height: 1.22;
    letter-spacing: -.035em;
    font-weight: 700;
}
.hh-section-heading > p { font-size: 17px; font-weight: 450; line-height: 1.65; }
.hh-section-heading .hh-section-heading__note { font-size: 16px; font-weight: 450; line-height: 1.7; letter-spacing: -.01em; }
.hh-text-link { font-size: 15px; font-weight: 600; }

/* Campaign */
/* Honor editor-entered line breaks while retaining responsive word wrapping. */
.hh-campaign-card__content > strong,
.hh-campaign-card__description { white-space: pre-line; }
.hh-campaign-card__kicker { font-size: 13px; font-weight: 500; letter-spacing: -.005em; }
.hh-campaign-card__content > strong { font-size: clamp(26px, 2vw, 32px); line-height: 1.25; letter-spacing: -.02em; font-weight: 600; }
.hh-campaign-card__description { font-size: 15px; line-height: 1.6; font-weight: 400; letter-spacing: -.005em; }
.hh-campaign__count { font-size: 13px; font-weight: 500; }
.hh-campaign__count strong { font-weight: 700; }

/* Product shelf */
.hh-product-card__rank { font-size: 11px; font-weight: 700; }
.hh-product-card__soldout { font-size: 12px; font-weight: 600; }
.hh-product-card__body > p { font-size: 13px; font-weight: 600; letter-spacing: -.005em; }
.hh-product-card__body h3 { font-size: 20px; line-height: 1.45; letter-spacing: -.02em; font-weight: 600; }
.hh-product-card__price strong { font-size: 18px; font-weight: 700; }
.hh-product-card__price span { font-size: 23px; font-weight: 700; letter-spacing: -.02em; }
.hh-product-card__price del { font-size: 13px; font-weight: 400; }
.hh-product-card__meta { font-size: 13px; font-weight: 560; }

/* Long-form video */
.hh-video-stage > p { font-size: 11px; font-weight: 700; }
.hh-video-stage > strong { font-size: clamp(26px, 2.15vw, 31px); line-height: 1.35; letter-spacing: -.025em; font-weight: 600; }
.hh-video-stage > span:last-child { font-size: 13px; font-weight: 400; }
.hh-video-item__number { font-size: 10px; font-weight: 600; }
.hh-video-item__copy small { font-size: 10px; font-weight: 700; }
.hh-video-item__copy strong { font-size: 16px; line-height: 1.5; letter-spacing: -.015em; font-weight: 600; }

/* Columns */
.hh-column-card__visual > span { font-weight: 700; }
.hh-column-card__visual > i,
.hh-column-card__body > span { font-weight: 700; }
.hh-column-card__body h3 { font-size: 22px; line-height: 1.45; letter-spacing: -.025em; font-weight: 600; }
.hh-column-card--feature .hh-column-card__body h3 { font-size: 28px; font-weight: 650; }
.hh-column-card__body p { font-size: 14px; font-weight: 450; line-height: 1.7; }
.hh-column-card__body strong { font-size: 13px; font-weight: 600; }

/* Curated community content */
.hh-community__part-heading div > span { font-size: 10px; font-weight: 700; }
.hh-community__part-heading h3 { font-size: 28px; line-height: 1.38; letter-spacing: -.025em; font-weight: 650; }
.hh-community__part-heading > p { font-size: 13px; font-weight: 450; }
.hh-short-card__platform { font-size: 9px; font-weight: 700; }
.hh-short-card > strong { font-size: 17px; line-height: 1.5; letter-spacing: -.015em; font-weight: 600; }
.hh-short-card > small { font-size: 9px; font-weight: 600; }
.hh-curated-card__body small { font-size: 9px; font-weight: 700; }
.hh-curated-card__body > strong { font-size: 18px; line-height: 1.5; letter-spacing: -.02em; font-weight: 600; }
.hh-curated-card__body > span { font-size: 13px; font-weight: 450; line-height: 1.65; }
.hh-curated-card__body > b { font-size: 12px; font-weight: 600; }

/* Brand and footer */
.hh-brand__copy > p:not(.hh-eyebrow) { font-size: 17px; font-weight: 450; line-height: 1.78; }
.hh-footer { font-size: 13px; font-weight: 400; }
.hh-footer__brand p { font-weight: 450; }
.hh-footer__links strong { font-size: 12px; font-weight: 700; }
.hh-footer__contact strong { font-size: 24px; font-weight: 700; }
.hh-newsletter strong { font-size: 17px; font-weight: 600; }
.hh-newsletter button { font-size: 12px; font-weight: 600; }

@media (max-width: 920px) {
    .hh-mobile-nav a { font-size: 16px; font-weight: 500; }
}

@media (max-width: 620px) {
    body.hh-page { font-size: 16px; }
    .hh-notice { font-size: 12px; }
    .hh-campaign-card__kicker { font-size: 12px; }
    .hh-campaign-card__content > strong { font-size: 25px; }
    .hh-campaign-card__description { font-size: 14px; }
    .hh-quick-chip { font-size: 13.5px; font-weight: 500; }
    .hh-section-heading h2,
    .hh-brand h2 { font-size: 32px; line-height: 1.25; letter-spacing: -.035em; font-weight: 700; }
    .hh-section-heading > p { font-size: 15px; }
    .hh-section-heading .hh-section-heading__note { font-size: 14px; }
    .hh-product-card__body > p { font-size: 12px; }
    .hh-product-card__body h3 { min-height: 74px; font-size: 17px; line-height: 1.45; font-weight: 600; }
    .hh-product-card__price span { font-size: 19px; }
    .hh-product-card__meta { font-size: 12px; font-weight: 550; }
    .hh-video-stage > strong { font-size: 22px; }
    .hh-video-item__copy strong { font-size: 14px; }
    .hh-column-card__body h3,
    .hh-column-card--feature .hh-column-card__body h3 { font-size: 20px; line-height: 1.45; font-weight: 600; }
    .hh-column-card__body p { font-size: 13px; }
    .hh-community__part-heading h3 { font-size: 23px; font-weight: 650; }
    .hh-community__part-heading > p { font-size: 12px; }
    .hh-short-card > strong { font-size: 16px; }
    .hh-curated-card__body > strong { font-size: 16px; }
    .hh-curated-card__body > span { font-size: 12px; }
    .hh-brand__copy > p:not(.hh-eyebrow) { font-size: 15px; }
}

/* Social journal v2 — one editorial blog story at a time, then a restrained photo feed */
.hh-social-journal { margin-top: 34px; }
.hh-social-journal + .hh-social-journal { margin-top: 72px; padding-top: 48px; border-top: 1px solid #d8d2c8; }
.hh-social-journal__heading { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 21px; }
.hh-social-journal__identity { min-width: 0; display: flex; align-items: center; gap: 14px; }
.hh-social-journal__identity > span:last-child { min-width: 0; display: flex; flex-direction: column; }
.hh-social-journal__identity strong { color: #202522; font-size: 17px; line-height: 1.35; letter-spacing: -.02em; font-weight: 650; }
.hh-social-journal__identity small { margin-top: 3px; color: #737974; font-size: 12px; line-height: 1.45; font-weight: 450; }
.hh-social-journal__mark { flex: 0 0 auto; display: grid; place-items: center; }
.hh-social-journal__mark--blog { min-width: 54px; height: 28px; padding: 0 10px; color: #fff; background: #1c6b50; border-radius: 999px; font-size: 9px; font-weight: 750; letter-spacing: .1em; }
.hh-social-journal__mark--instagram { width: 38px; height: 38px; color: #fff; background: linear-gradient(140deg, #6f3bd2 4%, #cf3b7a 45%, #f28b37 78%, #f8cb55); border-radius: 11px; }
.hh-social-journal__mark--instagram svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.65; }

.hh-blog-controls { flex: 0 0 auto; display: flex; gap: 7px; }
.hh-blog-controls button { width: 39px; height: 39px; display: grid; place-items: center; padding: 0; color: #27312c; background: rgba(255, 255, 255, .66); border: 1px solid #d5d1c8; border-radius: 50%; font-size: 18px; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease; }
.hh-blog-controls button:hover:not(:disabled) { color: #fff; background: var(--hh-green); border-color: var(--hh-green); }
.hh-blog-controls button:disabled { opacity: .3; cursor: default; }
.hh-blog-viewport { overflow-x: auto; padding: 2px 32px 20px; margin: 0 -32px -20px; scroll-padding-inline: 32px; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-inline: contain; }
.hh-blog-viewport::-webkit-scrollbar { display: none; }
.hh-blog-rail { display: flex; gap: 18px; }
.hh-blog-card { flex: 0 0 clamp(380px, 38vw, 460px); min-width: 0; min-height: 232px; display: grid; grid-template-columns: 42% 1fr; overflow: hidden; color: #222825 !important; background: #fff; border: 1px solid #dfdbd2; border-radius: 15px; scroll-snap-align: start; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.hh-blog-card:hover { transform: translateY(-3px); border-color: #cec8bd; box-shadow: 0 16px 38px rgba(25, 32, 29, .08); }
.hh-blog-card__image { min-width: 0; overflow: hidden; background: #e8e5dd; }
.hh-blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.hh-blog-card:hover .hh-blog-card__image img { transform: scale(1.025); }
.hh-blog-card__body { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; padding: 22px 21px 20px; }
.hh-blog-card__meta { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.hh-blog-card__meta small { color: var(--hh-green); font-size: 9px; font-weight: 750; letter-spacing: .12em; }
.hh-blog-card__meta i { color: #a39f97; font-size: 10px; font-style: normal; font-weight: 600; letter-spacing: .08em; }
.hh-blog-card__body > strong { margin-top: 18px; font-size: 17px; line-height: 1.48; letter-spacing: -.025em; font-weight: 650; }
.hh-blog-card__body > span:not(.hh-blog-card__meta) { display: -webkit-box; overflow: hidden; margin-top: 9px; color: #666e69; font-size: 12px; line-height: 1.58; font-weight: 450; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.hh-blog-card__body > b { margin-top: auto; padding-top: 15px; color: #24332c; font-size: 11px; font-weight: 650; }
.hh-blog-card__body > b i { margin-left: 5px; font-style: normal; font-weight: 500; }

.hh-instagram-count { color: #8a8e8b; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.hh-instagram-grid { max-width: 840px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-inline: auto; }
.hh-instagram-grid--count-1 { max-width: 276px; grid-template-columns: minmax(0, 1fr); }
.hh-instagram-grid--count-2 { max-width: 564px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hh-instagram-post { min-width: 0; display: block; overflow: hidden; color: #202421 !important; background: #fff; border: 1px solid #ddd9d1; border-radius: 12px; box-shadow: 0 8px 24px rgba(25, 31, 28, .045); transition: transform .25s ease, box-shadow .25s ease; }
.hh-instagram-post:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(25, 31, 28, .08); }
.hh-instagram-post__header { height: 52px; display: flex; align-items: center; gap: 9px; padding: 0 13px; }
.hh-instagram-post__avatar { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, #2b735d, #174737); border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px #d9d5ce; font-family: Georgia, serif; font-size: 13px; font-weight: 700; }
.hh-instagram-post__account { min-width: 0; display: flex; flex: 1 1 auto; flex-direction: column; }
.hh-instagram-post__account strong { overflow: hidden; color: #262a28; font-size: 10px; line-height: 1.3; letter-spacing: .04em; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }
.hh-instagram-post__account small { margin-top: 1px; color: #858985; font-size: 9px; line-height: 1.3; font-weight: 450; }
.hh-instagram-post__icon { flex: 0 0 auto; width: 25px; height: 25px; display: grid; place-items: center; color: #343936; }
.hh-instagram-post__icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.55; }
.hh-instagram-post__media { display: block; aspect-ratio: 1; overflow: hidden; background: #dedbd4; }
.hh-instagram-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .35s ease; }
.hh-instagram-post:hover .hh-instagram-post__media img { transform: scale(1.02); filter: saturate(.96); }
.hh-instagram-post__footer { min-height: 82px; display: flex; flex-direction: column; align-items: flex-start; padding: 13px 14px 14px; border-top: 1px solid #eeeae4; }
.hh-instagram-post__caption { display: -webkit-box; overflow: hidden; color: #4f5652; font-size: 11px; line-height: 1.5; font-weight: 450; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.hh-instagram-post__caption b { margin-right: 4px; color: #222724; font-size: 10px; letter-spacing: .02em; font-weight: 750; }
.hh-instagram-post__footer small { margin-top: auto; padding-top: 8px; color: #777d79; font-size: 9px; font-weight: 600; }
.hh-instagram-post__footer small i { margin-left: 3px; font-style: normal; }
.hh-blog-card:focus-visible,
.hh-instagram-post:focus-visible,
.hh-blog-viewport:focus-visible { outline: 2px solid var(--hh-green); outline-offset: 3px; }

@media (max-width: 920px) {
    .hh-blog-card { flex-basis: min(440px, calc(100vw - 128px)); }
}

@media (max-width: 620px) {
    .hh-social-journal { margin-top: 28px; }
    .hh-social-journal + .hh-social-journal { margin-top: 48px; padding-top: 34px; }
    .hh-social-journal__heading { align-items: flex-start; gap: 16px; margin-bottom: 17px; }
    .hh-social-journal__identity { gap: 11px; }
    .hh-social-journal__identity strong { font-size: 15px; }
    .hh-social-journal__identity small { max-width: 235px; font-size: 11px; }
    .hh-social-journal__mark--blog { min-width: 48px; height: 25px; padding-inline: 8px; font-size: 8px; }
    .hh-social-journal__mark--instagram { width: 34px; height: 34px; border-radius: 10px; }
    .hh-social-journal__mark--instagram svg { width: 20px; height: 20px; }
    .hh-blog-controls { display: none; }
    .hh-blog-viewport { padding: 2px 20px 18px; margin: 0 -20px -18px; scroll-padding-inline: 20px; }
    .hh-blog-rail { gap: 12px; }
    .hh-blog-card { flex: 0 0 calc(100vw - 92px); min-height: 202px; grid-template-columns: 40% 1fr; border-radius: 12px; }
    .hh-blog-card__body { padding: 17px 15px 15px; }
    .hh-blog-card__body > strong { margin-top: 14px; font-size: 15px; line-height: 1.45; }
    .hh-blog-card__body > span:not(.hh-blog-card__meta) { margin-top: 7px; font-size: 11px; line-height: 1.52; -webkit-line-clamp: 2; }
    .hh-blog-card__body > b { padding-top: 10px; font-size: 10px; }
    .hh-instagram-count { display: none; }
    .hh-instagram-grid,
    .hh-instagram-grid--count-1,
    .hh-instagram-grid--count-2 { max-width: none; display: flex; gap: 10px; overflow-x: auto; margin-inline: -20px; padding: 1px 20px 17px; scroll-padding-inline: 20px; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .hh-instagram-grid::-webkit-scrollbar { display: none; }
    .hh-instagram-post { flex: 0 0 230px; border-radius: 10px; scroll-snap-align: start; }
    .hh-instagram-post__header { height: 46px; padding-inline: 11px; }
    .hh-instagram-post__avatar { width: 27px; height: 27px; font-size: 12px; }
    .hh-instagram-post__footer { min-height: 76px; padding: 11px 12px 12px; }
    .hh-instagram-post__caption { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
