* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--font-body);
    color: var(--color-ink);
    background: var(--color-cream);
}

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

figure {
    margin: 0;
}

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

button,
a,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1088px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-main {
    overflow: hidden;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.75s ease var(--reveal-delay, 0ms),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

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

h2.typewriter-ready.is-typing::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 0.85em;
    margin-left: 0.12em;
    vertical-align: -0.08em;
    background: currentColor;
    animation: typewriter-caret 0.7s step-end infinite;
}

@keyframes typewriter-caret {
    50% {
        opacity: 0;
    }
}

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

    .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    h2.typewriter-ready.is-typing::after {
        display: none;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(216, 162, 63, 0.92);
    backdrop-filter: blur(12px);
}

.header-shell {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: grid;
    gap: 0.15rem;
    color: var(--color-navy);
    flex: 0 0 auto;
}

.brand__mark {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.08em;
    text-transform: lowercase;
}

.brand__text {
    font-size: 0.88rem;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    font-size: 0.9rem;
    color: var(--color-navy);
}

.main-nav a {
    opacity: 0.9;
}

.nav-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 37px;
    border-radius: 999px;
    padding: 0.75rem 1.2rem;
    border: 0;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

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

.nav-button,
.button--navy {
    background: var(--color-navy);
    color: var(--color-white);
}

.button--mustard {
    background: var(--color-mustard);
    color: var(--color-white);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(17, 28, 70, 0.14);
    border-radius: 999px;
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    min-height: 2rem;
    padding: 0.38rem 0.55rem 0.22rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-navy);
}

.language-switcher a.is-active {
    background: var(--color-cream);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.menu-toggle {
    display: none;
    width: 2.8rem;
    height: 2.8rem;
    border: 0;
    background: var(--color-navy);
    border-radius: 999px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 1rem;
    height: 2px;
    background: #fff;
    margin: 0.18rem auto;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    padding: 0 1rem 1rem;
    background: var(--color-mustard);
}

.mobile-nav a {
    display: block;
    padding: 0.65rem 0;
    color: var(--color-navy);
    font-weight: 700;
}

.mobile-nav .nav-button {
    display: inline-flex;
    width: fit-content;
    padding: 0.75rem 1.2rem;
    color: var(--color-white);
}

.hero {
    position: relative;
    padding: 1.8rem 0 2rem;
    background: var(--color-mustard);
}

.trajectory-shape,
.wellness-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.96;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 0;
    align-items: stretch;
    max-width: 1242px;
}

.hero-card {
    min-height: 29.8rem;
}

.hero-card--photo img,
.hero-card--copy {
    border-radius: 1.1rem;
}

.hero-card--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.hero-card--copy {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 2.6rem 2.6rem 2rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.contact-copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.98;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 4.15rem);
    color: var(--color-mustard);
}

.hero-list,
.check-list,
.contact-list {
    list-style: none;
    margin: 1.2rem 0 0;
    padding: 0;
}

.hero-list li,
.check-list li {
    position: relative;
    padding-left: 1rem;
    margin-top: 0.62rem;
    font-size: 1rem;
}

.hero-list li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--color-mustard);
}

.hero__dots,
.testimonials-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero__dots {
    margin-top: 0.8rem;
}

.hero__dots span,
.swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    border: 2px solid var(--color-mustard);
    background: transparent;
    opacity: 1;
}

.hero__dots .is-active,
.swiper-pagination-bullet-active {
    background: var(--color-mustard);
}

.hero__cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 0.65rem;
}

.section {
    position: relative;
    padding: 5rem 0;
}

.section--about {
    background: var(--color-white);
    padding: 6.5rem 0 5rem;
}

.about-grid,
.trajectory-grid,
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.media-card {
    margin: 0;
    border-radius: 1rem;
    overflow: hidden;
    background: #d7c3a0;
}

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

.media-card--about {
    min-height: 34.7rem;
}

.section-copy {
    padding-top: 1.4rem;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
    font-size: clamp(2.15rem, 4vw, 3.65rem);
    color: var(--color-mustard);
}

.section-copy p,
.contact-copy p,
.trajectory-summary p {
    margin: 0 0 1rem;
    font-size: 1.02rem;
    line-height: 1.65;
}

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

.section-heading--center {
    text-align: center;
}

.section-heading p {
    margin: 0.65rem 0 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-muted);
}

.section--services {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.6)),
        radial-gradient(circle at 9% 92%, #f0e5d1 0, #f0e5d1 8rem, transparent 8.05rem),
        var(--color-cream);
    padding: 5rem 0 5.8rem;
}

