:root {
    --ink: #102729;
    --deep: #0e3033;
    --deep-2: #153f42;
    --yellow: #FDC300;
    --paper: #f7f6f1;
    --white: #ffffff;
    --muted: #637072;
    --line: rgba(16, 39, 41, 0.14);
    --radius-lg: 36px;
    --radius-md: 24px;
    --shadow: 0 24px 70px rgba(10, 38, 40, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button {
    font: inherit;
}

.container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    transform: translateY(-160%);
    border-radius: 10px;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(9, 39, 42, 0.96);
    color: var(--white);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    color: var(--white);
    line-height: 1;
    text-decoration: none;
}

.brand__name {
    color: var(--yellow);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.brand__place {
    margin-top: 7px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 550;
}

.desktop-nav > a,
.desktop-nav__dropdown > button {
    padding: 12px 0;
    border: 0;
    background: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease;
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.desktop-nav__dropdown > button:hover,
.desktop-nav__dropdown > button:focus-visible {
    color: var(--yellow);
    outline: none;
}

.desktop-nav__dropdown {
    position: relative;
}

.desktop-nav__dropdown > button span {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.desktop-nav__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    display: grid;
    width: 260px;
    padding: 12px;
    transform: translate(-50%, 10px);
    visibility: hidden;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    color: var(--ink);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.desktop-nav__menu a {
    padding: 12px 13px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.desktop-nav__menu a:hover,
.desktop-nav__menu a:focus-visible,
.desktop-nav__menu a[aria-current="page"] {
    background: rgba(253, 195, 0, 0.18);
    outline: none;
}

.desktop-nav__dropdown:hover .desktop-nav__menu,
.desktop-nav__dropdown:focus-within .desktop-nav__menu {
    transform: translate(-50%, 0);
    visibility: visible;
    opacity: 1;
}

.desktop-nav__dropdown:hover > button span,
.desktop-nav__dropdown:focus-within > button span {
    transform: rotate(180deg);
}

.header-phone {
    display: inline-flex;
    min-height: 46px;
    padding: 10px 18px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 15px;
    background: var(--yellow);
    color: var(--ink);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-phone:hover,
.header-phone:focus-visible {
    transform: translateY(-2px);
    outline: none;
    box-shadow: 0 12px 28px rgba(253, 195, 0, 0.2);
}

.menu-toggle {
    display: none;
    padding: 10px 0;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.menu-toggle__label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-toggle__icon {
    display: grid;
    width: 28px;
    gap: 6px;
}

.menu-toggle__icon span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--yellow);
    transition: transform 0.2s ease;
}

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

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

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

.mobile-nav {
    position: fixed;
    inset: 86px 0 0;
    overflow-y: auto;
    background: #0b292c;
}

.mobile-nav__inner {
    display: grid;
    padding: 30px 0 52px;
    gap: 4px;
}

.mobile-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.mobile-nav a[aria-current="page"] {
    color: var(--yellow);
}

.mobile-nav .mobile-nav__phone {
    margin-top: 20px;
    padding: 16px 20px;
    border: 0;
    border-radius: 15px;
    background: var(--yellow);
    color: var(--ink);
    text-align: center;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 110px;
    background:
        radial-gradient(circle at 76% 20%, rgba(86, 128, 105, 0.22), transparent 38%),
        linear-gradient(145deg, #09272a 0%, #123c3f 58%, #09282b 100%);
    color: #fff;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero__glow--one {
    top: -220px;
    left: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(253, 195, 0, 0.13);
}

.hero__glow--two {
    right: -280px;
    bottom: -310px;
    width: 760px;
    height: 760px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__grid {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    gap: 92px;
}

.breadcrumbs {
    display: flex;
    margin-bottom: 38px;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--yellow);
}

.hero__eyebrow,
.eyebrow {
    color: var(--deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.68);
}

.hero__eyebrow span {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--ink);
}

.hero h1 {
    margin: 25px 0 0;
    font-size: clamp(54px, 6.2vw, 88px);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.hero h1 span {
    display: inline-block;
    margin-top: 12px;
    color: var(--yellow);
    font-size: 0.63em;
    letter-spacing: -0.035em;
}

.hero__lead {
    max-width: 640px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.65;
}

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

.button {
    display: inline-flex;
    min-height: 56px;
    padding: 14px 22px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid transparent;
    border-radius: 17px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-3px);
    outline: none;
}

.button--primary {
    background: var(--yellow);
    color: var(--ink);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.button--ghost:hover,
.button--ghost:focus-visible {
    border-color: var(--yellow);
}

.button--dark {
    margin: 36px auto 0;
    background: var(--ink);
    color: #fff;
}

.hero__facts {
    display: grid;
    max-width: 640px;
    margin: 52px 0 0;
    padding: 28px 0 0;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    list-style: none;
}

.hero__facts li {
    padding-right: 20px;
}

.hero__facts li + li {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__facts strong {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.hero__facts li > span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero__media {
    position: relative;
    min-height: 690px;
}

.hero__photo {
    position: absolute;
    inset: 0 0 0 42px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 220px 38px 38px 38px;
    background: #163a3d;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.34);
}

.hero__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 32, 35, 0.62), transparent 45%);
    pointer-events: none;
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.hero__product-card {
    position: absolute;
    z-index: 2;
    bottom: 44px;
    left: -50px;
    width: 246px;
    height: 238px;
    margin: 0;
    overflow: hidden;
    border: 8px solid #123639;
    border-radius: 26px;
    background: #222;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
    transform: rotate(-2.5deg);
}

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

.hero__availability {
    position: absolute;
    z-index: 3;
    right: 24px;
    bottom: 24px;
    display: flex;
    padding: 12px 15px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(8, 37, 40, 0.82);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero__availability span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #63d58a;
    box-shadow: 0 0 0 5px rgba(99, 213, 138, 0.12);
}

.section {
    padding: 118px 0;
}

.section-heading h2 {
    max-width: 720px;
    margin: 18px 0 0;
    font-size: clamp(36px, 4.4vw, 62px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.section-heading--compact h2 {
    font-size: clamp(34px, 3.4vw, 50px);
}

.section-heading > p:not(.eyebrow) {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.section-heading--center {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.intro {
    background: #fff;
}

.intro__grid {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
    gap: 100px;
}

.intro__copy {
    padding-bottom: 5px;
}

.intro__copy p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.intro__copy p + p {
    margin-top: 22px;
}

.machine {
    background: #e9eee9;
}

.machine__grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
    gap: 78px;
}

.machine__photo {
    position: relative;
    min-height: 780px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #d3ddd4;
    box-shadow: var(--shadow);
}

.machine__photo::after {
    content: '';
    position: absolute;
    inset: 50% 0 0;
    background: linear-gradient(to top, rgba(9, 38, 41, 0.72), transparent);
    pointer-events: none;
}

.machine__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 48%;
}

.machine__photo figcaption {
    position: absolute;
    z-index: 1;
    right: 26px;
    bottom: 26px;
    left: 26px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.machine__content {
    display: flex;
    padding: 24px 0;
    flex-direction: column;
    justify-content: center;
}

.spec-grid {
    display: grid;
    margin: 48px 0 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.spec-card {
    min-height: 154px;
    padding: 26px;
    border: 1px solid rgba(16, 39, 41, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.66);
}

.spec-card strong {
    display: block;
    color: var(--deep);
    font-size: 24px;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.spec-card span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.gallery-section {
    background: #fff;
}

.gallery-section__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.text-link,
.booking__social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 750;
    text-underline-offset: 5px;
}

.photo-grid {
    display: grid;
    margin-top: 46px;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    grid-template-rows: 520px 160px;
    gap: 16px;
}

.photo-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #e6e9e5;
}

.photo-grid figure:first-child {
    grid-row: 1 / 3;
}

.photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 54%;
    transition: transform 0.5s ease;
}

.photo-grid figure:hover img {
    transform: scale(1.025);
}

.photo-grid__caption {
    display: flex;
    padding: 28px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    border-radius: 28px;
    background: var(--yellow);
}

.photo-grid__caption span {
    color: rgba(16, 39, 41, 0.5);
    font-size: 13px;
    font-weight: 800;
}

.photo-grid__caption p {
    max-width: 330px;
    margin: 0;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.choice {
    background: var(--paper);
}

.choice__grid {
    display: grid;
    margin-top: 52px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.choice-card {
    position: relative;
    min-height: 370px;
    padding: 42px;
    overflow: hidden;
    border-radius: 28px;
}

.choice-card::after {
    content: '';
    position: absolute;
    right: -90px;
    bottom: -140px;
    width: 330px;
    height: 330px;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: 0.1;
}

.choice-card--premium {
    background: var(--deep);
    color: #fff;
}

.choice-card--accessible {
    border: 1px solid rgba(16, 39, 41, 0.12);
    background: #fff;
    color: var(--ink);
}

.choice-card__label {
    display: inline-flex;
    padding: 8px 11px;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.choice-card--accessible .choice-card__label {
    background: var(--yellow);
    color: var(--ink);
}

.choice-card h3 {
    max-width: 480px;
    margin: 24px 0 0;
    font-size: 31px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.choice-card > p:not(.choice-card__price) {
    max-width: 500px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.65;
}

.choice-card--accessible > p:not(.choice-card__price) {
    color: var(--muted);
}

.choice-card__price {
    position: absolute;
    z-index: 1;
    right: 42px;
    bottom: 38px;
    left: 42px;
    margin: 0;
    color: var(--yellow);
    font-size: 24px;
    font-weight: 850;
}

.choice-card--accessible .choice-card__price {
    color: var(--deep);
}

.choice-card__price small {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.6;
}

.choice .container {
    display: flex;
    flex-direction: column;
}

.booking {
    padding: 88px 0;
    background: var(--yellow);
}

.booking__inner {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 72px;
}

.booking .eyebrow {
    color: rgba(16, 39, 41, 0.62);
}

.booking h2 {
    margin: 14px 0 0;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
}

.booking p:not(.eyebrow) {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(16, 39, 41, 0.68);
    font-size: 16px;
    line-height: 1.65;
}

.booking__actions {
    display: grid;
    min-width: 280px;
    justify-items: stretch;
    gap: 18px;
}

.booking .button--primary {
    background: var(--ink);
    color: #fff;
}

.booking__social {
    justify-content: center;
}

.site-footer {
    padding: 60px 0;
    background: #082326;
    color: #fff;
}

.site-footer__grid {
    display: grid;
    align-items: center;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 70px;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.site-footer__links {
    display: flex;
    gap: 24px;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.site-footer__links a:hover {
    color: var(--yellow);
}

@media (max-width: 1140px) {
    .desktop-nav {
        gap: 18px;
    }

    .header-phone {
        display: none;
    }

    .hero__grid {
        gap: 58px;
    }

    .hero__product-card {
        left: -24px;
        width: 210px;
        height: 205px;
    }
}

@media (min-width: 921px) {
    .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 920px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        padding-top: 72px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 68px;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero__media {
        min-height: 720px;
        margin: 0 30px;
    }

    .hero__photo {
        left: 60px;
    }

    .hero__product-card {
        left: -30px;
        width: 250px;
        height: 240px;
    }

    .intro__grid,
    .machine__grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .intro__copy {
        max-width: 720px;
    }

    .machine__photo {
        min-height: 680px;
    }

    .photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 470px 160px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr auto;
        gap: 30px;
    }

    .site-footer p {
        grid-column: 1 / 3;
        grid-row: 2;
    }
}

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

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

    .brand__name {
        font-size: 18px;
    }

    .brand__place {
        font-size: 9px;
    }

    .mobile-nav {
        inset: 76px 0 0;
    }

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

    .breadcrumbs {
        margin-bottom: 30px;
    }

    .hero__eyebrow {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        margin-top: 22px;
        font-size: clamp(45px, 14vw, 68px);
    }

    .hero__lead {
        font-size: 16px;
    }

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

    .hero__facts {
        margin-top: 38px;
        grid-template-columns: 1fr;
    }

    .hero__facts li {
        display: flex;
        padding: 15px 0;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .hero__facts li + li {
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .hero__facts li > span {
        margin: 0;
        text-align: right;
    }

    .hero__media {
        min-height: 570px;
        margin: 0;
    }

    .hero__photo {
        inset: 0;
        border-radius: 130px 26px 26px 26px;
    }

    .hero__product-card {
        bottom: 24px;
        left: -8px;
        width: 155px;
        height: 150px;
        border-width: 5px;
        border-radius: 18px;
    }

    .hero__availability {
        right: 14px;
        bottom: 15px;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading h2 {
        margin-top: 14px;
        font-size: clamp(34px, 10vw, 48px);
    }

    .section-heading > p:not(.eyebrow),
    .intro__copy p {
        font-size: 15px;
    }

    .intro__grid,
    .machine__grid {
        gap: 42px;
    }

    .machine__photo {
        min-height: 580px;
        border-radius: 26px;
    }

    .machine__content {
        padding: 0;
    }

    .spec-grid {
        margin-top: 34px;
        grid-template-columns: 1fr;
    }

    .spec-card {
        min-height: 0;
        padding: 22px;
    }

    .gallery-section__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 520px 520px auto;
    }

    .photo-grid figure:first-child {
        grid-row: auto;
    }

    .photo-grid__caption {
        min-height: 150px;
    }

    .choice__grid {
        margin-top: 38px;
        grid-template-columns: 1fr;
    }

    .choice-card {
        min-height: 360px;
        padding: 30px;
    }

    .choice-card h3 {
        font-size: 27px;
    }

    .choice-card__price {
        right: 30px;
        bottom: 30px;
        left: 30px;
        font-size: 21px;
    }

    .booking {
        padding: 72px 0;
    }

    .booking__inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .booking__actions {
        min-width: 0;
    }

    .site-footer__grid {
        align-items: flex-start;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer p {
        grid-column: auto;
        grid-row: auto;
    }

    .site-footer__links {
        flex-wrap: wrap;
    }
}

@media (max-width: 420px) {
    .menu-toggle__label {
        display: none;
    }

    .hero__media {
        min-height: 500px;
    }

    .hero__product-card {
        width: 135px;
        height: 132px;
    }

    .hero__availability {
        padding: 10px 12px;
        font-size: 9px;
    }

    .machine__photo {
        min-height: 510px;
    }

    .photo-grid {
        grid-template-rows: 460px 460px auto;
    }
}

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

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