/* Ever West Group — production landing styles */
:root {
    color-scheme: light;
    --ink: #151514;
    --ink-soft: #272522;
    --graphite: #1d1c1a;
    --orange: #ff7f00;
    --orange-dark: #d96400;
    --cream: #f6f0e7;
    --cream-deep: #ece2d4;
    --paper: #fffdf9;
    --white: #ffffff;
    --muted: #6f6a63;
    --line: rgba(21, 21, 20, 0.14);
    --line-light: rgba(255, 255, 255, 0.17);
    --success: #16734a;
    --danger: #bd382f;
    --container: 1280px;
    --gutter: clamp(20px, 4vw, 54px);
    --section-space: clamp(82px, 9vw, 142px);
    --radius: 4px;
    --radius-lg: 12px;
    --shadow: 0 24px 70px rgba(25, 20, 14, 0.13);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

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

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

button,
a {
    touch-action: manipulation;
}

button {
    border: 0;
}

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

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

p:last-child {
    margin-bottom: 0;
}

[hidden] {
    display: none !important;
}

::selection {
    color: var(--white);
    background: var(--orange);
}

:focus-visible {
    outline: 3px solid rgba(255, 127, 0, 0.78);
    outline-offset: 4px;
}

.container {
    width: min(100%, calc(var(--container) + var(--gutter) * 2));
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    position: relative;
    padding-block: var(--section-space);
}

.section-soft {
    background: var(--cream);
}

.section-dark {
    color: var(--white);
    background: var(--ink);
}

#catalog,
#delivery,
#advantages,
#faq,
#request,
#contacts {
    scroll-margin-top: 98px;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 14px;
    left: 14px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

/* Shared type and controls */
.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-kicker--light {
    color: #ff9f42;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: clamp(36px, 8vw, 118px);
    margin-bottom: clamp(42px, 6vw, 76px);
}

.section-heading h2,
.delivery__intro h2,
.process__heading h2,
.faq__intro h2,
.request__copy h2,
.contacts__intro h2 {
    margin: 18px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.section-heading > p,
.process__heading > p,
.faq__intro > p,
.contacts__intro > p {
    max-width: 520px;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.7;
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 15px 21px 15px 26px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.045em;
    line-height: 1.2;
    transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button span,
.button i {
    position: relative;
    z-index: 1;
}

.button i {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    font-size: 17px;
    font-style: normal;
    transition: transform 220ms var(--ease);
}

.button:hover i {
    transform: translateX(3px);
}

.button:active {
    transform: translateY(1px);
}

.button--accent {
    color: #18130d;
    background: var(--orange);
    border-color: var(--orange);
}

.button--accent i {
    color: var(--white);
    background: rgba(21, 21, 20, 0.92);
}

.button--accent:hover {
    background: #ff942c;
    border-color: #ff942c;
}

.button--ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

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

.button--wide {
    width: 100%;
}

/* Announcement and header */
.offer-bar {
    position: relative;
    z-index: 55;
    color: rgba(255, 255, 255, 0.76);
    background: #0e0e0d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.offer-bar__inner {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.offer-bar__label {
    color: var(--orange);
}

.offer-bar__inner a {
    margin-left: auto;
    color: var(--white);
    transition: color 180ms ease;
}

.offer-bar__inner a:hover {
    color: var(--orange);
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    color: var(--ink);
    background: rgba(255, 253, 249, 0.96);
    border-bottom: 1px solid rgba(21, 21, 20, 0.09);
    backdrop-filter: blur(16px);
    transition: box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.is-fixed {
    background: rgba(255, 253, 249, 0.985);
    box-shadow: 0 11px 35px rgba(23, 19, 15, 0.08);
}

.site-header__inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: clamp(26px, 4vw, 62px);
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.brand__mark {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
    border-radius: 3px;
}

.brand__mark::before {
    position: absolute;
    width: 28px;
    height: 58px;
    background: var(--orange);
    content: "";
    transform: rotate(35deg) translateX(16px);
}

.brand__mark i {
    position: relative;
    z-index: 1;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand__copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__copy strong {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.brand__copy small {
    margin-top: 7px;
    color: #817b73;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 34px);
    margin-left: auto;
}

.main-nav a {
    position: relative;
    padding-block: 29px;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.03em;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    background: var(--orange);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 260ms var(--ease);
}

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

.header-contact {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    align-items: flex-end;
    line-height: 1.2;
}

.header-contact span {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.header-contact a {
    font-size: 14px;
    font-weight: 850;
    white-space: nowrap;
}

.header-contact a:hover {
    color: var(--orange-dark);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    padding: 0;
    background: var(--ink);
    border-radius: 3px;
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--white);
    transition: transform 220ms ease;
}

.nav-toggle span:first-child {
    transform: translateY(-4px);
}

.nav-toggle span:last-child {
    transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    display: grid;
    min-height: clamp(700px, calc(100svh - 114px), 880px);
    isolation: isolate;
    overflow: hidden;
}

.hero__media,
.hero__media picture,
.hero__overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
}

.hero__overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(10, 10, 9, 0.98) 0%, rgba(10, 10, 9, 0.88) 34%, rgba(10, 10, 9, 0.35) 63%, rgba(10, 10, 9, 0.12) 100%),
        linear-gradient(0deg, rgba(8, 8, 7, 0.78) 0%, transparent 38%),
        linear-gradient(180deg, rgba(8, 8, 7, 0.22) 0%, transparent 30%);
}

.hero__inner {
    position: relative;
    display: flex;
    align-items: center;
    padding-block: clamp(78px, 10vh, 120px) clamp(120px, 13vh, 158px);
}

.hero__content {
    width: min(760px, 69%);
}

.eyebrow {
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.69);
}

.eyebrow span {
    width: 34px;
    height: 2px;
    background: var(--orange);
}

.hero h1 {
    margin-bottom: 27px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 6.5vw, 101px);
    font-weight: 400;
    letter-spacing: -0.062em;
    line-height: 0.91;
}

.hero h1 em,
.delivery__intro h2 em,
.request__copy h2 em {
    color: #ff9a38;
    font-weight: 400;
}

.hero__lead {
    max-width: 665px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.73);
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.62;
}

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

