/* Header */
.topbar {
    background: var(--navy-strong);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
}

.topbar__inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar__note,
.topbar__contacts,
.topbar__contacts a {
    display: flex;
    align-items: center;
}

.topbar__note {
    gap: 8px;
    white-space: nowrap;
}

.topbar__note i,
.topbar__contacts i {
    color: var(--gold);
}

.topbar__contacts {
    gap: 0;
}

.topbar__contacts a {
    gap: 7px;
    padding: 0 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.topbar__contacts a:hover {
    color: var(--white);
}

.topbar__contacts small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6rem;
    font-weight: 500;
}

.site-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
}

.site-header.is-stuck {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    box-shadow: var(--shadow-sm);
    animation: headerIn 220ms ease both;
}

.site-header__inner {
    display: grid;
    min-height: 82px;
    grid-template-columns: minmax(150px, 215px) 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 11px;
    color: var(--navy);
}

.brand img {
    width: auto;
    max-width: 190px;
    height: 62px;
    object-fit: contain;
}

.brand__mark {
    display: inline-grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    background: var(--navy);
    color: var(--gold);
    font-size: 1.35rem;
    transform: skewX(-8deg);
}

.brand__mark i {
    transform: skewX(8deg);
}

.brand__text {
    overflow: hidden;
    color: var(--navy);
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.primary-nav {
    justify-self: end;
}

.primary-nav__intro,
.primary-nav__contact {
    display: none;
}

.primary-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(13px, 1.55vw, 25px);
}

.primary-nav a {
    position: relative;
    display: inline-flex;
    min-height: 82px;
    align-items: center;
    color: #334b60;
    font-size: 0.74rem;
    font-weight: 600;
    white-space: nowrap;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--navy);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
    transform: scaleX(1);
}

.site-header__cta {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.73rem;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
    box-shadow: 0 5px 16px rgba(5, 45, 82, 0.07);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-toggle:hover {
    border-color: var(--line-strong);
    box-shadow: 0 7px 20px rgba(5, 45, 82, 0.11);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0;
    border-radius: 2px;
    background: var(--navy);
    transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.home-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(246, 248, 250, 0.96) 0, rgba(255, 255, 255, 0.7) 53%, rgba(255, 255, 255, 0) 73%),
        var(--surface);
}

.home-hero::before {
    display: none;
}

.home-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 520px;
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.2fr);
    align-items: center;
    gap: 42px;
}

@media (min-width: 821px) {
    .home-hero {
        background: var(--surface);
    }

    .home-hero::before {
        position: absolute;
        z-index: 0;
        inset: 0 0 32px;
        display: block;
        background:
            linear-gradient(90deg, rgba(246, 248, 250, 0.96) 0, rgba(255, 255, 255, 0.7) 53%, rgba(255, 255, 255, 0) 73%),
            var(--surface);
        content: "";
    }
}

.home-hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: 56px;
}

.home-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.3rem, 2.4vw, 2.9rem);
    line-height: 1.12;
}

.home-hero__title-main,
.home-hero__title-accent {
    display: block;
}

.home-hero__title-accent {
    color: var(--gold);
}

@media (min-width: 1181px) {

    .home-hero__title-main,
    .home-hero__title-accent {
        white-space: nowrap;
    }
}

.home-hero__lead {
    max-width: 650px;
    margin-bottom: 15px;
    color: var(--text);
    font-size: 1rem;
}

.home-hero__areas {
    margin-bottom: 24px;
    color: var(--text);
    font-size: 0.79rem;
}

.home-hero__areas strong {
    color: var(--ink);
}

.hero-contact-grid {
    display: grid;
    max-width: 570px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-contact {
    display: flex;
    min-height: 70px;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-contact:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hero-contact--dark {
    background: var(--navy);
}

.hero-contact--green {
    background: var(--green);
}

.hero-contact>i {
    font-size: 1.45rem;
}

.hero-contact span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.hero-contact strong {
    font-size: 0.9rem;
}

.hero-contact small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.66rem;
}

.home-hero__visual {
    position: relative;
    align-self: stretch;
    min-height: 500px;
    margin-right: calc((100vw - min(100vw - 40px, var(--container))) / -2);
    clip-path: polygon(18% 0, 100% 0, 100% 92%, 94% 100%, 0 100%);
    background: #dfe7ed;
}

.home-hero__visual::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15%;
    width: 5px;
    background: var(--gold);
    content: "";
    transform: skewX(-18deg);
    transform-origin: top;
}

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

