.home-section {
    position: relative;
    padding: clamp(86px, 9vw, 132px) 0;
}

.section-kicker {
    margin: 0 0 14px;
    color: #777469;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section-kicker--light { color: var(--brand); }

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
    align-items: end;
    gap: clamp(30px, 7vw, 100px);
    margin-bottom: clamp(38px, 5vw, 64px);
}

.section-heading h2,
.about-section__content h2,
.delivery-section__content h2,
.partner-video-cta__content h2 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(42px, 5.2vw, 76px);
    font-weight: 700;
    line-height: .98;
}

.section-heading > p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.button--dark {
    color: #fff;
    background: var(--ink);
    box-shadow: 0 15px 34px rgba(17, 17, 17, .17);
}

.button--dark:hover {
    color: var(--ink);
    background: var(--brand);
    box-shadow: 0 18px 40px rgba(17, 17, 17, .2);
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity .7s ease, transform .85s var(--ease);
}

.has-js .reveal {
    opacity: 0;
    transform: translateY(28px);
}

.has-js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* About */
.about-section {
    overflow: hidden;
    background: #fff;
}

.about-section__grid {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(64px, 10vw, 150px);
}

.about-section__brand {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-start;
}

.about-section__brand img {
    display: block;
    width: min(100%, 460px);
    height: auto;
}

.about-section__content h2 { margin-bottom: 28px; }

.about-section__content > p:not(.section-kicker) {
    max-width: 650px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.about-section__content .button { margin-top: 20px; }

/* Delivery */
.delivery-section {
    min-height: 720px;
    overflow: hidden;
    color: #fff;
    background: #111;
}

.delivery-section__visual {
    position: absolute;
    inset: 0;
}

.delivery-section__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(11, 11, 11, .96) 0%, rgba(11, 11, 11, .84) 43%, rgba(11, 11, 11, .58) 100%),
        linear-gradient(180deg, rgba(11, 11, 11, .12), rgba(11, 11, 11, .45));
}

.delivery-section__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .82;
}

.delivery-section__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, .78fr);
    align-items: center;
    gap: clamp(58px, 8vw, 126px);
}

.delivery-section__content { min-width: 0; }

.delivery-section__content h2 {
    margin-bottom: 28px;
    color: #fff;
    font-size: clamp(43px, 5vw, 74px);
}

.delivery-section__content > p:not(.section-kicker) {
    max-width: 650px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    line-height: 1.85;
}

.delivery-cities-list {
    width: min(100%, 540px);
    justify-self: end;
    color: #fff;
}

.delivery-cities-list h3 {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .72);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.delivery-cities-list__items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.delivery-cities-list__items li {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, .23);
    border-radius: 999px;
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: color .28s ease, border-color .28s ease, background-color .28s ease, transform .28s var(--ease);
}

.delivery-cities-list__items li:hover {
    color: var(--ink);
    border-color: var(--brand);
    background: var(--brand);
    transform: translateY(-2px);
}

/* Categories slider */
.categories-section {
    overflow: hidden;
    background: var(--paper-warm);
}

.category-slider__viewport {
    overflow: hidden;
}

.category-slider__track {
    display: flex;
    gap: 18px;
    will-change: transform;
    transition: transform .72s var(--ease);
}

.category-card {
    position: relative;
    min-width: calc((100% - 54px) / 4);
    min-height: 390px;
    overflow: hidden;
    border-radius: 10px 26px 10px 26px;
    background: #111;
    box-shadow: 0 18px 48px rgba(17, 17, 17, .08);
}

.category-card:nth-child(even) { border-radius: 26px 10px 26px 10px; }

.category-card__media,
.category-card > img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.category-card__media {
    overflow: hidden;
    background: #111;
}

.category-card__image,
.category-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card__image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 1.05s ease, transform 7s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}

.category-card__image.is-active {
    opacity: 1;
    transform: scale(1.045);
}

.category-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, .02) 22%, rgba(8, 8, 8, .9) 100%);
    transition: background .45s ease;
}

.category-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: grid;
    padding: 28px;
    color: #fff;
}

.category-card__content small {
    margin-bottom: 6px;
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.category-card__content strong {
    min-height: 58px;
    font-family: var(--font-display);
    font-size: clamp(25px, 2.25vw, 34px);
    line-height: 1;
}

.category-card__content em {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .75);
    font-family: var(--font-display);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.category-card__content svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s var(--ease);
}