.hero__proof {
    display: flex;
    max-width: 670px;
    margin-top: clamp(48px, 7vh, 75px);
    border-top: 1px solid var(--line-light);
}

.hero__proof > div {
    display: flex;
    min-width: 0;
    flex: 1 1 0;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 20px 0 0;
}

.hero__proof > div + div {
    padding-left: 20px;
    border-left: 1px solid var(--line-light);
}

.hero__proof strong {
    color: var(--orange);
    font-size: 10px;
    letter-spacing: 0.1em;
}

.hero__proof span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.025em;
    line-height: 1.35;
}

.glass-card {
    position: absolute;
    right: var(--gutter);
    bottom: clamp(50px, 7vh, 78px);
    display: flex;
    width: min(310px, 26vw);
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(16, 15, 14, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: var(--radius);
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.23);
    backdrop-filter: blur(16px);
}

.glass-card__dot {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(255, 127, 0, 0.16);
}

.glass-card > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.glass-card small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.glass-card strong {
    margin-top: 3px;
    font-size: 14px;
}

.glass-card em {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-style: normal;
}

.hero__rail {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: clamp(10px, 1.5vw, 26px);
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.22em;
    transform: translateY(-50%) rotate(90deg);
}

.hero__rail i {
    width: 45px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

/* Delivery modes */
.modes {
    color: var(--ink);
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.modes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-block: 0;
}

.modes article {
    display: flex;
    min-height: 118px;
    align-items: center;
    gap: 20px;
    padding: 26px clamp(20px, 3vw, 42px);
    border-right: 1px solid var(--line);
}

.modes article:first-child {
    border-left: 1px solid var(--line);
}

.modes article > span {
    color: var(--orange-dark);
    font-size: 10px;
    font-weight: 850;
}

.modes article > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.modes article strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 2vw, 29px);
    font-weight: 400;
    line-height: 1.1;
}

.modes article small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 10px;
}

.modes article > i {
    margin-left: auto;
    color: #9f9890;
    font-size: 16px;
    font-style: normal;
}

