:root {
    --navy: #063b70;
    --navy-deep: #03294f;
    --navy-ink: #071e34;
    --red: #e21d25;
    --red-dark: #bc1118;
    --orange: #f7941d;
    --white: #fff;
    --light: #f5f7fa;
    --pale: #eaf0f5;
    --grey: #657485;
    --dark: #101820;
    --line: #dbe2e8;
    --green: #169b62;
    --max: 1240px;
    --shadow: 0 24px 70px rgba(3, 41, 79, .13);
    --radius: 6px;
    --font-head: 'Manrope', sans-serif;
    --font-body: 'DM Sans', sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    margin: 0;
    color: var(--dark);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden
}

body.menu-open,
body.lightbox-open {
    overflow: hidden
}

img {
    display: block;
    width: 100%;
    height: auto
}

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

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

button {
    cursor: pointer
}

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

.container {
    width: min(calc(100% - 48px), var(--max));
    margin-inline: auto
}

.skip-link {
    position: fixed;
    z-index: 9999;
    left: 1rem;
    top: -5rem;
    background: var(--white);
    color: var(--navy);
    padding: .7rem 1rem
}

.skip-link:focus {
    top: 1rem
}

.eyebrow {
    display: block;
    color: var(--red);
    font: 700 .75rem/1.4 var(--font-head);
    letter-spacing: .15em;
    margin-bottom: 1rem
}

.eyebrow.light {
    color: #ffd18a
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: .8rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 3px;
    font: 700 .86rem/1 var(--font-head);
    text-transform: none;
    transition: .25s ease
}

.btn svg {
    width: 17px
}

.btn-primary {
    color: var(--white);
    background: var(--red)
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px)
}

.btn-outline {
    color: var(--navy);
    border-color: var(--navy);
    background: transparent
}

.btn-outline:hover {
    color: var(--white);
    background: var(--navy)
}

.btn-ghost {
    color: var(--navy);
    background: transparent;
    border-color: var(--line)
}

.btn-light {
    color: var(--navy-deep);
    background: var(--white)
}

.btn-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .5)
}

.btn-whatsapp {
    color: var(--white);
    background: var(--green)
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem
}

.section {
    padding: 110px 0
}

.light-band,
.services-band,
.faq-preview {
    background: var(--light)
}

.navy-band {
    background: var(--navy-deep);
    color: var(--white)
}

.section-heading {
    max-width: 680px;
    margin-bottom: 3rem
}

.section-heading h2,
.content h2,
.editorial h2,
.service-intro h2,
.detail-grid h2,
.contact-details h2,
.faq-layout aside h2 {
    font: 800 clamp(2rem, 4vw, 3.35rem)/1.08 var(--font-head);
    letter-spacing: 0;
    margin: 0 0 1.1rem
}

.section-heading p,
.content p,
.service-intro p {
    color: var(--grey);
    font-size: 1.06rem
}

.center {
    text-align: center;
    margin-top: 2.8rem
}

.split {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 8%;
    align-items: center
}

.split.reverse .content {
    order: -1
}

.content p+p {
    margin-top: 1rem
}

.content .btn {
    margin-top: 1.2rem
}

.image-composition {
    position: relative
}

.image-composition>img {
    aspect-ratio: 5/4;
    object-fit: cover
}

.photo-note {
    position: absolute;
    right: -20px;
    bottom: 28px;
    padding: 1.2rem 1.5rem;
    background: var(--navy-deep);
    color: var(--white);
    box-shadow: var(--shadow);
    font-size: .85rem
}

.photo-note strong {
    font: 700 1.05rem var(--font-head)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 1px 0 var(--line);
    transition: transform .3s
}

.site-header.is-hidden {
    transform: translateY(-100%)
}

.topbar {
    background: var(--navy-deep);
    color: #d7e4ee;
    font-size: .74rem
}

.topbar-inner {
    height: 37px;
    display: flex;
    align-items: center;
    gap: 1.75rem
}

.topbar span,
.topbar a {
    display: flex;
    align-items: center;
    gap: .4rem
}

.topbar svg {
    width: 14px
}

.topbar .social {
    margin-left: auto
}

.social a {
    font-weight: 700;
    color: var(--white)
}

.nav-wrap {
    background: var(--white)
}

.nav-inner {
    height: auto;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    transition: .25s
}

.is-compact .nav-inner {
    height: 72px
}

.brand {
    width: 125px;
    flex: none;
    align-self: stretch;
    padding: 6px 0
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.55rem;
    margin-left: auto
}

.desktop-nav>a,
.nav-dropdown>button {
    position: relative;
    border: 0;
    background: none;
    padding: 1rem 0;
    color: var(--dark);
    font: 600 .86rem var(--font-head)
}

