:root {
    --color-ink: #182026;
    --color-muted: #6d7280;
    --color-line: #e1e1e1;
    --color-surface: #ffffff;
    --color-soft: #f4f7f8;
    --color-brand: #1e285f;
    --color-link: #2654b4;
    --color-accent: #e58b1c;
    --color-footer-text: #969696;
    --shadow-soft: 0 18px 50px rgba(24, 32, 38, 0.12);
    --container: min(1200px, calc(100vw - 40px));
    --header-container: min(1294px, calc(100vw - 40px));
    --footer-container: min(1220px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-ink);
    font-family: Inter, Arial, sans-serif;
    line-height: 1.5;
    background: var(--color-surface);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid transparent;
    transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header[data-scrolled] {
    border-color: rgba(225, 225, 225, 0.76);
    box-shadow: 0 8px 28px rgba(30, 40, 95, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--header-container);
    min-height: 72px;
    margin: 0 auto;
}

.site-nav,
.hero-actions {
    display: flex;
    align-items: center;
}

.site-logo {
    display: inline-flex;
    width: 127px;
    height: 63px;
    align-items: center;
    justify-content: flex-start;
}

.site-logo img {
    display: block;
    width: 127px;
    height: auto;
}

.site-nav {
    gap: 24px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px;
    transition: color 160ms ease;
}

.site-nav a.is-active,
.site-nav a:hover {
    color: var(--color-link);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--color-line);
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
}

.nav-toggle__line {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--color-brand);
    transition: transform 180ms ease, opacity 180ms ease;
}

.section-inner,
.error-page {
    width: var(--container);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--color-brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.75rem);
    line-height: 1.2;
    letter-spacing: 0;
}

.section-inner p,
.error-page p {
    max-width: 680px;
    color: var(--color-muted);
    font-size: 1.08rem;
}

.hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button.nav-cta {
    min-height: 40px;
    padding: 0 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    border-radius: 6px;
    background: var(--color-brand);
    box-shadow: none;
}

.button-primary {
    color: #ffffff;
    background: var(--color-brand);
    box-shadow: var(--shadow-soft);
}

.button-secondary {
    color: var(--color-ink);
    border-color: var(--color-line);
    background: #ffffff;
}

.section {
    padding: 92px max(20px, calc((100vw - 1120px) / 2));
}

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

.home-hero {
    position: relative;
    min-height: 504px;
    overflow: hidden;
    isolation: isolate;
}

.home-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.home-hero__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__panel {
    position: relative;
    width: min(534px, calc(100vw - 40px));
    margin-left: max(20px, calc((100vw - 1232px) / 2));
    top: 85px;
    padding: 32px 27px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 22px 54px rgba(30, 40, 95, 0.1);
}

.home-hero h1 {
    max-width: 488px;
    margin-bottom: 24px;
    color: var(--color-brand);
    font-size: clamp(3rem, 5.4vw, 60px);
    font-weight: 700;
    line-height: 1;
}

.home-hero p {
    max-width: 488px;
    margin-bottom: 28px;
    color: #161f51;
    font-size: 18px;
    letter-spacing: 0.2px;
    line-height: 1.45;
}

.home-hero .button {
    min-height: 40px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: none;
}

.about-section,
.services-section,
.testimonials-section,
.contact-section {
    padding: 88px 0 0;
}

.split-section {
    display: grid;
    grid-template-columns: 565px minmax(0, 1fr);
    gap: 130px;
    align-items: center;
    width: min(1182px, calc(100vw - 40px));
    margin: 0 auto;
}

.split-section__image {
    width: 100%;
    height: 429px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 18px 38px rgba(30, 40, 95, 0.09);
}

.split-section__content h2,
.section-heading h2 {
    color: var(--color-brand);
    font-weight: 700;
}

.split-section__content h2 {
    margin-bottom: 18px;
    font-family: Poppins, Inter, sans-serif;
    font-size: 36px;
    line-height: 46px;
}

.split-section__content p {
    max-width: 486px;
    margin-bottom: 24px;
    color: #555555;
    font-family: Poppins, Inter, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.section-heading {
    width: min(590px, calc(100vw - 40px));
    margin: 0 auto 52px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(2.4rem, 5vw, 60px);
    line-height: 1.4;
}

.section-heading p {
    margin: 0;
    color: var(--color-muted);
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: 0.2px;
}

.cards-grid {
    display: grid;
    width: var(--container);
    margin: 0 auto;
    gap: 32px;
}

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

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

.cards-grid--experience {
    grid-template-columns: repeat(6, minmax(0, 184px));
    justify-content: center;
}

.cards-grid--experience .service-card {
    grid-column: span 2;
}

.cards-grid--experience .service-card:nth-child(4) {
    grid-column: 2 / 4;
}

.cards-grid--experience .service-card:nth-child(5) {
    grid-column: 4 / 6;
}

.service-card {
    display: flex;
    min-height: 464px;
    flex-direction: column;
    padding: 24px;
    border-radius: 24px;
    background: #fafafa;
    border: 1px solid rgba(30, 40, 95, 0.04);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 40, 95, 0.12);
    box-shadow: 0 18px 42px rgba(30, 40, 95, 0.12);
}

