@font-face {
    font-family: "ITC Avant Garde Gothic";
    src: url("../assets/font/itc_avant_garde/ITCAvantGardeStd-Bk.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ITC Avant Garde Gothic";
    src: url("../assets/font/itc_avant_garde/ITC Avant Garde Gothic Medium.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "ITC Avant Garde Gothic";
    src: url("../assets/font/itc_avant_garde/ITC Avant Garde Gothic Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --background: #fff7f4;
    --surface: #ffffff;
    --surface-soft: #fff0eb;
    --text: #1f2937;
    --muted: #5f6b7a;
    --primary: #516526;
    --primary-light: #6b8434;
    --accent: #904b3b;
    --accent-soft: #ffe6df;
    --border: rgba(51, 58, 68, 0.12);
    --shadow: 0 18px 46px rgba(46, 24, 12, 0.1);
    --font: "ITC Avant Garde Gothic", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 218, 210, 0.8), transparent 26rem),
        radial-gradient(circle at 95% 8%, rgba(107, 132, 52, 0.1), transparent 23rem),
        var(--background);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.shell {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tracking-pixel {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 100;
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    background: var(--accent);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 12px 0 0;
}

.nav {
    position: relative;
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
}

.brand img,
.footer-brand img {
    width: 78px;
    height: 52px;
    flex: 0 0 auto;
    object-fit: contain;
}

.footer-brand img {
    width: 90px;
    height: 60px;
}

.brand span {
    display: grid;
    line-height: 1.15;
}

.brand strong {
    font-size: 1.05rem;
}

.brand small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.72rem;
}

.nav-toggle {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text);
    background: var(--surface);
    font: inherit;
    font-size: 1.45rem;
    cursor: pointer;
}

.nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.nav-links.is-open {
    display: grid;
}

.nav-links > a:not(.button) {
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
}

.nav-links > a:not(.button):hover {
    background: var(--accent-soft);
}

.hero {
    padding: 64px 0 72px;
}

.hero-grid,
.split {
    display: grid;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.1;
}

h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(2.55rem, 10vw, 4.75rem);
    letter-spacing: -0.045em;
}

h2 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 8vw, 3.25rem);
    letter-spacing: -0.035em;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.lead {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 3.5vw, 1.3rem);
    line-height: 1.7;
}

.cta-group {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 14px 30px rgba(81, 101, 38, 0.24);
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 17px 34px rgba(81, 101, 38, 0.3);
}

.store-icon {
    flex: 0 0 auto;
    font-size: 1.55rem;
}

.button span:last-child {
    display: grid;
    text-align: left;
}

.button small {
    margin-bottom: 2px;
    font-size: 0.64rem;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.button-secondary {
    border-color: var(--border);
    color: var(--text);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.button-small {
    min-height: 46px;
    padding-inline: 18px;
}

.hero-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.product-shot,
.secondary-shot {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.product-shot {
    padding: 10px;
}

.product-shot img,
.secondary-shot img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.product-shot figcaption {
    padding: 12px 8px 4px;
    color: var(--muted);
    font-size: 0.82rem;
    text-align: center;
}

.section {
    padding: 72px 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.58);
    border-block: 1px solid rgba(51, 58, 68, 0.07);
}

.section-intro,
.section-heading > p,
.split-copy > p,
.privacy-card p,
.final-cta-inner > p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.benefit-grid {
    display: grid;
    gap: 16px;
    margin-top: 34px;
}

.card {
    min-height: 228px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 32px rgba(46, 24, 12, 0.07);
}

.card-number {
    display: inline-grid;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 14px;
    color: var(--accent);
    background: var(--accent-soft);
    font-size: 0.86rem;
    font-weight: 700;
}

.card p,
.steps p,
.faq-list p {
    margin: 0;
    color: var(--muted);
}

.section-heading {
    display: grid;
    gap: 14px;
}

.steps {
    display: grid;
    gap: 18px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.steps li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
}

.steps li > span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.check-list {
    display: grid;
    gap: 16px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--text);
}

.check-list li::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(107, 132, 52, 0.14);
    content: "✓";
    font-size: 0.78rem;
    font-weight: 700;
}

