:root {
    --red: #e20b17;
    --red-dark: #b50811;
    --black: #070707;
    --ink: #131313;
    --muted: #656565;
    --line: rgba(14, 14, 14, 0.14);
    --paper: #f4f2ee;
    --white: #ffffff;
    --container: 1240px;
    --container-wide: 1450px;
    --radius-lg: 34px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--red); color: white; }

.skip-link {
    position: fixed;
    left: 12px;
    top: 12px;
    z-index: 9999;
    transform: translateY(-150%);
    background: var(--black);
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
}
.skip-link:focus { transform: none; }

.container,
.container-wide { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - 48px, var(--container-wide)); }
.section { padding: 130px 0; }
.section-dark { position: relative; overflow: hidden; background: var(--black); color: var(--white); padding: 130px 0; }
.section-kicker {
    margin: 0 0 26px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .16em;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--red);
}
.section-kicker.light { color: rgba(255,255,255,.62); }
.eyebrow {
    margin: 0 0 18px;
    font-size: 12px;
    letter-spacing: .16em;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}
.section-title {
    margin: 0;
    max-width: 930px;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(48px, 7vw, 98px);
    line-height: .97;
    letter-spacing: -.02em;
    text-transform: uppercase;
    font-weight: 400;
}
.section-title.light { color: white; }
.large-copy { font-size: clamp(20px, 2.1vw, 29px); line-height: 1.4; font-weight: 600; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 58px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--red); color: white; box-shadow: 0 14px 34px rgba(226, 11, 23, .28); }
.button-primary:hover { background: var(--red-dark); }
.button-ghost { border-color: rgba(255,255,255,.28); color: white; background: rgba(255,255,255,.04); backdrop-filter: blur(12px); }
.button-ghost:hover { background: white; color: var(--black); }
.button-light { background: white; color: var(--black); }
.button-light:hover { background: var(--red); color: white; }
.button-dark { margin-top: 44px; background: var(--black); color: white; }
.button-dark:hover { background: var(--red); }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.is-scrolled { background: rgba(244, 242, 238, .93); backdrop-filter: blur(18px); box-shadow: 0 1px 0 var(--line); }
.header-inner { min-height: 96px; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; width: 190px; align-items: center; }
.brand img { width: 100%; height: auto; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 42px; }
.desktop-nav a { position: relative; font-size: 14px; font-weight: 800; color: white; }
.site-header.is-scrolled .desktop-nav a { color: var(--ink); }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: white;
    color: var(--black);
    padding: 13px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.header-cta:hover { background: var(--red); color: white; transform: translateY(-2px); }
