:root {
    --ink: #251f24;
    --muted: #6f6870;
    --soft: #f5f3ef;
    --paper: #ffffff;
    --line: rgba(37, 31, 36, 0.12);
    --gold: #f1be10;
    --green: #78b82a;
    --plum: #71465d;
    --deep: #171416;
    --shadow: 0 24px 70px rgba(22, 18, 19, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Jost", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    letter-spacing: 0;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

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

.site-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 40px rgba(37, 31, 36, 0.08);
}

.top-strip {
    background: rgba(23, 20, 22, 0.86);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

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

.top-strip__inner > div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-strip i {
    color: var(--gold);
    margin-right: 6px;
}

.site-nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 116px;
    padding: 8px 0;
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 600;
}

.nav-menu > a,
.nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 14px;
    color: var(--ink);
}

.site-header:not(.is-scrolled) .nav-menu > a,
.site-header:not(.is-scrolled) .nav-item > a {
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.nav-menu i.fa-chevron-down {
    font-size: 10px;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 230px;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    transition-delay: 0.12s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
}

.dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--ink);
    font-size: 14px;
}

.dropdown a:hover {
    background: var(--soft);
}

.nav-cta,
.primary-btn,
.ghost-btn {
    border-radius: var(--radius);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-cta {
    background: var(--gold);
    color: var(--ink) !important;
    margin-left: 8px;
    box-shadow: 0 12px 30px rgba(241, 190, 16, 0.28);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: var(--radius);
    background: var(--ink);
    color: #fff;
    font-size: 20px;
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: #fff;
    background: var(--deep);
}

.hero-carousel,
.hero-carousel .swiper-wrapper,
.hero-slide {
    min-height: 100svh;
}

.hero-slide {
    position: relative;
    display: grid;
    align-items: end;
    overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-media video,
.hero-media picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img,
.hero-media video {
    object-fit: cover;
    transform: scale(1.03);
    animation: heroDrift 11s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #000;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 200px 0 164px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--gold);
}

.hero h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 88px);
    line-height: 1;
    font-weight: 600;
}

.hero p {
    width: min(640px, 100%);
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(19px, 2.4vw, 27px);
    line-height: 1.38;
}

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

.primary-btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 800;
}

.primary-btn {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 18px 42px rgba(241, 190, 16, 0.28);
}

.primary-btn.dark {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 18px 42px rgba(37, 31, 36, 0.22);
}

.ghost-btn {
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.primary-btn:hover,
.ghost-btn:hover,
.nav-cta:hover {
    transform: translateY(-2px);
}

.hero-stats {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    border-radius: var(--radius);
}

.hero-navigation {
    position: absolute;
    z-index: 5;
    display: none;
    gap: 10px;
}

.hero-navigation button {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 17px;
    backdrop-filter: blur(12px);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-navigation button:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
}

.hero-pagination {
    position: absolute;
    z-index: 5;
    left: auto !important;
    right: max(24px, calc((100vw - 1200px) / 2)) !important;
    top: 50% !important;
    bottom: auto !important;
    width: 12px !important;
    display: grid;
    gap: 10px;
    transform: translateY(-50%);
}

.hero-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 !important;
    background: #fff;
    opacity: 0.48;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 9px;
    height: 28px;
    border-radius: 999px;
    background: var(--gold);
    opacity: 1;
}

.hero-carousel.is-single-slide .hero-navigation,
.hero-carousel.is-single-slide .hero-pagination {
    display: none;
}

.hero-stats div {
    padding: 20px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats div:last-child {
    border-right: 0;
}

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

.hero-stats strong {
    font-size: 26px;
    color: var(--gold);
}

.hero-stats span {
    color: rgba(255, 255, 255, 0.78);
}

.section {
    padding: 108px 0;
}

.section-heading {
    width: min(720px, 100%);
    margin-bottom: 38px;
}

.section-heading.compact {
    text-align: center;
    margin-inline: auto;
}

.section h2,
.subpage-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(26px, 3.5vw, 42px);
    line-height: 1.08;
    font-weight: 600;
}

.section-heading p,
.about-copy p,
.split-section p,
.faq-intro p,
.page-content {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.product-section {
    background: #fff;
}

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

.product-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 58px rgba(37, 31, 36, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.product-card__image {
    aspect-ratio: 1.35;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.06);
}

.product-card__body {
    padding: 28px;
}

.product-card__body > i {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(120, 184, 42, 0.12);
    color: var(--green);
    font-size: 22px;
}

.product-card h3,
.feature-card h3,
.reference-card h3 {
    margin: 18px 0 10px;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 600;
}

.product-card__subtitle {
    display: block;
    margin: -2px 0 10px;
    color: var(--plum);
    font-size: 14px;
    font-weight: 600;
}

.product-card p,
.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.product-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--plum);
    font-weight: 800;
}

