:root {
    --alefir-dark: #262c26;
    --alefir-dark-deep: #171b17;
    --alefir-green: #769b6e;
    --alefir-green-dark: #56764f;
    --alefir-gray: #60605b;
    --alefir-white: #ffffff;
    --alefir-black: #000000;
    --alefir-text: #30332f;
    --alefir-muted: #6f746d;
    --alefir-soft: #f3f5f0;
    --alefir-soft-green: #e8eee5;
    --alefir-border: #dfe4dc;
    --alefir-container: 1240px;
    --alefir-radius-sm: 10px;
    --alefir-radius: 20px;
    --alefir-radius-lg: 34px;
    --alefir-shadow: 0 24px 70px rgba(38, 44, 38, 0.1);
    --alefir-transition: 180ms ease;
    --alefir-font-sans: "Myriad Pro", "Manrope", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--alefir-text);
    background: var(--alefir-white);
    font-family: var(--alefir-font-sans);
    font-size: 1rem;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--alefir-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--alefir-green-dark);
}

p:last-child {
    margin-bottom: 0;
}

.container {
    width: min(100% - 40px, var(--alefir-container));
    max-width: var(--alefir-container);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    color: var(--alefir-white);
    background: var(--alefir-dark);
    border-radius: var(--alefir-radius-sm);
    transform: translateY(-160%);
}

.skip-link:focus {
    color: var(--alefir-white);
    transform: translateY(0);
}

.topbar {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.78);
    background: var(--alefir-dark-deep);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.topbar__links {
    display: flex;
    gap: 24px;
}

.topbar a {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
}

.topbar a:hover {
    color: var(--alefir-green);
}

.topbar i {
    margin-right: 7px;
}

.site-header {
    z-index: 1030;
    border-bottom: 1px solid rgba(38, 44, 38, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 30px rgba(38, 44, 38, 0.05);
    backdrop-filter: blur(16px);
}

.site-header .navbar {
    min-height: 90px;
    padding: 14px 0;
}

.navbar-brand img {
    display: block;
    width: 220px;
    max-height: 54px;
}

.navbar-nav {
    gap: 2px;
}

.navbar .nav-link {
    position: relative;
    padding: 14px 13px !important;
    color: var(--alefir-text);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.navbar .nav-link::after {
    border: 0;
}

.navbar .nav-link::before {
    position: absolute;
    right: 13px;
    bottom: 7px;
    left: 13px;
    height: 2px;
    content: "";
    background: var(--alefir-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--alefir-transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--alefir-dark);
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
    transform: scaleX(1);
}

.navbar .dropdown-toggle {
    padding-right: 28px !important;
}

.navbar .dropdown-toggle::after {
    position: absolute;
    top: 50%;
    right: 11px;
    display: inline-block;
    width: 7px;
    height: 7px;
    content: "";
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
}

.dropdown-menu {
    min-width: 230px;
    padding: 12px;
    border: 1px solid var(--alefir-border);
    border-radius: 14px;
    box-shadow: var(--alefir-shadow);
}

.dropdown-item {
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 0.88rem;
    font-weight: 600;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--alefir-dark);
    background: var(--alefir-soft-green);
}

.header-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform var(--alefir-transition);
}

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

.header-whatsapp img {
    width: 150px;
    max-height: 46px;
    object-fit: contain;
}

.navbar-toggler {
    padding: 9px;
    border-color: var(--alefir-border);
    border-radius: 10px;
}

.hero-home {
    position: relative;
    padding: clamp(86px, 9vw, 145px) 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(38, 44, 38, 0.045) 1px, transparent 1px),
        linear-gradient(rgba(38, 44, 38, 0.045) 1px, transparent 1px),
        var(--alefir-soft);
    background-size: 54px 54px;
}

.hero-home::before {
    position: absolute;
    top: -180px;
    right: -110px;
    width: 460px;
    height: 460px;
    content: "";
    border: 1px solid rgba(118, 155, 110, 0.4);
    border-radius: 50%;
}

.hero-home .row {
    align-items: stretch !important;
}

.hero-home__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-home .col-lg-5 {
    display: flex;
}

.hero-home h1 {
    max-width: 900px;
    margin: 22px 0 26px;
    color: var(--alefir-dark);
    font-size: clamp(2.65rem, 5.2vw, 5.2rem);
    font-weight: 700;
    padding-bottom: 0.08em;
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--alefir-gray);
    font-size: clamp(1.08rem, 1.5vw, 1.3rem);
    line-height: 1.7;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--alefir-green-dark);
    font-size: 0.77rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 2px;
    content: "";
    background: currentColor;
}

.eyebrow-light {
    color: var(--alefir-green);
}

.hero-symbol {
    position: relative;
    width: 100%;
    min-height: 100%;
    padding: 60px;
    overflow: hidden;
    color: var(--alefir-white);
    background: var(--alefir-dark);
    border-radius: var(--alefir-radius-lg);
    box-shadow: var(--alefir-shadow);
}

.hero-symbol::before,
.hero-symbol::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(118, 155, 110, 0.28);
    transform: rotate(45deg);
}

.hero-symbol::before {
    top: -80px;
    right: -30px;
    width: 280px;
    height: 280px;
}

.hero-symbol::after {
    bottom: -90px;
    left: -70px;
    width: 220px;
    height: 220px;
}

.hero-symbol__brand {
    position: absolute;
    top: 62px;
    right: 55px;
    width: 240px;
    opacity: 0.96;
}

.hero-symbol--image::before,
.hero-symbol--image::after {
    display: none;
}

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

.hero-symbol__words {
    position: absolute;
    right: 58px;
    bottom: 52px;
    left: 58px;
    display: grid;
    gap: 11px;
}