.site-header.is-scrolled .header-cta { background: var(--black); color: white; }
.site-header.is-scrolled .header-cta:hover { background: var(--red); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); padding: 0; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: white; transition: transform .25s ease; }
.site-header.is-scrolled .menu-toggle { background: var(--black); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 76% 28%, rgba(226, 11, 23, .24), transparent 28%),
        linear-gradient(125deg, #111 0%, #050505 63%, #1a0507 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .24;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 86px 86px;
    mask-image: linear-gradient(to right, black, transparent 75%);
}
.hero::after {
    content: "";
    position: absolute;
    width: 780px;
    aspect-ratio: 1;
    right: -320px;
    top: -160px;
    border: 130px solid rgba(226, 11, 23, .72);
    border-radius: 50%;
    filter: blur(.1px);
}
.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
    align-items: center;
    gap: 40px;
    padding-top: 120px;
    padding-bottom: 84px;
}
.hero-copy { position: relative; z-index: 4; max-width: 710px; }
.hero-eyebrow { color: rgba(255,255,255,.65); }
.hero-title { margin: 0; text-transform: uppercase; font-family: "Anton", Impact, sans-serif; font-weight: 400; letter-spacing: -.02em; line-height: .92; }
.hero-title span, .hero-title strong { display: block; }
.hero-title span { font-size: clamp(42px, 5.4vw, 78px); }
.hero-title strong { margin: 8px 0; font-size: clamp(54px, 7.5vw, 108px); color: var(--red); font-weight: 400; }
.hero-description { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.35vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-visual {
    position: relative;
    min-height: 660px;
    isolation: isolate;
    overflow: visible;
}
.hero-orbit { position: absolute; border-radius: 50%; pointer-events: none; }
.orbit-one { width: 520px; height: 520px; top: 78px; right: 30px; border: 1px solid rgba(255,255,255,.2); }
.orbit-two { width: 370px; height: 370px; top: 150px; right: 105px; border: 1px dashed rgba(226,11,23,.7); animation: orbitSpin 28s linear infinite; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.hero-word {
    position: absolute;
    top: 18px;
    right: -20px;
    z-index: -1;
    color: rgba(255,255,255,.055);
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(100px, 15vw, 230px);
    line-height: 1;
    letter-spacing: -.02em;
    writing-mode: vertical-rl;
    text-transform: uppercase;
    user-select: none;
    pointer-events: none;
}
.hero-product {
    position: absolute;
    inset: 0 0 82px;
    display: grid;
    place-items: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
.hero-product.is-active { visibility: visible; opacity: 1; }
.hero-product-frame {
    position: relative;
    width: min(100%, 710px);
    height: min(72vh, 570px);
    display: grid;
    place-items: center;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform-origin: 50% 60%;
}
.hero-product-frame::before,
.hero-product-frame::after { display: none !important; content: none !important; }
.frame-cutout { background: transparent; border: 0; box-shadow: none; }
.frame-cutout img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    filter: drop-shadow(0 36px 65px rgba(0, 0, 0, .38));
}
.frame-wide img { transform: none; }
.hero-controls { position: absolute; right: 0; bottom: 22px; display: flex; align-items: center; gap: 14px; }
.hero-arrow { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.06); color: white; font-size: 20px; transition: background .2s ease, color .2s ease; }
.hero-arrow:hover { background: white; color: black; }
.hero-dots { display: flex; align-items: center; gap: 8px; flex-wrap: nowrap; justify-content: center; }
.hero-dots button { width: 28px; height: 4px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.25); transition: width .25s ease, background .25s ease; }
.hero-dots button.is-active { width: 54px; background: var(--red); }
.hero-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(255,255,255,.1); overflow: hidden; }
.hero-progress span { display: block; width: 100%; height: 100%; transform-origin: left center; transform: scaleX(0); background: var(--red); }
.hero-scroll { position: absolute; z-index: 3; left: 24px; bottom: 25px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; writing-mode: vertical-rl; }
.hero-scroll span { display: block; width: 1px; height: 50px; background: rgba(255,255,255,.35); }

.section-grid { display: grid; }
.about-grid { grid-template-columns: 180px minmax(0, .85fr) minmax(430px, 1.15fr); gap: 50px; align-items: start; }
.about-copy .section-title { font-size: clamp(46px, 5.3vw, 76px); }
.about-copy > p:not(.eyebrow) { max-width: 720px; color: #3e3e3e; }
.text-link { display: inline-flex; align-items: center; gap: 18px; margin-top: 18px; font-weight: 800; border-bottom: 2px solid var(--red); padding-bottom: 6px; }
.text-link:hover { color: var(--red); }
.about-media { position: relative; margin: 0; min-height: 620px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.6)); }
.about-media img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.about-media figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 24px; display: flex; justify-content: space-between; color: white; text-transform: uppercase; font-size: 11px; letter-spacing: .13em; font-weight: 800; }

