:root {
    --hsg-green: #74b928;
    --hsg-green-dark: #5e9b1d;
    --hsg-grey: #595959;
    --hsg-charcoal: #202321;
    --hsg-ink: #151715;
    --hsg-muted: #6f756f;
    --hsg-light: #f3f5f1;
    --hsg-white: #ffffff;
    --hsg-purple: #7a1f86;
    --hsg-radius: 22px;
    --hsg-shadow: 0 24px 70px rgba(18, 25, 16, .14);
}

.hsg-clubshop {
    color: var(--hsg-ink);
    font-family: "Inter", Arial, sans-serif;
    background: var(--hsg-white);
}

.hsg-clubshop h1,
.hsg-clubshop h2,
.hsg-clubshop h3,
.hsg-clubshop strong {
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
}

.hsg-clubshop header {
    position: relative;
    z-index: 50;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 1px 0 rgba(22, 30, 20, .09);
}

.hsg-clubshop header img {
    max-height: 68px;
    width: auto;
}

.hsg-clubshop .primary-button,
.hsg-clubshop button.primary-button {
    border-color: var(--hsg-green) !important;
    background: var(--hsg-green) !important;
}

.hsg-clubshop .primary-button:hover,
.hsg-clubshop button.primary-button:hover {
    border-color: var(--hsg-green-dark) !important;
    background: var(--hsg-green-dark) !important;
}

.hsg-shell {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.hsg-eyebrow,
.hsg-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--hsg-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.hsg-eyebrow::before,
.hsg-kicker::before {
    width: 30px;
    height: 3px;
    content: "";
    border-radius: 99px;
    background: currentColor;
}

.hsg-hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(13, 15, 13, .98) 0%, rgba(13, 15, 13, .87) 40%, rgba(13, 15, 13, .18) 76%),
        url("../images/hsg-hero.webp") center 42% / cover no-repeat;
}

.hsg-hero__shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 84% 16%, rgba(116, 185, 40, .24), transparent 24%),
        linear-gradient(180deg, transparent 70%, rgba(10, 12, 10, .42));
}

.hsg-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: end;
    gap: 72px;
    min-height: 700px;
    padding: 85px 0 105px;
}

.hsg-hero__copy {
    max-width: 680px;
}

.hsg-hero__logo {
    display: block;
    width: min(390px, 70vw);
    max-height: 170px;
    margin: 25px 0 20px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .34));
}

.hsg-hero h1 {
    margin: 0;
    color: white;
    font-size: clamp(62px, 7.6vw, 112px);
    font-weight: 800;
    line-height: .78;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.hsg-hero h1 span {
    color: var(--hsg-green);
}

.hsg-hero__copy > p {
    max-width: 640px;
    margin: 31px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.7;
}

.hsg-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.hsg-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.hsg-button:hover {
    transform: translateY(-2px);
}

.hsg-button--primary {
    color: white;
    background: var(--hsg-green);
}

.hsg-button--primary:hover {
    background: var(--hsg-green-dark);
}

.hsg-button--ghost {
    color: white;
    border-color: rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
}

.hsg-button--ghost:hover {
    border-color: white;
    background: rgba(255, 255, 255, .16);
}

.hsg-button--dark {
    color: white;
    background: var(--hsg-charcoal);
}

.hsg-hero__panel {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--hsg-radius);
    color: white;
    background: rgba(25, 28, 24, .74);
    box-shadow: var(--hsg-shadow);
    backdrop-filter: blur(16px);
}

.hsg-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #d8f5b5;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hsg-status i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--hsg-green);
    box-shadow: 0 0 0 6px rgba(116, 185, 40, .15);
}

.hsg-hero__panel strong {
    display: block;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
}

.hsg-hero__panel p {
    margin: 17px 0 25px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.65;
}

.hsg-hero__operator {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
}

.hsg-hero__operator b {
    display: block;
    margin-top: 4px;
    color: white;
    font-size: 20px;
}

.hsg-hero__cut {
    position: absolute;
    right: -4%;
    bottom: -76px;
    left: -4%;
    height: 120px;
    transform: rotate(-2.2deg);
    background: white;
}

.hsg-intro {
    padding: 96px 0 68px;
}

.hsg-intro__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: end;
    gap: 80px;
}