/* Catalog */
.catalog {
    background:
        linear-gradient(rgba(21, 21, 20, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 21, 20, 0.025) 1px, transparent 1px),
        var(--paper);
    background-size: 54px 54px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
}

.product-card {
    position: relative;
    grid-column: span 4;
    min-height: clamp(405px, 38vw, 520px);
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: var(--graphite);
    border-radius: var(--radius);
}

.product-card--wide {
    grid-column: span 8;
}

.product-card:last-child {
    grid-column: 1 / -1;
    min-height: clamp(390px, 34vw, 480px);
}

.product-card > img,
.product-card__shade {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    inset: 0;
}

.product-card > img {
    object-fit: cover;
    transition: transform 850ms var(--ease), filter 500ms ease;
}

.product-card:last-child > img {
    object-position: center 54%;
}

.product-card__shade {
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 9, 8, 0.05) 22%, rgba(10, 9, 8, 0.88) 100%);
    transition: background-color 350ms ease;
}

.product-card:hover > img {
    transform: scale(1.045);
}

.product-card__num {
    position: absolute;
    top: 22px;
    right: 23px;
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    background: rgba(15, 14, 12, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.product-card__body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: clamp(25px, 3.5vw, 45px);
}

.product-card__body small {
    color: #ff9f42;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-card__body h3 {
    margin: 9px 0 2px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.02;
}

.product-card__body p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.71);
    font-size: 13px;
}

.product-card__body button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 0 0 5px;
    color: var(--white);
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.54);
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.product-card__body button i {
    color: var(--orange);
    font-style: normal;
    transition: transform 220ms var(--ease);
}

.product-card__body button:hover i {
    transform: translate(2px, -2px);
}

.catalog-note {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr auto;
    align-items: center;
    gap: 32px;
    margin-top: 14px;
    padding: 28px 32px;
    color: var(--white);
    background: var(--ink);
    border-left: 4px solid var(--orange);
}

.catalog-note > span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.2;
}

.catalog-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.63);
    font-size: 13px;
}

.catalog-note a {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.catalog-note i {
    font-style: normal;
}

/* Delivery */
.delivery {
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 127, 0, 0.11), transparent 31%),
        var(--ink);
}

.delivery::after {
    position: absolute;
    right: -120px;
    bottom: -220px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    box-shadow: 0 0 0 88px rgba(255, 255, 255, 0.025), 0 0 0 176px rgba(255, 255, 255, 0.018);
    content: "";
}

.delivery__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
    align-items: end;
    gap: clamp(65px, 10vw, 150px);
}

.delivery__intro h2,
.request__copy h2 {
    font-size: clamp(46px, 5.3vw, 78px);
}

.delivery__intro > p,
.request__copy > p {
    max-width: 610px;
    margin: 28px 0 34px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    line-height: 1.75;
}

.delivery__factors {
    border-top: 1px solid var(--line-light);
}

.delivery__factors article {
    display: grid;
    grid-template-columns: 36px 1fr 26px;
    align-items: center;
    gap: 17px;
    min-height: 107px;
    border-bottom: 1px solid var(--line-light);
}

.delivery__factors article > span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
}

.delivery__factors article > div {
    display: flex;
    flex-direction: column;
}