.pressure { min-height: 780px; display: flex; align-items: center; }
.pressure-bg { position: absolute; inset: 0; opacity: .22; background: url('../img/guindola-modular-fachadas.webp') center 56% / cover no-repeat; filter: grayscale(1) contrast(1.2); transform: scale(1.1); }
.pressure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #050505 8%, rgba(5,5,5,.88) 50%, rgba(5,5,5,.55)); }
.pressure-inner { position: relative; z-index: 2; }
.pressure-title { margin: 0; max-width: 1120px; font-family: "Anton", Impact, sans-serif; font-size: clamp(58px, 9.2vw, 142px); font-weight: 400; line-height: .88; text-transform: uppercase; letter-spacing: -.025em; }
.pressure-bottom { display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, .6fr); gap: 100px; align-items: end; margin-top: 72px; }
.pressure-bottom > p { margin: 0; max-width: 700px; color: rgba(255,255,255,.67); font-size: 18px; }
.pressure-action { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.pressure-action strong { font-size: 23px; line-height: 1.25; }

.catalog { background: #ece9e3; }
.catalog-heading { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 70px; align-items: end; margin-bottom: 65px; }
.catalog-heading .section-title { font-size: clamp(52px, 6.5vw, 92px); }
.catalog-intro { margin: 0 0 8px; color: #4c4c4c; }
.catalog-swiper { overflow: visible; }
.product-card { height: auto; display: grid; grid-template-rows: 420px 1fr; background: white; border-radius: 30px; overflow: hidden; box-shadow: 0 24px 65px rgba(18,18,18,.08); }
.product-media { position: relative; min-height: 0; overflow: hidden; background: #ddd; }
.product-media > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.65,.3,1); }
.product-card:hover .product-media > img { transform: scale(1.045); }
.product-white { background: white; padding: 18px; }
.product-white > img { object-fit: contain; }
.product-number { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--red); color: white; font-size: 12px; font-weight: 800; box-shadow: 0 8px 20px rgba(226,11,23,.28); }
.product-content { display: flex; flex-direction: column; padding: 30px; }
.product-tags { display: flex; gap: 7px; margin-bottom: 18px; }
.product-tags span { border: 1px solid var(--line); border-radius: 999px; padding: 5px 10px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-content h3 { margin: 0; font-size: 27px; line-height: 1.12; letter-spacing: -.03em; }
.product-content p { margin: 18px 0; color: #5d5d5d; }
.product-content ul { margin: 0 0 28px; padding: 0; list-style: none; display: grid; gap: 10px; }
.product-content li { position: relative; padding-left: 18px; font-size: 14px; font-weight: 700; }
.product-content li::before { content: ""; position: absolute; left: 0; top: .68em; width: 7px; height: 2px; background: var(--red); }
.product-link { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 800; }
.product-link:hover { color: var(--red); }
.product-gallery { display: grid; grid-template-columns: 1fr 80px; gap: 8px; padding: 10px; background: #efefed; }
.gallery-main { min-width: 0; width: 100%; height: 100%; object-fit: contain; background: white; border-radius: 18px; }
.gallery-thumbs { min-width: 0; display: grid; grid-template-rows: repeat(4, 1fr); gap: 7px; }
.gallery-thumbs button { min-height: 0; padding: 4px; border: 2px solid transparent; border-radius: 12px; background: white; overflow: hidden; transition: border-color .2s ease; }
.gallery-thumbs button.is-active { border-color: var(--red); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.catalog-controls { display: flex; align-items: center; justify-content: flex-end; gap: 14px; margin-top: 32px; }
.catalog-prev, .catalog-next { width: 54px; height: 54px; border: 1px solid var(--line); background: transparent; border-radius: 50%; font-size: 20px; transition: background .2s ease, color .2s ease; }
.catalog-prev:hover, .catalog-next:hover { background: var(--black); color: white; }
.catalog-pagination { width: auto !important; display: flex; gap: 7px; }
.catalog-pagination .swiper-pagination-bullet { width: 8px; height: 8px; margin: 0 !important; background: #a8a8a8; opacity: 1; }
.catalog-pagination .swiper-pagination-bullet-active { width: 30px; border-radius: 99px; background: var(--red); }
.catalog-note { margin: 24px 0 0; color: #777; font-size: 12px; }

.applications { background: var(--paper); }
.applications-heading { display: grid; grid-template-columns: minmax(0, 1fr) 420px; align-items: end; gap: 80px; }
.applications-heading p { margin: 0 0 8px; color: #555; }
.applications-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 70px; background: var(--line); border: 1px solid var(--line); }
.application-card { min-height: 290px; padding: 34px; background: var(--paper); transition: background .3s ease, color .3s ease, transform .3s ease; }
.application-card:hover { position: relative; z-index: 2; background: var(--red); color: white; transform: translateY(-8px); }
.application-card > span { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid currentColor; border-radius: 50%; font-size: 11px; font-weight: 800; }
.application-card h3 { margin: 70px 0 14px; font-size: 24px; line-height: 1.15; letter-spacing: -.025em; }
.application-card p { margin: 0; color: #656565; }
.application-card:hover p { color: rgba(255,255,255,.78); }

.projects { background: #e9e6e0; }
.projects-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: end;
    gap: 72px;
    margin-bottom: 66px;
}
.projects-heading .section-title { font-size: clamp(52px, 7vw, 96px); }
.projects-intro { margin: 0 0 8px; color: #4e4e4e; }
.projects-gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 245px;
    gap: 16px;
}
.project-shot {
    position: relative;
    grid-column: span 3;
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #cfcac2;
    box-shadow: 0 20px 55px rgba(0,0,0,.10);
}
.project-shot-large { grid-column: span 7; grid-row: span 2; }
.project-shot-tall { grid-column: span 5; grid-row: span 2; }
.project-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.78));
    pointer-events: none;
}
.project-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.65,.3,1), filter .5s ease;
}
.project-shot:hover img { transform: scale(1.045); filter: saturate(1.06) contrast(1.02); }
.project-shot figcaption {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px;
    display: flex;
    align-items: flex-end;
    gap: 13px;
    color: white;
}
.project-shot figcaption span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--red);
    font-size: 10px;
    font-weight: 800;
}
.project-shot figcaption strong { max-width: 330px; font-size: 14px; line-height: 1.25; }


.decision-heading { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 70px; align-items: end; }
.decision-heading .section-title { font-size: clamp(52px, 7vw, 98px); }
.decision-heading > p:last-child { color: rgba(255,255,255,.62); }
.decision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 70px; }
.decision-card { position: relative; min-height: 610px; padding: 50px; border-radius: 32px; background: #151515; overflow: hidden; }
.decision-card-red { background: var(--red); }
.decision-number { position: absolute; top: 24px; right: 24px; font-family: "Anton", Impact, sans-serif; font-size: 95px; line-height: 1; color: rgba(255,255,255,.08); }
.decision-card h3 { max-width: 580px; margin: 50px 0 22px; font-size: clamp(34px, 4vw, 55px); line-height: 1.02; letter-spacing: -.04em; }
.decision-card > p:not(.eyebrow) { color: rgba(255,255,255,.64); max-width: 600px; }
.decision-card-red > p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.decision-card ul { margin: 34px 0 46px; padding: 0; list-style: none; display: grid; gap: 14px; }
.decision-card li { padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.13); font-weight: 700; }
.decision-card a { position: absolute; left: 50px; right: 50px; bottom: 45px; display: flex; justify-content: space-between; align-items: center; font-weight: 800; }
.decision-closing { max-width: 900px; margin: 55px auto 0; text-align: center; color: rgba(255,255,255,.65); font-size: 19px; }

