:root {
    --navy-950: #03273d;
    --navy-900: #053955;
    --navy-800: #075170;
    --ocean-600: #087da8;
    --ocean-100: #dff3f8;
    --ice-50: #f5fbfd;
    --sand-50: #fbfaf7;
    --coral-600: #ee542f;
    --coral-700: #d94322;
    --ink: #102d40;
    --muted: #5b6d78;
    --line: #dce8ec;
    --white: #ffffff;
    --shadow-sm: 0 12px 32px rgba(3, 39, 61, 0.08);
    --shadow-md: 0 24px 64px rgba(3, 39, 61, 0.13);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --container: 1180px;
    --header-height: 88px;
    --font-sans: "Atkinson Hyperlegible Next", "Segoe UI", Arial, sans-serif;
    --font-display: "Atkinson Hyperlegible Next", "Segoe UI", Arial, sans-serif;
}

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

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

:focus-visible {
    outline: 3px solid rgba(238, 84, 47, 0.65);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    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;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-160%);
    padding: 10px 16px;
    color: var(--white);
    background: var(--navy-950);
    border-radius: 8px;
    transition: transform 180ms ease;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(5, 57, 85, 0.08);
    backdrop-filter: blur(14px);
    transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 28px rgba(3, 39, 61, 0.09);
}

.header-inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    gap: 28px;
}

.brand {
    display: flex;
    flex: 0 0 auto;
    width: 198px;
    height: 68px;
    align-items: center;
    overflow: hidden;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.8vw, 28px);
}

.site-nav a {
    position: relative;
    padding-block: 12px;
    color: var(--navy-950);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--coral-600);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy-950);
    transition: transform 180ms ease, opacity 180ms ease;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.055em;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--navy {
    color: var(--white);
    background: var(--navy-900);
    box-shadow: 0 12px 24px rgba(5, 57, 85, 0.2);
}

.button--navy:hover {
    background: var(--navy-950);
}

.button--coral {
    color: var(--white);
    background: var(--coral-600);
    box-shadow: 0 10px 20px rgba(238, 84, 47, 0.2);
}

.button--coral:hover {
    background: var(--coral-700);
}

.button--ghost {
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(5, 57, 85, 0.26);
}

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

.button--light {
    color: var(--navy-950);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.button--outline-light {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.44);
}

.button--outline-light:hover {
    color: var(--navy-950);
    background: var(--white);
}

.header-cta {
    flex: 0 0 auto;
    min-height: 44px;
    padding-inline: 18px;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--coral-600);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #9de3f1;
}

.hero {
    position: relative;
    min-height: min(700px, calc(100vh - var(--header-height)));
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background-color: #dff1f8;
    background-image:
        linear-gradient(90deg, rgba(246, 252, 255, 0.98) 0%, rgba(246, 252, 255, 0.93) 28%, rgba(246, 252, 255, 0.32) 52%, rgba(246, 252, 255, 0) 74%),
        url("../images/hero-langostinos.webp");
    background-position: center;
    background-size: cover;
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 28%;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(221, 244, 250, 0.42));
    pointer-events: none;
}

.hero__content {
    padding-block: 84px;
}

.hero__content > * {
    max-width: 600px;
}

.hero h1,
.page-hero h1,
.product-detail h1 {
    margin-bottom: 22px;
    color: var(--navy-950);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 0.98;
}

.hero h1 {
    max-width: 660px;
    font-size: clamp(3.35rem, 6vw, 6rem);
}

.hero__lead {
    margin-bottom: 28px;
    color: #29485a;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 42px;
}

.hero__qualities {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero__qualities li {
    position: relative;
    padding-left: 24px;
    color: var(--navy-900);
    font-size: 0.84rem;
    font-weight: 800;
}

.hero__qualities li::before {
    position: absolute;
    top: 0.36em;
    left: 0;
    width: 11px;
    height: 11px;
    content: "";
    background: var(--ocean-600);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--ocean-600);
}

.feature-strip {
    color: var(--white);
    background: linear-gradient(115deg, var(--navy-950), #075b7b);
}

.feature-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-strip__grid > div {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 14px;
    align-items: center;
    padding: 28px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-strip__grid > div:last-child {
    border-right: 0;
}

.feature-strip span {
    grid-row: 1 / 3;
    color: #78cee1;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
}

.feature-strip strong {
    font-size: 0.95rem;
}

.feature-strip small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
}

.section {
    padding-block: clamp(72px, 9vw, 120px);
}

.section-title {
    margin-bottom: 18px;
    color: var(--navy-950);
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.05;
}

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

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading > p:last-child {
    color: var(--muted);
}

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

.about__grid,
.catalog-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: clamp(48px, 8vw, 110px);
    align-items: start;
}