.desktop-nav>a:after,
.desktop-nav>a.active:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: .2s
}

.desktop-nav>a:hover:after,
.desktop-nav>a.active:after {
    width: 100%
}

.nav-dropdown {
    position: relative
}

.nav-dropdown button span {
    color: var(--red)
}

.nav-dropdown ul {
    position: absolute;
    top: calc(100% + 20px);
    left: -20px;
    width: 300px;
    margin: 0;
    padding: 12px;
    list-style: none;
    background: var(--white);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--red);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s
}

.nav-dropdown:hover ul,
.nav-dropdown:focus-within ul,
.nav-dropdown.is-open ul {
    opacity: 1;
    visibility: visible;
    transform: none
}

.nav-dropdown li a {
    display: block;
    padding: .55rem .7rem;
    border-bottom: 1px solid var(--line);
    font-size: .83rem
}

.nav-dropdown li:last-child a {
    border: 0
}

.nav-dropdown li a:hover {
    color: var(--red);
    padding-left: 1rem
}

.header-phone {
    display: grid;
    grid-template-columns: 36px auto;
    align-items: center;
    line-height: 1.2
}

.header-phone span {
    grid-row: 1/3;
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--red);
    margin-right: 8px
}

.header-phone small {
    font-size: .67rem;
    color: var(--grey)
}

.header-phone strong {
    font: 700 .79rem var(--font-head)
}

.nav-quote {
    white-space: nowrap
}

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

.hero {
    position: relative;
    height: 650px;
    background: var(--light);
    overflow: hidden
}

.hero-track,
.hero-slide {
    height: 100%
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .7s ease
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible
}

.hero-grid {
    height: 100%;
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: 5%
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding: 3rem 0
}

.hero-index {
    display: block;
    color: var(--grey);
    font: 600 .72rem var(--font-head);
    margin-bottom: 2rem
}

.hero-copy h1 {
    font: 800 clamp(2.7rem, 5vw, 4.8rem)/.99 var(--font-head);
    letter-spacing: 0;
    color: var(--navy-deep);
    margin: 0 0 1.4rem;
    max-width: 720px
}

.hero-copy p {
    max-width: 590px;
    color: var(--grey);
    font-size: 1.08rem;
    margin: 0 0 2rem
}

.hero-image {
    height: 100%;
    position: relative;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%)
}

.hero-image:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(245, 247, 250, .1), transparent 35%)
}

.hero-image img {
    height: 100%;
    object-fit: cover
}

.image-caption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 60px;
    padding: 1rem 1.4rem;
    background: var(--white);
    color: var(--grey);
    font-size: .7rem;
    border-left: 4px solid var(--orange)
}

.image-caption strong {
    color: var(--navy);
    font-size: .85rem
}

.route-line {
    position: absolute;
    z-index: 2;
    left: -5%;
    top: 17%;
    width: 36%;
    height: 2px;
    background: var(--orange);
    transform: rotate(-38deg);
    transform-origin: left
}

.hero-controls {
    position: absolute;
    z-index: 5;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: .8rem
}

.hero-controls>button,
.testimonial-arrows button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--navy)
}

.hero-dots {
    display: flex;
    gap: .45rem
}

.hero-dots button {
    width: 27px;
    height: 3px;
    padding: 0;
    border: 0;
    background: #bac5cf;
    transition: .2s
}

.hero-dots button.is-active {
    width: 48px;
    background: var(--red)
}

.trust-strip {
    background: var(--navy);
    color: var(--white)
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 86px
}

.trust-grid>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    border-right: 1px solid rgba(255, 255, 255, .15);
    font: 600 .85rem var(--font-head)
}

.trust-grid>div:last-child {
    border: 0
}

.trust-grid svg {
    color: var(--orange)
}

/* =========================================================
   WHAT WE DO - PREMIUM SERVICE CAROUSEL
   Replace all old services-grid / service-card CSS with this
========================================================= */

.services-band {
    position: relative;
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
========================================================= */

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

.services-band .section-heading .eyebrow {
    display: inline-block;
    margin-bottom: 12px;

    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: var(--red);
}

.services-band .section-heading h2 {
    margin: 0 0 14px;

    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;

    color: var(--navy);
}

.services-band .section-heading p {
    max-width: 650px;
    margin: 0;

    font-size: 1rem;
    line-height: 1.75;

    color: var(--grey);
}


/* =========================================================
   SERVICE CAROUSEL
========================================================= */

.services-grid {
    display: flex !important;
    flex-wrap: nowrap !important;

    width: 100%;

    gap: 24px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 4px 3px 30px;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-grid::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    flex: 0 0 calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--line);

    border-radius: 0;

    scroll-snap-align: start;

    box-shadow: 0 8px 30px rgba(3, 41, 79, 0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Hover */

.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(226, 29, 37, 0.25);

    box-shadow:
        0 20px 45px rgba(3, 41, 79, 0.12);
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-image {
    position: relative;

    width: 100%;
    height: 235px;

    overflow: hidden;

    background: #edf1f5;
}

.service-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(3, 41, 79, 0.12),
            transparent 45%
        );

    pointer-events: none;
}