.hero-symbol__words span {
    padding-top: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.btn {
    padding: 12px 22px;
    border-radius: 9px;
    font-weight: 750;
    text-decoration: none;
    transition:
        color var(--alefir-transition),
        background var(--alefir-transition),
        border-color var(--alefir-transition),
        transform var(--alefir-transition);
}

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

.btn-lg {
    padding: 15px 26px;
    font-size: 0.98rem;
}

.btn-brand {
    --bs-btn-color: var(--alefir-white);
    --bs-btn-bg: var(--alefir-dark);
    --bs-btn-border-color: var(--alefir-dark);
    --bs-btn-hover-color: var(--alefir-white);
    --bs-btn-hover-bg: var(--alefir-green-dark);
    --bs-btn-hover-border-color: var(--alefir-green-dark);
    --bs-btn-active-color: var(--alefir-white);
    --bs-btn-active-bg: var(--alefir-dark-deep);
    --bs-btn-active-border-color: var(--alefir-dark-deep);
}

.btn:disabled {
    cursor: not-allowed;
    transform: none;
}

.section {
    padding: clamp(80px, 8vw, 125px) 0;
}

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

.section-dark {
    color: rgba(255, 255, 255, 0.78);
    background: var(--alefir-dark);
}

.section-title {
    max-width: 780px;
    margin: 16px 0 0;
    color: var(--alefir-dark);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.section-dark .section-title {
    color: var(--alefir-white);
}

.section-lead {
    color: inherit;
    font-size: clamp(1.1rem, 1.5vw, 1.34rem);
    line-height: 1.75;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 52px;
}

.section-heading > p {
    color: var(--alefir-muted);
    font-size: 1.05rem;
}

.section-dark .section-heading > p {
    color: rgba(255, 255, 255, 0.72);
}

.text-link {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    margin-top: 12px;
    color: var(--alefir-dark);
    font-weight: 800;
    text-decoration: none;
}

.text-link i {
    transition: transform var(--alefir-transition);
}

.text-link:hover i {
    transform: translateX(5px);
}

.area-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 360px;
    padding: 38px;
    overflow: hidden;
    background: var(--alefir-white);
    border: 1px solid var(--alefir-border);
    border-radius: var(--alefir-radius);
    transition:
        border-color var(--alefir-transition),
        box-shadow var(--alefir-transition),
        transform var(--alefir-transition);
}

.area-card:hover {
    border-color: rgba(118, 155, 110, 0.7);
    box-shadow: var(--alefir-shadow);
    transform: translateY(-6px);
}

.area-card:focus-within {
    border-color: var(--alefir-green);
    box-shadow: 0 0 0 4px rgba(118, 155, 110, 0.22);
}

.card-link {
    position: absolute;
    z-index: 2;
    inset: 0;
}

.area-card > i {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 68px;
    color: var(--alefir-dark);
    background: var(--alefir-soft-green);
    border-radius: 16px;
    place-items: center;
    font-size: 1.55rem;
}

.area-card h2,
.area-card h3 {
    margin-bottom: 15px;
    color: var(--alefir-dark);
    font-size: clamp(1.25rem, 1.65vw, 1.5rem);
    font-weight: 750;
    letter-spacing: -0.025em;
}

.area-card p {
    color: var(--alefir-muted);
}

.area-card__action {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    padding-top: 24px;
    color: var(--alefir-dark);
    font-size: 0.88rem;
    font-weight: 800;
}

.area-card__action i {
    transition: transform var(--alefir-transition);
}

.area-card--linked:hover .area-card__action i {
    transform: translateX(5px);
}

.business-unit {
    padding-top: 0;
    background: var(--alefir-soft);
}

.business-unit__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(50px, 7vw, 100px);
    align-items: stretch;
    padding: clamp(42px, 7vw, 84px);
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 12% 10%, rgba(118, 155, 110, 0.16), transparent 34%),
        var(--alefir-dark);
    border-radius: var(--alefir-radius-lg);
    box-shadow: var(--alefir-shadow);
}

.business-unit__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.business-unit__panel h2 {
    max-width: 720px;
    margin: 16px 0 20px;
    color: var(--alefir-white);
    font-size: clamp(2.4rem, 4.1vw, 4.25rem);
    font-weight: 750;
    line-height: 1.06;
    letter-spacing: -0.05em;
}

.business-unit__panel p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.08rem;
}

.business-unit__aside {
    display: grid;
    align-content: center;
    gap: 34px;
    padding-left: clamp(0px, 4vw, 60px);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.business-unit__pillars {
    display: grid;
    gap: 0;
}

.business-unit__pillars span {
    padding: 13px 0;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.business-unit__actions {
    display: grid;
    gap: 12px;
}

.btn-brand-green {
    --bs-btn-color: var(--alefir-dark);
    --bs-btn-bg: var(--alefir-green);
    --bs-btn-border-color: var(--alefir-green);
    --bs-btn-hover-color: var(--alefir-white);
    --bs-btn-hover-bg: var(--alefir-green-dark);
    --bs-btn-hover-border-color: var(--alefir-green-dark);
}

.project-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(400px, 1.05fr);
    min-height: 460px;
    overflow: hidden;
    border: 1px solid var(--alefir-border);
    border-radius: var(--alefir-radius-lg);
    box-shadow: 0 20px 60px rgba(38, 44, 38, 0.07);
}

.project-card__visual {
    position: relative;
    display: grid;
    overflow: hidden;
    color: var(--alefir-dark);
    background:
        linear-gradient(135deg, transparent 49.7%, rgba(38, 44, 38, 0.12) 50%, transparent 50.3%),
        var(--alefir-green);
    place-items: center;
}

.project-card__visual::before {
    position: absolute;
    width: 68%;
    aspect-ratio: 1;
    content: "";
    border: 1px solid rgba(38, 44, 38, 0.27);
    transform: rotate(45deg);
}

.project-card__visual--image::before {
    display: none;
}

.project-card__visual--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card__monogram {
    position: relative;
    z-index: 1;
    font-size: clamp(8rem, 18vw, 15rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.08em;
}

.project-card__line {
    position: absolute;
    right: 35px;
    bottom: 35px;
    width: 90px;
    height: 2px;
    background: var(--alefir-dark);
}

.project-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 7vw, 85px);
}

.project-card__content h2 {
    margin-bottom: 20px;
    color: var(--alefir-dark);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.055em;
}

.project-card__content p {
    color: var(--alefir-muted);
    font-size: 1.08rem;
}