.wall-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    overflow: hidden;
    padding: 25% 4% 15%;
    background:
        linear-gradient(180deg, #b9d8ee 0 45%, #799c65 45% 50%, #d5d7d3 50% 100%);
}

.wall-placeholder::before {
    position: absolute;
    right: 18%;
    bottom: 48%;
    width: 42%;
    height: 28%;
    background: #59646d;
    box-shadow: 0 -22px 0 #3c464e;
    content: "";
}

.wall-placeholder span {
    position: relative;
    z-index: 2;
    height: 45%;
    border: 2px solid #bec4c6;
    background:
        repeating-linear-gradient(90deg, transparent 0 9px, rgba(117, 127, 130, 0.12) 9px 11px),
        #eef0ee;
}

.wall-placeholder span::before {
    position: absolute;
    top: -20px;
    left: -5px;
    width: 10px;
    height: calc(100% + 20px);
    background: #f3f3f0;
    box-shadow: inset 0 0 0 1px #c7cccd;
    content: "";
}

.wall-placeholder--large {
    position: relative;
    min-height: 430px;
    border-radius: var(--radius-md);
}

.trust-strip {
    position: relative;
    z-index: 3;
    display: grid;
    min-height: 64px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -28px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.trust-strip__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 600;
}

.trust-strip__item+.trust-strip__item {
    border-left: 1px solid var(--line);
}

.trust-strip__item i {
    color: var(--gold);
    font-size: 1.15rem;
}

/* Why and feature rows */
.why-section {
    padding-top: 45px;
}

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

.benefit-item {
    display: flex;
    gap: 17px;
    padding: 10px 24px;
}

.benefit-item+.benefit-item {
    border-left: 1px solid var(--line);
}

.benefit-item__icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--gold) 45%, white);
    color: var(--gold-dark);
    font-size: 1.35rem;
    transform: rotate(45deg);
}

.benefit-item__icon i {
    transform: rotate(-45deg);
}

.benefit-item h3 {
    margin: 2px 0 8px;
    font-size: 0.92rem;
}

.benefit-item p {
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.65;
}

.benefit-grid--cards {
    gap: 18px;
}

.benefit-grid--cards .benefit-item {
    display: block;
    padding: 28px;
    border: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.benefit-grid--cards .benefit-item__icon {
    margin-bottom: 24px;
}

/* Service */
.service-feature {
    background: var(--surface-soft);
}

.service-feature__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.8fr) minmax(220px, 0.44fr);
    align-items: center;
    gap: 38px;
}

.service-feature__media {
    position: relative;
    overflow: hidden;
    min-height: 410px;
    border-radius: var(--radius-md);
    background: #dfe6ea;
}

.service-feature__media img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
}

.service-feature__content h2 {
    margin-bottom: 16px;
}

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

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #3e5264;
    font-size: 0.8rem;
}

.check-list i {
    margin-top: 3px;
    color: var(--gold);
}

.quote-card {
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.quote-card>span {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 21px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--gold) 45%, white);
    color: var(--gold);
    font-size: 1.35rem;
}

.quote-card h3 {
    margin-bottom: 12px;
}

.quote-card p {
    margin-bottom: 22px;
    font-size: 0.76rem;
}

.quote-card .button {
    width: 100%;
}

/* Projects */
.projects-section {
    background: var(--white);
}

.project-grid {
    display: grid;
    grid-auto-rows: 220px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 9px;
    background: #dce2e6;
    text-align: left;
}

.project-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.project-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(180deg, transparent 35%, rgba(2, 33, 62, 0.82));
    color: var(--white);
    opacity: 0;
    transition: opacity 220ms ease;
}

.project-card__overlay strong {
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.project-card__overlay span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.7rem;
}

.project-card:hover img {
    transform: scale(1.04);
}

.project-card:hover .project-card__overlay,
.project-card:focus-visible .project-card__overlay {
    opacity: 1;
}

/* Process */
.process-section {
    padding-top: 45px;
}

.process-panel {
    padding: 48px 55px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 0 25px;
}

.process-step+.process-step::before {
    position: absolute;
    top: 24px;
    left: -5px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--line-strong);
    border-right: 2px solid var(--line-strong);
    content: "";
    transform: rotate(45deg);
}

.process-step__number {
    position: absolute;
    top: -13px;
    left: 67px;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-size: 0.58rem;
    font-weight: 700;
}

.process-step__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--navy);
    font-size: 1.3rem;
}

.process-step h3 {
    margin: 2px 0 6px;
    font-size: 0.86rem;
}

.process-step p {
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.55;
}

/* Areas */
.areas-section {
    padding-top: 45px;
    background: var(--surface-soft);
}

.area-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    gap: 10px;
}