.service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.service-card:hover .service-image img {
    transform: scale(1.055);
}


/* =========================================================
   SERVICE CARD BODY
========================================================= */

.service-card-body {
    display: flex;
    flex-direction: column;

    flex: 1;

    min-height: 245px;

    padding: 25px 25px 27px;

    background: var(--white);
}


/* Number */

.service-card-body > span {
    display: block;

    margin-bottom: 11px;

    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.16em;

    color: var(--red);
}


/* Title */

.service-card h3 {
    margin: 0 0 12px;

    font-family: var(--font-head);
    font-size: 1.28rem;
    font-weight: 700;

    line-height: 1.25;

    letter-spacing: -0.015em;

    color: var(--navy);
}


/* Description */

.service-card p {
    margin: 0;

    font-family: var(--font-body, inherit);
    font-size: 0.9rem;

    line-height: 1.7;

    color: var(--grey);
}


/* =========================================================
   LEARN MORE LINK
========================================================= */

.service-card a {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    gap: 8px;

    margin-top: auto;
    padding-top: 22px;

    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    color: var(--navy);

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.service-card a:hover {
    color: var(--red);
    gap: 12px;
}

.service-card a svg {
    display: block;

    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform 0.25s ease;
}

.service-card a:hover svg {
    transform: translateX(2px);
}


/* =========================================================
   CAROUSEL CONTROLS
========================================================= */

.services-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    margin-top: 3px;
}

.services-carousel-buttons {
    display: flex;
    align-items: center;

    gap: 10px;
}

.services-carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 1px solid rgba(3, 41, 79, 0.18);

    border-radius: 0;

    background: var(--white);

    color: var(--navy);

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.services-carousel-btn:hover {
    background: var(--red);

    border-color: var(--red);

    color: var(--white);

    transform: translateY(-2px);
}

.services-carousel-btn:active {
    transform: translateY(0);
}

.services-carousel-btn svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   VIEW ALL SERVICES BUTTON
========================================================= */

.services-band .center {
    display: flex;
    justify-content: center;

    margin-top: 34px;
}

.services-band .btn-outline {
    display: inline-flex;
    align-items: center;

    gap: 9px;
}

.services-band .btn-outline svg {
    width: 17px;
    height: 17px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .services-grid {
        gap: 20px;
    }

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

    .service-image {
        height: 225px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 768px) {

    .services-band .section-heading {
        margin-bottom: 30px;
    }

    .services-band .section-heading h2 {
        font-size: 2rem;
    }

    .services-grid {
        gap: 18px;

        padding-bottom: 24px;

        scroll-snap-type: x mandatory;
    }

    .service-card {
        flex: 0 0 78%;
        width: 78%;
        min-width: 78%;
    }

    .service-image {
        height: 220px;
    }

    .service-card-body {
        min-height: 230px;

        padding: 22px;
    }

    .service-card h3 {
        font-size: 1.18rem;
    }

    .service-card p {
        font-size: 0.88rem;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .services-band .section-heading h2 {
        font-size: 1.85rem;
    }

    .services-band .section-heading p {
        font-size: 0.9rem;
    }

    .services-grid {
        gap: 16px;

        margin-right: -10px;
        padding-right: 30px;
    }

    .service-card {
        flex: 0 0 88%;
        width: 88%;
        min-width: 88%;
    }

    .service-image {
        height: 210px;
    }

    .service-card-body {
        min-height: 220px;

        padding: 21px;
    }

    .service-card-body > span {
        font-size: 0.66rem;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card p {
        font-size: 0.86rem;
        line-height: 1.65;
    }

    .service-card a {
        padding-top: 18px;
    }

    .services-carousel-controls {
        justify-content: flex-start;

        margin-top: 5px;
    }

    .services-carousel-btn {
        width: 42px;
        height: 42px;
    }

    .services-band .center {
        margin-top: 27px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .service-card {
        flex: 0 0 91%;
        width: 91%;
        min-width: 91%;
    }

    .service-image {
        height: 200px;
    }

    .service-card-body {
        min-height: 215px;
    }

}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .services-grid {
        scroll-behavior: auto;
    }

    .service-card,
    .service-image img,
    .service-card a,
    .service-card a svg,
    .services-carousel-btn {
        transition: none;
    }

}

.why-section {
    background: var(--navy-deep);
    color: var(--white)
}

.why-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 8%
}

.why-intro {
    position: sticky;
    top: 120px;
    align-self: start
}

.why-intro h2 {
    font: 800 clamp(2rem, 4vw, 3.4rem)/1.08 var(--font-head);
    margin: 0 0 1rem
}

.why-intro p {
    color: #bfd0de
}

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

.why-list>div {
    min-height: 140px;
    padding: 1.6rem;
    border-left: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center
}

.why-list span {
    color: var(--orange);
    font-size: .7rem
}

.why-list h3 {
    font: 600 1.05rem var(--font-head)
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line)
}

.process-grid article {
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--line);
    position: relative
}

