:root {
    --bg: #f1f3ed;
    --bg-2: #e4e9df;
    --surface: rgba(255, 255, 255, .62);
    --surface-solid: #fff;
    --text: #142019;
    --muted: #68716b;
    --line: rgba(20, 32, 25, .13);
    --accent: #75a943;
    --accent-2: #b5d58e;
    --deep: #0a1510;
    --white: #f7faf4;
    --shadow: 0 30px 80px rgba(24, 43, 31, .12);
    --header-h: 96px;
    color-scheme: light;
}

html[data-theme="dark"] {
    --bg: #09110d;
    --bg-2: #101b15;
    --surface: rgba(23, 38, 29, .58);
    --surface-solid: #132019;
    --text: #edf5eb;
    --muted: #a1aea4;
    --line: rgba(224, 240, 228, .12);
    --accent: #9dcb6b;
    --accent-2: #6f9e42;
    --deep: #06100a;
    --shadow: 0 30px 90px rgba(0, 0, 0, .28);
    color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body { margin: 0; font-family: "Urbanist", sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; transition: background .45s, color .45s; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img, video { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--deep); }

.wide-container { width: min(94vw, 1820px); margin-inline: auto; }
.section { padding: clamp(80px, 9vw, 160px) 0; position: relative; }
.section-sm { padding: clamp(58px, 6vw, 100px) 0; }
.noise { position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }
.cursor-glow { position: fixed; left: -210px; top: -210px; width: 420px; height: 420px; border-radius: 50%; pointer-events: none; z-index: -1; background: radial-gradient(circle, rgba(126, 178, 76, .13), transparent 66%); }
.page-loader { position: fixed; inset: 0; z-index: 10000; display: grid; place-content: center; gap: 22px; text-align: center; background: #08110c; color: #fff; letter-spacing: .32em; }
.loader-logo { width: clamp(150px, 16vw, 230px); margin: 0 auto 8px; animation: loaderLogo 1.4s ease-in-out infinite alternate; }
.loader-logo img { width: 100%; max-height: 80px; object-fit: contain; }
.loader-mark { height: 42px; display: flex; align-items: end; justify-content: center; gap: 6px; }
.loader-mark span { width: 5px; height: 18px; background: var(--accent); border-radius: 6px; animation: leaf 1s ease-in-out infinite alternate; transform-origin: bottom; }
.loader-mark span:nth-child(2) { height: 36px; animation-delay: .15s; }
.loader-mark span:nth-child(3) { height: 26px; animation-delay: .3s; }
@keyframes leaf { to { transform: scaleY(.35); opacity: .35; } }
@keyframes loaderLogo { to { opacity: .58; transform: translateY(-4px); } }

.site-header { position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; height: var(--header-h); display: flex; align-items: center; transition: .4s; }
.site-header:not(.scrolled) { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.site-header:not(.scrolled) .language-toggle,
.site-header:not(.scrolled) .theme-toggle,
.site-header:not(.scrolled) .menu-toggle { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(4,12,7,.28); }
.site-header:not(.scrolled) .language-toggle button { color: rgba(255,255,255,.72); }
.site-header:not(.scrolled) .language-toggle button.active { background: #fff; color: #0a1510; }
html[data-theme="light"] .site-header:not(.scrolled) .logo-light { display: block; }
html[data-theme="light"] .site-header:not(.scrolled) .logo-dark { display: none; }
.site-header.scrolled { height: 76px; background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { width: clamp(148px, 12vw, 210px); position: relative; z-index: 2; }
.logo { width: 100%; max-height: 60px; object-fit: contain; object-position: left center; transition: .35s; }
.logo-dark { display: none; }
html[data-theme="light"] .logo-light { display: none; }
html[data-theme="light"] .logo-dark { display: block; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2vw, 40px); margin-left: auto; }
.desktop-nav > a, .nav-dropdown > button { border: 0; background: none; padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 14px; letter-spacing: .02em; position: relative; white-space: nowrap; }
.desktop-nav > a::after, .nav-dropdown > button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 10px; height: 1px; background: var(--accent); transition: .35s; }
.desktop-nav > a:hover::after, .nav-dropdown:hover > button::after { right: 0; }
.nav-dropdown { position: relative; }
.nav-dropdown button i { font-size: 9px; margin-left: 6px; transition: .3s; }
.nav-dropdown:hover button i { transform: rotate(180deg); }
.dropdown-panel { position: absolute; top: calc(100% - 4px); left: -22px; width: 250px; padding: 10px; border: 1px solid var(--line); background: var(--surface); backdrop-filter: blur(24px); box-shadow: var(--shadow); border-radius: 14px; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .3s; }
.nav-dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; transform: none; }
.dropdown-panel a { display: block; padding: 13px 14px; border-radius: 9px; font-size: 14px; color: var(--muted); }
.dropdown-panel a:hover { background: rgba(126, 178, 76, .12); color: var(--text); }
.header-tools { display: flex; align-items: center; gap: 10px; }
.language-toggle { display: flex; border: 1px solid var(--line); background: var(--surface); border-radius: 100px; padding: 4px; cursor: pointer; backdrop-filter: blur(12px); }
.language-toggle button { display: grid; place-items: center; width: 31px; height: 27px; padding: 0; border: 0; background: transparent; cursor: pointer; font-size: 10px; font-weight: 800; border-radius: 100px; color: var(--muted); transition: .3s; }
.language-toggle button.active { background: var(--text); color: var(--bg); }
.theme-toggle, .menu-toggle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); cursor: pointer; display: grid; place-items: center; backdrop-filter: blur(12px); }
.theme-toggle[hidden] { display: none !important; }
.theme-toggle .fa-moon { display: none; }
html[data-theme="light"] .theme-toggle .fa-sun-bright { display: none; }
html[data-theme="light"] .theme-toggle .fa-moon { display: block; }
.menu-toggle { display: none; position: relative; }
.menu-toggle span { position: absolute; width: 17px; height: 1px; background: currentColor; transition: .35s; }
.menu-toggle span:first-child { transform: translateY(-3px); }
.menu-toggle span:last-child { transform: translateY(3px); }
.menu-open .menu-toggle span:first-child { transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: rotate(-45deg); }
.mobile-menu { display: none; }