.hsg-intro h2,
.hsg-section-head h2 {
    margin: 10px 0 0;
    color: var(--hsg-charcoal);
    font-size: clamp(44px, 5vw, 70px);
    font-weight: 800;
    line-height: .92;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.hsg-intro p {
    max-width: 680px;
    margin: 0;
    color: var(--hsg-muted);
    font-size: 18px;
    line-height: 1.8;
}

.hsg-categories {
    padding: 45px 0 105px;
}

.hsg-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

.hsg-section-head > a {
    color: var(--hsg-charcoal);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.hsg-section-head > a:hover {
    color: var(--hsg-green-dark);
}

.hsg-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.hsg-category {
    position: relative;
    display: flex;
    min-height: 210px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 25px;
    border: 1px solid #dde2da;
    border-radius: var(--hsg-radius);
    color: var(--hsg-charcoal);
    background: var(--hsg-light);
    text-decoration: none;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.hsg-category::after {
    position: absolute;
    right: -70px;
    bottom: -95px;
    width: 190px;
    height: 190px;
    content: "";
    border-radius: 50%;
    background: rgba(116, 185, 40, .12);
    transition: transform .3s ease;
}

.hsg-category:hover {
    transform: translateY(-5px);
    border-color: rgba(116, 185, 40, .7);
    box-shadow: 0 18px 40px rgba(22, 32, 18, .1);
}

.hsg-category:hover::after {
    transform: scale(1.25);
}

.hsg-category--large {
    grid-column: span 2;
    color: white;
    background:
        linear-gradient(115deg, rgba(31, 35, 31, .98), rgba(31, 35, 31, .72)),
        url("../images/hsg-hero.webp") center 44% / cover;
}

.hsg-category--green {
    color: white;
    border-color: var(--hsg-green);
    background: var(--hsg-green);
}

.hsg-category__number {
    position: relative;
    z-index: 2;
    color: currentColor;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 15px;
    font-weight: 800;
    opacity: .6;
}

.hsg-category div {
    position: relative;
    z-index: 2;
}

.hsg-category div span {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 700;
    opacity: .68;
}

.hsg-category strong {
    display: block;
    font-size: clamp(27px, 3vw, 42px);
    line-height: .95;
    text-transform: uppercase;
}

.hsg-category > i {
    position: absolute;
    right: 25px;
    bottom: 24px;
    z-index: 2;
    font-size: 28px;
    font-style: normal;
}

.hsg-process {
    padding: 100px 0;
    color: white;
    background:
        radial-gradient(circle at 10% 20%, rgba(116, 185, 40, .14), transparent 23%),
        var(--hsg-charcoal);
}

.hsg-section-head--light h2 {
    color: white;
}

.hsg-process__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 45px;
    background: rgba(255, 255, 255, .12);
}

.hsg-process article {
    min-height: 260px;
    padding: 36px;
    background: var(--hsg-charcoal);
}

.hsg-process article > span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: var(--hsg-green);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
}

.hsg-process h3 {
    margin: 52px 0 8px;
    font-size: 29px;
    text-transform: uppercase;
}

.hsg-process p {
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 14px;
    line-height: 1.65;
}

.hsg-customizations {
    padding: 15px 0 25px;
}

.hsg-customizations > * {
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
}

.hsg-closing {
    padding: 70px 0;
    background: var(--hsg-green);
}

.hsg-closing__inner {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 40px;
}

.hsg-closing img {
    width: 180px;
    max-height: 105px;
    object-fit: contain;
    object-position: left center;
}

.hsg-closing span {
    display: block;
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hsg-closing strong {
    display: block;
    color: white;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    text-transform: uppercase;
}

.hsg-clubshop footer {
    border-top: 0 !important;
    background: #171917 !important;
}

.hsg-clubshop footer,
.hsg-clubshop footer a,
.hsg-clubshop footer p,
.hsg-clubshop footer span {
    color: rgba(255, 255, 255, .72);
}

@media (max-width: 980px) {
    .hsg-hero__content {
        grid-template-columns: 1fr;
        align-items: center;
        gap: 35px;
        padding-top: 70px;
    }

    .hsg-hero__panel {
        max-width: 440px;
    }

    .hsg-intro__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .hsg-category--large {
        grid-column: span 2;
    }

    .hsg-closing__inner {
        grid-template-columns: 130px 1fr;
    }

    .hsg-closing__inner .hsg-button {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .hsg-shell {
        width: min(100% - 28px, 1240px);
    }

    .hsg-clubshop header img {
        max-height: 48px;
    }

    .hsg-hero {
        min-height: auto;
        background-position: 62% center;
    }

    .hsg-hero__content {
        min-height: 760px;
        padding: 65px 0 72px;
    }

    .hsg-hero__copy {
        padding-top: 85px;
    }

    .hsg-hero h1 {
        font-size: clamp(53px, 17vw, 78px);
    }

    .hsg-hero__copy > p {
        font-size: 15px;
        line-height: 1.65;
    }

    .hsg-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hsg-button {
        width: 100%;
    }

    .hsg-hero__panel {
        padding: 23px;
    }

    .hsg-intro {
        padding-top: 74px;
    }

    .hsg-intro p {
        font-size: 16px;
    }

    .hsg-section-head {
        align-items: start;
        flex-direction: column;
    }

    .hsg-category-grid {
        grid-template-columns: 1fr;
    }

    .hsg-category--large {
        grid-column: auto;
    }

    .hsg-category {
        min-height: 185px;
    }

    .hsg-process {
        padding: 75px 0;
    }

    .hsg-process__grid {
        grid-template-columns: 1fr;
    }

    .hsg-process article {
        min-height: auto;
    }

    .hsg-process h3 {
        margin-top: 28px;
    }

    .hsg-closing__inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hsg-closing img {
        width: 150px;
    }
}