.area-list a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
    color: #435a6d;
    font-size: 0.76rem;
    font-weight: 600;
    transition: border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.area-list a:hover,
.area-list a.active {
    border-color: var(--navy);
    color: var(--navy);
    box-shadow: inset 0 -3px 0 var(--navy);
}

.area-list i {
    color: var(--navy);
}

/* FAQ */
.faq-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.55fr);
    gap: 70px;
}

.faq-intro h2 {
    margin-bottom: 15px;
}

.faq-intro p {
    margin-bottom: 24px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.faq-item h3 {
    font-size: 0.83rem;
}

.faq-item button {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 18px;
    text-align: left;
}

.faq-item button i {
    color: var(--navy);
    transition: transform 180ms ease;
}

.faq-item.is-open button i {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding: 0 18px 17px;
}

.faq-item__answer p {
    color: var(--muted);
    font-size: 0.78rem;
}

/* Blog */
.home-blog,
.related-posts {
    background: var(--surface-soft);
}

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

.blog-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #dce3e8;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.04);
}

.blog-card__content {
    padding: 24px;
}

.blog-card__content>span {
    display: block;
    margin-bottom: 9px;
    color: var(--gold-dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
    margin-bottom: 10px;
    font-size: 1.02rem;
}

.blog-card p {
    display: -webkit-box;
    margin-bottom: 17px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.76rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* Global CTA */
.global-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 45px 0;
    background: var(--navy);
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
}

.global-cta__backdrop {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 33, 62, 0.98), rgba(5, 45, 82, 0.88)),
        var(--navy);
    pointer-events: none;
}

.global-cta--image .global-cta__backdrop {
    position: fixed;
    background:
        linear-gradient(90deg, rgba(2, 33, 62, 0.97), rgba(5, 45, 82, 0.82)),
        var(--cta-image) center / cover no-repeat;
    transform: translateZ(0);
}

.global-cta::before,
.global-cta::after {
    position: absolute;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    content: "";
    transform: rotate(45deg);
}

.global-cta::before {
    top: -180px;
    left: -80px;
}

.global-cta::after {
    right: -110px;
    bottom: -170px;
}

.global-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    .global-cta--image .global-cta__backdrop {
        position: absolute;
        transform: none;
    }
}

.global-cta h2 {
    margin: 0 auto 13px;
    color: var(--white);
}

.global-cta p {
    margin: 0 auto 25px;
    color: rgba(255, 255, 255, 0.72);
}

/* Contact */
.contact-panel__grid {
    display: grid;
    grid-template-columns: minmax(380px, 1.1fr) minmax(0, 0.9fr);
    align-items: stretch;
    gap: 45px;
}

.contact-panel__grid--single {
    grid-template-columns: minmax(0, 720px);
}

.contact-panel__content h2 {
    margin-bottom: 14px;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.contact-list a,
.contact-list__item {
    display: grid;
    grid-template-columns: 39px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 8px;
    min-width: 0;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.contact-list>*>span:first-child {
    display: grid;
    width: 39px;
    height: 39px;
    grid-row: 1 / 2;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--navy);
}

.contact-list small {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    color: var(--muted);
    font-size: 0.64rem;
}

.contact-list strong {
    grid-column: 2;
    grid-row: 2;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.5;
}

.contact-panel__map {
    min-height: 390px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
}

.contact-panel__map iframe {
    width: 100%;
    height: 100%;
    min-height: 390px;
    border: 0;
}

.contact-form-section {
    background: var(--surface-soft);
}

.contact-form-section__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 52px;
}

.contact-form-section__intro {
    padding-top: 14px;
}

.contact-form-section__intro h2 {
    margin-bottom: 14px;
}

.contact-form-section__intro p {
    color: var(--text);
    line-height: 1.8;
}