.service-card--wide {
    min-height: 398px;
    align-items: center;
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.service-card h3 {
    margin: 24px 0 10px;
    color: #234b93;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}

.service-card p {
    margin: 0;
    color: #555555;
    font-family: "DM Sans", Inter, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.experience-section {
    margin-top: 88px;
    padding: 66px 0 92px;
    background: #e5f2ef;
}

.testimonials-section {
    padding-bottom: 44px;
}

.testimonial-carousel {
    position: relative;
    width: var(--container);
    margin: 0 auto;
    padding: 0 80px 44px;
}

.testimonial-carousel__viewport {
    overflow: hidden;
}

.testimonial-carousel__track {
    display: flex;
    gap: 32px;
    transition: transform 260ms ease;
    will-change: transform;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    flex: 0 0 calc((100% - 32px) / 2);
    gap: 32px;
    min-height: 184px;
    align-items: start;
    padding: 32px;
    background: #ffffff;
    border: 1px solid rgba(30, 40, 95, 0.06);
    box-shadow: 0 12px 30px rgba(30, 40, 95, 0.08);
}

.testimonial-avatar {
    display: grid;
    width: 64px;
    height: 64px;
    color: var(--color-brand);
    place-items: center;
    border-radius: 50%;
    background: #e5e7eb;
    font-weight: 700;
}

.testimonial-card h3 {
    margin: 0 0 6px;
    color: var(--color-brand);
    font-size: 18px;
}

.testimonial-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--color-footer-text);
    font-size: 14px;
}

.testimonial-card p {
    margin: 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.5;
}

.carousel-button {
    position: absolute;
    top: 68px;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    color: var(--color-brand);
    place-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(30, 40, 95, 0.08);
    transition: color 160ms ease, background-color 160ms ease, opacity 160ms ease;
}

.carousel-button:hover {
    color: #ffffff;
    background: var(--color-brand);
}

.carousel-button:disabled {
    opacity: 0.38;
    cursor: default;
}

.carousel-button:disabled:hover {
    color: var(--color-brand);
    background: #ffffff;
}

.carousel-button span {
    font-size: 32px;
    line-height: 1;
    transform: translateY(-2px);
}

.carousel-button--prev {
    left: 0;
}

.carousel-button--next {
    right: 0;
}

.carousel-dots {
    position: absolute;
    right: 80px;
    bottom: 0;
    left: 80px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d7dce8;
    cursor: pointer;
}

.carousel-dots button.is-active {
    background: var(--color-brand);
}

.contact-section {
    padding-bottom: 82px;
}

.contact-form {
    display: flex;
    width: min(1200px, calc(100vw - 40px));
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 41px 100px 63px;
    background: linear-gradient(161deg, #dcedfe 10.38%, #f5f7ff 95.44%);
    box-shadow: 0 18px 54px rgba(30, 40, 95, 0.08);
}

.form-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-grid span {
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
}

.form-grid input,
.form-grid textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    color: var(--color-brand);
    font: inherit;
    background: #ffffff;
}

.form-grid input {
    height: 64px;
    padding: 0 31px;
}

.form-grid textarea {
    min-height: 300px;
    resize: vertical;
    padding: 31px;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
    color: #adabc3;
}

.form-grid__full {
    grid-column: 1 / -1;
}

.contact-form__button {
    min-height: 60px;
    margin-top: 21px;
    padding: 0 44px;
    border-radius: 0;
    font-weight: 500;
    box-shadow: none;
}

.home-kicker {
    margin: 0 0 14px;
    color: var(--color-link);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-redesign-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: #f6f8fb;
    isolation: isolate;
}

.home-redesign-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.home-redesign-hero__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.2) 100%),
        linear-gradient(180deg, rgba(30, 40, 95, 0.14), rgba(30, 40, 95, 0));
}

.home-redesign-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-redesign-hero__inner {
    display: grid;
    width: var(--container);
    min-height: 680px;
    grid-template-columns: minmax(0, 650px) minmax(340px, 1fr);
    gap: 60px;
    align-items: center;
    margin: 0 auto;
    padding: 76px 0 82px;
}

.home-redesign-hero__content h1 {
    max-width: 720px;
    margin: 0 0 26px;
    color: var(--color-brand);
    font-size: clamp(3.4rem, 6vw, 76px);
    font-weight: 800;
    line-height: 0.98;
}

.home-redesign-hero__content > p:not(.home-kicker) {
    max-width: 590px;
    margin: 0;
    color: #303a6f;
    font-size: 21px;
    line-height: 1.55;
}

.home-redesign-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.home-redesign-hero__card {
    align-self: end;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(30, 40, 95, 0.2);
}

.home-redesign-hero__card img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.home-redesign-hero__card div {
    padding: 24px;
}

.home-redesign-hero__card span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-link);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-redesign-hero__card strong {
    display: block;
    color: var(--color-brand);
    font-size: 26px;
    line-height: 1.15;
}

.home-proof {
    position: relative;
    z-index: 3;
    margin-top: -54px;
}

.home-proof__inner {
    display: grid;
    width: var(--container);
    grid-template-columns: repeat(3, minmax(0, 1fr)) 1.6fr;
    gap: 1px;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid rgba(30, 40, 95, 0.08);
    border-radius: 16px;
    background: rgba(30, 40, 95, 0.08);
    box-shadow: 0 24px 60px rgba(30, 40, 95, 0.1);
}

.home-proof__inner div,
.home-proof__inner p {
    margin: 0;
    padding: 26px 28px;
    background: #ffffff;
}

.home-proof__inner strong {
    display: block;
    color: var(--color-brand);
    font-size: 34px;
    line-height: 1;
}

.home-proof__inner span,
.home-proof__inner p {
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.5;
}

.home-proof__inner span {
    display: block;
    margin-top: 8px;
}

.home-about,
.home-services,
.home-process,
.home-testimonials,
.home-clients,
.home-contact {
    width: var(--container);
    margin: 0 auto;
    padding-top: 110px;
}

.home-about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    gap: 76px;
    align-items: center;
}

.home-about__image-stack {
    display: grid;
    grid-template-columns: 1fr 0.74fr;
    gap: 20px;
    align-items: end;
}

.home-about__image-stack img {
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 22px 56px rgba(30, 40, 95, 0.12);
}

.home-about__image-stack img:first-child {
    height: 420px;
}

.home-about__image-stack img:last-child {
    height: 300px;
}