.process-grid article:last-child {
    border: 0
}

.process-grid article:before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 35px;
    height: 5px;
    background: var(--red)
}

.process-grid span {
    color: var(--red);
    font: 700 2.8rem var(--font-head)
}

.process-grid h3 {
    font: 700 1.1rem var(--font-head)
}

.process-grid p {
    color: var(--grey);
    font-size: .9rem
}

.coverage {
    background: var(--pale)
}

.coverage-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 7%;
    align-items: center
}

.coverage-note {
    font-size: .78rem !important;
    font-style: italic
}

.route-map {
    min-height: 420px;
    position: relative;
    padding: 3rem;
    background: var(--navy-deep);
    color: var(--white);
    overflow: hidden
}

.route-map:before,
.route-map:after {
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    width: 480px;
    height: 480px;
    left: -80px;
    top: -30px
}

.route-map:after {
    width: 320px;
    height: 320px;
    left: 0;
    top: 50px
}

.chennai-pin {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    margin: 1.4rem
}

.chennai-pin span {
    width: 18px;
    height: 18px;
    border: 5px solid var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(226, 29, 37, .2)
}

.chennai-pin strong {
    font: 700 1.4rem var(--font-head);
    margin-top: 1rem
}

.chennai-pin small {
    color: #b8cad9
}

.cities {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 4rem
}

.cities span {
    border: 1px solid rgba(255, 255, 255, .22);
    padding: .35rem .65rem;
    font-size: .73rem
}

.transport-feature {
    background: var(--navy);
    color: var(--white)
}

.transport-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: stretch
}

.transport-copy {
    padding: 90px 8% 90px 0
}

.transport-copy h2 {
    font: 800 clamp(2rem, 4vw, 3.5rem)/1.08 var(--font-head);
    margin: 0 0 1rem
}

.transport-copy p {
    color: #c8d7e3;
    margin-bottom: 1.7rem
}

.transport-image {
    margin-right: calc((100vw - min(calc(100vw - 48px), var(--max)))/-2);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%)
}

.transport-image img {
    height: 100%;
    object-fit: cover
}

.testimonial-top {
    display: flex;
    align-items: end;
    justify-content: space-between
}

.testimonial-arrows {
    display: flex;
    gap: .4rem;
    margin-bottom: 3rem
}

.testimonial-window {
    overflow: hidden
}

.testimonial-track {
    display: flex;
    transition: transform .5s ease
}

.testimonial-track blockquote {
    min-width: 100%;
    margin: 0;
    padding: 3rem 8%;
    background: var(--light);
    border-left: 4px solid var(--red)
}

.testimonial-track blockquote>span {
    font: 800 5rem/1 var(--font-head);
    color: var(--orange)
}

.testimonial-track blockquote>p {
    font: 600 clamp(1.5rem, 3vw, 2.4rem)/1.35 var(--font-head);
    max-width: 900px
}

.testimonial-track footer {
    display: flex;
    flex-direction: column
}

.testimonial-track small {
    color: var(--grey)
}

.gallery-preview {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 18px
}

.gallery-preview a {
    overflow: hidden
}

.gallery-preview img {
    height: 380px;
    object-fit: cover;
    transition: .4s
}

.gallery-preview a:hover img {
    transform: scale(1.03)
}

.inner-hero {
    height: 580px;
    position: relative;
    display: flex;
    align-items: end;
    color: var(--white);
    overflow: hidden
}

.inner-hero-image,
.inner-overlay {
    position: absolute;
    inset: 0
}

.inner-hero-image img {
    height: 100%;
    object-fit: cover
}

.inner-overlay {
    background: linear-gradient(90deg, rgba(3, 20, 36, .92) 0%, rgba(3, 41, 79, .72) 46%, rgba(3, 41, 79, .12) 85%)
}

.inner-content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px
}

.breadcrumb {
    display: flex;
    gap: .6rem;
    font-size: .75rem;
    color: #d8e2ea;
    margin-bottom: 2.5rem
}

