:root {
    --navy: #071b2f;
    --navy-2: #102a43;
    --gold: #c9a557;
    --gold-2: #f1d893;
    --ink: #132033;
    --muted: #627085;
    --line: #dfe6ee;
    --surface: #ffffff;
    --soft: #f4f7fa;
    --shadow: 0 22px 60px rgba(7, 27, 47, .14);
    --radius: 8px;
    --container: min(1180px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    letter-spacing: 0;
}

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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    width: 100%;
    padding: 18px max(20px, calc((100vw - 1180px) / 2));
    color: #fff;
    transition: background .2s ease, box-shadow .2s ease, padding .2s ease;
}

.site-header.is-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(7, 27, 47, .94);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .2);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 52px;
    height: 42px;
    color: var(--navy);
    background: transparent;
    border-radius: 7px;
    font-weight: 800;
    overflow: hidden;
}

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

.brand strong,
.brand small {
    display: block;
    line-height: 1.1;
}

.brand strong {
    font-size: 17px;
}

.brand small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 600;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 600;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav a.is-active {
    color: var(--gold-2);
}

.header-call {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    color: var(--navy);
    background: #fff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 6px;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 50%);
    align-items: center;
    gap: 54px;
    min-height: 760px;
    padding: 120px max(20px, calc((100vw - 1180px) / 2)) 78px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(7, 27, 47, .98) 0%, rgba(7, 27, 47, .95) 46%, rgba(7, 27, 47, .76) 100%),
        var(--navy);
}

.hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -170px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(201, 165, 87, .24);
    transform: rotate(16deg);
}

.hero-content,
.hero-media {
    position: relative;
    z-index: 1;
}

.hero h1 {
    max-width: 660px;
    margin: 0;
    font-size: clamp(42px, 5.2vw, 76px);
    line-height: .98;
    letter-spacing: 0;
}

.hero p {
    max-width: 620px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    box-shadow: 0 12px 28px rgba(201, 165, 87, .24);
}

.btn-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .06);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 620px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.stats div {
    padding: 20px 22px 20px 0;
}

.stats strong,
.stats span {
    display: block;
}

.stats strong {
    color: var(--gold-2);
    font-size: 23px;
    line-height: 1;
}

.stats span {
    margin-top: 8px;
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
    font-weight: 600;
}

.hero-media {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    box-shadow: 0 36px 90px rgba(0, 0, 0, .35);
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: min(60vw, 560px);
    min-height: 430px;
    object-fit: cover;
}

.service-strip,
.about,
.projects,
.gallery,
.contact,
.process {
    padding-left: max(20px, calc((100vw - 1180px) / 2));
    padding-right: max(20px, calc((100vw - 1180px) / 2));
}

.service-strip,
.projects {
    padding-top: 92px;
    padding-bottom: 92px;
    background: #fff;
}

.service-strip.compact {
    padding-top: 0;
}

.service-strip.compact .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
    gap: 54px;
    align-items: center;
    min-height: 520px;
    padding: 128px max(20px, calc((100vw - 1180px) / 2)) 72px;
    color: #fff;
    background: linear-gradient(120deg, rgba(7, 27, 47, .98), rgba(16, 42, 67, .92));
}

.page-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1;
    letter-spacing: 0;
}

.page-hero p {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    line-height: 1.7;
}

.page-hero img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .3);
}

.home-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
    padding: 78px max(20px, calc((100vw - 1180px) / 2)) 42px;
    background: #fff;
}

.home-summary span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-summary h2 {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
}

.summary-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.summary-links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.page-section {
    padding-top: 78px;
}

.page-gallery {
    padding-top: 92px;
}

.home-gallery {
    padding-top: 0;
}

.page-contact {
    margin: 0;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--delay, 0ms);
}

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

[data-parallax] {
    overflow: hidden;
}

[data-parallax] > img {
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.045);
    transition: transform .18s linear;
    will-change: transform;
}

.home-hero {
    min-height: 790px;
}

.cinematic-media {
    transform: perspective(1200px) rotateY(-3deg);
    transform-origin: center;
}

.home-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 42px;
    align-items: end;
    padding: 94px max(20px, calc((100vw - 1180px) / 2)) 56px;
    background: #fff;
}

.intro-copy {
    max-width: 820px;
}

.intro-copy span,
.story-copy span,
.corridor-head span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.intro-copy h2,
.story-copy h2,
.corridor-head h2,
.home-cta h2 {
    margin: 12px 0 0;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: 0;
}