.about-layout,
.faq-layout,
.split-layout,
.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 64px;
    align-items: center;
}

.about-copy h2 {
    margin: 0 0 24px;
    font-size: clamp(26px, 3.3vw, 40px);
    line-height: 1.08;
    font-weight: 600;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--plum);
    font-weight: 800;
}

.about-visual,
.page-visual {
    position: relative;
}

.about-visual img,
.page-visual img {
    width: 100%;
    aspect-ratio: 0.95;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(260px, calc(100% - 48px));
    padding: 20px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(37, 31, 36, 0.18);
}

.about-badge strong,
.about-badge span {
    display: block;
}

.about-badge strong {
    color: var(--plum);
    font-size: 28px;
    line-height: 1;
}

.about-badge span {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.35;
}

.why-section {
    background: var(--deep);
    color: #fff;
}

.why-section h2 {
    color: #fff;
}

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

.feature-card {
    min-height: 310px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.feature-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-size: 26px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.72);
}

.split-section {
    background: linear-gradient(90deg, var(--gold), #f7d65b);
}

.split-layout {
    grid-template-columns: minmax(0, 1fr) auto;
}

.split-section h2 {
    width: min(680px, 100%);
}

.split-section p {
    color: rgba(37, 31, 36, 0.72);
    width: min(620px, 100%);
}

.faq-section {
    background: var(--paper);
}

.faq-layout {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
}

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

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 36px rgba(37, 31, 36, 0.05);
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    padding: 22px 24px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-weight: 800;
    font-size: 18px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    color: var(--green);
    font-size: 24px;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.34s ease;
}

.faq-list details.is-open .faq-answer {
    max-height: 260px;
}

.faq-list p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.65;
}

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

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

.reference-carousel {
    overflow: hidden;
    padding-bottom: 66px;
}

.reference-carousel .swiper-wrapper {
    align-items: stretch;
}

.reference-carousel .swiper-slide {
    height: auto;
}

.reference-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.reference-controls button {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.reference-controls button:hover {
    transform: translateY(-2px);
    background: var(--gold);
}

.reference-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--deep);
}

.reference-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: transform 0.4s ease;
}

.reference-card:hover img {
    transform: scale(1.05);
}

.reference-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(23, 20, 22, 0.82), rgba(23, 20, 22, 0.04));
}

.reference-card div {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    color: #fff;
}

.reference-card h3 {
    margin: 0 0 4px;
}

.reference-card span {
    color: rgba(255, 255, 255, 0.76);
}

.instagram-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.instagram-head h2 {
    margin: 0;
}

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

.instagram-grid a {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--soft);
}

.instagram-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.instagram-grid a:hover img {
    transform: scale(1.08);
    filter: saturate(1.1);
}

.site-footer {
    padding: 70px 0 24px;
    background: var(--deep);
    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 0.6fr));
    gap: 52px;
}

.footer-brand img {
    width: 116px;
    margin-bottom: 18px;
    padding: 8px;
    border-radius: var(--radius);
    background: #fff;
}

.footer-brand p {
    width: min(420px, 100%);
    line-height: 1.72;
}

.site-footer h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 18px;
}

.site-footer a,
.site-footer p {
    display: block;
    margin: 0 0 10px;
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-row a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 52px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.subpage-hero {
    position: relative;
    overflow: hidden;
    padding: 190px 0 90px;
    background:
        linear-gradient(90deg, rgba(23, 20, 22, 0.9), rgba(23, 20, 22, 0.54)),
        url("../img/home/construction-scaffold.jpg") center / cover;
    color: #fff;
}

.subpage-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}

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

.subpage-hero h1 {
    color: #fff;
}

.page-layout {
    align-items: start;
}

.page-content .lead {
    color: var(--ink);
    font-size: 22px;
    line-height: 1.55;
}

.corporate-section {
    padding: 96px 0 118px;
    background: #fff;
}

.corporate-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.08fr);
    gap: clamp(48px, 7vw, 94px);
    align-items: start;
}

.corporate-copy {
    max-width: 520px;
    padding-top: 4px;
}

.corporate-lead {
    margin: 0 0 8px;
    color: #131018;
    font-size: clamp(22px, 2.1vw, 30px);
    line-height: 1.5;
    font-weight: 500;
}

.corporate-body {
    color: #625a64;
    font-size: 18px;
    line-height: 1.85;
}

.corporate-body p {
    margin: 0;
}