.inner-content h1 {
    font: 800 clamp(2.7rem, 5.5vw, 5rem)/1.02 var(--font-head);
    letter-spacing: 0;
    max-width: 850px;
    margin: 0 0 1.2rem
}

.inner-content p {
    max-width: 650px;
    color: #dbe5ed;
    font-size: 1.05rem
}

.editorial {
    display: grid;
    grid-template-columns: .3fr .75fr 1fr;
    gap: 5%;
    align-items: start
}

.editorial-number {
    font: 800 5rem/1 var(--font-head);
    color: var(--pale)
}

.editorial p {
    color: var(--grey)
}

.check-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0
}

.check-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem 0;
    border-bottom: 1px solid var(--line)
}

.check-list svg {
    color: var(--red)
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.philosophy-grid article {
    padding: 2.2rem;
    border-top: 4px solid var(--navy);
    background: var(--light)
}

.philosophy-grid span {
    color: var(--red);
    font-weight: 700
}

.philosophy-grid h3 {
    font: 700 1.3rem var(--font-head)
}

.philosophy-grid p {
    color: var(--grey)
}

.location-story {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, .75fr);
    gap: 2rem;
    align-items: center
}

.location-story h2 {
    font: 800 2.8rem/1.1 var(--font-head)
}

.location-story p,
.location-story span {
    color: #b9cad8
}

.location-story>div:not(:first-child) {
    display: flex;
    flex-direction: column;
    padding-left: 1.3rem;
    border-left: 1px solid rgba(255, 255, 255, .2)
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

.service-list-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    border: 1px solid var(--line);
    background: var(--white)
}

.service-list-card>div:first-child {
    overflow: hidden
}

.service-list-card img {
    height: 100%;
    object-fit: cover;
    transition: .4s
}

.service-list-card:hover img {
    transform: scale(1.04)
}

.service-list-card>div:last-child {
    padding: 2rem
}

.service-list-card span {
    color: var(--red);
    font: 700 .72rem var(--font-head)
}

.service-list-card h2 {
    font: 700 1.35rem var(--font-head)
}

.service-list-card p {
    color: var(--grey)
}

.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%
}

.detail-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 8%
}

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

.feature-list>div {
    padding: 1.6rem;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.feature-list svg {
    color: var(--red)
}

.feature-list h3 {
    font: 600 1rem var(--font-head)
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.benefit-grid article {
    padding: 2rem;
    background: var(--light);
    border-bottom: 3px solid var(--navy)
}

.benefit-grid span {
    color: var(--red);
    font-weight: 700
}

.benefit-grid h3 {
    font: 700 1.08rem var(--font-head)
}

.benefit-grid p {
    color: var(--grey);
    font-size: .9rem
}

.process.compact {
    padding-top: 50px
}

.why-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%
}

.why-service h2 {
    font: 800 3rem var(--font-head);
    margin: .5rem 0
}

.why-service p {
    color: #c1d1de
}

.why-service ul {
    list-style: none;
    padding: 0
}

.why-service li {
    display: flex;
    gap: .7rem;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.why-service svg {
    color: var(--orange)
}

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

.related-grid>a {
    position: relative;
    overflow: hidden;
    color: var(--white)
}

.related-grid img {
    height: 300px;
    object-fit: cover;
    filter: brightness(.62);
    transition: .4s
}

.related-grid a:hover img {
    transform: scale(1.04)
}

.related-grid a>div {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem
}

.related-grid h3 {
    font: 700 1.25rem var(--font-head)
}

.related-grid span {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem
}

.related-grid svg {
    width: 16px
}

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

.accordion button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 1.25rem 0;
    font: 600 1rem var(--font-head);
    color: var(--dark)
}

.accordion button b {
    font-size: 1.4rem;
    color: var(--red)
}

.accordion article>div {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease
}

.accordion article>div p {
    color: var(--grey);
    margin: 0;
    padding: 0 0 1.2rem
}

.accordion em {
    font-style: normal;
    color: var(--red);
    font-size: .7rem;
    margin-right: 1.2rem
}

.faq-layout {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    gap: 10%
}

.faq-layout aside {
    position: sticky;
    top: 120px;
    align-self: start
}

.faq-layout aside p {
    color: var(--grey)
}

.accordion.large button {
    font-size: 1.12rem;
    padding: 1.6rem 0
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2.5rem
}

.gallery-filters button {
    border: 1px solid var(--line);
    background: var(--white);
    padding: .6rem 1rem;
    color: var(--grey);
    font-weight: 600
}

.gallery-filters button.is-active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 230px;
    gap: 16px
}

.gallery-item {
    position: relative;
    grid-column: span 4;
    border: 0;
    padding: 0;
    overflow: hidden;
    background: var(--light)
}

.gallery-item.wide {
    grid-column: span 8
}