.tag {
    display: inline-flex;
    width: fit-content;
    padding: 7px 11px;
    color: var(--alefir-dark);
    background: var(--alefir-soft-green);
    border: 1px solid rgba(118, 155, 110, 0.3);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tag-light {
    color: var(--alefir-gray);
    background: var(--alefir-white);
    border-color: var(--alefir-border);
}

.tag-dark {
    color: var(--alefir-white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.principle-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.principle-list span {
    padding: 9px 14px;
    color: var(--alefir-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

.section-cta {
    background: var(--alefir-soft);
}

.cta-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto;
    gap: 60px;
    align-items: center;
    padding: clamp(48px, 7vw, 90px);
    color: rgba(255, 255, 255, 0.76);
    background:
        linear-gradient(115deg, rgba(23, 27, 23, 0.98), rgba(38, 44, 38, 0.92)),
        var(--alefir-dark);
    border-radius: var(--alefir-radius-lg);
    isolation: isolate;
    overflow: hidden;
}

.cta-panel::before {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: -4%;
    width: min(42%, 430px);
    aspect-ratio: 1;
    content: "";
    background: url("../img/symbol-alefir-green.svg") center / contain no-repeat;
    opacity: 0.12;
    transform: translateY(-50%);
}

.cta-panel--with-background::before {
    display: none;
}

.cta-panel__background {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    opacity: 0.58;
}

.cta-panel__background--tawata {
    transform: scale(1.5);
    transform-origin: center 100%;
}

.cta-panel--with-background::after {
    position: absolute;
    z-index: -1;
    content: "";
    background: linear-gradient(100deg, rgba(23, 27, 23, 0.95) 18%, rgba(38, 44, 38, 0.64));
    inset: 0;
}

.cta-panel__content,
.cta-panel__actions {
    position: relative;
    z-index: 1;
}

.cta-panel h2 {
    max-width: 800px;
    margin: 16px 0;
    color: var(--alefir-white);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.cta-panel p {
    max-width: 760px;
    font-size: 1.05rem;
}

.cta-panel__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 210px;
}

.page-hero,
.project-hero {
    --internal-hexagon-left: max(-220px, calc((100vw - var(--alefir-container)) / 2 - 270px));
    --internal-hexagon-width: clamp(340px, 35vw, 520px);
    --internal-symbol-right: max(28px, calc((100vw - var(--alefir-container)) / 2 + 12px));
    --internal-symbol-width: clamp(176px, 17vw, 250px);
}

.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    height: 460px;
    padding: 60px 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.76);
    background: var(--alefir-dark);
}

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

.page-hero::after {
    position: absolute;
    top: 50%;
    left: var(--internal-hexagon-left);
    width: var(--internal-hexagon-width);
    aspect-ratio: 746.25 / 579.67;
    content: "";
    background: rgba(118, 155, 110, 0.075);
    pointer-events: none;
    transform: translateY(-50%);
    -webkit-mask: url("../img/hexagono-alefir.svg") center / contain no-repeat;
    mask: url("../img/hexagono-alefir.svg") center / contain no-repeat;
}

.page-hero::before {
    position: absolute;
    top: 50%;
    right: var(--internal-symbol-right);
    width: var(--internal-symbol-width);
    aspect-ratio: 474.75 / 372.94;
    content: "";
    background: url("../img/symbol-alefir-green.svg") center / contain no-repeat;
    opacity: 0.55;
    pointer-events: none;
    transform: translateY(-50%);
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 16px 0 20px;
    color: var(--alefir-white);
    font-size: clamp(2.55rem, 4.35vw, 4.6rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.page-hero p {
    position: relative;
    z-index: 1;
    max-width: 720px;
    font-size: clamp(1.06rem, 1.5vw, 1.28rem);
    line-height: 1.55;
    text-wrap: pretty;
}

.prose {
    color: var(--alefir-gray);
    font-size: 1.08rem;
}

.prose p + p {
    margin-top: 22px;
}

.story-layout {
    min-height: 680px;
}

.story-image {
    position: relative;
    height: 100%;
    min-height: 620px;
    margin: 0;
    overflow: hidden;
    background: var(--alefir-dark);
    border-radius: var(--alefir-radius-lg);
}

.story-image::after {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, transparent 58%, rgba(23, 27, 23, 0.28));
    inset: 0;
    pointer-events: none;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
}

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: clamp(12px, 4vw, 58px);
}

.story-content .section-title {
    margin-bottom: 34px;
}

.timeline-heading {
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
}

.area-intro__heading .section-title {
    margin-bottom: 34px;
}

.area-intro__image {
    position: relative;
    height: 390px;
    margin: 0;
    overflow: hidden;
    background: var(--alefir-soft-green);
    border-radius: var(--alefir-radius-lg);
}

.area-intro__image::after {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, transparent 55%, rgba(23, 27, 23, 0.76));
    inset: 0;
    pointer-events: none;
}

.area-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 78%;
}