.export {
    background:
        radial-gradient(circle at 92% 8%, rgba(226,11,23,.25), transparent 32%),
        linear-gradient(135deg, #070707 0%, #111 58%, #1b0507 100%);
}
.export::before {
    content: "EXPORT";
    position: absolute;
    right: -30px;
    bottom: -95px;
    font-family: "Anton", Impact, sans-serif;
    font-size: clamp(180px, 28vw, 430px);
    line-height: 1;
    color: rgba(255,255,255,.025);
    letter-spacing: -.03em;
    pointer-events: none;
}
.export-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(560px, 1.22fr);
    gap: 76px;
    align-items: start;
}
.export-copy { position: sticky; top: 128px; }
.export-copy .section-title { font-size: clamp(54px, 6.5vw, 92px); }
.export-copy > p:not(.section-kicker) { max-width: 650px; color: rgba(255,255,255,.68); }
.export-copy .large-copy { margin-top: 28px; color: rgba(255,255,255,.9) !important; }
.export-countries { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }
.export-countries span {
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: white;
    font-size: 12px;
    font-weight: 800;
}
.export-process { display: grid; margin: 34px 0; border-top: 1px solid rgba(255,255,255,.12); }
.export-process div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.export-process strong { color: var(--red); font-size: 12px; }
.export-process span { color: rgba(255,255,255,.78); font-size: 14px; font-weight: 700; }
.export-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 245px;
    gap: 14px;
}
.export-shot {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #1b1b1b;
    border: 1px solid rgba(255,255,255,.11);
}
.export-shot-wide { grid-column: 1 / -1; grid-row: span 2; }
.export-shot::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.78));
    pointer-events: none;
}
.export-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.65,.3,1);
}
.export-shot:hover img { transform: scale(1.045); }
.export-shot figcaption {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 16px;
    color: white;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}