.corporate-body p + p {
    margin-top: 12px;
}

.corporate-visual {
    position: relative;
}

.corporate-visual::before {
    content: "";
    position: absolute;
    inset: 34px -24px -24px 46px;
    border-radius: var(--radius);
    background: rgba(241, 190, 16, 0.12);
    z-index: 0;
}

.corporate-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 520px;
    max-height: 660px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(37, 31, 36, 0.13);
}

.max-copy {
    width: min(780px, 100%);
    margin: 0 0 34px;
}

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

.document-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    min-height: 150px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 16px 44px rgba(37, 31, 36, 0.07);
}

.document-card > i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: var(--radius);
    background: rgba(241, 190, 16, 0.16);
    color: var(--plum);
    font-size: 24px;
}

.document-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 600;
}

.document-card span {
    color: var(--plum);
    font-weight: 600;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: 54px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    margin: 0 0 26px;
    font-size: clamp(26px, 3.3vw, 40px);
    line-height: 1.1;
    font-weight: 600;
}

.contact-info p {
    display: flex;
    gap: 12px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
}

.contact-info i {
    color: var(--green);
    margin-top: 5px;
}

.contact-form {
    display: grid;
    gap: 12px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    min-height: 100%;
}

.contact-map {
    width: 100%;
    min-height: 320px;
    margin-top: 28px;
    flex: 1 1 320px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    box-shadow: 0 16px 44px rgba(37, 31, 36, 0.07);
}

.leaflet-container {
    font-family: "Jost", Arial, sans-serif;
}

.contact-message-field {
    min-height: 180px;
}

.contact-message-field textarea {
    height: 100%;
}

.contact-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.contact-socials {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.map-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.map-link-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.map-link-row a:hover {
    transform: translateY(-2px);
    border-color: var(--green);
}

.map-link-row a i {
    margin-top: 0;
}

.contact-socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--plum);
    background: #fff;
    transition: transform 0.2s ease, background 0.2s ease;
}

.contact-socials a:hover {
    transform: translateY(-2px);
    background: var(--gold);
}

.form-messages {
    display: grid;
    gap: 8px;
}

.form-message {
    padding: 12px 14px;
    border-radius: var(--radius);
    background: rgba(120, 184, 42, 0.12);
    color: #3f6818;
    line-height: 1.4;
}

.form-message.error {
    background: rgba(180, 45, 45, 0.1);
    color: #8b2222;
}

.field-error {
    display: block;
    margin: 5px 2px 0;
    color: #9e2626;
}

.h-captcha {
    min-height: 78px;
}

.mobile-contact-bar {
    display: none;
}

.form-control {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid rgba(37, 31, 36, 0.16);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    font: inherit;
    outline: none;
}

textarea.form-control {
    min-height: 100%;
    resize: vertical;
}

.form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(120, 184, 42, 0.12);
}

.faq-list.standalone {
    max-width: 900px;
}

.product-catalog-hero {
    position: relative;
    overflow: hidden;
    padding: 180px 0 58px;
    background: linear-gradient(90deg, #5f3d50, #765066);
    color: #fff;
}

.product-catalog-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 34%;
    background: var(--catalog-accent);
    clip-path: polygon(0 0, 86% 0, 70% 100%, 0 100%);
    opacity: 0.95;
}

.product-catalog-hero .site-container {
    position: relative;
    z-index: 1;
}

.product-catalog-hero span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
}

.product-catalog-hero h1 {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.95;
    font-weight: 700;
}

.product-catalog-hero strong {
    position: absolute;
    left: 0;
    bottom: -44px;
    color: rgba(255, 255, 255, 0.09);
    font-size: clamp(92px, 17vw, 230px);
    line-height: 0.8;
    font-weight: 800;
    pointer-events: none;
    white-space: nowrap;
}

.product-catalog-section {
    background: #fff;
    padding-top: 70px;
}

