

/* Start:/local/templates/immunohealth/style.css?178480873010421*/
/* ===== Gilroy (same font files the live site uses) ===== */
@font-face {
    font-family: 'Gilroy';
    src: url('/local/templates/immunohealth/assets/fonts/Gilroy-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('/local/templates/immunohealth/assets/fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('/local/templates/immunohealth/assets/fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('/local/templates/immunohealth/assets/fonts/Gilroy-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url('/local/templates/immunohealth/assets/fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== Reset / base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green: #90b104;
    --red: #d76163;
    --teal: #009289;
    --overlay: rgba(0, 0, 0, 0.25);
    --font: 'Gilroy', Arial, sans-serif;
}

html {
    -webkit-font-smoothing: antialiased;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: #04040d;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

sup {
    font-size: 0.5em;
    vertical-align: super;
}

/* ===== Hero section (full-bleed) ===== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-image:
        linear-gradient(var(--overlay), var(--overlay)),
        url('/local/templates/immunohealth/assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* ===== Content container (max content-lane 1640px) ===== */
.container {
    position: relative;
    max-width: 1680px;                 /* 1640 content + 2×20 side padding */
    margin: 0 auto;
    padding: clamp(28px, 2.9vw, 53px) 20px clamp(24px, 1.8vw, 32px);
    min-height: clamp(560px, 63vw, 1180px);
    display: flex;
    flex-direction: column;
}

/* ============================================================
   HEADER
   ============================================================ */
.hero__header {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.7vw, 50px);
    min-height: 56px;
}

/* Logo (real ImmunoHealth lockup) */
.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo__img {
    height: clamp(36px, 2.9vw, 48px);
    width: auto;
}

.nav {
    flex: 1;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.7vw, 50px);
}

.nav__link {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
    color: #fff;
    white-space: nowrap;
    transition: color 0.2s;
}

.nav__link:hover {
    color: var(--green);
}

.phone {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.55;
    color: #fff;
    white-space: nowrap;
}

/* Burger — plain white square with two black bars (mobile only) */
.burger {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: transform 0.2s;
}

.burger:hover {
    transform: translateY(-1px);
}

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #000;
    transition: transform 0.3s, opacity 0.2s;
}

.burger.is-open span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* ============================================================
   BODY
   ============================================================ */
.hero__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero__title {
    font-size: clamp(30px, 6.1vw, 100px);
    line-height: 1.0;
    font-weight: 600;
    color: #fff;
    max-width: 1640px;
    margin-top: clamp(44px, 7.6vw, 125px);
    margin-bottom: clamp(34px, 4.7vw, 78px);
}

.hero__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex: 1;
}

/* ----- Diseases list ----- */
.diseases {
    display: flex;
    gap: clamp(40px, 5.5vw, 100px);
}

.diseases__col li {
    position: relative;
    padding-left: 26px;
    font-size: clamp(17px, 1.45vw, 24px);
    line-height: 1.375;   /* 33px @ 24px — matches the live 33px row rhythm */
    font-weight: 400;
    color: #fff;
}

.diseases__col li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #fff;
}

.diseases__more {
    margin-top: 6px;
}

.diseases__more::before {
    content: none;
}

.diseases__more a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-weight: 400;
    line-height: 1.55;
    transition: gap 0.2s;
}

.diseases__more a img {
    width: 22px;
    height: 22px;
}

.diseases__more a:hover {
    gap: 14px;
}

/* ----- Quote ----- */
.quote {
    position: relative;
    flex-shrink: 0;
    padding: 8px 46px;
    max-width: 620px;
    white-space: nowrap;
}

.quote__text {
    font-size: clamp(24px, 2.75vw, 42px);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
}

.quote__mark {
    position: absolute;
    width: 36px;
    height: 36px;
}

.quote__mark--open {
    top: -4px;
    left: 0;
}

.quote__mark--close {
    bottom: -2px;
    right: 6px;
}

/* ============================================================
   ACTION BUTTONS — white pill with coloured pill peeking below
   ============================================================ */