.home-about__content h2,
.home-section-heading h2,
.home-contact__intro h2 {
    margin: 0;
    color: var(--color-brand);
    font-size: clamp(2.4rem, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.06;
}

.home-about__content > p:not(.home-kicker),
.home-contact__intro > p:not(.home-kicker) {
    margin: 24px 0 30px;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.75;
}

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

.home-section-heading--light {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.home-service-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-service-pillar {
    overflow: hidden;
    border: 1px solid rgba(30, 40, 95, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(30, 40, 95, 0.08);
}

.home-service-pillar img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.home-service-pillar div {
    padding: 26px;
}

.home-service-pillar span {
    color: var(--color-link);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-service-pillar h3,
.home-capability-card h3,
.home-process-card h3 {
    margin: 12px 0 12px;
    color: var(--color-brand);
    font-size: 25px;
    line-height: 1.18;
}

.home-service-pillar p,
.home-process-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.65;
}

.home-capabilities {
    margin-top: 110px;
    padding: 86px 0 96px;
    background: #e5f2ef;
}

.home-capability-grid {
    display: grid;
    width: var(--container);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0 auto;
}

.home-capability-card {
    overflow: hidden;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(30, 40, 95, 0.08);
}

.home-capability-card img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.home-capability-card h3 {
    min-height: 84px;
    margin: 0;
    padding: 22px;
    display: flex;
    align-items: center;
    font-size: 22px;
    text-align: center;
}

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

.home-process-card {
    padding: 34px;
    border: 1px solid rgba(30, 40, 95, 0.08);
    border-radius: 18px;
    background: #ffffff;
}

.home-process-card span {
    color: var(--color-accent);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.home-testimonials {
    padding-bottom: 26px;
}

.home-testimonials .home-section-heading,
.home-clients .home-section-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.home-section-heading > p:not(.home-kicker) {
    margin: 18px auto 0;
    max-width: 680px;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.65;
}

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

.home-client-card {
    display: grid;
    min-height: 132px;
    place-items: center;
    padding: 24px;
    border: 1px solid rgba(30, 40, 95, 0.08);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(30, 40, 95, 0.07);
}

.home-client-card img {
    display: block;
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
}

.home-contact {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 44px;
    align-items: start;
    padding-bottom: 84px;
}

.home-contact__intro {
    position: sticky;
    top: 112px;
    padding: 38px;
    border-radius: 18px;
    background: var(--color-brand);
}

.home-contact__intro .home-kicker,
.home-contact__intro h2,
.home-contact__intro p {
    color: #ffffff;
}

.home-contact__intro p:not(.home-kicker) {
    color: #ffffff;
    opacity: 1;
}

.home-contact__form {
    width: 100%;
    padding: 38px;
    border-radius: 18px;
}

.about-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 565px) minmax(0, 486px);
    gap: 112px;
    align-items: center;
    width: min(1182px, calc(100vw - 40px));
    margin: 72px auto 0;
}

.about-page-hero__image {
    overflow: hidden;
    border-radius: 10px;
    background: #f9f9ff;
    box-shadow: 0 22px 56px rgba(30, 40, 95, 0.12);
}

.about-page-hero__image img {
    display: block;
    width: 100%;
    height: 429px;
    object-fit: cover;
}

.about-page-hero__content h1 {
    margin: 0 0 18px;
    color: var(--color-brand);
    font-family: Poppins, Inter, sans-serif;
    font-size: clamp(2.25rem, 4vw, 36px);
    font-weight: 700;
    line-height: 46px;
}

.about-page-hero__content > p:not(.home-kicker) {
    margin: 0 0 24px;
    color: #555555;
    font-family: Poppins, Inter, sans-serif;
    font-size: 18px;
    line-height: 30px;
}

.about-page-hero .button {
    min-height: 58px;
    padding: 0 36px;
    border-radius: 8px;
    font-family: Poppins, Inter, sans-serif;
    font-size: 18px;
}

.about-page-proof {
    position: relative;
    z-index: 2;
    margin-top: 82px;
}

.about-page-story,
.about-page-mission,
.about-page-values,
.about-page-capabilities,
.about-page-cta {
    width: var(--container);
    margin: 0 auto;
}

.about-page-mission {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-top: 110px;
}

.about-mission-card {
    min-height: 330px;
    padding: 40px;
    border-radius: 18px;
    background: #f5f7fb;
}

.about-mission-card:nth-child(2) {
    color: #ffffff;
    background: var(--color-brand);
}

.about-mission-card h2 {
    margin: 0;
    color: var(--color-brand);
    font-size: clamp(2.4rem, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.06;
}

.about-mission-card:nth-child(2) .home-kicker,
.about-mission-card:nth-child(2) h2,
.about-mission-card:nth-child(2) p {
    color: #ffffff;
}

.about-mission-card > p:not(.home-kicker) {
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.75;
}

.about-page-story {
    display: grid;
    grid-template-columns: minmax(0, 510px) minmax(0, 1fr);
    gap: 76px;
    align-items: center;
    padding-top: 110px;
}

.about-page-story__content h2,
.about-page-cta h2 {
    margin: 0;
    color: var(--color-brand);
    font-size: clamp(2.4rem, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.06;
}

.about-page-story__content > p:not(.home-kicker),
.about-page-cta p:not(.home-kicker) {
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.75;
}

.about-passion-points {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.about-passion-points li {
    position: relative;
    padding: 15px 18px 15px 46px;
    color: #33405a;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid rgba(30, 40, 95, 0.1);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(30, 40, 95, 0.06);
}

.about-passion-points li::before {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 12px;
    height: 12px;
    border: 4px solid rgba(229, 139, 28, 0.26);
    border-radius: 50%;
    background: var(--color-accent);
    content: "";
}

.about-page-story__media {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 20px;
    align-items: end;
}

.about-page-story__media img {
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 22px 56px rgba(30, 40, 95, 0.12);
}

.about-page-story__media img:first-child {
    height: 300px;
}

.about-page-story__media img:last-child {
    height: 420px;
}

.about-page-story__media--passion {
    display: block;
    padding: 0;
}

.about-page-story__media--passion img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    border-radius: 28px;
    background: #f8fbff;
    box-shadow: 0 28px 70px rgba(30, 40, 95, 0.13);
}

.about-page-values {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 72px;
    align-items: start;
    padding-top: 110px;
}

.about-values__intro {
    position: sticky;
    top: 112px;
}

.about-values__intro h2 {
    margin: 0;
    color: var(--color-brand);
    font-size: clamp(2.4rem, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.06;
}

.about-values__intro > p:not(.home-kicker) {
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.75;
}

.about-values__list {
    display: grid;
    border-top: 1px solid rgba(30, 40, 95, 0.12);
}

.about-value-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(30, 40, 95, 0.12);
}

.about-value-item span {
    color: var(--color-accent);
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.about-value-item h3 {
    margin: 0 0 10px;
    color: var(--color-brand);
    font-size: 25px;
    line-height: 1.18;
}

.about-value-item p {
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.65;
}

.about-page-capabilities {
    padding-top: 110px;
}

.about-page-cta {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: space-between;
    margin-top: 110px;
    margin-bottom: 26px;
    padding: 42px;
    border-radius: 18px;
    background: var(--color-brand);
}

.about-page-cta .home-kicker,
.about-page-cta h2,
.about-page-cta p {
    color: #ffffff;
}

.about-page-cta p:not(.home-kicker) {
    max-width: 680px;
    opacity: 0.82;
}

.about-page-cta .button {
    flex: 0 0 auto;
    background: var(--color-accent);
    box-shadow: none;
}

.travel-hero {
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
    width: var(--container);
    margin: 72px auto 0;
}

.travel-hero__content h1,
.travel-section__content h2,
.travel-more h2 {
    margin: 0;
    color: var(--color-brand);
    font-size: clamp(2.6rem, 5vw, 64px);
    font-weight: 800;
    line-height: 1.03;
}

.travel-hero__content > p:not(.home-kicker),
.travel-section__content > p,
.travel-flight .home-section-heading p,
.travel-more__content > p,
.travel-contact .home-contact__intro p:not(.home-kicker) {
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.75;
}

.travel-hero__content > p:not(.home-kicker) {
    margin: 24px 0 0;
}

.travel-hero__media,
.travel-section__image,
.travel-flight__media,
.travel-more__image {
    overflow: hidden;
    border-radius: 18px;
    background: #f9f9ff;
    box-shadow: 0 22px 56px rgba(30, 40, 95, 0.12);
}

.travel-hero__media img,
.travel-section__image img,
.travel-flight__media img,
.travel-more__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.travel-hero__media {
    min-height: 520px;
}

.travel-proof {
    margin-top: 74px;
}

.travel-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
    gap: 76px;
    align-items: center;
    width: var(--container);
    margin: 0 auto;
    padding-top: 110px;
}

.travel-section--transport {
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
}

.travel-section__content > p {
    margin: 24px 0 0;
}

.travel-section__image {
    height: 430px;
}

.travel-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.travel-list li {
    position: relative;
    padding-left: 30px;
    color: #3f4756;
    font-size: 16px;
    line-height: 1.6;
}

.travel-list li::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    content: "";
}

.travel-flight {
    margin-top: 110px;
    padding: 86px 0 96px;
    background: #f5f5f5;
}

.travel-flight__media,
.travel-flight__cards {
    width: var(--container);
    margin: 0 auto;
}

.travel-flight__media {
    height: 470px;
    margin-top: 42px;
}

.travel-flight__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.travel-more {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
    gap: 76px;
    align-items: center;
    width: var(--container);
    margin: 0 auto;
    padding-top: 110px;
}

.travel-more__image {
    height: 430px;
}

.travel-service-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.travel-service-cloud li {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    padding: 0 14px;
    color: var(--color-brand);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(30, 40, 95, 0.12);
    border-radius: 999px;
    background: #ffffff;
}

.travel-contact {
    padding-top: 110px;
}

.experience-page-formats {
    width: var(--container);
    margin: 0 auto;
    padding-top: 110px;
}

.experience-format-cloud {
    justify-content: center;
}

.contact-form--gtravel {
    background: #f36b0b;
    box-shadow: 0 22px 56px rgba(243, 107, 11, 0.14);
}

.contact-form--gtravel .contact-form__button {
    background: #e4151e;
    box-shadow: none;
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 565px) minmax(0, 590px);
    gap: 74px;
    align-items: center;
    width: min(1254px, calc(100vw - 40px));
    margin: 62px auto 0;
}

.about-hero__image,
.about-service__image,
.about-intro img {
    overflow: hidden;
    border-radius: 10px;
    background: #f9f9ff;
    box-shadow: 0 18px 38px rgba(30, 40, 95, 0.08);
}

.about-hero__image img,
.about-service__image,
.about-intro img {
    display: block;
    width: 100%;
    height: 429px;
    object-fit: cover;
}

.about-hero__eyebrow {
    margin-bottom: 14px;
    color: var(--color-brand);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-hero h1 {
    margin-bottom: 18px;
    color: var(--color-accent);
    font-size: clamp(2.35rem, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
}

.about-hero p:not(.about-hero__eyebrow),
.about-intro p,
.about-service__content > p {
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.5;
}

.about-subnav {
    display: flex;
    justify-content: center;
    gap: 28px;
    width: 100%;
    margin-top: 54px;
    padding: 14px 20px;
    overflow-x: auto;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    background: #e7e7e7;
    white-space: nowrap;
}

.about-subnav a {
    transition: color 160ms ease;
}

.about-subnav a:hover {
    color: var(--color-link);
}

.about-intro {
    margin-top: 70px;
    padding: 72px 0;
    background: #f6f7fa;
}

.about-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 565px) minmax(0, 590px);
    gap: 64px;
    align-items: center;
    width: min(1240px, calc(100vw - 40px));
    margin: 0 auto;
}

.about-intro h2,
.about-service h2,
.about-contact h2 {
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 0;
}

.about-intro h2 {
    margin-bottom: 16px;
    font-size: clamp(1.75rem, 3vw, 36px);
    line-height: 1.35;
}

.about-intro p {
    margin-bottom: 14px;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-services {
    width: min(1240px, calc(100vw - 40px));
    margin: 0 auto;
    padding: 88px 0 0;
}

.about-service {
    display: grid;
    grid-template-columns: minmax(0, 590px) minmax(0, 565px);
    gap: 58px;
    align-items: center;
    margin-bottom: 86px;
}

.about-service--reverse {
    grid-template-columns: minmax(0, 565px) minmax(0, 590px);
}

.about-service--reverse .about-service__content {
    order: 2;
}

.about-service--reverse .about-service__image {
    order: 1;
}

.about-service h2 {
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 3.5vw, 36px);
    line-height: 1.5;
}

.about-service__content > p {
    margin-bottom: 28px;
}

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

.about-feature {
    min-height: 188px;
    padding: 25px 24px 22px;
    border: 1px solid #f3f4f6;
    border-radius: 6px;
    background: #ffffff;
}

.about-feature__mark {
    display: block;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent 43%, #ffffff 43% 57%, transparent 57%),
        linear-gradient(0deg, transparent 43%, #ffffff 43% 57%, transparent 57%),
        var(--color-accent);
}

.about-feature h3 {
    margin: 0 0 10px;
    color: var(--color-accent);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.about-feature p {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.5;
}

.about-contact {
    padding: 0 0 26px;
}

.about-contact h2 {
    width: min(690px, calc(100vw - 40px));
    margin: 0 auto 44px;
    font-size: clamp(2.2rem, 5vw, 60px);
    line-height: 1.4;
    text-align: center;
}

.contact-form--about {
    background: #ffd400;
    box-shadow: none;
}

.contact-form--about .contact-form__button {
    background: var(--color-accent);
}

.experience-subnav {
    display: flex;
    justify-content: center;
    gap: 28px;
    min-height: 43px;
    padding: 13px 20px 11px;
    overflow-x: auto;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    background: #e7e7e7;
    white-space: nowrap;
}

.experience-subnav a {
    transition: color 160ms ease;
}

.experience-subnav a:hover,
.page-g-experience .site-nav a.is-active {
    color: var(--color-link);
}

.experience-hero,
.experience-service {
    display: grid;
    align-items: center;
}

.experience-hero {
    grid-template-columns: minmax(0, 565px) minmax(0, 590px);
    gap: 99px;
    width: min(1254px, calc(100vw - 40px));
    margin: 19px auto 0;
}

.experience-hero__image,
.experience-service__image {
    overflow: hidden;
    border-radius: 10px;
    background: #f9f9ff;
    box-shadow: 0 18px 38px rgba(30, 40, 95, 0.08);
}

.experience-hero__image img,
.experience-service__image img {
    display: block;
    width: 100%;
    height: 429px;
    object-fit: cover;
}

.experience-hero__content h1 {
    margin: 0 0 16px;
    color: var(--color-accent);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.experience-hero__content p,
.experience-service__content > p {
    margin: 0;
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.5;
}

.experience-band {
    margin-top: -67px;
    padding: 223px 0 230px;
    background: #f5f5f5;
}

.experience-service {
    grid-template-columns: minmax(0, 590px) minmax(0, 565px);
    gap: 62px;
    width: min(1260px, calc(100vw - 40px));
    margin: 0 auto;
}

.experience-service + .experience-service {
    margin-top: 86px;
}

.experience-service--image-left {
    grid-template-columns: minmax(0, 565px) minmax(0, 590px);
}

.experience-service--white {
    width: min(1267px, calc(100vw - 40px));
    margin-top: 88px;
}

.experience-service--white + .experience-service--white {
    margin-top: 92px;
}

.experience-service--white.experience-service--image-right {
    grid-template-columns: minmax(0, 590px) minmax(0, 644px);
}

.experience-service--white.experience-service--image-left {
    grid-template-columns: minmax(0, 644px) minmax(0, 590px);
}

.experience-service h2,
.experience-contact h2 {
    color: var(--color-accent);
    letter-spacing: 0;
}

.experience-service h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 3.2vw, 36px);
    font-weight: 600;
    line-height: 1.5;
}

.experience-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.experience-feature {
    min-height: 188px;
    padding: 29px 24px 22px;
    border: 1px solid #f3f4f6;
    border-radius: 5px;
    background: #ffffff;
}

.experience-feature__icon {
    position: relative;
    display: block;
    width: 54px;
    height: 54px;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.experience-feature__icon::before,
.experience-feature__icon::after {
    position: absolute;
    content: "";
}

.experience-feature__icon--plane::before {
    top: 23px;
    left: 2px;
    width: 48px;
    height: 10px;
    border-radius: 70% 35% 35% 70%;
    background: currentColor;
    transform: rotate(28deg);
}

.experience-feature__icon--plane::after {
    top: 12px;
    left: 18px;
    width: 20px;
    height: 30px;
    border-radius: 2px 2px 16px 16px;
    border-right: 8px solid currentColor;
    border-bottom: 8px solid currentColor;
    transform: rotate(28deg);
}

.experience-feature__icon--globe::before {
    inset: 4px;
    border: 8px solid currentColor;
    border-radius: 50%;
}

.experience-feature__icon--globe::after {
    top: 9px;
    left: 22px;
    width: 10px;
    height: 36px;
    border-right: 3px solid currentColor;
    border-left: 3px solid currentColor;
    border-radius: 50%;
}

.experience-feature__icon--person::before {
    top: 0;
    left: 16px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: currentColor;
}

.experience-feature__icon--person::after {
    top: 22px;
    left: 12px;
    width: 26px;
    height: 32px;
    border-radius: 14px 14px 3px 3px;
    background: currentColor;
}

.experience-feature__icon--group::before {
    top: 2px;
    left: 18px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: -17px 8px 0 -2px currentColor, 17px 8px 0 -2px currentColor;
}

.experience-feature__icon--group::after {
    top: 25px;
    left: 15px;
    width: 22px;
    height: 24px;
    border-radius: 14px 14px 4px 4px;
    background: currentColor;
    box-shadow: -18px 6px 0 -3px currentColor, 18px 6px 0 -3px currentColor;
}

.experience-feature h3 {
    margin: 0 0 10px;
    color: var(--color-accent);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.experience-feature p {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.5;
}

.experience-contact {
    padding: 54px 0 26px;
}

.experience-contact h2 {
    width: min(690px, calc(100vw - 40px));
    margin: 0 auto 44px;
    font-size: clamp(2.2rem, 5vw, 60px);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.contact-form--experience {
    background: #ffd400;
    box-shadow: none;
}

.contact-form--experience .contact-form__button {
    background: var(--color-accent);
}

.experience-page-services .home-capability-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-page-services .home-capability-card img {
    height: 230px;
}

.experience-page-service-card {
    padding: 24px;
}

.experience-page-service-card h3 {
    display: block;
    min-height: auto;
    margin: 0 0 12px;
    padding: 0;
    color: var(--color-brand);
    font-size: 23px;
    line-height: 1.15;
    text-align: left;
}

.experience-page-service-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.65;
}

.experience-page-process {
    padding-bottom: 0;
}

.contact-page-hero {
    position: relative;
    display: grid;
    min-height: 351px;
    place-items: center;
    overflow: hidden;
    border-radius: 0 0 10px 10px;
    background: #f9f9ff;
}

.contact-page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-page-hero__title {
    position: relative;
    z-index: 1;
    width: min(636px, calc(100vw - 40px));
    min-height: 127px;
    display: grid;
    place-items: center;
    padding: 24px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(30, 40, 95, 0.08);
}

.contact-page-hero h1 {
    margin: 0;
    color: var(--color-brand);
    font-family: Poppins, Inter, sans-serif;
    font-size: clamp(2rem, 3vw, 36px);
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}

.contact-page-info {
    display: grid;
    width: min(1200px, calc(100vw - 40px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 43px auto 0;
}

.contact-info-card {
    display: flex;
    min-height: 319px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 48px 36px;
    border: 1px solid var(--color-line);
    background: #ffffff;
    text-align: center;
}

.contact-info-card__icon {
    display: grid;
    width: 85px;
    height: 85px;
    margin-bottom: 30px;
    color: var(--color-brand);
    place-items: center;
    border-radius: 50%;
    background: #e8eef5;
}

.contact-info-card__icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-card h2 {
    margin: 0 0 13px;
    color: var(--color-brand);
    font-family: Poppins, Inter, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.15;
}

.contact-info-card p {
    margin: 0;
    color: #545454;
    font-family: Poppins, Inter, sans-serif;
    font-size: 16px;
    line-height: 1.42;
}

.contact-info-card p span {
    display: block;
}

.contact-page-form-section {
    padding: 29px 0 20px;
}

.contact-page-form-section > h2 {
    width: min(690px, calc(100vw - 40px));
    margin: 0 auto 44px;
    color: var(--color-brand);
    font-size: clamp(2.3rem, 5vw, 60px);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.contact-page-form {
    box-shadow: none;
}

.contact-page-direct-email {
    width: min(760px, calc(100vw - 40px));
    margin: 34px auto 72px;
    padding: 30px;
    text-align: center;
    border-radius: 18px;
    background: var(--color-brand);
}

.contact-page-direct-email p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
}

.contact-page-direct-email a {
    color: #ffffff;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.success-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 44px;
    align-items: center;
    width: var(--container);
    margin: 72px auto 0;
}

.success-hero__content {
    min-width: 0;
}

.success-hero__content h1 {
    max-width: 620px;
    margin: 0;
    color: var(--color-brand);
    font-size: clamp(2.6rem, 5vw, 64px);
    font-weight: 800;
    line-height: 1.03;
}

.success-hero__content > p:not(.home-kicker) {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.75;
}

.success-hero__media {
    overflow: hidden;
    border-radius: 18px;
    background: #f9f9ff;
    box-shadow: 0 22px 56px rgba(30, 40, 95, 0.12);
}

.success-hero__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1.48;
    object-fit: cover;
}

.success-gallery {
    width: var(--container);
    margin: 110px auto 0;
    padding-bottom: 26px;
}

.success-gallery__heading {
    margin-right: auto;
    margin-bottom: 38px;
    margin-left: auto;
    text-align: center;
}

.success-gallery__featured,
.success-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.success-gallery__featured {
    margin: 0 auto;
}

.success-gallery__grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.success-gallery__section {
    margin-top: 96px;
}

.success-gallery__card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(30, 40, 95, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(30, 40, 95, 0.08);
}

.success-gallery__card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: cover;
}

.success-gallery__card h3 {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 22px 24px;
    color: var(--color-brand);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.success-gallery__featured .success-gallery__card img {
    aspect-ratio: 1.34;
}

.site-footer {
    padding: 82px 0 74px;
    color: var(--color-footer-text);
    background: #ffffff;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.55fr 0.95fr 1.1fr 1.1fr;
    gap: 58px;
    width: var(--footer-container);
    margin: 0 auto;
    padding-top: 74px;
    border-top: 1px solid var(--color-line);
}

.site-footer p,
.footer-links h2 {
    margin: 0;
}

.site-footer__brand {
    max-width: 344px;
}

.footer-logo {
    display: inline-flex;
    width: 127px;
    margin-bottom: 34px;
}

.footer-logo img {
    width: 127px;
    height: auto;
}

.site-footer__brand p,
.footer-links a {
    color: var(--color-footer-text);
    font-family: "DM Sans", Inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.site-footer__brand p {
    max-width: 340px;
    line-height: 30px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links h2 {
    margin-bottom: 40px;
    color: var(--color-brand);
    font-family: "DM Sans", Inter, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
}

.footer-links a {
    display: inline-flex;
    margin-bottom: 18px;
    line-height: 24px;
    transition: color 160ms ease;
}

.footer-links a:hover {
    color: var(--color-brand);
}

.error-page {
    min-height: 68vh;
    display: grid;
    align-content: center;
    padding: 72px max(20px, calc((100vw - 1120px) / 2));
}

@media (max-width: 1120px) {
    .site-header__inner {
        min-height: 78px;
        flex-wrap: wrap;
        gap: 14px;
        padding: 8px 0;
    }

    .site-nav {
        order: 4;
        width: 100%;
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .site-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px;
    }

    .split-section {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 48px;
    }

    .about-hero,
    .about-intro__inner,
    .about-service,
    .about-service--reverse,
    .experience-hero,
    .experience-service,
    .experience-service--image-left,
    .experience-service--white.experience-service--image-right,
    .experience-service--white.experience-service--image-left {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px;
    }

    .about-service--reverse .about-service__content,
    .about-service--reverse .about-service__image {
        order: initial;
    }

    .about-subnav {
        justify-content: flex-start;
    }

    .experience-subnav {
        justify-content: flex-start;
    }

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

    .cards-grid--experience .service-card,
    .cards-grid--experience .service-card:nth-child(4),
    .cards-grid--experience .service-card:nth-child(5) {
        grid-column: auto;
        justify-self: stretch;
    }

    .contact-form {
        padding-right: 48px;
        padding-left: 48px;
    }

    .testimonial-carousel {
        padding-right: 62px;
        padding-left: 62px;
    }

    .home-redesign-hero__inner,
    .home-about,
    .about-page-story,
    .about-page-mission,
    .home-contact,
    .travel-hero,
    .travel-section,
    .travel-section--transport,
    .travel-more,
    .success-hero {
        grid-template-columns: 1fr;
    }

    .about-page-hero {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 48px;
    }

    .about-page-values {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-values__intro {
        position: static;
    }

    .about-page-story__media {
        max-width: 720px;
    }

    .home-redesign-hero__inner {
        gap: 36px;
    }

    .home-redesign-hero__card {
        max-width: 560px;
        align-self: start;
    }

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

    .home-service-pillars,
    .home-capability-grid,
    .home-client-grid,
    .experience-page-services .home-capability-grid,
    .about-page-values .home-process__grid,
    .home-process__grid,
    .travel-flight__cards,
    .contact-page-info,
    .success-gallery__featured,
    .success-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .success-hero {
        gap: 34px;
    }

    .success-hero__content {
        max-width: 720px;
    }

    .about-page-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-contact__intro {
        position: static;
    }
}

@media (max-width: 760px) {
    .site-header__inner {
        min-height: 72px;
    }

    .site-logo,
    .site-logo img {
        width: 108px;
    }

    .nav-toggle {
        display: inline-flex;
        order: 3;
    }

    .nav-cta {
        display: none;
    }

    .site-nav {
        display: none;
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        padding: 12px 0 8px;
        overflow: visible;
        border-top: 1px solid var(--color-line);
    }

    .site-header.is-open .site-nav {
        display: flex;
    }

    .site-header.is-open .nav-toggle__line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-open .nav-toggle__line:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-open .nav-toggle__line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav a {
        width: 100%;
        min-height: 42px;
        padding: 10px 4px;
    }

    .home-hero {
        min-height: 560px;
        display: grid;
        align-items: end;
        padding: 0 20px 28px;
    }

    .home-hero__panel {
        width: 100%;
        margin: 0;
        top: auto;
        padding: 26px 22px;
    }

    .home-hero h1 {
        font-size: 42px;
    }

    .home-hero p {
        font-size: 16px;
        line-height: 1.55;
    }

    .about-page-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 42px;
    }

    .travel-hero {
        gap: 28px;
        margin-top: 42px;
    }

    .travel-hero__media {
        min-height: 320px;
    }

    .about-page-hero__image img {
        height: 300px;
    }

    .about-page-hero__content h1 {
        font-size: 36px;
        line-height: 1.18;
    }

    .about-page-hero__content > p:not(.home-kicker) {
        font-size: 17px;
        line-height: 1.6;
    }

    .about-page-hero .button {
        width: 100%;
        min-height: 52px;
        font-size: 16px;
    }

    .about-page-proof {
        margin-top: 44px;
    }

    .about-page-story,
    .about-page-mission,
    .about-page-values,
    .about-page-capabilities,
    .travel-section,
    .travel-more {
        padding-top: 66px;
    }

    .travel-section__content h2,
    .travel-more h2,
    .travel-hero__content h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .travel-hero__content > p:not(.home-kicker),
    .travel-section__content > p,
    .travel-flight .home-section-heading p {
        font-size: 16px;
        line-height: 1.7;
    }

    .travel-section__image,
    .travel-flight__media,
    .travel-more__image {
        height: 280px;
    }

    .travel-flight {
        margin-top: 66px;
        padding: 58px 0 66px;
    }

    .travel-flight__media {
        margin-top: 30px;
    }

    .travel-flight__cards {
        grid-template-columns: 1fr;
    }

    .travel-contact {
        padding-top: 66px;
    }

    .about-page-story__content h2,
    .about-values__intro h2,
    .about-mission-card h2,
    .about-page-cta h2 {
        font-size: 36px;
        line-height: 1.1;
    }

    .about-page-story__content > p:not(.home-kicker),
    .about-values__intro > p:not(.home-kicker),
    .about-mission-card > p:not(.home-kicker),
    .about-page-cta p:not(.home-kicker) {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-page-story__media {
        grid-template-columns: 1fr;
    }

    .about-page-story__media img:first-child,
    .about-page-story__media img:last-child {
        height: 240px;
    }

    .about-page-story__media--passion img:first-child,
    .about-page-story__media--passion img:last-child {
        height: auto;
        max-height: none;
    }

    .about-passion-points li {
        padding-right: 16px;
        font-size: 15px;
    }

    .about-page-values .home-process__grid {
        grid-template-columns: 1fr;
    }

    .about-value-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 0;
    }

    .about-page-cta {
        margin-top: 66px;
        padding: 28px;
    }

    .about-page-cta .button {
        width: 100%;
    }

    .about-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 34px;
    }

    .experience-subnav {
        gap: 18px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .experience-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 34px;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-hero__image img,
    .about-intro img,
    .about-service__image,
    .experience-hero__image img,
    .experience-service__image img {
        height: 300px;
    }

    .about-subnav {
        gap: 18px;
        margin-top: 38px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .about-intro {
        margin-top: 48px;
        padding: 52px 0;
    }

    .about-intro__inner,
    .about-service,
    .about-service--reverse {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-service--reverse .about-service__content {
        order: 1;
    }

    .about-service--reverse .about-service__image {
        order: 2;
    }

    .about-services {
        padding-top: 58px;
    }

    .about-service {
        margin-bottom: 58px;
    }

    .experience-band {
        margin-top: 52px;
        padding: 58px 0 66px;
    }

    .experience-service,
    .experience-service--image-left,
    .experience-service--white.experience-service--image-right,
    .experience-service--white.experience-service--image-left {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .experience-service + .experience-service,
    .experience-service--white,
    .experience-service--white + .experience-service--white {
        margin-top: 58px;
    }

    .experience-service--image-left .experience-service__content,
    .experience-service--white.experience-service--image-left .experience-service__content {
        order: 1;
    }

    .experience-service--image-left .experience-service__image,
    .experience-service--white.experience-service--image-left .experience-service__image {
        order: 2;
    }

    .about-service h2 {
        line-height: 1.2;
    }

    .about-feature-grid,
    .experience-feature-grid {
        grid-template-columns: 1fr;
    }

    .about-feature,
    .experience-feature {
        min-height: auto;
    }

    .experience-service h2 {
        line-height: 1.2;
    }

    .about-contact h2,
    .experience-contact h2 {
        margin-bottom: 28px;
        font-size: 36px;
        line-height: 1.2;
    }

    .home-redesign-hero,
    .home-redesign-hero__inner {
        min-height: auto;
    }

    .home-redesign-hero__inner {
        padding: 54px 0 58px;
    }

    .home-redesign-hero__content h1 {
        font-size: 44px;
    }

    .home-redesign-hero__content > p:not(.home-kicker) {
        font-size: 18px;
    }

    .home-redesign-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-redesign-hero__actions .button {
        width: 100%;
    }

    .home-redesign-hero__card img {
        height: 230px;
    }

    .home-proof {
        margin-top: 0;
        padding-top: 20px;
        background: #f6f8fb;
    }

    .home-proof__inner,
    .home-service-pillars,
    .home-capability-grid,
    .experience-page-services .home-capability-grid,
    .home-process__grid,
    .travel-flight__cards,
    .contact-page-info,
    .success-gallery__featured,
    .success-gallery__grid {
        grid-template-columns: 1fr;
    }

    .success-hero {
        gap: 26px;
        margin-top: 38px;
    }

    .success-hero__content h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .success-hero__content > p:not(.home-kicker) {
        font-size: 16px;
        line-height: 1.7;
    }

    .success-hero__media img {
        aspect-ratio: 1.28;
    }

    .success-gallery {
        margin-top: 66px;
    }

    .success-gallery__heading {
        margin-bottom: 28px;
    }

    .success-gallery__heading h2 {
        font-size: 34px;
        line-height: 1.12;
    }

    .success-gallery__section {
        margin-top: 58px;
    }

    .success-gallery__featured,
    .success-gallery__grid {
        gap: 22px;
    }

    .success-gallery__card h3 {
        min-height: auto;
        padding: 18px;
        font-size: 18px;
        line-height: 1.35;
    }

    .contact-page-hero {
        min-height: 300px;
    }

    .contact-page-hero__title {
        min-height: 104px;
    }

    .contact-page-hero h1 {
        font-size: 30px;
        line-height: 1.25;
    }

    .contact-page-info {
        margin-top: 32px;
    }

    .contact-info-card {
        min-height: 250px;
        padding: 34px 24px;
    }

    .contact-info-card__icon {
        width: 72px;
        height: 72px;
        margin-bottom: 22px;
    }

    .contact-page-form-section {
        padding-top: 42px;
    }

    .contact-page-form-section > h2 {
        margin-bottom: 28px;
        font-size: 36px;
        line-height: 1.18;
    }

    .home-proof__inner {
        border-radius: 12px;
    }

    .home-about,
    .home-services,
    .home-process,
    .home-testimonials,
    .home-clients,
    .home-contact {
        padding-top: 66px;
    }

    .home-about__image-stack {
        grid-template-columns: 1fr;
    }

    .home-about__image-stack img:first-child,
    .home-about__image-stack img:last-child,
    .home-service-pillar img,
    .home-capability-card img {
        height: 240px;
    }

    .home-about__content h2,
    .home-section-heading h2,
    .home-contact__intro h2 {
        font-size: 34px;
        line-height: 1.12;
    }

    .home-capabilities {
        margin-top: 66px;
        padding: 58px 0 66px;
    }

    .home-client-grid {
        grid-template-columns: 1fr;
    }

    .home-client-card {
        min-height: auto;
        padding: 24px;
    }

    .home-client-card img {
        max-height: 62px;
    }

    .about-mission-card {
        min-height: auto;
        padding: 28px;
    }

    .home-contact {
        gap: 22px;
        padding-bottom: 54px;
    }

    .home-contact__intro,
    .home-contact__form {
        padding: 26px 22px;
        border-radius: 14px;
    }

    .section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .about-section,
    .services-section,
    .testimonials-section,
    .contact-section {
        padding-top: 58px;
    }

    .split-section,
    .cards-grid--two,
    .cards-grid--three,
    .cards-grid--experience,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .split-section {
        gap: 28px;
    }

    .split-section__image {
        height: 300px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2 {
        font-size: 38px;
        line-height: 1.15;
    }

    .section-heading p {
        font-size: 17px;
    }

    .service-card,
    .service-card--wide {
        min-height: auto;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .experience-section {
        margin-top: 58px;
        padding-top: 52px;
        padding-bottom: 62px;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        flex-basis: 100%;
        gap: 18px;
    }

    .testimonial-carousel {
        padding: 0 0 42px;
    }

    .testimonial-carousel__track {
        gap: 18px;
    }

    .carousel-button {
        top: auto;
        bottom: 0;
        width: 38px;
        height: 38px;
    }

    .carousel-button--prev {
        left: calc(50% - 78px);
    }

    .carousel-button--next {
        right: calc(50% - 78px);
    }

    .carousel-dots {
        right: 58px;
        bottom: 13px;
        left: 58px;
    }

    .contact-form {
        padding: 30px 22px 38px;
    }

    .form-grid__full {
        grid-column: auto;
    }

    .form-grid span {
        font-size: 15px;
    }

    .form-grid input {
        height: 54px;
        padding: 0 18px;
    }

    .form-grid textarea {
        min-height: 220px;
        padding: 18px;
    }

    .site-footer {
        padding: 52px 0 48px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 44px;
    }

    .footer-links h2 {
        margin-bottom: 18px;
    }

    .footer-links a {
        margin-bottom: 12px;
    }
}