.category-card:hover > img,
.category-card:hover .category-card__image.is-active {
    transform: scale(1.085);
    filter: saturate(1.08);
}
.category-card:hover .category-card__shade { background: linear-gradient(180deg, rgba(8, 8, 8, 0) 10%, rgba(8, 8, 8, .94) 100%); }
.category-card:hover .category-card__content svg { transform: translateX(6px); }

.category-slider__dots {
    display: flex;
    min-height: 22px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.category-slider__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, .42);
    border-radius: 999px;
    background: rgba(17, 17, 17, .1);
    cursor: pointer;
    transition: width .35s var(--ease), border-color .25s ease, background-color .25s ease, transform .25s var(--ease);
}

.category-slider__dot:hover {
    border-color: var(--ink);
    background: rgba(17, 17, 17, .55);
    transform: scale(1.12);
}

.category-slider__dot.is-active {
    width: 30px;
    border-color: var(--brand);
    background: var(--brand);
    transform: none;
}

/* Partner video CTA */
.partner-section {
    overflow: hidden;
    background: #fff;
}

.partner-video-cta {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border-radius: 30px;
    background: #111;
    box-shadow: 0 30px 80px rgba(17, 17, 17, .18);
}

.partner-video-cta__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease), filter .6s ease;
}

.partner-video-cta:hover .partner-video-cta__poster { transform: scale(1.025); }

.partner-video-cta__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 8, 8, .93) 0%, rgba(8, 8, 8, .72) 47%, rgba(8, 8, 8, .28) 76%, rgba(8, 8, 8, .2) 100%),
        linear-gradient(180deg, rgba(8, 8, 8, .05), rgba(8, 8, 8, .42));
}

.partner-video-cta__content {
    position: absolute;
    bottom: clamp(48px, 6vw, 78px);
    left: clamp(42px, 6vw, 82px);
    z-index: 3;
    width: min(610px, 55%);
    color: #fff;
}

.partner-video-cta__content h2 {
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(42px, 5vw, 70px);
}

.partner-video-cta__content > p:not(.section-kicker) {
    max-width: 590px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    line-height: 1.75;
}

.partner-video-cta__watch {
    position: absolute;
    top: 50%;
    left: 76%;
    z-index: 4;
    display: grid;
    justify-items: center;
    gap: 18px;
    color: rgba(255, 255, 255, .82);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    transform: translate(-50%, -50%);
}

.partner-video-cta__play {
    position: relative;
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    padding: 0;
    border: 3px solid var(--brand);
    border-radius: 50%;
    color: var(--brand);
    background: transparent;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
    cursor: pointer;
    transition: background-color .3s ease, transform .35s var(--ease), box-shadow .3s ease;
}

.partner-video-cta__play::before {
    content: "";
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(226, 210, 30, .72);
    border-radius: inherit;
    pointer-events: none;
    animation: ingalactPlayPulse 2.25s ease-out infinite;
}

.partner-video-cta__play:hover {
    background: rgba(226, 210, 30, .12);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .22), 0 0 0 6px rgba(226, 210, 30, .08);
    transform: scale(1.05);
}

.partner-video-cta__play:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 6px;
}

.partner-video-cta__play-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
}

.partner-video-cta__play-icon svg {
    display: block;
    width: 40px;
    height: 40px;
    overflow: visible;
    fill: currentColor;
    transform-origin: center;
    transition: transform .3s var(--ease);
}

.partner-video-cta__play:hover .partner-video-cta__play-icon svg {
    transform: scale(1.08);
}

@keyframes ingalactPlayPulse {
    0% { opacity: .72; transform: scale(.96); }
    72%, 100% { opacity: 0; transform: scale(1.3); }
}

body.has-video-modal { overflow: hidden; }

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    visibility: hidden;
    place-items: center;
    padding: clamp(18px, 4vw, 54px);
    opacity: 0;
    transition: opacity .32s ease, visibility .32s ease;
}

.video-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(5, 5, 5, .88);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.video-modal__dialog {
    position: relative;
    z-index: 2;
    width: min(1120px, 100%);
    transform: translateY(18px) scale(.985);
    transition: transform .42s var(--ease);
}