.gallery-item.tall {
    grid-row: span 2
}

.gallery-item[hidden] {
    display: none
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: .45s
}

.gallery-item:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 41, 79, .75), transparent 55%);
    opacity: .7
}

.gallery-item span {
    position: absolute;
    z-index: 2;
    left: 1.3rem;
    bottom: 1rem;
    color: var(--white);
    font-weight: 700
}

.gallery-item:hover img {
    transform: scale(1.04)
}

.lightbox {
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(1, 12, 23, .94);
    display: none;
    place-items: center;
    padding: 50px
}

.lightbox.is-open {
    display: grid
}

.lightbox figure {
    margin: 0;
    max-width: 1000px
}

.lightbox figure img {
    max-height: 78vh;
    object-fit: contain
}

.lightbox figcaption {
    text-align: center;
    color: var(--white);
    padding: .7rem
}

.lightbox button {
    position: absolute;
    border: 0;
    background: var(--white);
    color: var(--navy);
    width: 44px;
    height: 44px;
    font-size: 1.4rem
}

.lightbox-close {
    right: 24px;
    top: 24px
}

.lightbox-prev {
    left: 24px;
    top: 50%
}

.lightbox-next {
    right: 24px;
    top: 50%
}

.contact-section {
    background: var(--light)
}

.contact-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 7%;
    align-items: start
}

.contact-details>p {
    color: var(--grey)
}

.contact-details>a,
.address-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--line)
}

.contact-details>a>span,
.address-block>span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--red);
    flex: none
}

.contact-details a div,
.address-block address {
    display: flex;
    flex-direction: column;
    font-style: normal
}

.contact-details small,
.address-block small {
    color: var(--grey)
}

.contact-details strong {
    font: 600 .92rem/1.5 var(--font-head)
}

.contact-accent {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--navy-deep);
    color: var(--white);
    display: flex;
    flex-direction: column
}

.contact-accent span {
    color: #b9cad7
}

.quote-form {
    background: var(--white);
    padding: 3rem;
    box-shadow: var(--shadow)
}

.form-heading {
    margin-bottom: 2rem
}

.form-heading>span {
    color: var(--red);
    font: 700 .72rem var(--font-head);
    letter-spacing: .14em
}

.form-heading h2 {
    font: 800 2rem var(--font-head);
    margin: .5rem 0
}

.form-heading p,
.form-note {
    color: var(--grey);
    font-size: .8rem
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem
}

.form-grid label {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: .82rem
}

.form-grid label.full {
    grid-column: 1/-1
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    margin-top: .4rem;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--white);
    padding: .75rem;
    color: var(--dark);
    outline: 0
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(6, 59, 112, .1)
}

.error {
    color: var(--red);
    font-size: .72rem;
    min-height: 1rem
}

.quote-form>.btn {
    margin-top: 1.3rem
}

.form-status {
    color: var(--navy);
    font-weight: 600
}

.final-cta {
    position: relative;
    padding: 90px 0;
    background: var(--navy);
    color: var(--white);
    overflow: hidden
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, var(--navy-deep) 0%, var(--navy) 60%, rgba(226, 29, 37, .38) 100%)
}

.final-cta-bg:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 200%;
    right: -15%;
    top: -60%;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    transform: rotate(-20deg)
}

.final-cta-content {
    position: relative
}

.final-cta h2 {
    font: 800 clamp(2.3rem, 5vw, 4rem)/1 var(--font-head);
    margin: 0 0 1rem
}

.final-cta p {
    color: #d5e1ea;
    font-size: 1.05rem
}

.site-footer {
    background: var(--navy-ink);
    color: #c6d4df;
    padding: 80px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .7fr 1fr 1.15fr;
    gap: 6%
}

.footer-logo {
    width: 116px;
    height: 116px;
    object-fit: contain;
    margin-bottom: 1rem
}

.footer-grid p {
    font-size: .88rem
}

.footer-grid h3 {
    font: 700 .9rem var(--font-head);
    color: var(--white);
    margin-bottom: 1.2rem
}

.footer-grid>div>a {
    display: block;
    font-size: .8rem;
    margin: .5rem 0;
    transition: .2s
}

.footer-grid>div>a:hover {
    color: var(--orange);
    transform: translateX(3px)
}

.footer-grid address {
    font-style: normal;
    font-size: .8rem
}

.footer-social {
    display: flex;
    gap: .5rem
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid #3b5062;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: .65rem;
    font-weight: 700
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    padding: 1.3rem 0;
    border-top: 1px solid #294052;
    font-size: .72rem
}

.desktop-float {
    position: fixed;
    z-index: 90;
    right: 20px;
    top: 55%;
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.desktop-float a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18)
}

.float-phone {
    background: var(--red)
}