.privacy-section {
    padding-top: 24px;
}

.professional-callout {
    padding: 0 0 72px;
}

.professional-callout-inner {
    display: grid;
    gap: 26px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(81, 101, 38, 0.18);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 38px rgba(46, 24, 12, 0.07);
}

.professional-callout h2 {
    max-width: 780px;
    font-size: clamp(1.65rem, 6vw, 2.35rem);
}

.professional-callout p {
    max-width: 820px;
    margin: 0;
    color: var(--muted);
}

.professional-callout p + p {
    margin-top: 12px;
}

.professional-callout .button {
    width: 100%;
}

.privacy-card {
    display: grid;
    gap: 20px;
    padding: 28px;
    border: 1px solid rgba(144, 75, 59, 0.16);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 230, 223, 0.82), rgba(255, 255, 255, 0.88));
}

.privacy-mark {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
}

.text-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 700;
    text-underline-offset: 4px;
}

.faq-shell {
    max-width: 880px;
}

.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.faq-list article {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
}

.final-cta {
    padding: 82px 0;
    color: #fff;
    background: linear-gradient(140deg, #43551f, var(--primary-light));
}

.final-cta-inner {
    text-align: center;
}

.final-cta h2,
.final-cta-inner > p {
    margin-right: auto;
    margin-left: auto;
}

.final-cta .eyebrow,
.final-cta-inner > p {
    color: rgba(255, 255, 255, 0.84);
}

.cta-centered {
    justify-content: center;
}

.button-light {
    color: var(--primary);
    background: #fff;
    box-shadow: 0 14px 30px rgba(24, 35, 7, 0.22);
}

.button-light-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.health-notice {
    max-width: 740px !important;
    margin-top: 30px !important;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.88rem !important;
}

.site-footer {
    padding: 44px 0;
    background: var(--surface);
}

.footer-grid,
.footer-brand,
.site-footer nav {
    display: flex;
}

.footer-grid {
    flex-direction: column;
    gap: 28px;
}

.footer-brand {
    align-items: center;
    gap: 14px;
}

.footer-brand > a {
    display: inline-flex;
    flex: 0 0 auto;
}

.footer-brand p {
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
}

.footer-brand span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 400;
}

.site-footer nav {
    flex-direction: column;
    gap: 12px;
}

.site-footer nav a {
    color: var(--muted);
    text-underline-offset: 4px;
}

@media (min-width: 560px) {
    .cta-group {
        display: flex;
        flex-wrap: wrap;
    }

    .button {
        min-width: 190px;
    }

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

    .card-wide {
        grid-column: 1 / -1;
    }

    .privacy-card {
        grid-template-columns: 56px 1fr;
        padding: 38px;
    }
}

@media (max-width: 380px) {
    .brand small {
        display: none;
    }
}

@media (min-width: 800px) {
    .nav {
        padding-right: 18px;
        padding-left: 18px;
    }

    .nav-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-links > a:not(.button) {
        padding-inline: 2px;
    }

    .section-heading {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: end;
        gap: 54px;
    }

    .steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .steps li {
        grid-template-columns: 1fr;
        align-content: start;
        min-height: 270px;
    }

    .footer-grid {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .professional-callout-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 42px;
        padding: 40px;
    }

    .professional-callout .button {
        width: auto;
        max-width: 270px;
    }

    .site-footer nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 20px;
    }
}

@media (min-width: 980px) {
    .hero {
        padding: 92px 0 96px;
    }

    .hero-grid {
        grid-template-columns: 0.92fr 1.08fr;
        gap: 52px;
    }

    .section {
        padding: 96px 0;
    }

    .benefit-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .card {
        grid-column: span 2;
    }

    .card-wide {
        grid-column: span 3;
        min-height: 210px;
    }

    .card:nth-child(4) {
        grid-column: 1 / span 3;
        min-height: 210px;
    }

    .split {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