.service-stack {
    display: grid;
    gap: 1rem;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(17, 28, 70, 0.12);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 38px rgba(17, 28, 70, 0.07);
}

.service-card__header {
    padding: 0.82rem 1rem;
    background: var(--color-navy);
    color: #fff;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
}

.service-card__header--light {
    background: var(--color-mustard);
}

.service-card__body {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 1.5rem;
    padding: 1.5rem;
}

.service-card__body--reverse {
    grid-template-columns: 0.95fr 1fr;
}

.service-card__intro {
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card__media {
    margin: 0;
    border-radius: 0.9rem;
    overflow: hidden;
    background: #efe6d6;
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-cta,
.portfolio-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
}

.section--trajectory {
    background: var(--color-mustard);
    color: #fff;
    padding: 5rem 0 5rem;
}

.trajectory-shape--left {
    left: -1.7rem;
    bottom: 10rem;
    width: 16rem;
    height: 8rem;
    background:
        radial-gradient(circle at 20% 52%, transparent 3rem, var(--color-cream) 3.05rem, var(--color-cream) 4.6rem, transparent 4.65rem),
        linear-gradient(135deg, transparent 45%, var(--color-cream) 45%, var(--color-cream) 57%, transparent 57%);
    opacity: 0.85;
}

.trajectory-shape--right {
    right: -1rem;
    top: 15rem;
    width: 16rem;
    height: 8rem;
    background:
        radial-gradient(circle at 72% 48%, transparent 2.9rem, var(--color-cream) 2.95rem, var(--color-cream) 4.5rem, transparent 4.55rem),
        linear-gradient(45deg, transparent 43%, var(--color-cream) 43%, var(--color-cream) 56%, transparent 56%);
    opacity: 0.78;
}

.section-copy--light h2,
.section-copy--light p,
.trajectory-summary p {
    color: #fff;
}

.media-card--trajectory {
    min-height: 34.2rem;
}

.credential-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
    margin-top: 1.8rem;
}

.credential-item {
    background: #fff;
    color: var(--color-muted);
    border-radius: 0.2rem;
    min-height: 2.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.credential-item::before {
    content: "";
    width: 0.68rem;
    height: 0.68rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--color-mustard);
    box-shadow: 0 0 0 3px rgba(216, 162, 63, 0.18);
}

.trajectory-summary {
    max-width: 45rem;
    margin: 1.8rem auto 0;
    text-align: center;
}

.section--portfolio {
    background: var(--color-navy);
    color: #fff;
    padding: 5rem 0;
}

.section--portfolio .section-heading h2 {
    color: var(--color-mustard);
}

.section--portfolio .section-heading p,
.marquee-label {
    color: #fff;
}

.section--portfolio .section-heading {
    margin-bottom: 0.6rem;
    text-align: left;
}

.section--portfolio .section-heading h2 {
    text-transform: uppercase;
}

.section--portfolio .section-heading p {
    margin-top: 1.9rem;
    font-family: var(--font-display);
    font-size: 2.45rem;
    line-height: 1;
}

.marquee-block + .marquee-block {
    margin-top: 2.15rem;
}

.marquee-label {
    width: min(1088px, calc(100% - 2rem));
    margin: 0 auto 0.85rem;
    text-align: left;
    font-family: var(--font-display);
    font-size: 2.45rem;
    line-height: 1;
    font-weight: 700;
}

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

.marquee {
    overflow: hidden;
}

.marquee__track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation-duration: 95s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.marquee--left .marquee__track {
    animation-name: marquee-left;
}

.marquee--right .marquee__track {
    animation-name: marquee-right;
    animation-duration: 82s;
}