.hero { height: max(760px, 100svh); position: relative; background: var(--deep); color: var(--white); }
.hero-swiper, .hero-swiper .swiper-wrapper, .hero-slide { width: 100%; height: 100%; }
.hero-media, .hero-media::after { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; background: linear-gradient(90deg, rgba(4, 12, 7, .72) 0%, rgba(4, 12, 7, .2) 62%, rgba(4, 12, 7, .18)), linear-gradient(0deg, rgba(4, 12, 7, .7), transparent 44%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding-top: var(--header-h); }
.hero-copy { max-width: 1050px; padding-left: clamp(0px, 5vw, 110px); }
.eyebrow { display: flex; align-items: center; gap: 12px; text-transform: uppercase; letter-spacing: .24em; font-size: 11px; font-weight: 800; color: var(--accent); }
.eyebrow::before { content: ""; width: 38px; height: 1px; background: currentColor; }
.hero h1 { margin: 24px 0 30px; font-size: clamp(46px, 5.2vw, 88px); line-height: .98; letter-spacing: -.045em; font-weight: 500; max-width: 920px; }
.hero h1 strong { font-weight: 800; color: var(--accent-2); }
.hero-copy p { max-width: 620px; font-size: clamp(16px, 1.25vw, 21px); line-height: 1.7; color: rgba(255,255,255,.76); }
.magnetic-btn { display: inline-flex; align-items: center; justify-content: space-between; gap: 40px; min-width: 220px; margin-top: 28px; padding: 17px 20px 17px 24px; border-radius: 100px; border: 1px solid var(--line); font-weight: 700; font-size: 14px; transition: background .3s, color .3s; }
.magnetic-btn i { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--deep); }
.hero .magnetic-btn { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); backdrop-filter: blur(14px); }
.hero .magnetic-btn:hover { background: var(--white); color: var(--deep); }
.hero-controls { position: absolute; z-index: 3; left: 3vw; right: 3vw; bottom: 38px; display: flex; align-items: center; gap: 22px; }
.hero-pagination { display: flex; flex: 1; max-width: 580px; gap: 12px; }
.hero-pagination .swiper-pagination-bullet { width: auto; height: auto; flex: 1; border-radius: 0; background: none; opacity: .46; color: #fff; text-align: left; margin: 0 !important; }
.hero-pagination .swiper-pagination-bullet span { font-size: 10px; }
.hero-pagination .swiper-pagination-bullet i { display: block; height: 1px; margin-top: 8px; background: rgba(255,255,255,.55); position: relative; overflow: hidden; }
.hero-pagination .swiper-pagination-bullet i::after { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateX(-100%); }
.hero-pagination .swiper-pagination-bullet-active { opacity: 1; }
.hero-pagination .swiper-pagination-bullet-active i::after { animation: bulletProgress 6.5s linear forwards; }
@keyframes bulletProgress { to { transform: none; } }
.round-arrow { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.32); color: #fff; background: rgba(255,255,255,.06); border-radius: 50%; cursor: pointer; transition: .3s; }
.round-arrow:hover { background: var(--accent); border-color: var(--accent); color: var(--deep); }
.hero-scroll { margin-left: auto; display: flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; }
.hero-scroll i { animation: scrollDown 1.4s ease-in-out infinite; }
@keyframes scrollDown { 50% { transform: translateY(5px); } }

.intro-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; align-items: start; }
.section-kicker { font-size: 12px; text-transform: uppercase; letter-spacing: .22em; color: var(--accent); font-weight: 800; }
.display-title { margin: 18px 0 28px; font-size: clamp(34px, 3.7vw, 64px); line-height: 1.05; letter-spacing: -.038em; font-weight: 500; }
.display-title em { color: var(--accent); font-style: normal; }
.lead-text { font-size: clamp(19px, 2vw, 32px); line-height: 1.45; letter-spacing: -.02em; color: var(--muted); max-width: 900px; }
.body-copy { color: var(--muted); font-size: 16px; line-height: 1.85; max-width: 760px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 62px; }
.stat { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); backdrop-filter: blur(18px); }
.stat strong { display: block; font-size: clamp(38px, 4vw, 70px); line-height: 1; letter-spacing: -.05em; font-weight: 500; color: var(--accent); }
.stat span { display: block; margin-top: 13px; color: var(--muted); }