.area-intro__image figcaption {
    position: absolute;
    z-index: 1;
    right: 26px;
    bottom: 24px;
    left: 26px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.74rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.area-intro__prose {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-card {
    height: 100%;
    padding: 38px;
    background: var(--alefir-white);
    border: 1px solid var(--alefir-border);
    border-radius: var(--alefir-radius);
}

.value-card > i {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 48px;
    color: var(--alefir-dark);
    background: var(--alefir-soft-green);
    border-radius: 15px;
    place-items: center;
    font-size: 1.3rem;
}

.value-card h3 {
    color: var(--alefir-dark);
    font-size: 1.4rem;
    font-weight: 750;
}

.value-card p {
    margin-bottom: 0;
    color: var(--alefir-muted);
}

.value-card--image {
    padding: 0;
    overflow: hidden;
}

.value-card__media {
    height: 250px;
    margin: 0;
    overflow: hidden;
    background: var(--alefir-soft-green);
}

.value-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.value-card__media--aerial img {
    object-position: center 52%;
}

.value-card__media--earthworks img {
    object-position: center 54%;
}

.value-card__media--landscaping img {
    object-position: center 30%;
}

.value-card--image:hover .value-card__media img {
    transform: scale(1.025);
}

.value-card__content {
    position: relative;
    padding: 34px 34px 38px;
}

.value-card__content > i {
    display: grid;
    width: 54px;
    height: 54px;
    margin-top: -64px;
    margin-bottom: 28px;
    color: var(--alefir-dark);
    background: var(--alefir-soft-green);
    border: 6px solid var(--alefir-white);
    border-radius: 18px;
    place-items: center;
    font-size: 1.3rem;
    box-sizing: content-box;
}

.timeline {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}

.timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 155px;
    width: 1px;
    content: "";
    background: var(--alefir-border);
}

.timeline article {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 70px;
    padding: 38px 0;
}

.timeline article::before {
    position: absolute;
    top: 50px;
    left: 149px;
    width: 13px;
    height: 13px;
    content: "";
    background: var(--alefir-green);
    border: 3px solid var(--alefir-white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--alefir-green);
}

.timeline article > span {
    color: var(--alefir-green-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: right;
    text-transform: uppercase;
}

.timeline h2 {
    color: var(--alefir-dark);
    font-size: 1.65rem;
    font-weight: 750;
}

.timeline p {
    color: var(--alefir-muted);
}

.project-hero {
    position: relative;
    display: flex;
    align-items: center;
    height: 460px;
    padding: 60px 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.76);
    background:
        linear-gradient(135deg, transparent 58%, rgba(118, 155, 110, 0.1) 58.2%),
        var(--alefir-dark);
}

.project-hero::after {
    position: absolute;
    top: 50%;
    left: var(--internal-hexagon-left);
    width: var(--internal-hexagon-width);
    aspect-ratio: 746.25 / 579.67;
    content: "";
    background: rgba(118, 155, 110, 0.075);
    pointer-events: none;
    transform: translateY(-50%);
    -webkit-mask: url("../img/hexagono-alefir.svg") center / contain no-repeat;
    mask: url("../img/hexagono-alefir.svg") center / contain no-repeat;
}

.project-hero::before {
    position: absolute;
    top: 50%;
    right: var(--internal-symbol-right);
    width: var(--internal-symbol-width);
    aspect-ratio: 474.75 / 372.94;
    content: "";
    background: url("../img/symbol-alefir-green.svg") center / contain no-repeat;
    opacity: 0.55;
    pointer-events: none;
    transform: translateY(-50%);
}

.project-hero .container {
    position: relative;
    z-index: 1;
}

.project-hero h1 {
    margin-bottom: 18px;
    color: var(--alefir-white);
    font-size: clamp(4rem, 9vw, 8.5rem);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.07em;
    text-wrap: balance;
}

.project-hero p {
    max-width: 780px;
    font-size: clamp(1.12rem, 1.8vw, 1.45rem);
    line-height: 1.5;
    text-wrap: pretty;
}

.project-status {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--alefir-radius);
}

.project-status span {
    display: block;
    margin-bottom: 8px;
    color: var(--alefir-green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-status strong {
    color: var(--alefir-white);
    font-size: 1.18rem;
}

.page-hero--tawata::before {
    display: none;
}

.page-hero--tawata .container {
    position: relative;
}

.project-page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.page-hero--tawata h1 {
    max-width: 680px;
    font-size: clamp(2.65rem, 4.15vw, 4.45rem);
}

.project-page-hero__status {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 15px;
    margin-top: 24px;
    color: var(--alefir-white);
    background: rgba(118, 155, 110, 0.18);
    border: 1px solid rgba(118, 155, 110, 0.38);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.project-page-hero__brand {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    width: clamp(300px, 31vw, 440px);
    height: auto;
    pointer-events: none;
    transform: translateY(-50%);
}

.project-overview {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(52px, 8vw, 110px);
    align-items: center;
}

.project-overview__content .section-title {
    margin-bottom: 30px;
}

.project-overview__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.project-overview__tags span {
    padding: 9px 13px;
    color: var(--alefir-dark);
    background: var(--alefir-soft-green);
    border: 1px solid rgba(118, 155, 110, 0.24);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.project-overview__image {
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    background: var(--alefir-dark);
    border-radius: var(--alefir-radius-lg);
    box-shadow: var(--alefir-shadow);
}

.project-overview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.project-milestone {
    position: relative;
    min-height: 300px;
    padding: 34px 30px;
    overflow: hidden;
    background: var(--alefir-white);
    border: 1px solid var(--alefir-border);
    border-radius: var(--alefir-radius);
}

.project-milestone::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    content: "";
    background: var(--alefir-green);
}

.project-milestone__status {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 11px;
    color: var(--alefir-dark);
    background: var(--alefir-soft-green);
    border: 1px solid rgba(118, 155, 110, 0.26);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.project-milestone h3 {
    margin: 38px 0 16px;
    color: var(--alefir-dark);
    font-size: 1.32rem;
    font-weight: 750;
    line-height: 1.18;
}

.project-milestone p {
    margin: 0;
    color: var(--alefir-muted);
}

.project-build-choice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    max-width: 1040px;
    padding-top: 34px;
    margin-top: 42px;
    border-top: 1px solid var(--alefir-border);
}

.project-build-choice i {
    display: grid;
    width: 52px;
    aspect-ratio: 1;
    color: var(--alefir-dark);
    background: var(--alefir-soft-green);
    border-radius: 50%;
    place-items: center;
}

.project-build-choice p {
    margin: 0;
    color: var(--alefir-gray);
    font-size: 1.03rem;
}

.project-infrastructure__image {
    position: relative;
    aspect-ratio: 16 / 6;
    margin: 0 0 30px;
    overflow: hidden;
    background: var(--alefir-dark);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--alefir-radius-lg);
}

.project-infrastructure__image::after {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, transparent 56%, rgba(23, 27, 23, 0.34));
    inset: 0;
    pointer-events: none;
}

.project-infrastructure__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.project-infrastructure .feature-item {
    color: var(--alefir-dark);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 255, 255, 0.16);
}

.project-location__layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: stretch;
}

.project-location__content > p {
    max-width: 560px;
    margin: 28px 0 0;
    color: var(--alefir-muted);
    font-size: 1.04rem;
}

.project-location address {
    display: grid;
    gap: 6px;
    margin: 32px 0;
    color: var(--alefir-dark);
    font-size: 1.06rem;
    font-style: normal;
    font-weight: 700;
}