.product-catalog-summary {
    width: min(760px, 100%);
    margin: 0 0 42px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.product-variant-list {
    display: grid;
    gap: 58px;
}

.product-variant {
    display: grid;
    grid-template-columns: 72px minmax(210px, 0.8fr) minmax(92px, 0.32fr) minmax(330px, 1fr);
    gap: 28px;
    align-items: center;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(37, 31, 36, 0.08);
}

.product-variant:last-child {
    border-bottom: 0;
}

.variant-code {
    display: grid;
    place-items: center;
    min-height: 220px;
}

.variant-code span {
    display: inline-block;
    color: var(--plum);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    font-weight: 600;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.variant-media {
    position: relative;
    min-height: 220px;
    display: grid;
    place-items: center;
}

.variant-accent {
    position: absolute;
    left: 0;
    top: 32px;
    width: 58%;
    height: 120px;
    background: var(--catalog-accent);
    clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
}

.variant-main-image {
    position: relative;
    z-index: 1;
    width: min(280px, 100%);
    aspect-ratio: 1.45;
    object-fit: cover;
    border-radius: 6px;
    filter: drop-shadow(0 20px 26px rgba(37, 31, 36, 0.18));
}

.variant-views {
    display: grid;
    gap: 12px;
}

.variant-views img {
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: cover;
    border-radius: 5px;
    background: var(--soft);
    filter: grayscale(0.2);
}

.variant-specs h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 600;
}

.variant-specs > p {
    margin: 0 0 12px;
    color: var(--muted);
}

.variant-specs dl {
    display: grid;
    margin: 0;
}

.variant-specs dl div {
    display: grid;
    grid-template-columns: minmax(150px, 0.92fr) minmax(120px, 1fr);
    gap: 14px;
    align-items: baseline;
    min-height: 26px;
    border-bottom: 1px solid rgba(241, 190, 16, 0.7);
}

.variant-specs dt,
.variant-specs dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
}

.variant-specs dt {
    color: #5e5660;
    font-weight: 500;
}

.variant-specs dd {
    color: var(--ink);
    font-weight: 500;
}

.product-catalog-note {
    width: min(760px, 100%);
    margin-top: 44px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.product-catalog-cta {
    margin-top: 34px;
}

.product-sheet {
    border-bottom: 0;
}

.product-detail-fallback {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: start;
}

.product-list-section {
    background: #fff;
}

.catalog-product-list {
    display: grid;
    gap: 54px;
}

.product-list-sheet {
    position: relative;
    padding-bottom: 48px;
}

.product-list-sheet .variant-specs h2 {
    font-size: 24px;
}

.product-list-link {
    margin-top: 20px;
}

.product-brochure {
    padding: 158px 0 86px;
    background: #fff;
    color: #292f38;
}

.catalog-page-hero {
    position: relative;
    min-height: 660px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(22, 20, 23, 0.94), rgba(22, 20, 23, 0.5)),
        var(--catalog-banner) center 45% / cover no-repeat,
        #242127;
    color: #fff;
}

.catalog-page-hero::before {
    content: "PRESBİMS";
    position: absolute;
    right: -12px;
    bottom: -34px;
    color: rgba(255, 255, 255, 0.055);
    font-size: clamp(90px, 16vw, 220px);
    line-height: 0.8;
    font-weight: 800;
    letter-spacing: -0.07em;
    pointer-events: none;
}

.catalog-page-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: max(24px, calc((100vw - 1180px) / 2));
    width: 7px;
    height: 30%;
    background: var(--gold);
}

.catalog-page-hero__inner {
    position: relative;
    z-index: 1;
    padding-bottom: 78px;
}

.catalog-page-hero__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.catalog-page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
}

.catalog-page-hero__breadcrumb i {
    color: var(--gold);
    font-size: 10px;
}

.catalog-page-hero__breadcrumb span {
    color: #fff;
}