.actions {
    display: flex;
    gap: clamp(20px, 4.3vw, 70px);
    margin-top: clamp(48px, 7vw, 130px);
}

.action-btn {
    --pill-h: clamp(64px, 5.5vw, 100px);
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(var(--pill-h) + 10px);   /* coloured base = pill + 10px peek */
    padding: 0 20px 10px;                  /* keeps label centred in the top (white) part */
    border-radius: 100px;
    color: #000;
    font-size: clamp(17px, 1.45vw, 24px);
    font-weight: 400;
    line-height: 1.35;
    text-align: center;
    transition: transform 0.2s;
}

/* coloured base pill (bottom layer) */
.action-btn--green { background: var(--green); }
.action-btn--red   { background: var(--red); }
.action-btn--teal  { background: var(--teal); }

/* white pill on top — covers everything except the 10px coloured sliver at the bottom */
.action-btn::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: var(--pill-h);
    background: #fff;
    border-radius: 100px;
    z-index: 1;
    transition: box-shadow 0.2s ease-in-out;
}

.action-btn__label {
    position: relative;
    z-index: 2;
}

/* hover: no lift — a translucent colour veil over the white pill so the white
   shows through (reads as a transparent wash, not a solid fill) */
.action-btn--green:hover::before { box-shadow: inset 0 0 0 9999px rgba(144, 177, 4, 0.15); }
.action-btn--red:hover::before   { box-shadow: inset 0 0 0 9999px rgba(215, 97, 99, 0.15); }
.action-btn--teal:hover::before  { box-shadow: inset 0 0 0 9999px rgba(0, 146, 137, 0.15); }

/* ============================================================
   FOOTER
   ============================================================ */
.hero__footer {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: clamp(28px, 3.7vw, 70px);
    padding-top: clamp(18px, 1.7vw, 31px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: clamp(13px, 0.98vw, 18px);
    font-weight: 500;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.5);
}

.hero__footer-links {
    display: flex;
    gap: clamp(30px, 6vw, 100px);
    flex: 1;
    justify-content: center;
}

.hero__footer a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.hero__footer a:hover {
    color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1150px) {
    .nav__link {
        font-size: 16px;
    }
}

@media (max-width: 960px) {
    .container {
        padding: 26px 26px 22px;
    }

    /* collapse nav + phone behind burger */
    .nav,
    .phone {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero__header {
        justify-content: space-between;
        gap: 16px;
    }

    .logo {
        flex: 1;
    }

    .nav.is-open {
        display: block;
        position: absolute;
        top: 92px;
        left: 26px;
        right: 26px;
        background: rgba(4, 4, 13, 0.97);
        border: 1px solid rgba(120, 170, 200, 0.3);
        border-radius: 16px;
        padding: 20px 24px;
        z-index: 20;
        backdrop-filter: blur(6px);
    }

    .nav.is-open .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .nav.is-open .nav__link {
        font-size: 18px;
    }

    .phone.is-open {
        display: block;
        position: absolute;
        top: 270px;
        left: 40px;
        z-index: 20;
    }

    .hero__content {
        flex-direction: column;
        gap: 30px;
    }

    .quote {
        max-width: 100%;
        padding-left: 46px;
        white-space: normal;
    }
}

@media (max-width: 720px) {
    .container {
        padding: 22px 18px 20px;
        min-height: 0;
    }

    .hero__title {
        margin-top: 30px;
        margin-bottom: 28px;
    }

    .diseases {
        flex-direction: column;
        gap: 0;
    }

    .actions {
        flex-direction: column;
        gap: 40px;
        margin-top: 34px;
    }

    .action-btn {
        --pill-h: 64px;
    }

    .hero__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero__footer-links {
        flex-direction: column;
        gap: 10px;
        justify-content: flex-start;
    }

    .nav.is-open { top: 78px; }
    .phone.is-open { top: 250px; }
}

/* End */
/* /local/templates/immunohealth/style.css?178480873010421 */