.float-wa {
    background: var(--green)
}

.mobile-contact {
    display: none
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease
}

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

@media(max-width:1100px) {
    .desktop-nav {
        gap: 1rem
    }

    .header-phone {
        display: none
    }

    .hero {
        height: 610px
    }

    .hero-copy h1 {
        font-size: 3.5rem
    }

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

    .footer-grid>div:nth-child(3) {
        display: none
    }

    .location-story {
        grid-template-columns: 1fr 1fr
    }

    .location-story>div:first-child {
        grid-column: 1/-1
    }

    .service-list-card {
        grid-template-columns: 1fr
    }

    .service-list-card>div:first-child {
        height: 230px
    }
}

@media(max-width:900px) {
    .container {
        width: min(calc(100% - 36px), var(--max))
    }

    .topbar {
        display: none
    }

    .desktop-nav,
    .nav-quote {
        display: none
    }

    .nav-inner,
    .is-compact .nav-inner {
        height: auto;
    }

    .brand {
        width: 96px
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
        width: 44px;
        height: 44px;
        border: 0;
        background: transparent;
        flex-direction: column;
        justify-content: center;
        gap: 6px
    }

    .menu-toggle span {
        width: 25px;
        height: 2px;
        background: var(--navy);
        transition: .2s
    }

    .menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg)
    }

    .menu-open .menu-toggle span:nth-child(2) {
        opacity: 0
    }

    .menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg)
    }

    .mobile-menu {
        display: block;
        position: fixed;
        z-index: 99;
        inset: 76px 0 0;
        background: var(--white);
        padding: 20px 18px;
        transform: translateX(100%);
        visibility: hidden;
        transition: .3s;
        overflow: auto
    }

    .mobile-menu[aria-hidden=false] {
        transform: none;
        visibility: visible
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column
    }

    .mobile-menu nav>a,
    .mobile-services-toggle {
        padding: 1rem .2rem;
        border: 0;
        border-bottom: 1px solid var(--line);
        background: transparent;
        text-align: left;
        font: 600 1rem var(--font-head)
    }

    .mobile-services-toggle {
        display: flex;
        justify-content: space-between
    }

    .mobile-services {
        display: none;
        padding: .4rem 0 .4rem 1rem
    }

    .mobile-services.is-open {
        display: flex;
        flex-direction: column
    }

    .mobile-services a {
        padding: .55rem;
        color: var(--grey);
        font-size: .86rem
    }

    .mobile-menu .btn {
        margin-top: 1.2rem;
        color: var(--white);
        text-align: center
    }

    .hero {
        height: 800px
    }

    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 330px;
        gap: 0
    }

    .hero-copy {
        padding: 2.2rem 0 1rem
    }

    .hero-copy h1 {
        font-size: clamp(2.4rem, 8vw, 3.7rem)
    }

    .hero-image {
        clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%)
    }

    .image-caption {
        bottom: 45px
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr
    }

    .trust-grid>div {
        min-height: 70px;
        border-bottom: 1px solid rgba(255, 255, 255, .15)
    }

    .section {
        padding: 80px 0
    }

    .split,
    .coverage-grid,
    .why-grid,
    .transport-grid,
    .contact-grid,
    .faq-layout,
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .split.reverse .content {
        order: 0
    }

    .photo-note {
        right: 10px
    }

    .service-card,
    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(5),
    .service-card:nth-child(6) {
        grid-column: span 6
    }

    .why-intro,
    .faq-layout aside {
        position: static
    }

    .process-grid,
    .benefit-grid {
        grid-template-columns: 1fr 1fr
    }

    .transport-copy {
        padding: 70px 0
    }

    .transport-image {
        margin: 0 -18px;
        height: 420px;
        clip-path: none
    }

    .editorial {
        grid-template-columns: .25fr 1fr
    }

    .editorial>div:last-child {
        grid-column: 2
    }

    .philosophy-grid,
    .related-grid {
        grid-template-columns: 1fr
    }

    .service-list {
        grid-template-columns: 1fr
    }

    .gallery-preview {
        grid-template-columns: 1fr 1fr
    }

    .gallery-preview a:first-child {
        grid-column: 1/-1
    }

    .gallery-preview img {
        height: 300px
    }

    .service-intro,
    .why-service {
        grid-template-columns: 1fr;
        gap: 2rem
    }

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

    .footer-grid>div:nth-child(3) {
        display: block
    }

    .gallery-item {
        grid-column: span 6
    }

    .gallery-item.wide {
        grid-column: span 12
    }

    .gallery-item.tall {
        grid-row: span 1
    }
}