.delivery__factors small {
    color: rgba(255, 255, 255, 0.43);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.delivery__factors strong {
    margin-top: 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
}

.delivery__factors article > i {
    color: rgba(255, 255, 255, 0.48);
    font-style: normal;
}

/* Advantages */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.advantage-grid article {
    position: relative;
    min-height: 300px;
    padding: clamp(28px, 3vw, 42px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: color 260ms ease, background-color 260ms ease;
}

.advantage-grid article::after {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 24px;
    height: 24px;
    border-right: 1px solid #a7a096;
    border-bottom: 1px solid #a7a096;
    content: "";
}

.advantage-grid article:hover {
    color: var(--white);
    background: var(--ink);
}

.advantage-grid article > span {
    color: var(--orange-dark);
    font-size: 10px;
    font-weight: 850;
}

.advantage-grid h3 {
    max-width: 225px;
    margin: 95px 0 13px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 2vw, 30px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.advantage-grid p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.62;
    transition: color 260ms ease;
}

.advantage-grid article:hover p {
    color: rgba(255, 255, 255, 0.63);
}

/* Process */
.process__grid {
    display: grid;
    grid-template-columns: minmax(270px, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(60px, 10vw, 150px);
}

.process__heading {
    position: sticky;
    top: 130px;
    align-self: start;
}

.process__heading > p {
    margin-top: 25px;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: process;
    border-top: 1px solid var(--line);
}

.process-list li {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 30px;
    padding: 33px 8px;
    border-bottom: 1px solid var(--line);
}

.process-list li > span {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    color: var(--orange-dark);
    border: 1px solid rgba(255, 127, 0, 0.38);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 850;
}

.process-list h3 {
    margin: 0 0 7px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 400;
    line-height: 1.15;
}

.process-list p {
    max-width: 570px;
    color: var(--muted);
    font-size: 14px;
}

/* Reviews */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.review-card {
    display: flex;
    min-height: 365px;
    flex-direction: column;
    margin: 0;
    padding: clamp(29px, 3.4vw, 45px);
    background: var(--cream);
    border: 1px solid rgba(21, 21, 20, 0.04);
}

.review-card--dark {
    color: var(--white);
    background: var(--ink);
}

.quote {
    height: 52px;
    color: var(--orange);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 77px;
    line-height: 0.9;
}

.review-card > p {
    margin: 30px 0 38px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(19px, 1.8vw, 24px);
    line-height: 1.42;
}

.review-card footer {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: auto;
}

.review-card footer > i {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    color: var(--white);
    background: var(--orange-dark);
    border-radius: 50%;
    font-size: 10px;
    font-style: normal;
    font-weight: 850;
}

.review-card footer > span {
    display: flex;
    flex-direction: column;
}

.review-card footer strong {
    font-size: 12px;
}

.review-card footer small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
}

.review-card--dark footer small {
    color: rgba(255, 255, 255, 0.48);
}

/* FAQ */
.faq__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
    gap: clamp(60px, 11vw, 165px);
}

.faq__intro > p {
    margin-top: 28px;
}

.faq__intro > a {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    margin-top: 22px;
    padding-bottom: 5px;
    color: var(--orange-dark);
    border-bottom: 1px solid rgba(217, 100, 0, 0.38);
    font-size: 12px;
    font-weight: 800;
}

.faq__intro > a i {
    font-style: normal;
}

.accordion {
    border-top: 1px solid var(--line);
}

.accordion details {
    border-bottom: 1px solid var(--line);
}

.accordion summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    align-items: center;
    gap: 24px;
    padding: 28px 4px;
    cursor: pointer;
    list-style: none;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary > span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.24;
}

.accordion summary > i {
    position: relative;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.accordion summary > i::before,
.accordion summary > i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 1px;
    background: var(--ink);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 220ms ease;
}

.accordion summary > i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary > i {
    background: var(--orange);
    border-color: var(--orange);
}

.accordion details[open] summary > i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details > p {
    max-width: 690px;
    margin: -5px 54px 30px 4px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.72;
}

/* Request form */
.request {
    overflow: hidden;
    background:
        linear-gradient(135deg, transparent 0 65%, rgba(255, 127, 0, 0.055) 65% 66%, transparent 66%),
        var(--ink);
}

.request__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(480px, 0.75fr);
    align-items: start;
    gap: clamp(60px, 10vw, 145px);
}

.request__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: clamp(55px, 8vw, 100px);
}

.request__contact span {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.request__contact a {
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3vw, 40px);
}

.lead-form {
    padding: clamp(27px, 4vw, 47px);
    color: var(--ink);
    background: var(--paper);
    border-radius: var(--radius);
    box-shadow: 0 30px 85px rgba(0, 0, 0, 0.25);
}

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

.field {
    display: block;
    margin-bottom: 17px;
}