.about__copy {
    padding-top: 34px;
    color: var(--muted);
    font-size: 1.04rem;
}

.about__copy p {
    margin-bottom: 18px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--navy-900);
    font-weight: 850;
    border-bottom: 2px solid var(--coral-600);
}

.products-section,
.catalog-page,
.related-products {
    background: var(--sand-50);
}

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

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

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

.product-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(3, 39, 61, 0.055);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-card__image {
    position: relative;
    display: block;
    aspect-ratio: 1.65 / 1;
    overflow: hidden;
    background: var(--ice-50);
}

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

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

.product-card__image span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: fit-content;
    max-width: calc(100% - 28px);
    padding: 7px 10px;
    color: var(--white);
    background: rgba(3, 39, 61, 0.9);
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.product-card h3 {
    margin-bottom: 10px;
    color: var(--navy-950);
    font-family: var(--font-display);
    font-size: 1.48rem;
    line-height: 1.1;
}

.product-card h3 a:hover {
    color: var(--ocean-600);
}

.product-card__body > p {
    min-height: 72px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.product-card dl {
    padding-top: 16px;
    margin: auto 0 20px;
    border-top: 1px solid var(--line);
}

.product-card dl > div + div {
    margin-top: 11px;
}

.product-card dt,
.spec-list dt {
    color: var(--coral-600);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-card dd {
    margin: 2px 0 0;
    color: var(--ink);
    font-size: 0.78rem;
    line-height: 1.42;
}

.product-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--navy-900);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.product-card__link span {
    display: grid;
    width: 31px;
    height: 31px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 50%;
    place-items: center;
}

.section-action {
    margin-top: 42px;
    text-align: center;
}

.process {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 720px;
    background: var(--white);
}

.process__image {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

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

.process__content {
    display: flex;
    max-width: 650px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(64px, 8vw, 120px);
}

.process__content > p:not(.eyebrow) {
    color: var(--muted);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    padding: 0;
    margin: 26px 0 34px;
    list-style: none;
}

.process-steps li {
    display: flex;
    gap: 12px;
    min-height: 108px;
    padding: 18px;
    background: var(--ice-50);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.process-steps > li > span {
    color: var(--coral-600);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
}

.process-steps strong,
.process-steps small {
    display: block;
}

.process-steps strong {
    color: var(--navy-950);
    font-size: 0.9rem;
}

.process-steps small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.45;
}

.quality {
    position: relative;
    background: var(--ice-50);
}

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

.quality-grid article {
    min-height: 230px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.quality-grid span {
    color: var(--coral-600);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.quality-grid h3 {
    margin: 20px 0 10px;
    color: var(--navy-950);
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.quality-grid p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.contact-band {
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(3, 39, 61, 0.98), rgba(7, 91, 123, 0.94)),
        url("../images/hero-langostinos.webp") center 57% / cover;
}

.contact-band__inner {
    display: flex;
    min-height: 220px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-block: 44px;
}

.contact-band h2 {
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.08;
}

.contact-band p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.74);
}

.page-hero {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(3, 39, 61, 0.98), rgba(5, 81, 112, 0.9)),
        url("../images/hero-langostinos.webp") center 53% / cover;
}

.page-hero__inner {
    display: flex;
    min-height: 430px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-block: 80px;
}

.page-hero h1 {
    max-width: 780px;
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(3rem, 5vw, 5.2rem);
}

.page-hero p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.06rem;
}

.catalog-intro {
    margin-bottom: 54px;
}

.catalog-intro > p {
    padding-top: 35px;
    color: var(--muted);
}

.product-detail {
    padding: 40px 0 clamp(78px, 9vw, 120px);
    background: var(--sand-50);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 0.78rem;
}

.breadcrumbs a {
    color: var(--navy-900);
    font-weight: 750;
}

.product-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: clamp(44px, 7vw, 90px);
    align-items: center;
}

.product-detail__image {
    overflow: hidden;
    aspect-ratio: 1.25 / 1;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.product-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail h1 {
    font-size: clamp(3rem, 5vw, 5.1rem);
}

.product-detail__lead {
    color: var(--muted);
    font-size: 1.08rem;
}

.feature-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 26px 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    color: var(--navy-900);
    font-weight: 780;
}