.intro-copy p,
.story-copy p,
.home-cta p {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.home-services-showcase {
    display: grid;
    gap: 26px;
    padding: 22px max(20px, calc((100vw - 1180px) / 2)) 104px;
    background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.service-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .62fr);
    gap: 36px;
    align-items: stretch;
    min-height: 430px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 22px 70px rgba(7, 27, 47, .09);
}

.service-feature.is-reversed {
    grid-template-columns: minmax(320px, .62fr) minmax(0, 1.12fr);
}

.service-feature.is-reversed .feature-media {
    order: 2;
}

.feature-media {
    border-radius: 6px;
    background: var(--navy);
}

.feature-media img {
    width: 100%;
    height: 100%;
    min-height: 394px;
    object-fit: cover;
}

.feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(22px, 3vw, 44px);
}

.feature-copy span {
    color: var(--gold);
    font-size: 14px;
    font-weight: 800;
}

.feature-copy h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.08;
}

.feature-copy p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.visual-story {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
    gap: 58px;
    align-items: start;
    padding: 110px max(20px, calc((100vw - 1180px) / 2));
    color: #fff;
    background: var(--navy);
}

.story-copy {
    position: sticky;
    top: 112px;
    padding-top: 10px;
}

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

.story-copy p {
    color: rgba(255, 255, 255, .7);
}

.story-stack {
    display: grid;
    gap: 22px;
}

.story-image {
    position: relative;
    min-height: 430px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: #06111f;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
}

.story-image:nth-child(even) {
    margin-left: 9%;
}

.story-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    opacity: .9;
}

.story-image::after,
.corridor-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 58%;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(7, 27, 47, .78));
}

.story-image figcaption {
    position: absolute;
    z-index: 1;
    left: 24px;
    right: 24px;
    bottom: 24px;
    color: #fff;
}

.story-image figcaption span {
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 800;
}

.story-image h3 {
    max-width: 520px;
    margin: 8px 0 0;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.08;
}

.image-corridor {
    padding: 104px max(20px, calc((100vw - 1180px) / 2));
    background: #fff;
}

.corridor-head {
    max-width: 760px;
    margin-bottom: 36px;
}

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

.corridor-item {
    position: relative;
    min-height: 260px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy);
    box-shadow: 0 18px 46px rgba(7, 27, 47, .11);
}

.corridor-item:nth-child(3n + 1) {
    grid-row: span 2;
    min-height: 540px;
}

.corridor-item img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    opacity: .9;
    transition: transform .45s ease, opacity .45s ease;
}

.corridor-item:hover img {
    transform: scale(1.045);
    opacity: .72;
}

.corridor-item figcaption {
    position: absolute;
    z-index: 1;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 8px;
    color: #fff;
}

.corridor-item figcaption span {
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 800;
}

.corridor-item figcaption strong {
    font-size: 20px;
    line-height: 1.15;
}

.home-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
    padding: 82px max(20px, calc((100vw - 1180px) / 2));
    color: #fff;
    background: linear-gradient(120deg, var(--navy), var(--navy-2));
}

.home-cta h2 {
    max-width: 760px;
    color: #fff;
}

.home-cta p {
    color: rgba(255, 255, 255, .72);
}

.content-hero {
    grid-template-columns: minmax(0, .85fr) minmax(380px, .7fr);
}

.hero-proof-board {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0;
    padding: 8px 0 8px 28px;
    border-left: 1px solid rgba(201, 165, 87, .34);
}

.hero-visual-panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
}

.hero-body-image {
    min-height: 360px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background: #06111f;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
}

.hero-body-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.proof-item,
.feature-points div,
.benefit-stack article,
.usage-card,
.about-values article,
.project-points span {
    border: 1px solid rgba(201, 165, 87, .22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
}

.proof-item {
    position: relative;
    min-height: auto;
    padding: 22px 0 24px;
    color: #fff;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.proof-item::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 30px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(201, 165, 87, .13);
}

.proof-item span,
.benefit-stack span,
.usage-card span,
.about-values span {
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 800;
}

.proof-item h3 {
    margin: 0 0 10px;
    font-size: clamp(23px, 2.2vw, 34px);
    line-height: 1.1;
}

.proof-item p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    line-height: 1.6;
}

.content-feature {
    grid-template-columns: minmax(0, .92fr) minmax(360px, .8fr);
}

.content-feature.is-reversed {
    grid-template-columns: minmax(360px, .8fr) minmax(0, .92fr);
}

.content-feature.is-reversed .feature-media {
    order: 2;
}