.field > span {
    display: block;
    margin-bottom: 8px;
    color: #5f5a54;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    display: block;
    width: 100%;
    min-height: 55px;
    padding: 14px 15px;
    color: var(--ink);
    background: #f5f0e9;
    border: 1px solid transparent;
    border-radius: 2px;
    outline: 0;
    font-size: 14px;
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
    min-height: 108px;
    resize: vertical;
}

.field select {
    padding-right: 42px;
    cursor: pointer;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #9c958d;
    opacity: 1;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    background: #f1eae0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: var(--white);
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.13);
}

.field.is-error input,
.field.is-error select,
.field.is-error textarea {
    border-color: var(--danger);
}

.field-error {
    display: block;
    min-height: 15px;
    margin-top: 5px;
    color: var(--danger);
    font-size: 10px;
    line-height: 1.3;
}

.check-field {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    margin: 2px 0 19px;
    color: var(--muted);
    cursor: pointer;
    font-size: 10px;
    line-height: 1.5;
}

.check-field input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--orange-dark);
}

.check-field a {
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.check-field.is-error {
    color: var(--danger);
}

.check-field.is-error input {
    outline: 2px solid var(--danger);
    outline-offset: 2px;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.lead-form.is-loading {
    cursor: wait;
}

.lead-form.is-loading .button[type="submit"] {
    pointer-events: none;
    opacity: 0.68;
}

.form-status {
    display: none;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 2px;
    font-size: 12px;
    line-height: 1.45;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-success {
    color: #0e603b;
    background: #e3f4eb;
    border: 1px solid #b4ddc8;
}

.form-status.is-error {
    color: #902d26;
    background: #fbe8e6;
    border: 1px solid #ecc0bc;
}

.form-note {
    margin: 13px 0 0;
    color: #8a847c;
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
}

/* Contacts */
.contacts__grid {
    display: grid;
    grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: clamp(65px, 10vw, 150px);
}

.contacts__intro > p {
    margin-top: 28px;
}

.contact-list {
    border-top: 1px solid var(--line);
}

.contact-list > a {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 20px;
    min-height: 96px;
    border-bottom: 1px solid var(--line);
    transition: padding 220ms var(--ease), color 180ms ease;
}

.contact-list > a:hover {
    padding-inline: 8px;
    color: var(--orange-dark);
}

.contact-list > a > span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-list strong {
    overflow-wrap: anywhere;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2.3vw, 30px);
    font-weight: 400;
}

.contact-list i {
    color: var(--orange-dark);
    font-style: normal;
}

/* Footer */
.site-footer {
    color: var(--white);
    background: #0d0d0c;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 0.75fr 1fr auto;
    align-items: center;
    gap: 50px;
    padding-block: 53px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand--footer .brand__mark {
    color: var(--ink);
    background: var(--orange);
}

.brand--footer .brand__mark::before {
    background: var(--white);
    opacity: 0.9;
}

.brand--footer .brand__copy small {
    color: rgba(255, 255, 255, 0.43);
}

.site-footer__top > p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.footer-phone {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 2.5vw, 31px);
    white-space: nowrap;
}

.site-footer__bottom {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: clamp(18px, 3vw, 40px);
    color: rgba(255, 255, 255, 0.42);
    font-size: 9px;
    letter-spacing: 0.055em;
}

.site-footer__bottom a:hover,
.site-footer__bottom button:hover {
    color: var(--white);
}

.site-footer__bottom button {
    padding: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.site-footer__bottom a:last-child {
    margin-left: auto;
}

/* Floating actions, cookie and states */
.floating-whatsapp {
    position: fixed;
    z-index: 42;
    right: max(22px, env(safe-area-inset-right));
    bottom: max(22px, env(safe-area-inset-bottom));
    display: grid;
    width: 57px;
    height: 57px;
    place-items: center;
    color: var(--white);
    background: #1aa568;
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 12px 33px rgba(5, 71, 43, 0.26);
    transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.floating-whatsapp:hover {
    box-shadow: 0 15px 38px rgba(5, 71, 43, 0.34);
    transform: translateY(-3px);
}

.floating-whatsapp span {
    font-size: 18px;
    font-weight: 900;
}

.mobile-actions {
    display: none;
}

.cookie-banner {
    position: fixed;
    z-index: 100;
    right: 22px;
    bottom: 22px;
    display: grid;
    grid-template-columns: minmax(250px, 1fr) auto;
    width: min(680px, calc(100% - 44px));
    gap: 28px;
    padding: 22px;
    color: var(--white);
    background: rgba(18, 18, 17, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: var(--radius);
    box-shadow: 0 20px 65px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.cookie-banner strong {
    display: block;
    margin-bottom: 5px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
}

.cookie-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.61);
    font-size: 11px;
    line-height: 1.5;
}

.cookie-banner p a {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-banner__actions button {
    min-height: 42px;
    padding: 10px 13px;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}

.cookie-banner__actions .is-primary {
    color: var(--ink);
    background: var(--orange);
    border-color: var(--orange);
}

.noscript {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 12px var(--gutter);
    color: var(--white);
    background: var(--danger);
    font-size: 12px;
    text-align: center;
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Tablet */
@media (max-width: 1120px) {
    .site-header__inner {
        gap: 24px;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 11px;
    }

    .header-contact {
        display: none;
    }

    .hero__content {
        width: min(735px, 77%);
    }

    .glass-card {
        width: 265px;
    }

    .delivery__grid,
    .request__grid {
        grid-template-columns: minmax(0, 0.82fr) minmax(400px, 0.9fr);
        gap: 65px;
    }

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

    .advantage-grid article {
        min-height: 270px;
    }

    .advantage-grid h3 {
        margin-top: 68px;
    }
}

@media (max-width: 900px) {
    :root {
        --section-space: clamp(74px, 11vw, 105px);
    }

    html {
        scroll-padding-top: 82px;
    }

    .offer-bar__inner {
        justify-content: flex-start;
    }

    .offer-bar__inner a {
        margin-left: auto;
    }

    .site-header__inner {
        min-height: 70px;
    }

    .nav-toggle {
        position: relative;
        z-index: 53;
        display: grid;
        margin-left: auto;
    }

    .main-nav {
        position: fixed;
        z-index: 52;
        top: 0;
        right: 0;
        display: flex;
        width: min(430px, 100%);
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        margin: 0;
        padding: 90px clamp(28px, 7vw, 55px) 45px;
        visibility: hidden;
        color: var(--white);
        background: var(--ink);
        box-shadow: -20px 0 70px rgba(0, 0, 0, 0.26);
        opacity: 0;
        transform: translateX(100%);
        transition: transform 380ms var(--ease), opacity 240ms ease, visibility 380ms;
    }

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

    .main-nav a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(25px, 6vw, 34px);
        font-weight: 400;
    }

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

    .nav-open::before {
        position: fixed;
        z-index: 49;
        inset: 0;
        background: rgba(0, 0, 0, 0.48);
        content: "";
        backdrop-filter: blur(3px);
    }

    .nav-toggle[aria-expanded="true"] {
        background: var(--orange);
    }

    .hero {
        min-height: 740px;
    }

    .hero__media img {
        object-position: 62% center;
    }

    .hero__overlay {
        background:
            linear-gradient(90deg, rgba(10, 10, 9, 0.97) 0%, rgba(10, 10, 9, 0.77) 58%, rgba(10, 10, 9, 0.35) 100%),
            linear-gradient(0deg, rgba(8, 8, 7, 0.84) 0%, transparent 46%);
    }

    .hero__inner {
        align-items: flex-start;
        padding-top: 92px;
    }

    .hero__content {
        width: min(710px, 92%);
    }

    .glass-card {
        right: auto;
        bottom: 28px;
        left: var(--gutter);
        width: min(310px, calc(100% - var(--gutter) * 2));
    }

    .hero__rail {
        display: none;
    }

    .modes article {
        gap: 12px;
        padding-inline: 18px;
    }

    .modes article > i {
        display: none;
    }

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

    .product-card,
    .product-card--wide {
        grid-column: span 1;
        min-height: 440px;
    }

    .product-card:first-child,
    .product-card:last-child {
        grid-column: 1 / -1;
    }

    .delivery__grid,
    .request__grid,
    .contacts__grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .delivery__factors {
        max-width: none;
    }

    .process__grid,
    .faq__grid {
        grid-template-columns: minmax(210px, 0.5fr) minmax(0, 1fr);
        gap: 60px;
    }

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

    .review-card {
        min-height: 300px;
    }

    .request__copy > p {
        max-width: 670px;
    }

    .request__contact {
        margin-top: 45px;
    }

    .lead-form {
        width: min(100%, 680px);
    }

    .site-footer__top {
        grid-template-columns: 1fr auto;
    }

    .site-footer__top > p {
        display: none;
    }
}

/* Mobile */
@media (max-width: 680px) {
    :root {
        --gutter: 20px;
        --section-space: 78px;
    }

    body {
        padding-bottom: calc(62px + env(safe-area-inset-bottom));
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 23px;
        margin-bottom: 38px;
    }

    .section-heading h2,
    .delivery__intro h2,
    .process__heading h2,
    .faq__intro h2,
    .request__copy h2,
    .contacts__intro h2 {
        font-size: clamp(39px, 12vw, 55px);
        line-height: 0.99;
    }

    .section-heading h2 br,
    .contacts__intro h2 br {
        display: none;
    }

    .section-heading > p,
    .process__heading > p,
    .faq__intro > p,
    .contacts__intro > p {
        font-size: 15px;
    }

    .offer-bar__inner {
        min-height: 32px;
        gap: 10px;
        padding-right: 13px;
        font-size: 8px;
        letter-spacing: 0.08em;
    }

    .offer-bar__label,
    .offer-bar__inner a span {
        display: none;
    }

    .site-header__inner {
        min-height: 64px;
    }

    .brand__mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .brand__copy strong {
        font-size: 13px;
    }

    .brand__copy small {
        font-size: 6px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .hero {
        min-height: 760px;
    }

    .hero__media img {
        object-position: 66% center;
    }

    .hero__overlay {
        background:
            linear-gradient(90deg, rgba(10, 10, 9, 0.94) 0%, rgba(10, 10, 9, 0.63) 100%),
            linear-gradient(0deg, rgba(8, 8, 7, 0.95) 0%, rgba(8, 8, 7, 0.22) 62%);
    }

    .hero__inner {
        padding-top: 65px;
        padding-bottom: 145px;
    }

    .hero__content {
        width: 100%;
    }

    .eyebrow {
        margin-bottom: 20px;
        font-size: 9px;
    }

    .eyebrow span {
        width: 25px;
    }

    .hero h1 {
        margin-bottom: 22px;
        font-size: clamp(43px, 13.2vw, 63px);
        line-height: 0.94;
    }

    .hero h1 br {
        display: block;
    }

    .hero__lead {
        margin-bottom: 27px;
        font-size: 15px;
        line-height: 1.55;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__proof {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 36px;
    }

    .hero__proof > div {
        display: block;
        padding: 14px 8px 0 0;
    }

    .hero__proof > div + div {
        padding-left: 9px;
    }

    .hero__proof strong {
        display: block;
        margin-bottom: 7px;
    }

    .hero__proof span {
        font-size: 9px;
    }

    .glass-card {
        bottom: 21px;
        padding: 14px 16px;
    }

    .glass-card strong {
        font-size: 12px;
    }

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

    .modes article,
    .modes article:first-child {
        min-height: 86px;
        padding: 19px 4px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        border-left: 0;
    }

    .modes article:last-child {
        border-bottom: 0;
    }

    .modes article > i {
        display: block;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-card,
    .product-card--wide,
    .product-card:first-child,
    .product-card:last-child {
        grid-column: 1;
        min-height: 400px;
    }

    .product-card__body {
        padding: 24px;
    }

    .product-card__body h3 {
        font-size: 33px;
    }

    .product-card__body button {
        min-height: 32px;
    }

    .catalog-note {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 22px;
    }

    .catalog-note a {
        margin-top: 5px;
    }

    .delivery__grid,
    .request__grid,
    .contacts__grid {
        gap: 44px;
    }

    .delivery__intro > p,
    .request__copy > p {
        margin: 23px 0 27px;
        font-size: 15px;
        line-height: 1.65;
    }

    .delivery__factors article {
        min-height: 88px;
    }

    .delivery__factors strong {
        font-size: 22px;
    }

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

    .advantage-grid article {
        min-height: 220px;
        padding: 27px;
    }

    .advantage-grid h3 {
        margin: 45px 0 10px;
    }

    .process__grid,
    .faq__grid {
        grid-template-columns: 1fr;
        gap: 39px;
    }

    .process__heading {
        position: static;
    }

    .process-list li {
        grid-template-columns: 46px 1fr;
        gap: 15px;
        padding-block: 25px;
    }

    .process-list li > span {
        width: 38px;
        height: 38px;
    }

    .process-list h3 {
        font-size: 23px;
    }

    .review-card {
        min-height: 310px;
        padding: 28px 25px;
    }

    .review-card > p {
        font-size: 20px;
    }

    .accordion summary {
        grid-template-columns: minmax(0, 1fr) 34px;
        gap: 17px;
        padding: 22px 2px;
    }

    .accordion summary > i {
        width: 34px;
        height: 34px;
    }

    .accordion summary > span {
        font-size: 20px;
    }

    .accordion details > p {
        margin-right: 15px;
        margin-bottom: 24px;
        margin-left: 2px;
        font-size: 14px;
    }

    .request__contact {
        margin-top: 37px;
    }

    .lead-form {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .field input,
    .field select {
        min-height: 54px;
    }

    .contact-list > a {
        grid-template-columns: 78px minmax(0, 1fr) 18px;
        gap: 12px;
        min-height: 83px;
    }

    .contact-list strong {
        font-size: 19px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-block: 42px;
    }

    .footer-phone {
        justify-self: start;
    }

    .site-footer__bottom {
        flex-wrap: wrap;
        align-content: center;
        gap: 10px 18px;
        min-height: 115px;
        padding-block: 23px;
    }

    .site-footer__bottom a:last-child {
        width: 100%;
        margin: 4px 0 0;
    }

    .floating-whatsapp {
        display: none;
    }

    .mobile-actions {
        position: fixed;
        z-index: 70;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: 0.82fr 1.18fr;
        min-height: calc(62px + env(safe-area-inset-bottom));
        padding-bottom: env(safe-area-inset-bottom);
        background: var(--ink);
        box-shadow: 0 -9px 28px rgba(0, 0, 0, 0.16);
    }

    .mobile-actions a {
        display: grid;
        place-items: center;
        font-size: 11px;
        font-weight: 850;
        letter-spacing: 0.035em;
    }

    .mobile-actions a:first-child {
        color: var(--white);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .mobile-actions a:last-child {
        color: var(--ink);
        background: var(--orange);
    }

    .cookie-banner {
        right: 10px;
        bottom: calc(72px + env(safe-area-inset-bottom));
        grid-template-columns: 1fr;
        width: calc(100% - 20px);
        gap: 16px;
        padding: 18px;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-banner__actions button {
        white-space: normal;
    }
}

@media (max-width: 390px) {
    .hero {
        min-height: 780px;
    }

    .brand__copy small {
        display: none;
    }

    .hero__proof span br {
        display: none;
    }

    .contact-list > a {
        grid-template-columns: 1fr 18px;
    }

    .contact-list > a > span {
        grid-column: 1 / -1;
        margin-bottom: -8px;
    }
}

@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;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (forced-colors: active) {
    .button,
    .nav-toggle,
    .brand__mark,
    .mobile-actions a,
    .product-card__body button {
        border: 1px solid currentColor;
    }
}

@media print {
    .offer-bar,
    .main-nav,
    .nav-toggle,
    .hero__actions,
    .floating-whatsapp,
    .mobile-actions,
    .cookie-banner,
    .site-footer__bottom button {
        display: none !important;
    }

    .site-header {
        position: static;
    }

    .section,
    .hero {
        min-height: 0;
        padding-block: 36px;
        break-inside: avoid;
    }

    body,
    .section-dark,
    .site-footer {
        color: #000;
        background: #fff;
    }
}