.contact-form-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.contact-form__honeypot {
    position: fixed;
    top: -10000px;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

.form-field {
    display: grid;
    min-width: 0;
    gap: 7px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 600;
}

.form-field label span {
    color: var(--gold-dark);
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 7px;
    background: var(--white);
    color: var(--ink);
    font-size: 0.82rem;
    outline: 0;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input {
    min-height: 48px;
    padding: 0 13px;
}

.form-field textarea {
    min-height: 112px;
    padding: 12px 13px;
    line-height: 1.65;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9aa5ae;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(217, 154, 35, 0.12);
}

.contact-form__hint {
    margin-top: 11px;
    color: var(--muted);
    font-size: 0.66rem;
}

.contact-form__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.contact-form__footer .button {
    flex: 0 0 auto;
}

.contact-form__footer .button:disabled {
    cursor: wait;
    opacity: 0.66;
    transform: none;
}

.contact-form__status {
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.5;
}

.contact-form__status[data-state="success"] {
    color: #087d49;
}

.contact-form__status[data-state="error"] {
    color: #b42318;
}

.contact-note {
    padding-top: 45px;
}

.contact-note__inner {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px;
    border-left: 4px solid var(--gold);
    background: var(--surface-warm);
}

.contact-note__inner>span {
    color: var(--gold-dark);
    font-size: 1.5rem;
}

.contact-note h2 {
    margin-bottom: 7px;
    font-size: 1.15rem;
}

/* Inner-page hero */
.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 72px 0 62px;
    background:
        linear-gradient(100deg, rgba(2, 33, 62, 1) 0%, rgba(5, 45, 82, 0.94) 60%, rgba(5, 45, 82, 0.84)),
        var(--navy);
}

.page-hero--image {
    background:
        linear-gradient(100deg, rgba(2, 33, 62, 0.97) 0%, rgba(5, 45, 82, 0.88) 58%, rgba(5, 45, 82, 0.62)),
        var(--page-hero-image) center / cover no-repeat;
}

.page-hero::after {
    position: absolute;
    right: 7%;
    bottom: -170px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    content: "";
    transform: rotate(45deg);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 16px;
    color: var(--white);
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs {
    margin-bottom: 42px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.7rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs li+li::before {
    content: "/";
}

.breadcrumbs a:hover {
    color: var(--white);
}

/* Detail pages */
.detail-section__grid,
.about-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    align-items: center;
    gap: 70px;
}

.detail-section__media,
.about-story__media {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: var(--radius-md);
    background: #dce4e8;
}

.detail-section__media img,
.about-story__media img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.detail-benefits,
.about-values {
    background: var(--surface-soft);
}

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

.value-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.value-card>span {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    place-items: center;
    background: var(--navy);
    color: var(--gold);
    font-size: 1.25rem;
}

.value-card h3 {
    margin-bottom: 10px;
}

.value-card p {
    color: var(--muted);
    font-size: 0.8rem;
}

.areas-archive__layout {
    display: grid;
    grid-template-columns: minmax(270px, 0.65fr) minmax(0, 1.35fr);
    align-items: start;
    gap: 70px;
}

.areas-archive__intro {
    position: sticky;
    top: 125px;
}

.areas-archive__intro h2 {
    margin-bottom: 15px;
}

.areas-archive__intro p+p {
    margin-top: 14px;
}

.areas-archive__intro .button {
    margin-top: 25px;
}

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

.area-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.area-card>span {
    position: absolute;
    top: -20px;
    right: 7px;
    color: #eef2f5;
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
}

.area-card>i {
    position: relative;
    color: var(--gold);
    font-size: 1.35rem;
}

.area-card h3 {
    position: relative;
    margin: 22px 0 9px;
}

.area-card p {
    position: relative;
    color: var(--muted);
    font-size: 0.75rem;
}

.content-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 55px;
}

.content-article {
    min-width: 0;
}

.content-article__cover {
    width: 100%;
    max-height: 620px;
    margin-bottom: 36px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.content-sidebar {
    position: sticky;
    top: 125px;
}

.content-sidebar__card {
    padding: 28px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--gold);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
}

.content-sidebar__card h2 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.content-sidebar__card p {
    margin-bottom: 20px;
    font-size: 0.78rem;
}

/* Footer */
.site-footer {
    padding-top: 62px;
    background: var(--navy-strong);
    color: rgba(255, 255, 255, 0.68);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(230px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
    gap: 48px;
    padding-bottom: 45px;
}

.brand--footer {
    margin-bottom: 17px;
    color: var(--white);
}

.brand--footer img {
    filter: brightness(0) invert(1);
}

.brand--footer .brand__text {
    color: var(--white);
}

.site-footer__brand>p {
    max-width: 320px;
    font-size: 0.74rem;
}

.site-footer__socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.site-footer__socials a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: var(--white);
}

.site-footer__socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.site-footer__column h2 {
    margin-bottom: 17px;
    color: var(--white);
    font-size: 0.84rem;
}

.site-footer__column ul {
    display: grid;
    gap: 7px;
}

.site-footer__column li,
.site-footer__column a,
.site-footer__contact p {
    font-size: 0.7rem;
}

.site-footer__column li a:hover {
    color: var(--white);
}

.site-footer__column li a::before {
    margin-right: 7px;
    color: var(--gold);
    content: "›";
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__contact h2 {
    margin-bottom: 7px;
}

.site-footer__contact a,
.site-footer__contact p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.site-footer__contact i {
    margin-top: 2px;
    color: var(--gold);
}

.site-footer__contact span {
    display: flex;
    flex-direction: column;
}

.site-footer__contact small {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.6rem;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom .container {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.65rem;
}

.site-footer__credit {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    max-width: none;
}

.site-footer__credit a {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 650;
}

.site-footer__bottom a:hover {
    color: var(--white);
}

/* Fixed actions */
.floating-action {
    --action-color: var(--navy);
    position: fixed;
    z-index: 300;
    bottom: max(22px, env(safe-area-inset-bottom));
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: var(--white);
    box-shadow:
        0 11px 28px rgba(2, 33, 62, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    font-size: 1.24rem;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.floating-action::after {
    position: absolute;
    z-index: -1;
    inset: -4px;
    border: 1px solid var(--action-color);
    border-radius: inherit;
    content: "";
    opacity: 0;
    pointer-events: none;
    animation: contactWave 4.2s ease-out infinite;
}

.floating-action:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 32px rgba(2, 33, 62, 0.26),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.floating-action--phone {
    --action-color: var(--navy);
    left: max(22px, env(safe-area-inset-left));
    background: var(--navy);
}

.floating-action--whatsapp {
    --action-color: var(--green);
    right: max(22px, env(safe-area-inset-right));
    background: var(--green);
}

.floating-action--whatsapp::after {
    animation-delay: 1.4s;
}

body.nav-open .floating-action,
body.nav-open .phone-chooser,
body.overlay-open .floating-action,
body.overlay-open .phone-chooser {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.phone-chooser {
    position: fixed;
    z-index: 310;
    bottom: max(92px, calc(env(safe-area-inset-bottom) + 92px));
    left: max(22px, env(safe-area-inset-left));
    width: min(360px, calc(100vw - 44px));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 25px 65px rgba(2, 33, 62, 0.28);
}

.phone-chooser__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 19px;
    background: var(--navy);
    color: var(--white);
}

.phone-chooser__header div {
    display: flex;
    flex-direction: column;
}

.phone-chooser__header small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.65rem;
}

.phone-chooser__header strong {
    font-size: 0.78rem;
}

.phone-chooser__header button {
    color: var(--white);
}

.phone-chooser__list {
    display: grid;
    gap: 1px;
    background: var(--line);
}

.phone-chooser__list a {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: var(--white);
}

.phone-chooser__list a:hover {
    background: var(--surface-soft);
}

.phone-chooser__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--navy);
}

.phone-chooser__list a>span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.phone-chooser__list strong {
    color: var(--ink);
    font-size: 0.78rem;
}

.phone-chooser__list small {
    color: var(--muted);
    font-size: 0.7rem;
}

.discovery-modal {
    position: fixed;
    z-index: 900;
    inset: 0;
    overflow-y: auto;
    padding: 28px 18px;
    background: rgba(2, 33, 62, 0.7);
    backdrop-filter: blur(3px);
}

.discovery-modal__dialog {
    position: relative;
    width: min(720px, 100%);
    margin: auto;
    padding: 32px;
    border-top: 4px solid var(--gold);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 30px 80px rgba(2, 33, 62, 0.3);
}

.discovery-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
    color: var(--navy);
    transition: border-color 160ms ease, background-color 160ms ease;
}

.discovery-modal__close:hover {
    border-color: var(--line-strong);
    background: var(--surface-soft);
}

.discovery-modal__header {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin: 0 54px 24px 0;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.discovery-modal__icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 8px;
    background: var(--surface-soft);
    color: var(--gold-dark);
    font-size: 1.25rem;
}

.discovery-modal__header h2 {
    margin-bottom: 4px;
    font-size: 1.35rem;
}

.discovery-modal__header p {
    color: var(--muted);
    font-size: 0.76rem;
}

.lightbox {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    padding: 34px;
    place-items: center;
    background: rgba(1, 20, 37, 0.94);
}

.lightbox figure {
    display: grid;
    max-width: min(1200px, 94vw);
    max-height: 88vh;
    gap: 10px;
}

.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox figcaption {
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.lightbox__close {
    position: absolute;
    top: 22px;
    right: 22px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
}

.not-found {
    display: grid;
    min-height: 68vh;
    place-items: center;
    padding: 80px 0;
    background: var(--surface-soft);
}

.not-found__inner {
    text-align: center;
}

.not-found__inner>span {
    color: var(--gold);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.85;
}

.not-found h1 {
    margin: 22px 0 12px;
}

.not-found p {
    margin: 0 auto 28px;
}