.project-location__map {
    min-height: 0;
    overflow: hidden;
    background: var(--alefir-soft-green);
    border: 1px solid var(--alefir-border);
    border-radius: var(--alefir-radius-lg);
    box-shadow: var(--alefir-shadow);
}

.project-location__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: 0;
}

.project-film__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 52px;
}

.project-film__heading > p {
    margin: 0;
    color: var(--alefir-muted);
    font-size: 1.05rem;
}

.project-film {
    position: relative;
    padding: 10px;
    background: var(--alefir-dark);
    border-radius: var(--alefir-radius-lg);
    box-shadow: var(--alefir-shadow);
}

.project-film__insignia {
    position: absolute;
    z-index: -1;
    top: -135px;
    right: -48px;
    width: 260px;
    opacity: 0.09;
    pointer-events: none;
}

.project-film video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: calc(var(--alefir-radius-lg) - 8px);
}

.project-hotsite {
    color: rgba(255, 255, 255, 0.72);
    background:
        radial-gradient(circle at 8% 10%, rgba(226, 118, 85, 0.12), transparent 30%),
        var(--alefir-dark);
}

.project-hotsite__layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(54px, 9vw, 120px);
    align-items: center;
}

.project-hotsite__brand {
    width: min(100%, 430px);
    height: auto;
}

.project-hotsite__content h2 {
    max-width: 700px;
    margin: 16px 0 20px;
    color: var(--alefir-white);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.project-hotsite__content p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.04rem;
}

.project-hotsite__link {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    margin-top: 20px;
    color: var(--alefir-white);
    font-weight: 800;
    text-decoration: none;
}

.project-hotsite__link i {
    color: #e27655;
    transition: transform var(--alefir-transition);
}

.project-hotsite__link:hover,
.project-hotsite__link:focus-visible {
    color: var(--alefir-green);
}

.project-hotsite__link:hover i,
.project-hotsite__link:focus-visible i {
    transform: translate(3px, -3px);
}

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

.feature-item {
    display: flex;
    gap: 14px;
    align-items: center;
    min-height: 82px;
    padding: 18px 20px;
    background: var(--alefir-white);
    border: 1px solid var(--alefir-border);
    border-radius: 14px;
    font-weight: 650;
}

.feature-item i {
    display: grid;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    color: var(--alefir-dark);
    background: var(--alefir-soft-green);
    border-radius: 50%;
    place-items: center;
    font-size: 0.72rem;
}

.project-link-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 60px;
    align-items: center;
    padding: clamp(40px, 6vw, 72px);
    background: var(--alefir-soft-green);
    border-radius: var(--alefir-radius-lg);
}

.project-link-panel h2 {
    margin: 14px 0;
    color: var(--alefir-dark);
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.project-link-panel p {
    max-width: 760px;
    color: var(--alefir-gray);
}

.areas-overview__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 590px;
}

.areas-overview__content .section-title {
    margin: 16px 0 30px;
}

.areas-overview__image {
    position: relative;
    height: 100%;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
    background: var(--alefir-dark);
    border-radius: var(--alefir-radius-lg);
}

.areas-overview__image::after {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(23, 27, 23, 0.02), rgba(23, 27, 23, 0.18));
    inset: 0;
    pointer-events: none;
}

.areas-overview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.areas-case {
    background: var(--alefir-white);
}

.areas-case__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    overflow: hidden;
    background: var(--alefir-soft);
    border: 1px solid var(--alefir-border);
    border-radius: var(--alefir-radius-lg);
    box-shadow: var(--alefir-shadow);
}

.areas-case__image {
    min-height: 540px;
    margin: 0;
    overflow: hidden;
    background: var(--alefir-dark);
}

.areas-case__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.areas-case__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 6vw, 76px);
}