.feature-list li::before {
    position: absolute;
    top: 0.45em;
    left: 3px;
    width: 12px;
    height: 7px;
    content: "";
    border-bottom: 2px solid var(--coral-600);
    border-left: 2px solid var(--coral-600);
    transform: rotate(-45deg);
}

.spec-list {
    display: grid;
    gap: 12px;
    padding: 20px 0;
    margin: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.spec-list > div {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 16px;
}

.spec-list dd {
    margin: 0;
    font-size: 0.9rem;
}

.product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

.site-footer {
    color: var(--white);
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 1.1fr 1fr;
    gap: 48px;
    padding-block: 70px 54px;
}

.footer-brand img {
    width: 205px;
    height: 112px;
    margin: -20px 0 4px;
    object-fit: contain;
    filter: brightness(1.65) saturate(0.85);
    mix-blend-mode: screen;
}

.footer-brand p,
.footer-grid li,
.footer-grid address,
.footer-bottom {
    color: rgba(255, 255, 255, 0.65);
}

.footer-brand p {
    max-width: 310px;
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.footer-brand strong {
    color: #8fd8e8;
    font-family: var(--font-display);
    font-size: 0.98rem;
}

.footer-grid h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-grid ul {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-grid li,
.footer-grid address {
    font-size: 0.79rem;
    font-style: normal;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-grid address {
    display: grid;
    gap: 9px;
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.7rem;
}

@media (max-width: 1100px) {
    :root {
        --header-height: 78px;
    }

    .header-cta {
        display: none;
    }

    .site-nav {
        justify-content: flex-end;
    }

    .brand {
        width: 180px;
        height: 60px;
    }

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

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

    .process__content {
        padding: 64px 48px;
    }

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

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

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

    .menu-toggle {
        display: block;
        order: 3;
    }

    .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);
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 24px 28px 40px;
        background: var(--white);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 17px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 0.9rem;
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: 760px;
        align-items: flex-start;
        background-image:
            linear-gradient(180deg, rgba(246, 252, 255, 0.99) 0%, rgba(246, 252, 255, 0.94) 43%, rgba(246, 252, 255, 0.18) 72%, rgba(246, 252, 255, 0) 100%),
            url("../images/hero-langostinos.webp");
        background-position: 64% center;
    }

    .hero__content {
        padding-top: 68px;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 12vw, 5.2rem);
    }

    .hero__content > * {
        max-width: 620px;
    }

    .feature-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-strip__grid > div:nth-child(2) {
        border-right: 0;
    }

    .feature-strip__grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .about__grid,
    .catalog-intro,
    .product-detail__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about__copy,
    .catalog-intro > p {
        padding-top: 0;
    }

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

    .process__image {
        min-height: 470px;
    }

    .process__content {
        max-width: none;
    }

    .contact-band__inner,
    .page-hero__inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .page-hero__inner {
        min-height: 400px;
    }

    .product-detail__grid {
        gap: 46px;
    }

    .product-detail__image {
        aspect-ratio: 1.45 / 1;
    }

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

    .footer-grid > div:last-child {
        grid-column: auto;
        display: block;
    }
}

@media (max-width: 560px) {
    .brand {
        width: 156px;
        height: 56px;
    }

    .hero {
        min-height: 720px;
    }

    .hero__content {
        padding-block: 52px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
    }

    .hero__lead {
        font-size: 0.98rem;
    }

    .hero__actions,
    .hero__actions .button {
        width: 100%;
    }

    .hero__qualities {
        display: grid;
        gap: 11px;
    }

    .feature-strip__grid {
        grid-template-columns: 1fr;
    }

    .feature-strip__grid > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .feature-strip__grid > div:last-child {
        border-bottom: 0;
    }

    .section {
        padding-block: 68px;
    }

    .section-title {
        font-size: clamp(2.15rem, 10vw, 3rem);
    }

    .product-grid,
    .product-grid--catalog,
    .product-grid--related,
    .quality-grid {
        grid-template-columns: 1fr;
    }

    .product-card__body > p {
        min-height: auto;
    }

    .process__image {
        min-height: 330px;
    }

    .process__content {
        padding: 58px 24px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .quality-grid article {
        min-height: auto;
    }

    .page-hero h1,
    .product-detail h1 {
        font-size: clamp(2.6rem, 12vw, 3.8rem);
    }

    .page-hero__inner {
        min-height: 420px;
    }

    .product-detail {
        padding-top: 26px;
    }

    .product-detail__image {
        aspect-ratio: 1 / 0.8;
    }

    .spec-list > div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .product-detail__actions,
    .product-detail__actions .button {
        width: 100%;
    }

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

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