.catalog-page-hero__title {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.catalog-page-hero__title > span {
    color: var(--gold);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.catalog-page-hero__title h1 {
    margin: 0;
    font-size: clamp(36px, 6vw, 70px);
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.product-category-catalog.product-brochure {
    padding-top: 72px;
}

.product-detail-page .site-header {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 34px rgba(37, 31, 36, 0.08);
}

.product-detail-page .site-header .nav-menu > a,
.product-detail-page .site-header .nav-item > a {
    color: var(--ink);
}

.product-brochure__header {
    margin-bottom: 52px;
}

.product-brochure__kicker {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0;
    font-size: clamp(25px, 3.2vw, 42px);
    line-height: 1;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.product-brochure__kicker strong {
    font-weight: 800;
}

.product-brochure__kicker span {
    color: #5f6268;
    font-weight: 300;
}

.product-brochure__header h1 {
    margin: 15px 0 0;
    color: #73777d;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 400;
}

.product-brochure__header > p:not(.product-brochure__kicker) {
    max-width: 760px;
    margin: 6px 0 0;
    color: #7a7d82;
    font-size: 16px;
    line-height: 1.55;
}

.product-brochure__header > i {
    display: block;
    width: 48px;
    height: 5px;
    margin-top: 24px;
    border-radius: 99px;
    background: var(--product-accent);
}

.product-brochure__sheet {
    display: grid;
    grid-template-columns: minmax(150px, 0.68fr) minmax(280px, 1.15fr) minmax(112px, 0.5fr) minmax(360px, 1.45fr);
    min-height: 420px;
    border-bottom: 1px solid #dfe1e4;
}

.product-brochure__identity {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 390px;
    padding: 34px 24px;
    overflow: hidden;
    border-radius: 34px 0 0 0;
    background: #252c34;
    color: #fff;
}

.product-brochure__identity::after {
    content: "";
    position: absolute;
    top: 0;
    right: -22px;
    width: 44px;
    height: 44px;
    background: #fff;
    transform: rotate(45deg);
    display: none;
}

.product-brochure__identity > span {
    color: var(--product-accent);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
}

.product-brochure__identity > strong {
    margin: 8px 0 18px;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 0.9;
    font-weight: 500;
    letter-spacing: -0.07em;
    overflow-wrap: anywhere;
}

.product-brochure__identity > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.35;
    text-transform: uppercase;
}

.product-insulated-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 24px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.product-brochure__sheet.is-insulated {
    --insulated-blue: #7fd7e8;
}

.product-brochure__sheet.is-insulated .product-brochure__identity {
    background:
        radial-gradient(circle at 15% 15%, rgba(127, 215, 232, 0.22), transparent 38%),
        #202a33;
}

.product-brochure__sheet.is-insulated .product-brochure__identity > span,
.product-brochure__sheet.is-insulated .product-insulated-badge i {
    color: var(--insulated-blue);
}

.product-brochure__sheet.is-insulated .product-brochure__stage::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 18px;
    border: 1px solid rgba(127, 215, 232, 0.72);
    pointer-events: none;
    display: none;
}

.product-brochure__sheet.is-insulated .product-brochure__specs h2::after {
    content: "Yalıtımlı";
    display: inline-flex;
    margin-left: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(127, 215, 232, 0.18);
    color: #22758a;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.07em;
    vertical-align: middle;
}

.product-brochure__stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 390px;
    overflow: hidden;
}

.product-brochure__accent {
    position: absolute;
    inset: 0;
    background: var(--product-accent);
    clip-path: polygon(0 0, 66% 0, 100% 50%, 66% 100%, 0 100%);
}

.product-brochure__stage > a,
.product-brochure__stage > img {
    position: relative;
    z-index: 1;
}

.product-brochure__stage img {
    display: block;
    width: min(430px, 120%);
    max-height: 330px;
    object-fit: contain;
    filter: drop-shadow(0 24px 22px rgba(28, 32, 37, 0.24));
    transform: translateX(5%);
}

.product-brochure__views {
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 18px 22px 18px 12px;
    border-right: 1px solid #dfe1e4;
}

.product-brochure__views figure {
    margin: 0;
}

.product-brochure__views figcaption {
    display: none;
}

.product-brochure__views img,
.product-brochure__view-placeholder {
    width: 100%;
    height: 74px;
    display: grid;
    place-items: center;
    object-fit: contain;
    background: #f4f4f3;
    color: #9b9da1;
}

.product-brochure__specs {
    align-self: center;
    padding: 22px 0 22px 28px;
}

.product-brochure__specs h2 {
    margin: 0 0 13px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-brochure__specs dl {
    margin: 0;
}

.product-brochure__specs dl > div {
    display: grid;
    grid-template-columns: 28px minmax(150px, 1fr) minmax(100px, 0.85fr);
    gap: 10px;
    align-items: center;
    min-height: 42px;
    border-bottom: 1px solid #dfe1e4;
}

.product-brochure__specs i {
    color: #252c34;
    font-size: 20px;
    text-align: center;
}

.product-brochure__specs dt,
.product-brochure__specs dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
}

.product-brochure__specs dt {
    font-weight: 500;
}

.product-brochure__specs dd {
    position: relative;
    padding-left: 16px;
    color: #4e5258;
}

.product-brochure__specs dd::before {
    content: ":";
    position: absolute;
    left: 0;
}

.product-brochure__description {
    max-width: 860px;
    margin-top: 38px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.product-brochure__benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 54px;
    padding: 26px 30px;
    border-radius: 24px;
    background: #f7f7f6;
}

.product-brochure__benefits article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 13px;
    align-items: center;
}

.product-brochure__benefits article > i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid var(--product-accent);
    border-radius: 50%;
    color: #252c34;
    font-size: 23px;
}

.product-brochure__benefits strong,
.product-brochure__benefits span {
    display: block;
}

.product-quality-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 30px 18px;
    margin-top: 64px;
    padding: 36px 28px;
    border-top: 1px solid rgba(37, 31, 36, 0.1);
    border-bottom: 1px solid rgba(37, 31, 36, 0.1);
    background:
        linear-gradient(135deg, rgba(241, 190, 16, 0.06), transparent 38%),
        #fbfbfa;
}