@media(max-width:600px) {
    body {
        padding-bottom: 63px
    }

    .container {
        width: calc(100% - 28px)
    }

    .section {
        padding: 65px 0
    }

    .section-heading {
        margin-bottom: 2rem
    }

    .section-heading h2,
    .content h2,
    .service-intro h2,
    .detail-grid h2,
    .contact-details h2,
    .faq-layout aside h2 {
        font-size: 2rem
    }

    .hero {
        height: 735px
    }

    .hero-grid {
        grid-template-rows: auto 275px
    }

    .hero-copy {
        padding-top: 1.6rem
    }

    .hero-index {
        display: none
    }

    .hero-copy .eyebrow {
        margin-bottom: .6rem
    }

    .hero-copy h1 {
        font-size: 2.5rem
    }

    .hero-copy p {
        font-size: .92rem;
        line-height: 1.55;
        margin-bottom: 1.2rem
    }

    .hero-copy .btn {
        min-height: 44px;
        padding: .7rem 1rem
    }

    .hero-controls {
        bottom: 12px
    }

    .image-caption {
        display: none
    }

    .trust-grid>div {
        font-size: .73rem;
        padding: .4rem
    }

    .trust-grid svg {
        width: 17px
    }

    .services-grid {
        display: block
    }

    .service-card {
        margin-bottom: 18px
    }

    .service-image,
    .service-card:nth-child(2) .service-image,
    .service-card:nth-child(5) .service-image {
        aspect-ratio: 16/9
    }

    .why-list {
        grid-template-columns: 1fr
    }

    .why-list>div {
        min-height: 100px
    }

    .process-grid,
    .benefit-grid,
    .feature-list {
        grid-template-columns: 1fr
    }

    .process-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .route-map {
        padding: 1.5rem;
        min-height: 390px
    }

    .cities {
        margin-top: 3rem
    }

    .testimonial-top {
        display: block
    }

    .testimonial-track blockquote {
        padding: 2rem
    }

    .testimonial-track blockquote>p {
        font-size: 1.3rem
    }

    .gallery-preview {
        grid-template-columns: 1fr
    }

    .gallery-preview a:first-child {
        grid-column: auto
    }

    .inner-hero {
        height: 520px
    }

    .inner-content {
        padding-bottom: 55px
    }

    .inner-content h1 {
        font-size: 2.65rem
    }

    .inner-content p {
        font-size: .9rem
    }

    .editorial {
        grid-template-columns: 1fr
    }

    .editorial-number {
        font-size: 3rem
    }

    .editorial>div:last-child {
        grid-column: auto
    }

    .philosophy-grid {
        grid-template-columns: 1fr
    }

    .location-story {
        grid-template-columns: 1fr
    }

    .location-story>div:first-child {
        grid-column: auto
    }

    .location-story>div:not(:first-child) {
        padding: 1rem 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .2)
    }

    .service-list-card>div:first-child {
        height: 200px
    }

    .service-list-card>div:last-child {
        padding: 1.4rem
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px
    }

    .gallery-item,
    .gallery-item.wide {
        grid-column: 1
    }

    .lightbox {
        padding: 60px 15px
    }

    .lightbox-prev {
        left: 8px
    }

    .lightbox-next {
        right: 8px
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .form-grid label.full {
        grid-column: auto
    }

    .quote-form {
        padding: 1.4rem
    }

    .contact-details strong {
        overflow-wrap: anywhere
    }

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

    .footer-grid>div:first-child,
    .footer-grid>div:last-child {
        grid-column: 1/-1
    }

    .footer-bottom {
        display: block
    }

    .desktop-float {
        display: none
    }

    .mobile-contact {
        position: fixed;
        z-index: 100;
        bottom: 0;
        left: 0;
        right: 0;
        height: 63px;
        background: var(--white);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        box-shadow: 0 -5px 25px rgba(3, 41, 79, .12)
    }

    .mobile-contact a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        border-right: 1px solid var(--line);
        color: var(--navy);
        font: 700 .66rem var(--font-head);
        text-transform: uppercase
    }

    .mobile-contact a:nth-child(2) {
        color: var(--green)
    }

    .mobile-contact a:nth-child(3) {
        color: var(--red)
    }

    .mobile-contact svg {
        width: 20px;
        height: 20px
    }

    .final-cta {
        padding: 70px 0
    }

    .final-cta .button-row .btn {
        flex: 1;
        min-width: 130px
    }

    .footer-logo {
        width: 95px;
        height: 95px
    }
}

@media(max-width:360px) {
    .hero-copy h1 {
        font-size: 2.18rem
    }

    .hero {
        height: 720px
    }

    .btn {
        font-size: .76rem
    }

    .trust-grid>div {
        font-size: .67rem
    }

    .inner-content h1 {
        font-size: 2.3rem
    }

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

    .footer-grid>div {
        grid-column: 1 !important
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important
    }

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