.video-modal.is-open .video-modal__dialog { transform: translateY(0) scale(1); }

.video-modal__frame {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    background: #000;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .48);
    aspect-ratio: 16 / 9;
}

.video-modal__frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-modal__close {
    position: absolute;
    top: -56px;
    right: 0;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
    transition: color .3s ease, border-color .3s ease, background-color .3s ease, transform .3s var(--ease);
}

.video-modal__close:hover {
    color: var(--ink);
    border-color: var(--brand);
    background: var(--brand);
    transform: rotate(6deg);
}

.video-modal__close svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

/* Brands */
.brands-section {
    position: relative;
    overflow: hidden;
    padding: clamp(25px, 3vw, 38px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.brand-marquee {
    --brand-marquee-gap: clamp(18px, 1.35vw, 26px);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-marquee__track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: brandMarquee 68s linear infinite;
    will-change: transform;
}

.brand-marquee__group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: var(--brand-marquee-gap);
    padding-right: var(--brand-marquee-gap);
}

.brand-logo {
    display: grid;
    width: clamp(235px, 17vw, 290px);
    height: 188px;
    flex: 0 0 auto;
    place-items: center;
    padding: 0;
    overflow: visible;
    box-sizing: border-box;
}

.brand-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 112%;
    max-height: 170px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(1);
    opacity: .46;
    transform: scale(1.08);
    transition: filter .4s ease, opacity .4s ease, transform .4s var(--ease);
}

.brand-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.15);
}

@keyframes brandMarquee { to { transform: translateX(-50%); } }

/* Google reviews slider */
.testimonials-section {
    overflow: hidden;
    background: #f4f3ec;
}

.testimonial-slider__viewport { overflow: hidden; }

.testimonial-slider__track {
    display: flex;
    gap: 20px;
    will-change: transform;
    transition: transform .72s var(--ease);
}

.testimonial-card {
    display: flex;
    min-width: calc((100% - 40px) / 3);
    min-height: 360px;
    flex-direction: column;
    padding: clamp(26px, 3vw, 38px);
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(17, 17, 17, .05);
    transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}

.testimonial-card:hover {
    border-color: rgba(17, 17, 17, .15);
    box-shadow: 0 22px 55px rgba(17, 17, 17, .09);
    transform: translateY(-7px);
}