.logo-card {
    position: relative;
    flex: 0 0 254px;
    width: 254px;
    height: 254px;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

.logo-card__inner {
    width: 222px;
    height: 222px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.marquee-block:nth-of-type(2) .logo-card img {
    border-radius: 16px;
}

.portfolio-cta {
    margin-top: 2.5rem;
}

.section--wellness {
    background:
        radial-gradient(circle at 82% 18%, #f1e6d4 0, #f1e6d4 8rem, transparent 8.1rem),
        var(--color-cream);
}

.wellness-slider-shell {
    position: relative;
}

.wellness-swiper {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.wellness-swiper .swiper-wrapper {
    align-items: stretch;
}

.wellness-swiper .swiper-slide {
    height: auto;
}

.wellness-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
}

.wellness-arrow--prev {
    left: -52px;
}

.wellness-arrow--next {
    right: -52px;
}

.wellness-pagination {
    position: static;
    margin-top: 24px;
}

.wellness-card {
    height: 100%;
    overflow: hidden;
    border-radius: 0.7rem;
    background: #fff;
}

.wellness-card--link {
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wellness-card--link:hover,
.wellness-card--link:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(10, 21, 51, 0.14);
}

.wellness-card img {
    width: 100%;
    aspect-ratio: 345 / 195;
    object-fit: cover;
}

.wellness-card__footer {
    flex: 1;
    padding: 0.55rem 0.75rem 0.8rem;
    text-align: center;
    color: var(--color-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.section--testimonials {
    background: #fff;
}

.testimonials-shell {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
    gap: 0.8rem;
    align-items: center;
}

.slider-arrow {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 0;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.slider-arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 2px solid var(--color-mustard);
    border-right: 2px solid var(--color-mustard);
}

.slider-arrow--prev::before {
    transform: rotate(-135deg);
}

.slider-arrow--next::before {
    transform: rotate(45deg);
}

.testimonials-swiper {
    overflow: hidden;
    width: 100%;
    min-width: 0;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    min-height: 30rem;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--color-mustard);
}

.testimonial-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__copy {
    padding: 2rem 2rem 1.8rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card__quote-mark {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-cream);
}

.testimonial-card__copy p {
    margin: 0.7rem 0 1rem;
    line-height: 1.7;
}

.testimonial-card__copy strong {
    font-size: 1rem;
}

.testimonial-card__copy span:last-child {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    opacity: 0.92;
}

.testimonials-pagination {
    position: static;
    margin-top: 24px;
}

.section--contact {
    background: var(--color-mustard);
    padding-top: 3rem;
    padding-bottom: 0;
}

.contact-card {
    align-items: center;
    position: relative;
    z-index: 1;
}

.media-card--contact {
    min-height: 25.7rem;
}

.contact-copy {
    color: #fff;
}

.contact-copy h2 {
    color: #fff;
}

.contact-copy p.contact-copy__subtitle {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.3;
}

.contact-list li {
    margin-bottom: 0.65rem;
    padding-left: 1.55rem;
    position: relative;
    font-size: 1rem;
    font-weight: 600;
}

.contact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.68rem;
    height: 0.68rem;
    border-radius: 50%;
    background: var(--color-cream);
}

.site-footer__bar {
    min-height: 2.5rem;
    padding: 0.65rem 1rem;
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-footer__inner p {
    margin: 0;
}

.site-footer__credit {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.site-footer__heart {
    width: 0.9rem;
    height: 0.9rem;
    fill: var(--color-mustard);
}

.site-footer__credit a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.site-footer__credit a:hover,
.site-footer__credit a:focus-visible {
    color: var(--color-mustard);
    text-decoration: underline;
}

/* Figma V6 layout calibration */
.header-shell {
    min-height: 104px;
}

.brand {
    display: block;
}

.brand img {
    width: 158px;
    height: 56px;
}

.hero {
    min-height: 649px;
    padding: 16px 0 24px;
}

.hero__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1088px;
}

.hero-card {
    position: relative;
    height: 480px;
    min-height: 480px;
    overflow: hidden;
}

.hero-card--photo img {
    position: absolute;
    width: 203.31%;
    height: 153.63%;
    max-width: none;
    left: -51.65%;
    top: -44.31%;
    object-fit: fill;
}

.hero-card--copy {
    padding: 40px 102px;
}

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

.hero-list li {
    font-family: var(--font-display);
    font-size: 1.55rem;
    line-height: 1.25;
}

.hero__dots,
.hero__cta-wrap {
    margin-top: 24px;
}

.about-grid,
.trajectory-grid,
.contact-card {
    gap: 24px;
}

.media-card--about {
    height: 556px;
    min-height: 556px;
}

.media-card--about img {
    width: 163.3%;
    max-width: none;
    height: 103.6%;
    margin-left: -35.23%;
    object-fit: fill;
}

.section-copy {
    padding-top: 0;
}

.service-stack {
    gap: 40px;
}

.service-card {
    border-radius: 24px;
}

.service-card__header {
    height: 62px;
    padding: 10px 1rem;
    font-size: 2.1rem;
}

.service-card__body,
.service-card__body--reverse {
    gap: 24px;
    height: 482px;
    padding: 24px;
}

.service-card__media {
    border-radius: 24px;
}

.service-collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 188px 222px;
    gap: 24px;
    background: transparent;
}

.service-collage__item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.service-collage__item--3 {
    grid-column: 1 / -1;
    grid-row: 1;
}

.service-collage__item--1,
.service-collage__item--2 {
    grid-row: 2;
}

.service-collage__item img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.service-collage--brand .service-collage__item--1 img {
    width: 132.68%;
    height: 224.42%;
    margin-left: -32.68%;
    margin-top: -54.49%;
    object-fit: fill;
}

.service-collage--brand .service-collage__item--3 img {
    height: 418.68%;
    margin-top: -266.63%;
    object-fit: fill;
}

.media-card--trajectory {
    height: 547px;
    min-height: 547px;
}

.media-card--trajectory img {
    width: 100%;
    height: 145.12%;
    max-width: none;
    margin-top: -22.45%;
    object-fit: fill;
}

.trajectory-story {
    margin-top: 40px;
    color: #fff;
    font-size: 1.02rem;
    line-height: 1.65;
}

.trajectory-story p {
    margin: 0 0 1rem;
}

.credential-grid,
.trajectory-summary {
    margin-top: 24px;
}

.section--wellness {
    min-height: 461px;
    padding: 80px 0 40px;
}

.wellness-card img {
    aspect-ratio: 345 / 195;
    height: auto;
}

.section--testimonials {
    min-height: 863px;
    padding: 80px 0 63px;
}

.section--testimonials .section-heading {
    min-height: 120px;
    margin-bottom: 40px;
    text-align: left;
}

.section--testimonials .section-heading h2 {
    text-transform: uppercase;
}

.testimonials-shell {
    grid-template-columns: 40px minmax(0, 1088px) 40px;
    gap: 24px;
    margin-left: -64px;
    margin-right: -64px;
}

.testimonial-card {
    grid-template-columns: 347px 741px;
    width: 1088px;
    height: 480px;
    min-height: 480px;
    border-radius: 24px;
}

.testimonial-card__media {
    width: 347px;
    height: 480px;
    overflow: hidden;
}

.testimonial-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__copy {
    width: 741px;
    height: 480px;
    padding: 40px;
}

.testimonial-card__quote-mark {
    height: 36px;
    font-size: 58px;
    line-height: 0.9;
}

.testimonial-card__copy p {
    font-size: 16px;
    line-height: 1.45;
}

.testimonial-card__copy strong {
    font-style: italic;
}

.media-card--contact {
    height: 413px;
    min-height: 413px;
    border-radius: 40px;
}

.media-card--contact img {
    width: 128.5%;
    height: 110.17%;
    max-width: none;
    margin-left: -14.25%;
    margin-top: -6.54%;
    object-fit: fill;
}

@media (min-width: 981px) {
    .section--about {
        min-height: 833px;
    }

    .section--services {
        min-height: 1478px;
    }

    .section--trajectory {
        min-height: 1367px;
    }

    .section--portfolio {
        min-height: 1366px;
    }

    .section--contact {
        min-height: 615px;
    }
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(calc(-50% - 12px));
    }

    to {
        transform: translateX(0);
    }
}

@media (hover: hover) {
    .marquee:hover .marquee__track {
        animation-play-state: paused;
    }
}

@media (max-width: 980px) {
    .main-nav,
    .header-actions .language-switcher {
        display: none;
    }

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

    .mobile-nav.is-open {
        display: block;
    }

    .language-switcher--mobile {
        display: inline-flex;
        margin-top: 0.75rem;
    }

    .hero__inner,
    .about-grid,
    .trajectory-grid,
    .contact-card,
    .service-card__body,
    .service-card__body--reverse {
        grid-template-columns: 1fr;
    }

    .hero-card--photo img {
        border-radius: 1rem 1rem 0 0;
    }

    .hero-card--copy {
        border-radius: 0 0 1rem 1rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-card--photo {
        height: min(72vw, 480px);
        min-height: min(72vw, 480px);
    }

    .hero-card--copy {
        height: auto;
        min-height: 360px;
        padding: 48px clamp(24px, 8vw, 72px);
    }

    .media-card--about,
    .media-card--trajectory,
    .media-card--contact {
        height: min(105vw, 556px);
        min-height: min(105vw, 556px);
    }

    .service-card__body,
    .service-card__body--reverse {
        height: auto;
    }

    .service-card__content {
        min-height: 0;
    }

    .service-collage {
        min-height: 434px;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        width: 100%;
        height: auto;
        min-height: auto;
    }

    .testimonial-card__media,
    .testimonial-card__copy {
        width: 100%;
        height: auto;
    }

    .testimonial-card__media {
        aspect-ratio: 4 / 3;
    }

    .testimonial-card__copy {
        min-height: 340px;
    }

    .testimonials-shell {
        grid-template-columns: 1fr;
        margin-left: 0;
        margin-right: 0;
    }

    .section--testimonials {
        min-height: auto;
    }

    .slider-arrow {
        display: none;
    }
}

@media (max-width: 720px) {
    .site-footer__inner {
        flex-direction: column;
        gap: 0.35rem;
        text-align: center;
    }

    .header-shell {
        min-height: 78px;
    }

    .hero {
        padding-top: 1rem;
    }

    .hero-card--copy,
    .section-copy,
    .contact-copy {
        padding-top: 0;
    }

    .hero-card--copy,
    .testimonial-card__copy {
        padding: 1.4rem;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 12vw, 3.4rem);
    }

    .hero-list li {
        font-size: 1.2rem;
    }

    .service-card__header {
        height: auto;
        min-height: 62px;
        font-size: 1.45rem;
    }

    .service-collage {
        grid-template-rows: 36vw 43vw;
        gap: 12px;
        min-height: 0;
    }

    .section--testimonials .section-heading {
        min-height: 0;
        margin-bottom: 28px;
    }

    .section {
        padding: 3rem 0;
    }

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

    .logo-card {
        flex-basis: 170px;
        width: 170px;
        height: 170px;
        padding: 11px;
        border-radius: 12px;
    }

    .logo-card__inner {
        width: 148px;
        height: 148px;
        border-radius: 10px;
    }

    .marquee__track {
        gap: 14px;
        animation-duration: 75s;
    }

    .marquee--right .marquee__track {
        animation-duration: 68s;
    }

    .section--portfolio .section-heading p,
    .marquee-label {
        font-size: 1.55rem;
    }

    .marquee-label,
    .section-heading p,
    .contact-copy__subtitle {
        font-size: 1.1rem;
    }

    .trajectory-shape {
        transform: scale(0.65);
        transform-origin: left bottom;
    }
}

/* Figma fidelity pass: typography, original artwork and balanced proportions. */
body {
    font-family: var(--font-body);
    font-weight: 400;
}

h2 {
    padding-bottom: 20px;
}

.hero h1,
.section-heading h2,
.section-copy h2,
.contact-copy h2 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
    font-size: 40px;
    line-height: 1.3;
}

.hero {
    background: var(--color-mustard) url("../images/gis/hero-background.png") center bottom / 100% 100% no-repeat;
}

.hero__inner {
    position: relative;
    z-index: 1;
    border-radius: 40px;
    overflow: hidden;
}

.hero-card,
.hero-card--photo img,
.hero-card--copy {
    border-radius: 0;
}

.hero h1 {
    font-size: 30px;
    line-height: 1.3;
}

.hero-list li {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.section--about .section-copy h2 {
    font-size: 32px;
}

.section--services {
    background: #f7f1e8 url("../images/gis/services-background.jpg") center bottom / 100% 100% no-repeat;
}

.service-card {
    border: 2px solid #f7f1e8;
    box-shadow: 0 6px 8px 2px #0000001f;
}

.service-card__header {
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.service-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card__intro {
    margin: 0 0 24px;
    color: var(--color-navy);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.check-list {
    display: grid;
    gap: 16px;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 24px;
    margin: 0;
    padding: 0;
    color: var(--color-navy);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.check-list li::before {
    display: none;
}

.check-list li img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    object-fit: contain;
}

.service-collage--brand .service-collage__item--3 img {
    position: absolute;
    top: -266.63%;
    left: 0;
    width: 100%;
    height: 418.68%;
    margin: 0;
    object-fit: fill;
}

.service-collage--brand .service-collage__item--1 img {
    position: absolute;
    top: -54.49%;
    left: -32.68%;
    width: 132.68%;
    height: 224.42%;
    margin: 0;
    object-fit: fill;
}

.section--trajectory {
    min-height: 0;
    padding: 72px 0 56px;
    background: var(--color-mustard) url("../images/gis/trajectory-background.png") center top / 100% 100% no-repeat;
}

.trajectory-shape {
    opacity: 1;
}

.trajectory-shape--left {
    left: -79px;
    top: 0;
    bottom: auto;
    width: 753px;
    height: 284px;
    background: url("../images/gis/figma-graphics/trajectory-left.svg") center / contain no-repeat;
}

.trajectory-shape--right {
    top: 284px;
    right: -176px;
    width: 753px;
    height: 289px;
    background: url("../images/gis/figma-graphics/trajectory-right.svg") center / contain no-repeat;
}

.credential-item {
    gap: 12px;
    min-height: 48px;
    border-radius: 4px;
    font-weight: 600;
}

.credential-item::before {
    display: none;
}

.credential-item img {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    object-fit: contain;
}

.trajectory-summary {
    margin-top: 20px;
}

.section--portfolio {
    min-height: 0;
    padding: 72px 0;
}

.section--portfolio .section-heading {
    margin-bottom: 24px;
    text-align: center;
}

.section--portfolio .section-heading h2 {
    text-transform: none;
}

.section--portfolio .section-heading p {
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.section--portfolio .section-heading__accent {
    color: #d2a047;
}

.marquee-block + .marquee-block {
    margin-top: 28px;
}

.marquee-label {
    margin-bottom: 16px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.marquee-label__accent {
    color: var(--color-mustard);
}

.marquee__track {
    gap: 16px;
    animation-duration: 125s;
}

.marquee--right .marquee__track {
    animation-duration: 115s;
}

.logo-card {
    flex-basis: 168px;
    width: 168px;
    height: 168px;
    padding: 12px;
    border-radius: 14px;
}

.logo-card__inner {
    width: 144px;
    height: 144px;
    border-radius: 12px;
}

.section--testimonials {
    min-height: 0;
    padding: 72px 0 56px;
}

.section--testimonials .section-heading {
    min-height: 0;
    margin-bottom: 40px;
    text-align: center;
}

.section--testimonials .section-heading h2 {
    text-transform: none;
}

.testimonial-card__quote-mark {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.testimonial-card__copy p {
    font-weight: 300;
}

.testimonial-card__copy strong {
    font-weight: 800;
}

.section--contact {
    min-height: 615px;
    padding-top: 48px;
    background: var(--color-mustard) url("../images/gis/contact-background.png") center bottom / 100% 100% no-repeat;
}

.section {
    scroll-margin-top: 104px;
}

.contact-copy h2 {
    color: #fff;
    font-size: 40px;
    line-height: 1.3;
}

.contact-copy h2 span {
    color: var(--color-navy);
}

.contact-copy__subtitle {
    margin: 0 0 16px;
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
}

.contact-list {
    display: grid;
    gap: 16px;
    margin: 0 0 16px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    color: var(--color-navy);
    font-weight: 400;
}

.contact-list li::before {
    display: none;
}

.contact-list li img {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
}

@media (min-width: 981px) {
    .section--trajectory,
    .section--portfolio,
    .section--testimonials {
        min-height: 0;
    }
}

@media (max-width: 980px) {
    .media-card--trajectory img,
    .media-card--contact img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        margin: 0;
        object-fit: cover;
        object-position: center;
    }

    .hero {
        background-position: left bottom;
        background-size: 100% auto;
    }

    .section--services {
        background-position: left bottom;
        background-size: auto 100%;
    }

    .section--trajectory {
        background-position: left top;
        background-size: auto 100%;
    }

    .section--contact {
        background: var(--color-mustard);
    }

    .hero__inner {
        border-radius: 24px;
    }

    .hero-card--photo img,
    .hero-card--copy {
        border-radius: 0;
    }

    .service-card__header {
        height: auto;
        min-height: 62px;
        font-size: 25px;
    }

    .trajectory-shape--right {
        transform-origin: right top;
    }
}

@media (max-width: 720px) {
    .section-copy h2,
    .section-heading h2,
    .contact-copy h2,
    .section--about .section-copy h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-list li {
        font-size: 18px;
    }

    .service-card__body,
    .service-card__body--reverse {
        padding: 18px;
    }

    .service-card__intro {
        font-size: 18px;
    }

    .section--trajectory,
    .section--portfolio,
    .section--testimonials {
        padding: 48px 0;
    }

    .marquee-label {
        font-size: 25px;
    }

    .logo-card {
        flex-basis: 144px;
        width: 144px;
        height: 144px;
        padding: 10px;
    }

    .logo-card__inner {
        width: 124px;
        height: 124px;
    }

    .contact-copy p.contact-copy__subtitle {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .trajectory-shape {
        opacity: 0.55;
    }
}
