@font-face {
    font-family: "Bounded";
    src: url("/storefront/fonts/bounded-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --black: #111111;
    --ink: #202020;
    --muted: #666666;
    --line: #d9d9d9;
    --soft: #f2f2f2;
    --white: #ffffff;
    --lime: #aceb00;
    --blue: #1262ef;
    --pink: #f3bec7;
    --yellow: #f8b803;
    --header-height: 76px;
    --radius: 8px;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
    margin: 0;
    color: var(--black);
    background: var(--white);
    font-family: "Golos Text", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.45;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

.shell {
    width: min(100% - 64px, 1280px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.96);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    align-items: center;
    height: 100%;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    width: 134px;
    height: 52px;
}

.brand img {
    width: 134px;
    height: auto;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 15px;
    font-weight: 600;
}

.desktop-nav a,
.phone-link {
    position: relative;
}

.desktop-nav a::after,
.phone-link::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.phone-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.phone-link {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 700;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-small {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 14px;
}

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

.button-dark:hover {
    color: var(--black);
    background: var(--lime);
}

.button-lime {
    color: var(--black);
    background: var(--lime);
}

.button-lime:hover {
    background: var(--white);
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(17, 17, 17, 0.18);
    backdrop-filter: blur(8px);
}

.button-ghost:hover {
    color: var(--black);
    border-color: var(--white);
    background: var(--white);
}

.menu-toggle,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    height: 560px;
    min-height: 500px;
    overflow: hidden;
    color: var(--white);
    background-color: #242527;
    background-image: url("/storefront/assets/hero.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 16, 18, 0.28) 0%, rgba(15, 16, 18, 0.05) 48%, rgba(15, 16, 18, 0) 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-copy {
    width: min(620px, 56%);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-tags span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.hero-tags span:nth-child(2) {
    color: var(--black);
    border-color: var(--lime);
    background: var(--lime);
}

.hero h1,
.section-heading h2,
.care h2,
.portfolio h2,
.contact-band h2 {
    margin: 0;
    font-family: "Bounded", Arial, sans-serif;
    font-weight: 650;
    line-height: 1.08;
}

.hero h1 {
    max-width: 620px;
    font-size: 52px;
}

.hero-copy > p {
    max-width: 590px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.section {
    padding: 92px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: none;
    gap: 48px;
}

.section-heading-row > p {
    max-width: 420px;
    margin: 0 0 5px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.eyebrow-light {
    color: var(--lime);
}

.section-heading h2,
.care h2,
.portfolio h2,
.contact-band h2 {
    font-size: 38px;
}

.section-heading > p:last-child,
.section-heading-row > p,
.care-intro > p:last-of-type {
    color: var(--muted);
}

.section-heading > p:last-child {
    max-width: 630px;
    margin: 16px 0 0;
    font-size: 17px;
}

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

.direction-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: var(--radius);
    isolation: isolate;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.direction-card:hover {
    z-index: 2;
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.direction-card img {
    position: absolute;
    z-index: -1;
    right: -7%;
    bottom: -4%;
    width: 92%;
    height: 72%;
    object-fit: contain;
    object-position: right bottom;
    transition: transform 260ms ease;
}

.direction-card:hover img {
    transform: scale(1.035);
}

.direction-card-tall img {
    right: -12%;
    bottom: -26%;
    width: 74%;
    height: 100%;
}

.card-kicker {
    font-size: 13px;
    font-weight: 700;
    opacity: 0.66;
}

.direction-card strong {
    max-width: 88%;
    margin-top: 4px;
    font-family: "Bounded", Arial, sans-serif;
    font-size: 26px;
    line-height: 1.16;
}

.card-link {
    align-self: flex-start;
    margin-top: 16px;
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    font-size: 14px;
    font-weight: 800;
}

.tone-lime { background: var(--lime); }
.tone-pink { background: var(--pink); }
.tone-blue { color: var(--white); background: var(--blue); }
.tone-gray { background: #e6e7e9; }
.tone-white { background: var(--white); }
.tone-yellow { background: var(--yellow); }

.showcase {
    border-top: 1px solid var(--line);
    background: var(--soft);
}

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

.product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.product-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 0.82;
    background: #ededed;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.calculator-card .product-media img {
    object-fit: contain;
    padding: 12px;
    background: var(--white);
}

.product-card:hover .product-media img {
    transform: scale(1.035);
}

.product-type {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    border-radius: 4px;
    color: var(--white);
    background: var(--black);
    font-size: 11px;
    font-weight: 800;
}

.calculator-card .product-type {
    color: var(--black);
    background: var(--lime);
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 112px;
    gap: 16px;
    padding: 18px;
}

.product-info > div {
    min-width: 0;
}

.product-info span {
    color: var(--muted);
    font-size: 12px;
}

.product-info h3 {
    margin: 5px 0 0;
    font-size: 17px;
    line-height: 1.25;
}

.product-info > strong {
    flex: none;
    margin-top: 2px;
    color: var(--blue);
    font-size: 13px;
}

.care {
    padding: 92px 0;
    color: var(--white);
    background: var(--blue);
}

.care-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 90px;
}

.care-intro {
    align-self: start;
}

.care-intro > p:last-of-type {
    max-width: 460px;
    margin: 18px 0 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.process-list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.process-list li > span {
    color: var(--lime);
    font-family: "Bounded", Arial, sans-serif;
    font-size: 15px;
}

.process-list strong {
    font-family: "Bounded", Arial, sans-serif;
    font-size: 17px;
}

.process-list p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.portfolio {
    background: var(--white);
}

.portfolio-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    align-items: center;
    gap: 72px;
}

.portfolio-copy {
    max-width: 460px;
}

.portfolio-params {
    margin: 30px 0;
    border-top: 1px solid var(--line);
}

.portfolio-params > div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.portfolio-params dt {
    color: var(--muted);
}

.portfolio-params dd {
    margin: 0;
    font-weight: 800;
}

.portfolio-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.text-link {
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    font-weight: 800;
}

.portfolio-media {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin: 0;
    border-radius: var(--radius);
    background: var(--soft);
}

.portfolio-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-band {
    padding: 74px 0;
    background: var(--lime);
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 64px;
}

.contact-band .eyebrow {
    color: var(--black);
}

.contact-band h2 {
    max-width: 700px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-size: 18px;
    font-weight: 800;
}

.contact-actions a {
    border-bottom: 1px solid transparent;
}

.contact-actions a:hover {
    border-color: currentColor;
}

.contact-actions span {
    margin-top: 5px;
    color: rgba(17, 17, 17, 0.64);
    font-size: 13px;
    font-weight: 600;
}

.site-footer {
    padding: 62px 0 24px;
    color: var(--white);
    background: var(--black);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 70px;
}

.footer-brand {
    display: block;
    width: 154px;
    filter: invert(1);
}

.footer-nav,
.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
}

.footer-nav a:hover,
.footer-meta a:hover {
    color: var(--lime);
}

.footer-meta {
    color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 52px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
}

[data-reveal] {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: 138px 1fr auto;
        gap: 18px;
    }

    .desktop-nav {
        gap: 18px;
        font-size: 14px;
    }

    .phone-link {
        display: none;
    }

    .hero-copy {
        width: 62%;
    }

    .hero h1 {
        font-size: 44px;
    }

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

@media (max-width: 780px) {
    :root {
        --header-height: 68px;
    }

    .shell {
        width: min(100% - 36px, 1280px);
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
    }

    .brand,
    .brand img {
        width: 112px;
    }

    .desktop-nav,
    .header-actions .button {
        display: none;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 10px;
        gap: 5px;
        border: 0;
        border-radius: 4px;
        background: var(--lime);
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--black);
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav {
        position: fixed;
        z-index: 49;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 18px;
        gap: 4px;
        color: var(--white);
        background: var(--black);
    }

    .mobile-nav[hidden] {
        display: none;
    }

    .mobile-nav a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        font-family: "Bounded", Arial, sans-serif;
        font-size: 22px;
    }

    .mobile-nav a:last-child {
        margin-top: auto;
        color: var(--lime);
        font-size: 17px;
    }

    .hero {
        height: 590px;
        min-height: 0;
        background-position: 64% center;
    }

    .hero-shade {
        background: linear-gradient(90deg, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.58) 58%, rgba(17, 17, 17, 0.1) 100%);
    }

    .hero-copy {
        width: 84%;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-copy > p {
        max-width: 520px;
        font-size: 16px;
    }

    .section,
    .care {
        padding: 70px 0;
    }

    .section-heading h2,
    .care h2,
    .portfolio h2,
    .contact-band h2 {
        font-size: 32px;
    }

    .section-heading-row {
        display: block;
    }

    .section-heading-row > p {
        margin-top: 16px;
    }

    .care-inner,
    .portfolio-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .portfolio-copy {
        max-width: none;
    }

    .portfolio-media {
        grid-row: 1;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contact-actions {
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 42px 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .shell {
        width: min(100% - 28px, 1280px);
    }

    .hero {
        height: 610px;
        background-position: 62% center;
    }

    .hero-copy {
        width: 100%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h1 br:nth-child(2) {
        display: none;
    }

    .hero-tags {
        margin-bottom: 18px;
    }

    .hero-copy > p {
        max-width: 92%;
        margin-top: 18px;
        font-size: 15px;
    }

    .hero-actions {
        align-items: stretch;
        margin-top: 24px;
    }

    .hero-actions .button {
        flex: 1 1 100%;
    }

    .section,
    .care {
        padding: 56px 0;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading h2,
    .care h2,
    .portfolio h2,
    .contact-band h2 {
        font-size: 28px;
    }

    .direction-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .direction-card {
        min-height: 320px;
    }

    .direction-card strong {
        font-size: 24px;
    }

    .product-info {
        min-height: 104px;
    }

    .process-list li {
        grid-template-columns: 42px 1fr;
    }

    .portfolio-layout {
        gap: 32px;
    }

    .contact-band {
        padding: 56px 0;
    }

    .contact-actions {
        font-size: 17px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

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

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