.product-quality-grid article {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 12px;
    min-width: 0;
    text-align: center;
}

.product-quality-grid article::after {
    content: "";
    position: absolute;
    top: 34px;
    left: calc(50% + 38px);
    width: calc(100% - 76px);
    height: 1px;
    background: rgba(37, 31, 36, 0.1);
}

.product-quality-grid article:nth-child(8)::after,
.product-quality-grid article:last-child::after {
    display: none;
}

.product-quality-grid i {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(95, 61, 80, 0.72);
    border-radius: 16px;
    background: #fff;
    color: var(--plum);
    font-size: 29px;
    box-shadow: inset 0 -5px 0 rgba(241, 190, 16, 0.18);
}

.product-quality-grid strong {
    max-width: 126px;
    color: #514852;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;
}

.product-brochure__benefits strong {
    margin-bottom: 4px;
    font-size: 14px;
}

.product-brochure__benefits span {
    color: #777a7f;
    font-size: 12px;
    line-height: 1.45;
}

.product-brochure__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
}

.product-category-catalog__list {
    display: grid;
}

.product-category-catalog__item {
    padding: 22px 0;
}

.product-category-catalog__item:first-child {
    padding-top: 0;
}

.product-category-catalog__item:last-child {
    border-bottom: 0;
}

.product-category-catalog__empty {
    padding: 48px 0;
    color: var(--muted);
    font-size: 18px;
}

.product-category-list-page .site-header {
    background: rgba(37, 31, 36, 0.78);
    backdrop-filter: blur(14px);
}

.category-gallery {
    min-height: 100vh;
    padding: 72px 0 120px;
    background: #fff;
}

.category-gallery__grid {
    counter-reset: category-card;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
}

.category-gallery__card {
    counter-increment: category-card;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #29272b;
    isolation: isolate;
    border: 1px solid rgba(37, 31, 36, 0.12);
    box-shadow:
        14px 14px 0 var(--gold),
        0 30px 70px rgba(31, 27, 32, 0.13);
    clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%);
}


.category-gallery__card::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 74px;
    height: 74px;
    background: var(--gold);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    transform: translate(100%, -100%);
    transition: transform 0.35s ease;
}

.category-gallery__card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.03) 25%, rgba(0, 0, 0, 0.76) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 42%);
    transition: background 0.35s ease;
}

.category-gallery__card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.category-gallery__card h1,
.category-gallery__card h3 {
    position: absolute;
    z-index: 3;
    left: clamp(22px, 3vw, 42px);
    right: 24px;
    bottom: clamp(22px, 3vw, 40px);
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(30px, 3.6vw, 54px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
}

.category-gallery__card h1::before,
.category-gallery__card h3::before {
    content: attr(data-title);
    position: absolute;
    z-index: -1;
    left: -20px;
    bottom: 42px;
    width: max-content;
    max-width: 130%;
    color: transparent;
    font-size: clamp(48px, 7vw, 90px);
    line-height: 0.78;
    font-weight: 800;
    letter-spacing: -0.065em;
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.17);
    opacity: 0.9;
    pointer-events: none;
}

.category-gallery__card h1::after,
.category-gallery__card h3::after {
    content: "";
    display: block;
    width: 54px;
    height: 5px;
    margin-top: 16px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.category-gallery__card h3 {
    font-size: clamp(30px, 3.6vw, 54px);
}

.home-category-gallery {
    margin-top: 8px;
}

.category-gallery__card:hover img {
    transform: scale(1.045);
}

.category-gallery__card:hover::before {
    transform: translate(0, 0);
}

.category-gallery__card:hover h1,
.category-gallery__card:hover h3 {
    color: #fff;
    transform: translateX(8px);
}

.category-gallery__card:hover h1::after,
.category-gallery__card:hover h3::after {
    width: 96px;
}

.category-gallery__card:hover::after {
    background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.8) 100%);
}

.category-gallery__empty {
    grid-column: 1 / -1;
    padding: 80px 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
}

.footer-bottom a {
    display: inline;
    color: #fff;
    font-weight: 500;
}

@keyframes heroDrift {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1.03);
    }
}