.testimonial-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.google-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.google-brand img { width: 23px; height: 23px; }
.google-brand strong { color: #555; font-family: Arial, sans-serif; font-size: 14px; font-weight: 600; }
.testimonial-card__date { color: #969696; font-size: 11px; }
.testimonial-card__stars { margin-top: 28px; color: #fbbc04; font-size: 17px; letter-spacing: .12em; }

.testimonial-card blockquote {
    flex: 1;
    margin: 22px 0 34px;
    color: #2d2d2a;
    font-family: var(--font-display);
    font-size: clamp(20px, 1.7vw, 25px);
    font-weight: 600;
    line-height: 1.38;
}

.testimonial-card footer {
    display: block;
    padding-top: 20px;
    border-top: 1px solid rgba(17, 17, 17, .08);
}

.testimonial-author strong,
.testimonial-author small { display: block; }

.testimonial-author strong {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}

.testimonial-author small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 11px;
}

.testimonial-slider__dots { margin-top: 34px; }

@media (max-width: 1180px) {
    .about-section__grid { gap: 70px; }
    .about-section__brand img { width: min(100%, 400px); }
    .category-card { min-height: 360px; }
    .partner-video-cta { min-height: 610px; }
}

@media (max-width: 1024px) {
    .section-heading { grid-template-columns: 1fr; gap: 20px; }
    .section-heading > p { max-width: 670px; }

    .about-section__grid { grid-template-columns: .72fr 1.05fr; gap: 52px; }
    .about-section__brand img { width: min(100%, 360px); }

    .delivery-section__inner { grid-template-columns: 1fr; gap: 48px; }
    .delivery-section__content { max-width: 730px; }
    .delivery-cities-list { max-width: 680px; justify-self: start; }

    .category-card { min-width: calc((100% - 18px) / 2); min-height: 390px; }

    .partner-video-cta__content { width: min(560px, 58%); }
    .partner-video-cta__watch { left: 78%; }

    .testimonial-card { min-width: calc((100% - 20px) / 2); }
}

@media (max-width: 760px) {
    .home-section { padding: 78px 0; }
    .section-heading h2,
    .about-section__content h2,
    .delivery-section__content h2,
    .partner-video-cta__content h2 { font-size: clamp(38px, 10vw, 54px); }
    .section-heading { margin-bottom: 34px; }

    .about-section__grid { grid-template-columns: 1fr; gap: 52px; }
    .about-section__brand { justify-content: center; }
    .about-section__brand img { width: min(72%, 340px); }

    .delivery-section { min-height: 0; }
    .delivery-section__visual::before {
        background: linear-gradient(180deg, rgba(11,11,11,.7), rgba(11,11,11,.94));
    }
    .delivery-section__inner { grid-template-columns: 1fr; gap: 42px; }

    .category-card { min-width: 100%; min-height: 410px; }

    .partner-video-cta { min-height: 680px; border-radius: 22px; }
    .partner-video-cta__overlay {
        background: linear-gradient(180deg, rgba(8,8,8,.16) 4%, rgba(8,8,8,.46) 38%, rgba(8,8,8,.95) 100%);
    }
    .partner-video-cta__content {
        right: 28px;
        bottom: 36px;
        left: 28px;
        width: auto;
    }
    .partner-video-cta__content h2 { font-size: clamp(38px, 10vw, 54px); }
    .partner-video-cta__watch { top: 27%; left: 50%; }
    .partner-video-cta__play { width: 72px; height: 72px; border-width: 3px; }
    .partner-video-cta__play-icon svg { width: 37px; height: 37px; }
    .video-modal { padding: 18px; }
    .video-modal__close { top: -50px; }

    .brands-section { padding: 24px 0; }
    .brand-marquee { --brand-marquee-gap: 15px; }
    .brand-marquee__track { animation-duration: 58s; }
    .brand-logo { width: 226px; height: 166px; padding: 0; }
    .brand-logo img { max-width: 112%; max-height: 150px; }

    .testimonial-card { min-width: 100%; min-height: 350px; }
}

@media (max-width: 520px) {
    .brands-section { padding: 21px 0; }
    .brand-marquee { --brand-marquee-gap: 11px; }
    .brand-logo { width: 196px; height: 148px; padding: 0; }
    .brand-logo img { max-width: 114%; max-height: 136px; }
    .about-section__brand img { width: min(82%, 310px); }
    .delivery-cities-list { width: 100%; max-width: none; justify-self: stretch; }
    .delivery-cities-list__items { gap: 8px; }
    .delivery-cities-list__items li { min-height: 39px; padding: 9px 14px; font-size: 13px; }
    .category-card { min-height: 380px; }
    .category-card__content { padding: 25px; }
    .partner-video-cta { min-height: 690px; }
    .partner-video-cta__content { right: 22px; bottom: 28px; left: 22px; }
    .partner-video-cta__content > p:not(.section-kicker) { font-size: 14px; }
    .partner-video-cta__watch { top: 24%; }
    .partner-video-cta__watch > span { font-size: 11px; }
    .partner-video-cta__play { width: 68px; height: 68px; border-width: 3px; }
    .partner-video-cta__play-icon svg { width: 35px; height: 35px; }
}

@media (prefers-reduced-motion: reduce) {
    .brand-marquee__track,
    .partner-video-cta__play::before { animation: none; }
    .category-card__image { transition: none; transform: none; }
    .reveal { opacity: 1; transform: none; }
}

/* Dynamic media support */
.hero-slide__background picture,
.hero-slide__background picture img {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-slide__background picture img { object-fit: cover; }
.video-modal__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.brand-logo a { display: grid; width: 100%; height: 100%; place-items: center; overflow: visible; }

/* Solid category fallback used when no image is configured. */
.category-card--solid .category-card__media::before,
.category-card--solid .category-card__media::after {
    position: absolute;
    content: "";
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}
.category-card--solid .category-card__media::before { width: 230px; height: 230px; top: -90px; right: -80px; }
.category-card--solid .category-card__media::after { width: 150px; height: 150px; bottom: 48px; left: -70px; }
.category-card--solid .category-card__shade { background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.64)); }
.category-card--solid:hover .category-card__shade { background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.72)); }