.areas-case__content h2 {
    margin: 16px 0 24px;
    color: var(--alefir-dark);
    font-size: clamp(2.15rem, 3.6vw, 3.6rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.areas-case__content p {
    color: var(--alefir-gray);
    font-size: 1.04rem;
}

.areas-case__areas {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 30px 0 34px;
}

.areas-case__areas span {
    padding: 8px 12px;
    color: var(--alefir-dark);
    background: var(--alefir-soft-green);
    border: 1px solid rgba(118, 155, 110, 0.24);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 750;
}

.draft-notice {
    display: flex;
    gap: 28px;
    align-items: center;
    max-width: 900px;
    padding: 42px;
    margin: 0 auto;
    background: #fff8dc;
    border: 1px solid #eadc9d;
    border-radius: var(--alefir-radius);
}

.draft-notice > i {
    color: #7f6512;
    font-size: 2.2rem;
}

.draft-notice h2 {
    color: var(--alefir-dark);
    font-size: 1.55rem;
    font-weight: 750;
}

.connection-section--status {
    background: var(--alefir-white);
}

.tvo-highlight {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(44px, 8vw, 110px);
    align-items: center;
    padding: clamp(20px, 3vw, 40px) 0;
    border-top: 1px solid var(--alefir-border);
    border-bottom: 1px solid var(--alefir-border);
}

.tvo-highlight__media {
    position: relative;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    background: var(--alefir-dark);
    border-radius: var(--alefir-radius-lg);
}

.tvo-highlight__media::after {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, transparent 55%, rgba(23, 27, 23, 0.38));
    inset: 0;
    pointer-events: none;
}

.tvo-highlight__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.tvo-highlight__badge {
    position: absolute;
    z-index: 1;
    bottom: 24px;
    left: 24px;
    display: inline-flex;
    gap: 9px;
    align-items: center;
    padding: 10px 15px;
    color: var(--alefir-dark);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tvo-highlight__content h2 {
    max-width: 820px;
    margin: 16px 0 24px;
    color: var(--alefir-dark);
    font-size: clamp(2.15rem, 4vw, 4rem);
    font-weight: 750;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.tvo-highlight__content p {
    max-width: 770px;
    margin: 0 0 16px;
    color: var(--alefir-gray);
    font-size: 1.02rem;
}

.tvo-highlight__content .text-link {
    margin-top: 18px;
}

.constructor-social {
    color: rgba(255, 255, 255, 0.72);
    background:
        radial-gradient(circle at 12% 0%, rgba(118, 155, 110, 0.18), transparent 34%),
        var(--alefir-dark);
}

.constructor-social__layout {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.constructor-social__media {
    width: 190px;
    aspect-ratio: 1;
    margin: 8px;
    overflow: hidden;
    background: var(--alefir-dark);
    border: 4px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    box-shadow:
        0 0 0 8px rgba(118, 155, 110, 0.22),
        0 22px 52px rgba(0, 0, 0, 0.22);
}

.constructor-social__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.constructor-social__content .eyebrow {
    gap: 10px;
}

.constructor-social__content h2 {
    max-width: 700px;
    margin: 14px 0 12px;
    color: var(--alefir-white);
    font-size: clamp(1.85rem, 3vw, 3rem);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.constructor-social__content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.constructor-social .btn {
    white-space: nowrap;
}

.constructor-social .btn-outline-light:hover,
.constructor-social .btn-outline-light:focus-visible {
    color: var(--alefir-dark);
    background: var(--alefir-white);
}

.construction-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.construction-benefits article {
    padding: 42px 38px;
}

.construction-benefits article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.construction-benefits i {
    margin-bottom: 34px;
    color: var(--alefir-green);
    font-size: 1.7rem;
}

.construction-benefits h3 {
    margin-bottom: 13px;
    color: var(--alefir-white);
    font-size: 1.45rem;
    font-weight: 750;
}

.construction-benefits p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.planned-section .row {
    min-height: 300px;
    align-items: center !important;
}

.planned-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-panel {
    height: 100%;
    padding: clamp(38px, 5vw, 62px);
    color: rgba(255, 255, 255, 0.76);
    background: var(--alefir-dark);
    border-radius: var(--alefir-radius-lg);
}

.contact-panel h2 {
    margin: 16px 0 38px;
    color: var(--alefir-white);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.contact-list {
    display: grid;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
}

.contact-list > li > i {
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--alefir-dark);
    background: var(--alefir-green);
    border-radius: 12px;
    place-items: center;
}

.contact-list span {
    display: block;
    color: var(--alefir-green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-list a {
    color: var(--alefir-white);
    text-decoration: none;
}

.contact-list p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-main-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(42px, 6vw, 76px);
    align-items: stretch;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    padding-top: 0;
}

.contact-direct .section-title {
    margin: 20px 0 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.04;
}

.contact-direct__lead {
    max-width: 440px;
    margin: 0 0 32px;
    color: var(--alefir-gray);
    line-height: 1.7;
}

.contact-channels {
    display: grid;
    flex: 1;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.contact-channel {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 126px;
    padding: 25px 26px;
    background: var(--alefir-white);
    border: 1px solid var(--alefir-border);
    border-radius: var(--alefir-radius);
    box-shadow: 0 14px 38px rgba(38, 44, 38, 0.05);
    transition:
        border-color var(--alefir-transition),
        transform var(--alefir-transition),
        box-shadow var(--alefir-transition);
}

.contact-channel:hover {
    border-color: rgba(118, 155, 110, 0.45);
    box-shadow: 0 22px 54px rgba(38, 44, 38, 0.1);
    transform: translateY(-2px);
}

.contact-channel > i {
    display: grid;
    width: 54px;
    aspect-ratio: 1;
    color: var(--alefir-dark);
    background: var(--alefir-soft-green);
    border: 1px solid rgba(118, 155, 110, 0.22);
    border-radius: 16px;
    place-items: center;
    font-size: 1rem;
}

.contact-channel span {
    display: block;
    margin-bottom: 7px;
    color: var(--alefir-green);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-channel a,
.contact-channel p {
    margin: 0;
    color: var(--alefir-dark);
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.55;
    text-decoration: none;
}

.contact-channel a:hover,
.contact-channel a:focus-visible {
    color: var(--alefir-green);
}

.form-card {
    width: 100%;
    height: 100%;
    padding: clamp(38px, 4.5vw, 58px);
    background: var(--alefir-soft);
    border: 1px solid var(--alefir-border);
    border-radius: var(--alefir-radius-lg);
    box-shadow: 0 18px 50px rgba(38, 44, 38, 0.05);
}

.form-card h2 {
    margin: 14px 0 30px;
    color: var(--alefir-dark);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.form-security-note {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    margin: -8px 0 28px;
    color: var(--alefir-gray);
    background: rgba(118, 155, 110, 0.1);
    border: 1px solid rgba(118, 155, 110, 0.22);
    border-radius: 10px;
}

.form-security-note i {
    display: grid;
    width: 34px;
    aspect-ratio: 1;
    color: var(--alefir-dark);
    background: var(--alefir-soft-green);
    border-radius: 9px;
    place-items: center;
}

.form-security-note p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
}

.contact-location-section .section-heading {
    margin-bottom: 38px;
}

.contact-location__action {
    align-self: end;
    justify-self: end;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.contact-location__map {
    width: 100%;
    height: clamp(390px, 38vw, 500px);
    overflow: hidden;
    background: var(--alefir-dark);
    border: 1px solid var(--alefir-border);
    border-radius: var(--alefir-radius-lg);
    box-shadow: 0 22px 58px rgba(38, 44, 38, 0.09);
}

.contact-location__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.form-label {
    color: var(--alefir-dark);
    font-size: 0.82rem;
    font-weight: 750;
}

.form-control {
    min-height: 52px;
    padding: 12px 15px;
    color: var(--alefir-text);
    background: var(--alefir-white);
    border-color: var(--alefir-border);
    border-radius: 9px;
}

textarea.form-control {
    min-height: 150px;
}

.form-control:focus,
.form-check-input:focus {
    border-color: var(--alefir-green);
    box-shadow: 0 0 0 0.22rem rgba(118, 155, 110, 0.2);
}

.form-check-label {
    color: var(--alefir-gray);
    font-size: 0.86rem;
}

.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
}

.configuration-note {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 15px;
    margin-bottom: 24px;
    color: #6f570d;
    background: #fff8dc;
    border: 1px solid #eadc9d;
    border-radius: 10px;
    font-size: 0.86rem;
}

.legal-content {
    color: var(--alefir-gray);
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(350px, 0.43fr) minmax(0, 1fr);
    gap: clamp(44px, 5vw, 72px);
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 124px;
    display: grid;
    gap: 20px;
}

.legal-card {
    padding: clamp(30px, 3vw, 42px);
    background: var(--alefir-soft);
    border: 1px solid var(--alefir-border);
    border-radius: var(--alefir-radius-lg);
    box-shadow: 0 18px 48px rgba(38, 44, 38, 0.06);
}

.legal-card h2 {
    margin: 18px 0 28px;
    color: var(--alefir-dark);
    font-size: clamp(1.75rem, 2.4vw, 2.35rem);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.legal-company {
    display: grid;
    gap: 20px;
    margin: 0;
}

.legal-company div {
    padding-top: 18px;
    border-top: 1px solid var(--alefir-border);
}

.legal-company dt {
    margin-bottom: 6px;
    color: var(--alefir-green);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-company dd {
    margin: 0;
    color: var(--alefir-dark);
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.65;
}

.legal-company a {
    color: inherit;
    overflow-wrap: anywhere;
}

.legal-version {
    display: grid;
    gap: 4px;
    padding: 22px 26px;
    background: var(--alefir-dark);
    border-radius: var(--alefir-radius);
}

.legal-version span {
    color: var(--alefir-green);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-version strong {
    color: var(--alefir-white);
    font-size: 0.9rem;
}

.legal-lead {
    max-width: 900px;
    margin: 0 0 clamp(46px, 6vw, 72px);
    color: var(--alefir-dark);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 550;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.legal-section {
    padding: 0 0 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--alefir-border);
}

.legal-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.legal-section h2 {
    margin: 0 0 18px;
    color: var(--alefir-dark);
    font-size: clamp(1.55rem, 2.3vw, 2rem);
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.legal-section p,
.legal-section li {
    font-size: 1rem;
    line-height: 1.8;
}

.legal-section p {
    margin-bottom: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    display: grid;
    gap: 10px;
    padding-left: 22px;
    margin: 18px 0;
}

.legal-section a {
    color: var(--alefir-dark);
    font-weight: 700;
}

.legal-cookie-button {
    margin-top: 8px;
}

.error-page {
    display: flex;
    min-height: 65vh;
    padding: 100px 0;
    align-items: center;
    background: var(--alefir-soft);
}

.error-page img {
    display: block;
    width: 120px;
    margin: 0 auto 30px;
}

.error-page h1 {
    max-width: 800px;
    margin: 16px auto;
    color: var(--alefir-dark);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
}

.error-page p {
    max-width: 620px;
    margin: 0 auto 30px;
    color: var(--alefir-muted);
}

.site-footer {
    color: rgba(255, 255, 255, 0.7);
    background: var(--alefir-dark-deep);
}

.footer-main {
    padding: 80px 0 66px;
}

.footer-logo {
    width: 240px;
    max-height: 58px;
}

.footer-slogan {
    max-width: 430px;
    margin: 26px 0;
    font-size: 1.02rem;
}

.site-footer h2 {
    margin-bottom: 19px;
    color: var(--alefir-white);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--alefir-green);
}

.footer-contact li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
}

.footer-contact i {
    width: 18px;
    margin-top: 6px;
    color: var(--alefir-green);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--alefir-dark);
    background: var(--alefir-green);
    border-radius: 50%;
    place-items: center;
}

.social-links a:hover {
    color: var(--alefir-white);
    background: var(--alefir-green-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom .container {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.78rem;
}

.footer-bottom img {
    display: block;
    height: 24px;
    width: auto;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1035;
    display: grid;
    width: 58px;
    height: 58px;
    color: var(--alefir-white);
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    place-items: center;
    font-size: 1.7rem;
    text-decoration: none;
    transition:
        background var(--alefir-transition),
        transform var(--alefir-transition);
}

.floating-whatsapp:hover {
    color: var(--alefir-white);
    background: #1ebc59;
    transform: translateY(-4px);
}

.cookie-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    display: none;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    width: min(620px, calc(100% - 48px));
    padding: 20px;
    background: var(--alefir-white);
    border: 1px solid var(--alefir-border);
    border-radius: 14px;
    box-shadow: var(--alefir-shadow);
}

.cookie-banner.show {
    display: grid;
}

.cookie-banner p {
    margin: 0;
    color: var(--alefir-gray);
    font-size: 0.82rem;
    line-height: 1.55;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-banner__actions .btn {
    white-space: nowrap;
}

.cookie-banner.show ~ .floating-whatsapp,
body:has(.cookie-banner.show) .floating-whatsapp {
    bottom: 130px;
}

@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .contact-channel a,
    .contact-channel p {
        white-space: nowrap;
    }
}

@media (min-width: 1200px) {
    .hero-home h1.hero-home__title {
        font-size: 4.5rem;
    }
}

@media (max-width: 1199.98px) {
    .navbar-brand img {
        width: 190px;
    }

    .navbar .nav-link {
        padding-right: 9px !important;
        padding-left: 9px !important;
        font-size: 0.82rem;
    }

    .header-whatsapp img {
        width: 132px;
    }

    .page-hero h1 {
        max-width: 700px;
    }

    .hero-symbol {
        min-height: 100%;
    }

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

}

@media (max-width: 991.98px) {
    .site-header .navbar {
        min-height: 78px;
    }

    .navbar-collapse {
        padding: 20px 0 12px;
        border-top: 1px solid var(--alefir-border);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar .nav-link {
        padding: 11px 4px !important;
    }

    .navbar .nav-link::before {
        right: auto;
        bottom: 5px;
        left: 4px;
        width: 42px;
    }

    .navbar .dropdown-toggle {
        padding-right: 30px !important;
    }

    .header-whatsapp {
        margin-top: 16px;
    }

    .hero-home {
        padding-top: 85px;
    }

    .page-hero h1 {
        max-width: 620px;
    }

    .page-hero,
    .project-hero {
        height: 430px;
        padding: 56px 0;
    }

    .page-hero::after,
    .project-hero::after {
        right: auto;
        left: -215px;
        width: 340px;
        opacity: 0.72;
    }

    .page-hero::before,
    .project-hero::before {
        right: -58px;
        width: 178px;
        opacity: 0.22;
    }

    .hero-symbol {
        min-height: 390px;
    }

    .story-layout {
        min-height: auto;
    }

    .story-image {
        min-height: 720px;
    }

    .area-intro__image {
        height: 520px;
    }

    .story-content {
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .hero-symbol__brand {
        width: 200px;
    }

    .section-heading,
    .cta-panel,
    .project-link-panel,
    .areas-case__panel,
    .business-unit__panel,
    .tvo-highlight,
    .constructor-social__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .legal-sidebar {
        position: static;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: stretch;
    }

    .legal-version {
        min-width: 220px;
        align-content: center;
    }

    .constructor-social .btn {
        width: fit-content;
    }

    .constructor-social__media {
        width: 160px;
    }

    .areas-overview__content {
        max-width: 760px;
    }

    .areas-overview__image {
        min-height: 520px;
    }

    .areas-case__panel {
        gap: 0;
    }

    .areas-case__image {
        min-height: 420px;
    }

    .business-unit__aside {
        padding-top: 30px;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }

    .project-card {
        grid-template-columns: 1fr;
    }

    .project-card__visual {
        min-height: 360px;
    }

    .cta-panel__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .contact-main-layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .contact-direct {
        padding-top: 0;
    }

    .contact-channels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .contact-channel--address {
        grid-column: 1 / -1;
    }

    .project-page-hero__brand {
        right: -30px;
        width: 340px;
        opacity: 0.16;
    }

    .project-overview,
    .project-location__layout,
    .project-film__heading,
    .project-hotsite__layout {
        grid-template-columns: 1fr;
    }

    .project-overview {
        gap: 46px;
    }

    .project-location__layout {
        gap: 42px;
    }

    .project-film__heading {
        gap: 22px;
    }

    .project-hotsite__layout {
        gap: 46px;
    }

    .project-hotsite__brand {
        width: min(100%, 330px);
    }
}

@media (max-width: 767.98px) {
    .container {
        width: min(100% - 30px, var(--alefir-container));
    }

    .hero-home h1,
    .page-hero h1 {
        letter-spacing: -0.045em;
    }

    .page-hero,
    .project-hero {
        height: 440px;
        padding: 48px 0;
    }

    .hero-symbol {
        min-height: 330px;
        padding: 38px;
    }

    .hero-symbol__brand {
        top: 38px;
        right: 36px;
        width: 160px;
    }

    .hero-symbol__words {
        right: 36px;
        bottom: 34px;
        left: 36px;
    }

    .project-card__content {
        padding: 38px 28px;
    }

    .story-image {
        min-height: 540px;
    }

    .area-intro__image {
        height: 430px;
    }

    .areas-overview__image {
        min-height: 430px;
    }

    .areas-case__image {
        min-height: 340px;
    }

    .timeline::before {
        left: 6px;
    }

    .timeline article {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 30px 0 30px 34px;
    }

    .timeline article::before {
        top: 39px;
        left: 0;
    }

    .timeline article > span {
        text-align: left;
    }

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

    .contact-channel {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 16px;
        min-height: 138px;
        padding: 26px 24px;
    }

    .contact-channel > i {
        width: 50px;
        border-radius: 15px;
    }

    .contact-channels {
        grid-template-columns: 1fr;
    }

    .contact-channel--address {
        grid-column: auto;
    }

    .contact-location__map {
        height: 390px;
    }

    .contact-location__action {
        justify-self: start;
    }

    .page-hero--tawata h1 {
        max-width: 590px;
    }

    .project-page-hero__brand {
        right: -40px;
        width: 290px;
        opacity: 0.12;
    }

    .project-milestones {
        grid-template-columns: 1fr;
    }

    .project-milestone {
        min-height: auto;
    }

    .project-build-choice {
        align-items: start;
    }

    .project-infrastructure__image {
        aspect-ratio: 4 / 3;
    }

    .project-location__map,
    .project-location__map iframe {
        min-height: 380px;
        height: 380px;
    }

    .project-film__insignia {
        top: -85px;
        right: -20px;
        width: 190px;
    }

    .construction-benefits {
        grid-template-columns: 1fr;
    }

    .construction-benefits article + article {
        border-top: 1px solid rgba(255, 255, 255, 0.16);
        border-left: 0;
    }

    .draft-notice {
        align-items: flex-start;
    }

    .footer-bottom .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .cookie-banner {
        right: 15px;
        bottom: 15px;
        grid-template-columns: 1fr;
        width: calc(100% - 30px);
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .legal-sidebar {
        grid-template-columns: 1fr;
    }

    .legal-version {
        min-width: 0;
    }

    body:has(.cookie-banner.show) .floating-whatsapp {
        bottom: 220px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        width: 165px;
    }

    .cookie-banner__actions {
        grid-template-columns: 1fr;
    }

    .page-hero,
    .project-hero {
        height: 480px;
        padding: 42px 0;
    }

    .hero-actions,
    .cta-panel__actions {
        display: grid;
        width: 100%;
    }

    .hero-actions .btn,
    .cta-panel__actions .btn {
        width: 100%;
    }

    .area-card {
        min-height: 310px;
        padding: 30px;
    }

    .area-card > i {
        margin-bottom: 56px;
    }

    .project-card__visual {
        min-height: 280px;
    }

    .area-intro__image {
        height: 360px;
    }

    .value-card__media {
        height: 225px;
    }

    .project-link-panel {
        padding: 34px 25px;
    }

    .project-link-panel .btn {
        width: 100%;
    }

    .project-page-hero__status {
        padding: 9px 12px;
        font-size: 0.68rem;
    }

    .project-overview__tags {
        gap: 8px;
    }

    .project-film {
        padding: 6px;
    }

    .constructor-social .btn {
        width: 100%;
    }

    .constructor-social__media {
        width: 138px;
    }

    .areas-overview__image {
        min-height: 340px;
    }

    .areas-case__image {
        min-height: 280px;
    }

    .areas-case__content {
        padding: 36px 26px 40px;
    }

    .draft-notice {
        flex-direction: column;
        padding: 30px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