.contact { background: white; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(540px, 1.22fr); gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 135px; }
.contact-copy .section-title { font-size: clamp(52px, 6vw, 82px); }
.contact-direct { margin-top: 55px; display: grid; gap: 16px; }
.contact-direct a { display: flex; flex-direction: column; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-direct small { color: #7a7a7a; }
.contact-direct strong { font-size: 20px; }
.contact-direct a:hover strong { color: var(--red); }
.contact-form { padding: 42px; border-radius: 30px; background: #f2f0ec; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-form label { display: grid; gap: 9px; margin-bottom: 20px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(0,0,0,.12); border-radius: 13px; background: white; color: var(--ink); padding: 15px 16px; outline: none; text-transform: none; letter-spacing: normal; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(226,11,23,.09); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 8px; }
.form-footer p { max-width: 320px; margin: 0; color: #707070; font-size: 11px; }
.form-status { margin: 16px 0 0; font-size: 13px; font-weight: 700; color: var(--red); }

.final-cta { position: relative; overflow: hidden; min-height: 720px; display: flex; align-items: center; background: var(--red); color: white; padding: 130px 0; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(0,0,0,.2), transparent 28%), linear-gradient(115deg, transparent 0 54%, rgba(0,0,0,.12) 54% 100%); }
.final-cta-word { position: absolute; left: -20px; bottom: -80px; font-family: "Anton", Impact, sans-serif; font-size: clamp(170px, 31vw, 480px); line-height: 1; color: rgba(0,0,0,.09); letter-spacing: -.03em; }
.final-cta-inner { position: relative; z-index: 2; }
.final-cta h2 { margin: 0; max-width: 1140px; font-family: "Anton", Impact, sans-serif; font-size: clamp(64px, 9.5vw, 145px); line-height: .88; letter-spacing: -.025em; text-transform: uppercase; font-weight: 400; }
.final-cta-inner > p:not(.eyebrow) { max-width: 760px; margin: 35px 0 0; font-size: 19px; color: rgba(255,255,255,.82); }
.final-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; margin-top: 40px; }
.final-phone { font-weight: 800; border-bottom: 2px solid rgba(255,255,255,.6); padding-bottom: 5px; }

.site-footer { background: #050505; color: white; padding: 75px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 260px 1fr auto auto; align-items: start; gap: 55px; }
.footer-logo { width: 220px; }
.footer-grid > p { margin: 0; max-width: 440px; color: rgba(255,255,255,.55); }
.footer-grid nav, .footer-contact { display: grid; gap: 12px; font-size: 14px; font-weight: 700; }
.footer-grid a:hover { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.4); font-size: 12px; }

.floating-whatsapp { position: fixed; z-index: 900; right: 22px; bottom: 22px; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: #25d366; box-shadow: 0 16px 38px rgba(0,0,0,.22); transition: transform .25s ease; }
.floating-whatsapp:hover { transform: translateY(-5px) scale(1.03); }
.floating-whatsapp svg { width: 31px; fill: white; }

.reveal-lines { visibility: hidden; }

@media (max-width: 1180px) {
    .header-inner { grid-template-columns: 180px 1fr auto; }
    .brand { width: 165px; }
    .desktop-nav { gap: 28px; }
    .hero-grid { grid-template-columns: .95fr 1.05fr; }
    .hero-visual { min-height: 590px; }
    .hero-product-frame { width: min(100%, 600px); height: min(64vh, 500px); }
    .about-grid { grid-template-columns: 110px 1fr 1fr; gap: 34px; }
    .contact-grid { gap: 55px; }
    .footer-grid { grid-template-columns: 220px 1fr auto; }
    .footer-contact { grid-column: 3; }
}

@media (max-width: 960px) {
    html { scroll-padding-top: 82px; }
    .container, .container-wide { width: min(100% - 34px, var(--container)); }
    .section, .section-dark { padding: 95px 0; }
    .header-inner { min-height: 82px; grid-template-columns: 1fr auto; }
    .brand { width: 155px; }
    .desktop-nav, .header-cta { display: none; }
    .menu-toggle { display: block; }
    .mobile-menu { display: block; position: fixed; inset: 82px 0 0; background: var(--paper); transform: translateY(-110%); opacity: 0; visibility: hidden; transition: transform .35s ease, opacity .3s ease, visibility .3s; }
    .mobile-menu.is-open { transform: none; opacity: 1; visibility: visible; }
    .mobile-menu nav { display: grid; align-content: start; height: 100%; padding: 34px 18px; }
    .mobile-menu a { padding: 20px 8px; border-bottom: 1px solid var(--line); font-family: "Anton", Impact, sans-serif; font-size: 42px; line-height: 1; text-transform: uppercase; }
    .mobile-menu-cta { margin-top: 20px; border-radius: 18px; background: var(--red); color: white; border: 0 !important; text-align: center; }

    .hero-grid { grid-template-columns: 1fr; align-content: start; gap: 20px; padding-top: 128px; padding-bottom: 75px; }
    .hero-copy { max-width: none; }
    .hero-title span { font-size: clamp(39px, 8vw, 68px); }
    .hero-title strong { font-size: clamp(55px, 11vw, 92px); }
    .hero-visual { min-height: 600px; }
    .hero-product { inset: 0 0 82px; }
    .hero-product-frame { margin-inline: auto; width: min(100%, 680px); height: min(58vh, 520px); }
    .hero-controls { right: 50%; transform: translateX(50%); }
    .hero-scroll { display: none; }

    .about-grid { grid-template-columns: 1fr; }
    .about-grid > .section-kicker { margin-bottom: -10px; }
    .about-copy { max-width: 760px; }
    .about-media { min-height: 500px; }
    .about-media img { min-height: 500px; }

    .pressure { min-height: auto; }
    .pressure-bottom, .catalog-heading, .applications-heading, .decision-heading { grid-template-columns: 1fr; gap: 30px; }
    .catalog-intro, .applications-heading p, .decision-heading > p:last-child { max-width: 680px; }
    .applications-grid { grid-template-columns: repeat(2, 1fr); }
    .decision-card { min-height: 640px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-copy { position: static; }
    .contact-direct { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-contact { grid-column: auto; }
}

@media (max-width: 680px) {
    .container, .container-wide { width: min(100% - 24px, var(--container)); }
    .section, .section-dark { padding: 76px 0; }
    .section-title { font-size: clamp(42px, 14vw, 62px); }
    .header-inner { min-height: 74px; }
    .brand { width: 140px; }
    .mobile-menu { inset-block-start: 74px; }
    .hero-grid { min-height: auto; padding-top: 110px; }
    .hero-title span { font-size: clamp(32px, 11vw, 45px); }
    .hero-title strong { font-size: clamp(49px, 15vw, 67px); line-height: .94; }
    .hero-description { margin-top: 22px; font-size: 16px; }
    .hero-actions { display: grid; }
    .button { width: 100%; }
    .hero-visual { min-height: 470px; }
    .hero-product { inset: 0 0 78px; }
    .hero-product-frame { width: 100%; height: 360px; border-radius: 0; }
    .hero-word { font-size: 105px; top: 70px; }
    .orbit-one { width: 360px; height: 360px; top: 70px; right: -45px; }
    .orbit-two { width: 250px; height: 250px; top: 125px; right: 10px; }

    .about-media, .about-media img { min-height: 390px; }
    .pressure-title { font-size: clamp(54px, 18vw, 82px); }
    .pressure-bottom { margin-top: 45px; }
    .pressure-action strong { font-size: 20px; }

    .catalog-heading { margin-bottom: 42px; }
    .product-card { grid-template-rows: 335px 1fr; }
    .product-content { padding: 25px; }
    .product-content h3 { font-size: 24px; }
    .catalog-controls { justify-content: center; }

    .applications-grid { grid-template-columns: 1fr; }
    .application-card { min-height: 235px; }
    .application-card h3 { margin-top: 45px; }
    .decision-grid { grid-template-columns: 1fr; }
    .decision-card { min-height: 600px; padding: 34px 26px; }
    .decision-card h3 { margin-top: 42px; font-size: 38px; }
    .decision-card a { left: 26px; right: 26px; bottom: 32px; }

    .contact-direct { grid-template-columns: 1fr; }
    .contact-form { padding: 25px 18px; border-radius: 22px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-footer { align-items: stretch; flex-direction: column; }
    .form-footer p { max-width: none; }
    .final-cta { min-height: 650px; padding: 95px 0; }
    .final-cta h2 { font-size: clamp(58px, 17vw, 88px); }
    .final-actions { align-items: stretch; flex-direction: column; }
    .final-phone { align-self: flex-start; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-logo { width: 190px; }
    .footer-bottom { margin-top: 40px; }
    .floating-whatsapp { width: 56px; height: 56px; right: 14px; bottom: 14px; }
}



@media (max-width: 1180px) {
    .projects-heading { grid-template-columns: 1fr 360px; gap: 48px; }
    .projects-gallery { grid-auto-rows: 220px; }
    .export-layout { grid-template-columns: minmax(0, .85fr) minmax(470px, 1.15fr); gap: 48px; }
    .export-gallery { grid-auto-rows: 220px; }
}

@media (max-width: 960px) {
    .projects-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 45px; }
    .projects-intro { max-width: 720px; }
    .projects-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 300px; }
    .project-shot,
    .project-shot-large,
    .project-shot-tall { grid-column: span 1; grid-row: span 1; }
    .project-shot:first-child { grid-column: 1 / -1; }

    .export-layout { grid-template-columns: 1fr; gap: 55px; }
    .export-copy { position: static; }
    .export-gallery { grid-auto-rows: 285px; }
}

@media (max-width: 680px) {
    .projects-heading { margin-bottom: 34px; }
    .projects-gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; gap: 11px; }
    .project-shot,
    .project-shot-large,
    .project-shot-tall,
    .project-shot:first-child { grid-column: 1; grid-row: span 1; border-radius: 18px; }
    .project-shot:nth-child(2),
    .project-shot:nth-child(3),
    .project-shot:nth-child(4),
    .project-shot:nth-child(5) { min-height: 360px; }
    .project-shot figcaption { left: 16px; right: 16px; bottom: 15px; }

    .export-layout { gap: 42px; }
    .export-copy .section-title { font-size: clamp(48px, 14vw, 68px); }
    .export-gallery { grid-template-columns: 1fr; grid-auto-rows: 310px; gap: 11px; }
    .export-shot,
    .export-shot-wide { grid-column: 1; grid-row: span 1; border-radius: 18px; }
    .export-shot-wide { min-height: 250px; }
    .export-countries span { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .reveal-lines { visibility: visible; }
}

@supports not (clip-path: inset(0)) {
    .reveal-lines { visibility: visible; }
}

.brand,
.footer-logo {
    background: rgba(255,255,255,.98);
    padding: 8px 12px;
    border-radius: 13px;
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.footer-logo { padding: 12px 16px; }


@media (max-width: 1100px) {
    .hero-product-frame { width: min(100%, 620px); height: min(62vh, 500px); }
}

@media (max-width: 767px) {
    .hero-product-frame { width: 100%; height: 350px; }
    .hero-dots { gap: 6px; }
    .hero-dots button { width: 20px; }
    .hero-dots button.is-active { width: 38px; }
}

/* Mobile responsive containment: keeps every section inside the device viewport. */
@media (max-width: 960px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        overflow-x: clip;
        overscroll-behavior-x: none;
    }

    body,
    main,
    .site-header,
    .site-footer,
    main > section {
        max-width: 100%;
    }

    .hero-grid > *,
    .about-grid > *,
    .pressure-bottom > *,
    .catalog-heading > *,
    .applications-heading > *,
    .decision-heading > *,
    .decision-grid > *,
    .contact-grid > *,
    .footer-grid > *,
    .form-row > * {
        min-width: 0;
    }

    .catalog-swiper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .catalog-swiper .swiper-wrapper,
    .catalog-swiper .swiper-slide,
    .product-card,
    .contact-form,
    .contact-copy {
        min-width: 0;
        max-width: 100%;
    }

    .product-tags {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .container,
    .container-wide {
        width: 100%;
        max-width: 100%;
        padding-inline: 16px;
        margin-inline: auto;
    }

    .site-header,
    .mobile-menu,
    .hero,
    .hero-grid,
    .hero-copy,
    .hero-visual,
    .about,
    .pressure,
    .catalog,
    .applications,
    .decision,
    .contact,
    .final-cta,
    .site-footer {
        width: 100%;
        max-width: 100%;
    }

    .mobile-menu {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .mobile-menu nav,
    .mobile-menu a {
        min-width: 0;
        max-width: 100%;
    }

    .mobile-menu a,
    .hero-title,
    .section-title,
    .pressure-title,
    .decision-card h3,
    .final-cta h2,
    .contact-direct strong,
    .footer-grid a,
    .footer-bottom span {
        overflow-wrap: anywhere;
    }

    .button {
        max-width: 100%;
        padding-inline: 20px;
        white-space: normal;
        text-align: center;
        line-height: 1.25;
    }

    .hero-grid {
        overflow: hidden;
    }

    .hero-copy {
        width: 100%;
    }

    .hero-title,
    .hero-description,
    .hero-actions {
        max-width: 100%;
    }

    .hero-visual {
        overflow: hidden;
        overflow: clip;
    }

    .hero-product,
    .hero-product-frame {
        width: 100%;
        max-width: 100%;
    }

    .hero-product-frame {
        height: clamp(280px, 90vw, 350px);
    }

    .frame-cutout img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

    .hero-controls {
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: none;
        justify-content: center;
        gap: 8px;
        padding-inline: 4px;
    }

    .hero-arrow {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }

    .hero-dots {
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(100% - 104px);
        gap: 5px;
    }

    .hero-dots button {
        flex: 0 1 18px;
        width: 18px;
        min-width: 10px;
    }

    .hero-dots button.is-active {
        flex-basis: 34px;
        width: 34px;
    }

    .hero-progress {
        left: 16px;
        right: 16px;
    }

    .about-media,
    .about-media img,
    .product-card,
    .product-media,
    .applications-grid,
    .application-card,
    .decision-card,
    .contact-form,
    .footer-grid,
    .footer-bottom {
        max-width: 100%;
    }

    .product-gallery {
        grid-template-columns: minmax(0, 1fr) 64px;
        max-width: 100%;
    }

    .gallery-thumbs,
    .gallery-thumbs button,
    .gallery-thumbs img,
    .gallery-main {
        min-width: 0;
        max-width: 100%;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        min-width: 0;
        max-width: 100%;
        font-size: 16px;
    }

    .contact-direct a,
    .decision-card a,
    .final-phone {
        min-width: 0;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }
}

@media (max-width: 380px) {
    .container,
    .container-wide {
        padding-inline: 14px;
    }

    .mobile-menu a {
        font-size: 36px;
    }

    .hero-controls {
        gap: 6px;
    }

    .hero-arrow {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .hero-dots {
        max-width: calc(100% - 92px);
        gap: 4px;
    }

    .hero-dots button {
        flex-basis: 14px;
        width: 14px;
    }

    .hero-dots button.is-active {
        flex-basis: 27px;
        width: 27px;
    }

    .product-content,
    .decision-card,
    .contact-form {
        padding-inline: 20px;
    }
}


@media (max-width: 960px) {
    .projects,
    .projects-heading,
    .projects-gallery,
    .project-shot,
    .export,
    .export-layout,
    .export-copy,
    .export-gallery,
    .export-shot { min-width: 0; max-width: 100%; }
}