@media (max-width: 1024px) {
    .top-strip {
        display: none;
    }

    .site-header {
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(18px);
    }

    .site-nav {
        min-height: 74px;
    }

    .site-header:not(.is-scrolled) .nav-menu > a,
    .site-header:not(.is-scrolled) .nav-item > a {
        color: var(--ink);
        text-shadow: none;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .nav-menu {
        position: fixed;
        inset: 74px 0 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 20px 34px;
        background: rgba(255, 255, 255, 0.98);
        transform: translateX(100%);
        transition: transform 0.28s ease;
        overflow: auto;
    }

    .nav-menu.is-open {
        transform: translateX(0);
    }

    .nav-menu > a,
    .nav-item > a {
        min-height: 54px;
        padding: 0;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
    }

    .nav-cta {
        justify-content: center;
        margin: 18px 0 0;
        border-bottom: 0 !important;
    }

    .has-dropdown {
        border-bottom: 1px solid var(--line);
    }

    .has-dropdown > a {
        border-bottom: 0;
    }

    .dropdown {
        position: static;
        min-width: 0;
        padding: 0 0 12px 16px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        background: transparent;
    }

    .dropdown a {
        padding: 8px 0;
    }

    .hero-content {
        padding: 150px 0 180px;
    }

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

    .product-variant {
        grid-template-columns: 58px minmax(180px, 0.9fr) minmax(78px, 0.36fr);
    }

    .variant-specs {
        grid-column: 2 / -1;
    }

    .product-detail-fallback {
        grid-template-columns: 1fr;
    }

    .about-layout,
    .faq-layout,
    .page-layout,
    .corporate-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .corporate-copy {
        max-width: 720px;
    }

    .corporate-visual img {
        min-height: 420px;
    }

    .product-brochure__sheet {
        grid-template-columns: minmax(140px, 0.65fr) minmax(250px, 1fr) minmax(110px, 0.45fr);
    }

    .product-brochure__specs {
        grid-column: 1 / -1;
        padding: 34px 0 42px;
    }

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

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

    .product-quality-grid article:nth-child(4n)::after {
        display: none;
    }

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

@media (max-width: 700px) {
    .site-container {
        width: min(100% - 28px, 1180px);
    }

    .brand {
        width: 94px;
    }

    .category-gallery {
        padding: 36px 0 56px;
    }

    .category-gallery__grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-inline: 8px;
    }

    .category-gallery__card {
        aspect-ratio: 1;
    }

    .category-gallery__card:nth-child(even) {
        transform: none;
    }

    .category-gallery__card,
    .category-gallery__card:nth-child(even) {
        box-shadow:
            8px 8px 0 var(--gold),
            0 20px 42px rgba(31, 27, 32, 0.12);
        clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
    }

    .category-gallery__card h1,
    .category-gallery__card h3 {
        left: 20px;
        bottom: 20px;
        font-size: clamp(30px, 10vw, 44px);
    }

    .product-brochure {
        padding: 118px 0 62px;
    }

    .product-category-catalog.product-brochure {
        padding-top: 42px;
    }

    .catalog-page-hero {
        min-height: 520px;
    }

    .catalog-page-hero::after {
        left: 14px;
        width: 5px;
        height: 30%;
    }

    .catalog-page-hero__inner {
        padding-bottom: 52px;
    }

    .catalog-page-hero__breadcrumb {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .catalog-page-hero__title {
        display: grid;
        gap: 7px;
    }

    .catalog-page-hero__title h1 {
        font-size: clamp(38px, 13vw, 58px);
    }

    .category-gallery__card h1::before,
    .category-gallery__card h3::before {
        bottom: 34px;
        font-size: clamp(54px, 18vw, 80px);
    }

    .product-brochure__header {
        margin-bottom: 30px;
    }

    .product-brochure__kicker {
        display: grid;
        gap: 3px;
        font-size: 29px;
    }

    .product-brochure__header h1 {
        font-size: 15px;
    }

    .product-brochure__sheet {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 0;
    }

    .product-brochure__identity,
    .product-brochure__stage {
        min-height: 280px;
    }

    .product-brochure__identity {
        padding: 24px 14px;
        border-radius: 24px 0 0 0;
    }

    .product-brochure__identity > span {
        font-size: 15px;
    }

    .product-brochure__identity > strong {
        font-size: 43px;
        letter-spacing: -0.08em;
    }

    .product-brochure__identity > p {
        font-size: 10px;
    }

    .product-brochure__stage img {
        width: 115%;
        max-height: 230px;
        transform: translateX(0);
    }

    .product-brochure__views {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid #dfe1e4;
    }

    .product-brochure__views img,
    .product-brochure__view-placeholder {
        height: 76px;
    }

    .product-brochure__specs {
        padding: 28px 0 34px;
    }

    .product-brochure__specs dl > div {
        grid-template-columns: 24px minmax(118px, 1fr) minmax(90px, 0.8fr);
        gap: 8px;
    }

    .product-brochure__specs dt,
    .product-brochure__specs dd {
        font-size: 12px;
    }

    .product-brochure__benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 34px;
        padding: 24px 20px;
    }

    .product-quality-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px 10px;
        margin-top: 38px;
        padding: 28px 10px;
    }

    .product-quality-grid article::after {
        display: none;
    }

    .product-quality-grid i {
        width: 60px;
        height: 60px;
        border-radius: 14px;
        font-size: 25px;
    }

    .product-quality-grid strong {
        font-size: 10px;
    }

    .product-brochure__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        min-height: max(520px, 70svh);
    }

    .hero-carousel,
    .hero-carousel .swiper-wrapper,
    .hero-slide {
        min-height: max(520px, 70svh);
    }

    .hero-content {
        padding: 128px 0 112px;
    }

    .hero h1 {
        font-size: clamp(38px, 13vw, 58px);
        max-width: 10ch;
    }

    .hero-content .eyebrow,
    .hero-content p,
    .hero-actions {
        display: none;
    }

    .hero-navigation {
        left: 14px;
        right: 14px;
        bottom: 28px;
        display: flex;
        justify-content: space-between;
    }

    .hero-navigation button {
        width: 42px;
        height: 42px;
    }

    .hero-pagination {
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        bottom: 42px !important;
        width: auto !important;
        display: flex;
        gap: 0;
        transform: translateX(-50%);
    }

    .hero-pagination .swiper-pagination-bullet {
        margin: 0 5px !important;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 28px;
        height: 9px;
    }

    .hero-stats {
        display: none;
    }

    .hero-stats {
        bottom: 18px;
        grid-template-columns: 1fr;
    }

    .hero-stats div {
        padding: 14px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .hero-stats div:last-child {
        border-bottom: 0;
    }

    .hero-stats strong {
        font-size: 22px;
    }

    .section {
        padding: 72px 0;
    }

    .section h2,
    .about-copy h2,
    .subpage-hero h1 {
        font-size: clamp(26px, 7vw, 34px);
        line-height: 1.1;
    }

    .product-grid,
    .feature-grid,
    .document-grid,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-catalog-hero {
        padding: 130px 0 44px;
    }

    .product-catalog-hero::before {
        width: 52%;
    }

    .product-catalog-hero strong {
        bottom: -26px;
        font-size: 82px;
    }

    .product-catalog-section {
        padding-top: 54px;
    }

    .product-variant {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 18px;
        padding-bottom: 42px;
    }

    .variant-code {
        min-height: 188px;
    }

    .variant-code span {
        font-size: 32px;
    }

    .variant-media {
        min-height: 188px;
    }

    .variant-views {
        grid-column: 2;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .variant-specs {
        grid-column: 1 / -1;
    }

    .variant-specs dl div {
        grid-template-columns: minmax(120px, 0.8fr) minmax(110px, 1fr);
    }

    .variant-specs dt,
    .variant-specs dd {
        font-size: 14px;
    }

    .reference-card {
        min-height: 260px;
    }

    .reference-controls {
        justify-content: flex-start;
    }

    .contact-map {
        min-height: 280px;
    }

    body {
        padding-bottom: 68px;
    }

    .mobile-contact-bar {
        position: fixed;
        z-index: 80;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 62px;
        padding: 7px;
        gap: 7px;
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid var(--line);
        box-shadow: 0 -12px 32px rgba(37, 31, 36, 0.12);
        backdrop-filter: blur(16px);
    }

    .mobile-contact-bar > a:only-child {
        grid-column: 1 / -1;
    }

    .mobile-contact-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-height: 48px;
        border-radius: var(--radius);
        background: var(--ink);
        color: #fff;
        font-size: 15px;
        font-weight: 600;
    }

    .mobile-contact-bar a.whatsapp {
        background: #1f9d55;
    }

    .contact-form {
        min-height: auto;
        padding: 20px;
    }

    .contact-message-field {
        min-height: 150px;
    }

    .h-captcha {
        overflow: hidden;
    }

    .feature-card {
        min-height: 0;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .instagram-head,
    .footer-bottom {
        display: grid;
        align-items: start;
    }

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

    .subpage-hero {
        padding: 130px 0 64px;
    }

    .corporate-section {
        padding: 64px 0 78px;
    }

    .corporate-lead {
        font-size: 21px;
        line-height: 1.48;
    }

    .corporate-body {
        font-size: 16px;
        line-height: 1.78;
    }

    .corporate-visual::before {
        inset: 22px -10px -12px 18px;
    }

    .corporate-visual img {
        min-height: 300px;
        max-height: 420px;
    }
}