.content-feature.is-reversed .feature-copy {
    order: 1;
}

.feature-points {
    display: grid;
    gap: 14px;
    align-content: center;
    margin-top: 26px;
    padding: clamp(18px, 2vw, 28px);
    border-radius: 6px;
    background: linear-gradient(145deg, var(--navy), var(--navy-2));
}

.feature-points div {
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    border-radius: 0;
    background: transparent;
}

.feature-points strong,
.feature-points small {
    display: block;
}

.feature-points strong {
    color: #fff;
    font-size: 17px;
}

.feature-points small {
    margin-top: 7px;
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
    line-height: 1.55;
}

.content-story {
    grid-template-columns: minmax(300px, .7fr) minmax(0, 1fr);
}

.benefit-stack {
    display: grid;
    gap: 0;
    padding-left: 34px;
    border-left: 1px solid rgba(201, 165, 87, .36);
}

.benefit-stack article {
    position: relative;
    min-height: 170px;
    padding: 26px 0 30px;
    color: #fff;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    border-radius: 0;
    background: transparent;
}

.benefit-stack article::before {
    content: "";
    position: absolute;
    left: -42px;
    top: 34px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 9px rgba(201, 165, 87, .13);
}

.benefit-stack p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.15;
    font-weight: 700;
}

.usage-corridor {
    background:
        linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

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

.usage-card {
    position: relative;
    min-height: 128px;
    padding: 26px 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
}

.usage-card span {
    color: var(--gold);
}

.usage-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(25px, 3vw, 42px);
    line-height: 1.08;
}

.content-process {
    margin-top: 0;
}

.page-hero.no-media {
    grid-template-columns: minmax(0, 900px);
}

.text-service-card {
    min-height: 360px;
}

.text-service-card::before {
    content: "";
    display: block;
    height: 6px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.text-about .about-values {
    display: grid;
    gap: 16px;
}

.about-values article {
    padding: 24px;
    background: #fff;
    border-color: var(--line);
    box-shadow: 0 16px 42px rgba(7, 27, 47, .07);
}

.about-values strong {
    display: block;
    margin-top: 0;
    color: var(--navy);
    font-size: 24px;
}

.about-values p {
    margin-top: 10px;
}

.text-project-feature {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
}

.project-points {
    display: grid;
    gap: 12px;
}

.project-points span {
    padding: 16px;
    color: var(--navy);
    background: var(--soft);
    border-color: var(--line);
    font-weight: 800;
}

.text-gallery article {
    min-height: 235px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 42px rgba(7, 27, 47, .07);
}

.text-gallery article > div {
    position: static;
    color: var(--navy);
    padding: 28px;
}

.text-gallery span {
    color: var(--gold);
}

.text-gallery h3 {
    color: var(--navy);
    font-size: 25px;
}

.section-head {
    display: grid;
    grid-template-columns: 190px minmax(0, 760px);
    align-items: start;
    gap: 28px;
    margin-bottom: 38px;
}

.section-head span,
.about-copy > span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-head h2,
.about h2,
.contact h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

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

.service-card {
    min-height: 360px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(7, 27, 47, .07);
}

.service-card img {
    width: 100%;
    height: 142px;
    object-fit: cover;
}

.service-card div {
    padding: 20px;
}

.service-card span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.service-card h3 {
    margin: 12px 0 10px;
    color: var(--navy);
    font-size: 19px;
    line-height: 1.2;
}

.service-card p,
.about p,
.process p,
.project-feature p,
.contact p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.about {
    display: grid;
    grid-template-columns: minmax(360px, .95fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
    padding-top: 102px;
    padding-bottom: 102px;
    background: var(--soft);
}

.about-media img {
    width: 100%;
    aspect-ratio: 1 / .78;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about p {
    margin: 22px 0 0;
    max-width: 640px;
}

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

.check-list li {
    position: relative;
    padding-left: 30px;
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
}

.process {
    padding-top: 88px;
    padding-bottom: 92px;
    color: #fff;
    background: var(--navy);
}

.section-head.light h2 {
    color: #fff;
}

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

.process-grid article {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .04);
}

.process h3 {
    margin: 0 0 12px;
    font-size: 22px;
}

.process p {
    color: rgba(255, 255, 255, .68);
    margin: 0;
}

.project-feature {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 38px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.project-feature img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 6px;
}

.project-feature h3 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.1;
}

.text-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--navy);
    font-weight: 800;
    border-bottom: 2px solid var(--gold);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-top: 0;
    padding-bottom: 102px;
}