.image-stage { position: relative; display: block; width: 100%; height: 720px; min-height: 720px; overflow: hidden; border-radius: 28px; }
.image-stage img { position: absolute; top: -10%; left: 0; width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.image-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,15,9,.55), transparent 50%); }
.stage-card { position: absolute; z-index: 2; bottom: 28px; left: 28px; right: 28px; padding: 28px; display: flex; align-items: end; justify-content: space-between; gap: 30px; border: 1px solid rgba(255,255,255,.24); border-radius: 20px; color: #fff; background: rgba(8,20,12,.38); backdrop-filter: blur(18px); }
.stage-card h3 { font-size: clamp(25px, 3vw, 46px); margin: 0; max-width: 570px; line-height: 1.08; }
.stage-card i { font-size: 32px; }

.dark-section { background: var(--deep); color: var(--white); overflow: hidden; }
.dark-section .body-copy { color: rgba(255,255,255,.62); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 48px; }
.section-head .display-title { margin-bottom: 0; max-width: 1000px; }
.slider-arrows { display: flex; gap: 10px; }
.slider-arrows .round-arrow { border-color: rgba(255,255,255,.22); }
.project-swiper { overflow: visible; }
.project-card { position: relative; height: min(68vh, 680px); min-height: 460px; overflow: hidden; border-radius: 22px; background: #18231c; color: #fff; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.project-card:hover img { transform: scale(1.06); }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,10,6,.84), transparent 62%); }
.project-info { position: absolute; z-index: 2; bottom: 0; left: 0; right: 0; padding: 28px; }
.project-info small { color: var(--accent-2); text-transform: uppercase; letter-spacing: .16em; }
.project-info h3 { margin: 10px 0 0; font-size: clamp(24px, 2.4vw, 38px); font-weight: 500; }
.project-index { position: absolute; z-index: 2; top: 20px; right: 20px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: 11px; backdrop-filter: blur(12px); }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 360px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; inset: auto 0 0; height: 0; background: var(--accent); transition: .5s cubic-bezier(.2,.8,.2,1); }
.service-card:hover::before { height: 100%; }
.service-card > * { position: relative; z-index: 1; }
.service-card i { font-size: 38px; color: var(--accent); transition: .4s; }
.service-card h3 { margin: 90px 0 16px; font-size: 25px; }
.service-card p { color: var(--muted); line-height: 1.7; transition: .4s; }
.service-card:hover i, .service-card:hover p { color: var(--deep); }
.service-card:hover h3 { color: var(--deep); }

.page-hero { min-height: 64svh; padding: calc(var(--header-h) + 100px) 0 80px; display: flex; align-items: end; position: relative; overflow: hidden; background: var(--deep); color: var(--white); }
.page-hero-bg { position: absolute; inset: 0; opacity: .58; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,16,10,.72) 0%, rgba(6,16,10,.12) 72%), linear-gradient(0deg, rgba(6,16,10,.6), transparent 62%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { margin: 18px 0 0; font-size: clamp(44px, 5.2vw, 84px); line-height: .98; letter-spacing: -.045em; font-weight: 500; }
.breadcrumb { display: flex; gap: 10px; color: rgba(255,255,255,.58); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.breadcrumb i { color: var(--accent); }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 34px; min-height: 300px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.value-card .number { color: var(--accent); font-size: 12px; }
.value-card h3 { margin: 68px 0 15px; font-size: 27px; }
.value-card p { color: var(--muted); line-height: 1.7; }
.quote { font-size: clamp(25px, 3vw, 48px); line-height: 1.18; letter-spacing: -.035em; font-weight: 500; }
.quote::before { content: "“"; display: block; color: var(--accent); font-size: 1.8em; line-height: .5; margin-bottom: 25px; }
.signature { margin-top: 36px; }
.signature strong, .signature span { display: block; }
.signature span { margin-top: 6px; color: var(--muted); }

.company-card { display: grid; grid-template-columns: .75fr 1.25fr; border-top: 1px solid var(--line); padding: 58px 0; gap: 8vw; }
.company-card h2 { margin: 0; font-size: clamp(32px, 3.2vw, 52px); letter-spacing: -.04em; }
.company-logo { width: min(210px, 70%); height: 74px; object-fit: contain; object-position: left center; margin-bottom: 28px; }
.company-card .company-no { color: var(--accent); font-size: 12px; margin-bottom: 18px; }
.company-card p { color: var(--muted); line-height: 1.85; max-width: 770px; }
.company-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.company-tags span { padding: 9px 14px; border: 1px solid var(--line); border-radius: 100px; font-size: 12px; }

.project-filter { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 42px; }
.subcategory-filter { margin-top: -26px; margin-bottom: 48px; }
.subcategory-filter button { padding: 9px 14px; font-size: 12px; }
.project-filter button { padding: 12px 18px; border: 1px solid var(--line); border-radius: 100px; background: transparent; cursor: pointer; }
.project-filter button.active, .project-filter button:hover { background: var(--accent); color: var(--deep); border-color: var(--accent); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-grid .project-card { height: 560px; }
.project-grid .project-card::after { display: none; }
.project-card-link { position: absolute; inset: 0; z-index: 1; display: block; }
.project-card-link::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,10,6,.84), transparent 62%); pointer-events: none; }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.project-tags span { padding: 5px 9px; border: 1px solid rgba(255,255,255,.25); border-radius: 100px; font-size: 12px; }
.project-detail-intro { display: grid; grid-template-columns: .34fr 1fr; gap: clamp(45px, 8vw, 140px); align-items: start; }
.project-detail-header { position: relative; min-height: 480px; padding: calc(var(--header-h) + 100px) 0 85px; display: flex; align-items: end; overflow: hidden; background: radial-gradient(circle at 78% 25%, rgba(157,203,107,.13), transparent 28%), linear-gradient(145deg, #0d1a12, #06100a); color: var(--white); }
.project-detail-header::after { content: ""; position: absolute; inset: 0; opacity: .05; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, transparent, #000); }
.project-detail-header-content { position: relative; z-index: 2; }
.project-detail-header .breadcrumb { margin-bottom: 50px; }
.project-detail-header h1 { max-width: 1050px; margin: 18px 0 0; font-size: clamp(44px, 5.2vw, 84px); line-height: .98; letter-spacing: -.045em; font-weight: 500; }
.project-detail-header-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.project-detail-header-tags span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.2); border-radius: 100px; color: rgba(255,255,255,.7); font-size: 12px; backdrop-filter: blur(8px); }
.project-detail-orbit { position: absolute; width: 520px; height: 520px; right: -100px; top: -250px; border: 1px solid rgba(157,203,107,.14); border-radius: 50%; box-shadow: 0 0 0 90px rgba(157,203,107,.025), 0 0 0 180px rgba(157,203,107,.015); }
.project-detail-meta { position: sticky; top: 110px; padding-top: 18px; border-top: 1px solid var(--line); }
.project-detail-meta > span { display: block; color: var(--accent); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 10px; }
.project-detail-meta > strong { font-size: clamp(24px, 2.5vw, 38px); font-weight: 500; }
.project-detail-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.project-detail-tags span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 100px; color: var(--muted); font-size: 12px; }
.project-detail-body { color: var(--muted); font-size: clamp(17px, 1.35vw, 21px); line-height: 1.85; max-width: 900px; }
.project-detail-body h2, .project-detail-body h3 { color: var(--text); line-height: 1.15; letter-spacing: -.03em; }
.project-detail-body img { border-radius: 18px; margin: 35px 0; }
.project-gallery-section { background: var(--bg-2); }
.project-detail-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.project-detail-gallery a { position: relative; grid-column: span 4; height: 420px; overflow: hidden; border-radius: 16px; }
.project-detail-gallery a:nth-child(5n + 1), .project-detail-gallery a:nth-child(5n + 2) { grid-column: span 6; height: 520px; }
.project-detail-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.project-detail-gallery a:hover img { transform: scale(1.045); }
.project-detail-gallery a > span { position: absolute; right: 16px; bottom: 16px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(5,15,9,.66); color: #fff; backdrop-filter: blur(10px); }

.reference-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.reference-item { height: 190px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; place-items: center; padding: 25px; color: var(--muted); text-align: center; font-size: 20px; font-weight: 700; transition: .35s; }
.reference-item:hover { background: var(--accent); color: var(--deep); }
.reference-item i { display: block; font-size: 26px; margin-bottom: 12px; }

.catalog-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 6vw; align-items: center; }
.catalog-cover { min-height: 650px; border-radius: 24px; padding: 45px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(145deg, rgba(9,20,12,.1), rgba(7,17,10,.76)), url("https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=1200&q=90") center/cover; color: #fff; box-shadow: var(--shadow); transform: rotate(-2deg); }
.catalog-cover .cover-year { font-size: 12px; letter-spacing: .2em; }
.catalog-cover h2 { font-size: clamp(42px, 5vw, 76px); line-height: .94; letter-spacing: -.05em; margin: 0; }
.catalog-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 35px 0; }
.catalog-meta div { padding: 20px; border: 1px solid var(--line); border-radius: 14px; }
.catalog-meta strong, .catalog-meta span { display: block; }
.catalog-meta span { color: var(--muted); margin-top: 5px; font-size: 13px; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 7vw; }
.contact-list { margin-top: 46px; }
.contact-line { padding: 22px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 32px 1fr; gap: 15px; }
.contact-line i { color: var(--accent); margin-top: 4px; }
.contact-line span { display: block; color: var(--muted); font-size: 12px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .12em; }
.contact-form { padding: clamp(24px, 4vw, 60px); background: var(--surface); border: 1px solid var(--line); border-radius: 24px; backdrop-filter: blur(20px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { position: relative; }
.form-field.full { grid-column: 1 / -1; }
.form-control { width: 100%; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--text); padding: 17px 2px; outline: 0; resize: vertical; transition: .3s; }
.form-control:focus { border-color: var(--accent); }
.form-errors { color: #d86666; margin-top: 5px; font-size: 12px; }
.submit-btn { margin-top: 24px; border: 0; background: var(--accent); color: var(--deep); cursor: pointer; }
.map-wrap { height: 600px; position: relative; }
#contact-map { width: 100%; height: 100%; background: var(--bg-2); }
.map-actions { position: absolute; z-index: 500; left: 3vw; bottom: 3vw; display: flex; gap: 10px; }
.map-actions a { padding: 15px 20px; border-radius: 100px; background: #fff; color: #0a1510; border: 1px solid rgba(10,21,16,.12); box-shadow: 0 12px 34px rgba(0,0,0,.24); backdrop-filter: blur(12px); font-size: 13px; font-weight: 800; }
html[data-theme="dark"] .map-actions a { background: #0a1510; color: #fff; border-color: rgba(255,255,255,.2); }
.map-actions a i { margin-right: 7px; color: var(--accent); }
.leaflet-control-attribution { font-size: 9px !important; }

.site-footer { background: #06100a; color: #f1f7ef; padding: clamp(80px, 9vw, 150px) 0 28px; position: relative; overflow: hidden; }
.footer-orbit { position: absolute; width: 800px; height: 800px; border: 1px solid rgba(157,203,107,.1); border-radius: 50%; right: -300px; top: -440px; box-shadow: 0 0 0 100px rgba(157,203,107,.025), 0 0 0 220px rgba(157,203,107,.015); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 7vw; position: relative; }
.footer-lead h2 { font-size: clamp(30px, 3.8vw, 44px); line-height: 1.02; letter-spacing: -.045em; font-weight: 500; margin: 25px 0 10px; }
.light-btn { border-color: rgba(255,255,255,.16); }
.light-btn:hover { background: var(--accent); color: var(--deep); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; padding-top: 42px; }
.footer-links strong { display: block; color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 22px; }
.footer-links a, .footer-links p { display: block; margin: 12px 0; color: rgba(255,255,255,.62); line-height: 1.6; transition: .3s; }
.footer-links a:hover { color: #fff; transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 90px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 24px; color: rgba(255,255,255,.45); font-size: 12px; }
.developer-credit { color: rgba(255,255,255,.58); transition: color .3s; }
.developer-credit:hover { color: var(--accent); }
#home-intro { scroll-margin-top: 70px; }
.social-row { display: flex; gap: 8px; }
.social-row a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; display: grid; place-items: center; margin: 0; }
.floating-actions { position: fixed; z-index: 900; right: max(16px, 2vw); bottom: max(18px, 2vw); display: flex; flex-direction: column; gap: 9px; align-items: end; }
.fixed-socials { position: fixed; z-index: 920; top: calc(var(--header-h) + 18px); right: max(16px, 2vw); display: flex; flex-direction: column; gap: 8px; align-items: end; }
.fixed-socials a { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--line); border-radius: 100px; background: color-mix(in srgb, var(--surface-solid) 84%, transparent); box-shadow: 0 10px 28px rgba(0,0,0,.14); backdrop-filter: blur(18px); transition: width .35s, color .3s, background .3s; }
.fixed-socials a i { flex: 0 0 42px; text-align: center; }
.fixed-socials a span { max-width: 0; opacity: 0; white-space: nowrap; font-size: 11px; font-weight: 800; transition: .3s; }
.fixed-socials a:hover { width: 135px; background: var(--accent); color: var(--deep); }
.fixed-socials a:hover span { max-width: 82px; opacity: 1; padding-right: 14px; }
.captcha-field { min-height: 78px; padding-top: 12px; overflow: hidden; }
.catalog-unavailable { display: inline-flex; margin-top: 20px; color: var(--muted); font-weight: 700; }
.float-btn { height: 52px; width: 52px; border-radius: 100px; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(0,0,0,.2); color: #fff; transition: width .35s; overflow: hidden; }
.float-btn i { font-size: 20px; flex: 0 0 52px; text-align: center; }
.float-btn span { white-space: nowrap; opacity: 0; max-width: 0; font-size: 12px; font-weight: 700; transition: .3s; }
.float-btn:hover { width: 150px; }
.float-btn:hover span { opacity: 1; max-width: 90px; padding-right: 17px; }
.float-btn.whatsapp { background: #22a765; }
.float-btn.phone { background: var(--accent); color: var(--deep); }
.alert { margin-bottom: 22px; padding: 14px 18px; border-radius: 12px; background: rgba(117,169,67,.14); color: var(--accent); }