.gallery article {
    position: relative;
    min-height: 315px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy);
}

.gallery img {
    width: 100%;
    height: 100%;
    min-height: 315px;
    object-fit: cover;
    opacity: .82;
    transition: transform .35s ease, opacity .35s ease;
}

.gallery article:hover img {
    transform: scale(1.04);
    opacity: .68;
}

.gallery article > div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: #fff;
}

.gallery span {
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 800;
}

.gallery h3 {
    margin: 8px 0 0;
    font-size: 22px;
    line-height: 1.18;
}

.contact {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 42px;
    align-items: center;
    padding-top: 74px;
    padding-bottom: 74px;
    color: #fff;
    background: linear-gradient(120deg, var(--navy), var(--navy-2));
}

.contact h2 {
    color: #fff;
}

.contact p {
    max-width: 680px;
    color: rgba(255, 255, 255, .72);
}

.contact-panel {
    display: grid;
    gap: 12px;
    min-width: min(100%, 340px);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
}

.contact-line {
    color: rgba(255, 255, 255, .78);
    font-weight: 700;
}

.contact-line.strong {
    color: #fff;
    font-size: 23px;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding: 34px max(20px, calc((100vw - 1180px) / 2));
    background: #041220;
    color: rgba(255, 255, 255, .72);
}

.footer strong {
    color: #fff;
}

.footer p {
    margin: 8px 0 0;
}

.social {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    font-weight: 700;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    color: #fff;
    background: #0f9f5d;
    border-radius: 6px;
    box-shadow: 0 14px 34px rgba(15, 159, 93, .28);
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 1120px) {
    .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 10px;
        color: var(--ink);
        background: #fff;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 14px;
    }

    .header-call {
        display: none;
    }

    .hero,
    .page-hero,
    .home-intro,
    .content-hero,
    .service-feature,
    .service-feature.is-reversed,
    .content-feature,
    .content-feature.is-reversed,
    .visual-story,
    .content-story,
    .home-cta,
    .text-project-feature,
    .about,
    .project-feature,
    .contact {
        grid-template-columns: 1fr;
    }

    .service-feature.is-reversed .feature-media,
    .content-feature.is-reversed .feature-copy {
        order: 0;
    }

    .story-copy {
        position: static;
    }

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

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

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

    .service-strip.compact .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    :root {
        --container: calc(100vw - 28px);
    }

    .site-header {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand {
        min-width: 0;
    }

    .brand small {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 104px 14px 58px;
        gap: 34px;
    }

    .page-hero {
        min-height: auto;
        padding: 104px 14px 58px;
        gap: 28px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-media img {
        height: 320px;
        min-height: 320px;
    }

    .stats,
    .process-grid,
    .gallery,
    .home-summary,
    .home-intro,
    .corridor-grid,
    .usage-grid,
    .benefit-stack,
    .hero-proof-board,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .home-intro,
    .home-services-showcase,
    .visual-story,
    .image-corridor,
    .home-cta {
        padding-left: 14px;
        padding-right: 14px;
    }

    .home-intro,
    .image-corridor {
        padding-top: 64px;
        padding-bottom: 48px;
    }

    .home-services-showcase,
    .visual-story,
    .home-cta {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .cinematic-media {
        transform: none;
    }

    .feature-media img,
    .story-image,
    .story-image img {
        min-height: 300px;
        height: 300px;
    }

    .service-feature {
        padding: 12px;
    }

    .proof-item,
    .benefit-stack article,
    .usage-card {
        min-height: auto;
    }

    .content-feature,
    .content-feature.is-reversed {
        gap: 14px;
    }

    .feature-points {
        padding: 14px;
    }

    .story-image:nth-child(even) {
        margin-left: 0;
    }

    .corridor-item,
    .corridor-item:nth-child(3n + 1) {
        grid-row: auto;
        min-height: 300px;
    }

    .summary-links {
        justify-content: flex-start;
    }

    .service-strip.compact .service-grid {
        grid-template-columns: 1fr;
    }

    .stats div {
        padding: 16px 0;
    }

    .section-head {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-strip,
    .about,
    .projects,
    .gallery,
    .contact,
    .process {
        padding-left: 14px;
        padding-right: 14px;
    }

    .service-strip,
    .about,
    .projects,
    .process {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .gallery {
        padding-bottom: 70px;
    }

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

    .footer {
        display: grid;
        padding-left: 14px;
        padding-right: 14px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-parallax] > img,
    .btn,
    .gallery img,
    .corridor-item img {
        transition: none;
        transform: none;
    }
}
