:root {
    --burgundy: #6D0B2A;
    --burgundy-dark: #240812;
    --accent: #C94A6B;
    --surface: #F7F1F3;
    --ink: #181416;
    --muted: #6F666A;
    --white: #FFFFFF;
    --burgundy-rgb: 109, 11, 42;
    --burgundy-dark-rgb: 36, 8, 18;
    --accent-rgb: 201, 74, 107;
    --surface-rgb: 247, 241, 243;
    --white-rgb: 255, 255, 255;
    --whatsapp: #25D366;
    --whatsapp-rgb: 37, 211, 102;
    --error: #B00020;
    --success: #137333;
    --warm: var(--surface);
    --line: rgba(var(--burgundy-rgb), .16);
    --shadow: 0 18px 60px rgba(var(--burgundy-dark-rgb), .12);
    --container: min(1180px, calc(100% - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body { margin: 0; color: var(--ink); background: var(--white); font: 400 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
picture { display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, .button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
.container { width: var(--container); margin-inline: auto; }
.container-wide { width: min(1380px, calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 900px; }
.section-space { padding-block: 110px; }
.section-dark { color: var(--white); background: var(--burgundy-dark); }
.eyebrow { margin-bottom: 18px; color: var(--burgundy); font-size: 1rem; font-weight: 800; letter-spacing: .19em; line-height: 1.35; text-transform: uppercase; }
.section-dark .eyebrow { color: var(--accent); font-size: 1.17rem; }
.section-lines { position: relative; }
.section-lines::before, .section-lines::after { position: absolute; width: min(38vw, 520px); height: 1px; background: var(--burgundy); content: ""; opacity: .75; pointer-events: none; }
.section-lines::before { top: 0; left: 0; }
.section-lines::after { right: 0; bottom: 0; }
.section-heading { max-width: 760px; margin-bottom: 56px; }
.section-heading > p:last-child { color: var(--muted); }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; max-width: none; }
.split-heading > p, .split-heading > a { margin-bottom: 10px; }
.section-actions { display: flex; justify-content: center; margin-top: 48px; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 10000; padding: 12px 18px; color: var(--white); background: var(--burgundy); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 12px 22px; border: 1px solid transparent; border-radius: 8px; cursor: pointer; font-weight: 750; line-height: 1.2; transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--burgundy); border-color: var(--burgundy); }
.button-primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); }
.button-outline { color: var(--white); background: transparent; border-color: rgba(var(--white-rgb), .72); }
.button-bordered { color: var(--burgundy); border-color: var(--burgundy); background: transparent; }
.button-bordered:hover { color: var(--white); background: var(--burgundy-dark); border-color: var(--burgundy-dark); }
.button-light { color: var(--white); border-color: rgba(var(--white-rgb), .6); background: transparent; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; gap: 10px; color: var(--burgundy); font-weight: 800; }
.icon { display: inline-block; width: 1.25em; height: 1.25em; flex: 0 0 auto; overflow: visible; vertical-align: -.2em; }
.icon-fill { fill: currentColor; stroke: none; }
.icon-dot { fill: currentColor; stroke: none; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; padding-top: max(18px, env(safe-area-inset-top)); }
.glass-navbar { display: flex; min-height: 84px; align-items: center; gap: 28px; padding: 12px 20px 12px 30px; color: var(--white); background: rgba(var(--burgundy-dark-rgb), .78); border: 1px solid rgba(var(--white-rgb), .38); border-radius: 24px; box-shadow: 0 16px 42px rgba(var(--burgundy-dark-rgb), .32); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.brand { display: inline-flex; flex: 0 0 218px; align-items: center; }
.brand img { width: 218px; height: auto; }
.site-navigation { display: flex; flex: 1; align-items: center; justify-content: center; gap: clamp(18px, 2.3vw, 38px); }
.site-navigation a { position: relative; display: inline-flex; min-height: 44px; align-items: center; font-size: .95rem; font-weight: 650; white-space: nowrap; }
.site-navigation a::after { position: absolute; right: 0; bottom: 5px; left: 0; height: 2px; background: var(--accent); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.site-navigation a:hover::after, .site-navigation a.active::after { transform: scaleX(1); }
.header-actions { display: flex; gap: 12px; }
.header-actions .button { min-height: 46px; padding-inline: 18px; font-size: .88rem; white-space: nowrap; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 11px; border: 1px solid rgba(var(--white-rgb), .5); border-radius: 8px; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--white); }
.nav-overlay { position: fixed; inset: 0; z-index: 990; background: rgba(var(--burgundy-dark-rgb), .58); }

.home-hero { position: relative; display: grid; min-height: 100vh; min-height: 100svh; min-height: 100dvh; align-items: center; overflow: hidden; padding: clamp(120px, 15vh, 160px) 0 clamp(44px, 8vh, 90px); background: var(--burgundy-dark); }
.home-hero::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(var(--burgundy-dark-rgb), .97) 0%, rgba(var(--burgundy-dark-rgb), .91) 34%, rgba(var(--burgundy-dark-rgb), .55) 62%, rgba(var(--burgundy-dark-rgb), .2) 100%); content: ""; }
.home-hero::after { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(var(--burgundy-dark-rgb), .12), transparent 60%, rgba(var(--burgundy-dark-rgb), .56)); content: ""; pointer-events: none; }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 800px); align-items: center; }
.hero-copy { max-width: 800px; color: var(--white); text-shadow: 0 3px 22px rgba(var(--burgundy-dark-rgb), .62); }
.hero-copy h1 { margin-bottom: 28px; font-size: clamp(3rem, 5.7vw, 5.55rem); }
.hero-copy h1 em { color: var(--accent); font-family: Georgia, serif; font-weight: 500; }
.hero-copy h1::first-line { color: var(--white); }
.hero-lead { max-width: 680px; margin-bottom: 34px; color: rgba(var(--white-rgb), .78); font-size: clamp(1.05rem, 1.7vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-service-stack { display: grid; gap: 14px; }
.hero-service-card { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: center; min-height: 92px; padding: 18px 22px; background: rgba(var(--white-rgb), .07); border: 1px solid rgba(var(--white-rgb), .2); transform: translateX(calc(var(--delay) * 10px)); transition: background-color .2s ease, transform .2s ease; }
.hero-service-card:hover { background: rgba(var(--white-rgb), .13); transform: translateX(calc(var(--delay) * 10px + 5px)); }
.hero-service-card span { color: var(--accent); font: 700 1.35rem/1 Georgia, serif; }
.hero-service-card strong { font-size: 1.05rem; }
.hero-orbit { position: absolute; border: 1px solid rgba(var(--white-rgb), .1); border-radius: 50%; }
.hero-orbit-one { width: 560px; height: 560px; right: -180px; top: 80px; }
.hero-orbit-two { width: 320px; height: 320px; right: 70px; bottom: -140px; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; z-index: 2; width: 30px; height: 48px; border: 2px solid rgba(var(--white-rgb), .8); border-radius: 18px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; top: 9px; left: 50%; width: 4px; height: 8px; border-radius: 5px; background: var(--white); transform: translateX(-50%); animation: scrollCue 1.8s infinite; }
@keyframes scrollCue { 0%,100% { transform: translate(-50%, 0); opacity: .5; } 50% { transform: translate(-50%, 12px); opacity: 1; } }

.home-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.home-service-card { position: relative; min-height: 300px; padding: 30px 26px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 10px 30px rgba(var(--burgundy-dark-rgb), .05); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.home-service-card:nth-child(4n+2) { background: rgba(var(--surface-rgb), .82); }
.home-service-card:nth-child(4n+3) { background: rgba(var(--surface-rgb), .68); }
.home-service-card:nth-child(4n+4) { background: rgba(var(--surface-rgb), .92); }
.home-service-card:hover { z-index: 1; border-color: var(--burgundy); box-shadow: 0 18px 42px rgba(var(--burgundy-rgb), .14); transform: translateY(-5px); }
.service-accent, .home-service-card:nth-child(even) .service-accent { display: block; width: 58px; height: 10px; background: var(--burgundy); border-radius: 999px; }
.home-service-card h3 { margin: 48px 0 16px; }
.home-service-card p { color: var(--muted); font-size: .93rem; }
.home-service-card b { position: absolute; right: 26px; bottom: 24px; color: var(--burgundy); font-size: 1.5rem; }

.works-section { background: linear-gradient(180deg, var(--white), var(--surface)); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.single-work-grid { grid-template-columns: minmax(0, 850px); justify-content: center; }
.work-card { background: var(--white); border: 1px solid var(--line); box-shadow: 0 12px 40px rgba(var(--burgundy-dark-rgb), .06); }
.work-card picture { aspect-ratio: 16 / 10; overflow: hidden; background: var(--warm); }
.work-card img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.work-card:hover img { transform: scale(1.03); }
.work-card > div { padding: 26px; }
.work-card h2 { margin-bottom: 14px; font-size: 1.65rem; }
.work-card p { color: var(--muted); }
.status-badge { display: inline-flex; min-height: 36px; align-items: center; padding: 7px 13px; color: var(--burgundy); background: rgba(var(--burgundy-rgb), .08); border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.process-section { padding-block: 92px; background: var(--burgundy-dark); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.process-grid li { position: relative; min-height: 210px; padding: 30px; border: 1px solid rgba(var(--white-rgb), .18); border-right: 0; }
.process-grid li:last-child { border-right: 1px solid rgba(var(--white-rgb), .18); }
.process-grid span { color: var(--accent); font: 700 1.4rem/1 Georgia, serif; }
.process-grid h3 { margin: 42px 0 10px; }
.process-grid p { margin: 0; color: rgba(var(--white-rgb), .78); }
.stats-section { background: var(--surface); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { display: grid; min-height: 190px; align-content: center; gap: 12px; padding: 30px; color: var(--white); background: var(--burgundy-dark); border: 1px solid rgba(var(--accent-rgb), .42); border-radius: 14px; box-shadow: 0 18px 42px rgba(var(--burgundy-dark-rgb), .12); }
.stat-value { color: var(--accent); font: 700 clamp(2.7rem, 5vw, 4.5rem)/1 Georgia, serif; letter-spacing: -.04em; }
.stat-card > span { color: rgba(var(--white-rgb), .78); font-weight: 750; }
.stats-section.is-counter-ready .stat-card { opacity: 0; transform: translateY(18px) scale(.98); transition: opacity .5s ease, transform .5s ease; }
.stats-section.is-counter-ready.is-visible .stat-card { opacity: 1; transform: none; }
.stats-section.is-counter-ready.is-visible .stat-card:nth-child(2) { transition-delay: .08s; }
.stats-section.is-counter-ready.is-visible .stat-card:nth-child(3) { transition-delay: .16s; }
.stats-section.is-counter-ready.is-visible .stat-card:nth-child(4) { transition-delay: .24s; }
.about-grid, .about-story { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: center; }
.about-monogram { display: grid; aspect-ratio: 1; place-items: center; color: var(--burgundy); background: var(--warm); border: 1px solid var(--line); }
.about-monogram span { font: 700 clamp(7rem, 18vw, 14rem)/1 Georgia, serif; letter-spacing: -.12em; opacity: .14; }
.about-grid h2, .about-story h2 { max-width: 760px; }
.about-grid p, .about-story p { color: var(--muted); }
.compact-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.compact-blog-grid picture { aspect-ratio: 16 / 10; margin-bottom: 22px; overflow: hidden; background: var(--warm); }
.compact-blog-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.compact-blog-grid article:hover img { transform: scale(1.03); }
.compact-blog-grid h3 { margin-bottom: 0; }

.inner-main { padding-top: 124px; }
.page-intro { padding: 92px 0 80px; text-align: center; background: var(--warm); }
.page-intro h1 { margin-bottom: 22px; font-size: clamp(2.5rem, 5vw, 4.8rem); }
.page-intro p:last-child { max-width: 720px; margin-inline: auto; color: var(--muted); font-size: 1.08rem; }
.breadcrumb { margin-bottom: 44px; font-size: .9rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; justify-content: inherit; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumb li:not(:last-child)::after { margin-left: 8px; color: var(--burgundy); content: "/"; }
.breadcrumb a { color: var(--muted); }

.service-list { display: grid; gap: 30px; }
.service-panel { position: relative; display: grid; grid-template-columns: 1fr 1.12fr; min-height: 420px; border: 1px solid var(--line); overflow: hidden; }
.service-panel.reverse .service-copy { order: 2; }
.service-panel.reverse .service-visual { order: 1; }
.service-copy { display: flex; flex-direction: column; justify-content: center; padding: 64px; }
.service-copy h2 { font-size: clamp(2rem, 3.4vw, 3.35rem); }
.service-copy p { color: var(--muted); }
.service-visual { position: relative; min-height: 360px; padding: 40px; }
.service-visual picture { position: relative; z-index: 2; height: 100%; overflow: hidden; box-shadow: var(--shadow); }
.service-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-panel:hover .service-visual img { transform: scale(1.03); }
.image-block { position: absolute; top: 22%; right: 15px; bottom: 13%; left: 32%; z-index: 1; background: rgba(var(--accent-rgb), .2); transition: transform .35s ease; }
.service-panel.reverse .image-block { right: 32%; left: 15px; }
.service-panel:hover .image-block { transform: translate(8px, -8px); }

.service-hero, .project-hero, .reference-hero { padding: 70px 0 90px; background: var(--warm); }
.service-hero-grid, .detail-split { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: center; }
.service-hero h1, .project-hero h1, .reference-hero h1 { font-size: clamp(2.7rem, 5vw, 5rem); }
.service-hero-visual { position: relative; padding: 28px; }
.service-hero-visual picture { position: relative; z-index: 2; aspect-ratio: 16 / 10; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.service-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.corner-frame { position: absolute; inset: 0; border: 2px solid var(--burgundy); clip-path: polygon(0 0, 18% 0, 18% 2px, 2px 2px, 2px 18%, 0 18%, 0 0, 100% 0, 100% 18%, calc(100% - 2px) 18%, calc(100% - 2px) 2px, 82% 2px, 82% 0, 100% 0, 100% 100%, 82% 100%, 82% calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), calc(100% - 2px) 82%, 100% 82%, 100% 100%, 0 100%, 0 82%, 2px 82%, 2px calc(100% - 2px), 18% calc(100% - 2px), 18% 100%, 0 100%); }
.service-body { display: grid; gap: 96px; }
.prose { max-width: 880px; }
.article-content .prose, .legal-content .prose { max-width: none; }
.prose h2 { margin: 72px 0 22px; padding-top: 22px; border-top: 1px solid var(--burgundy); font-size: clamp(1.7rem, 3vw, 2.45rem); }
.prose h3 { margin: 38px 0 10px; }
.prose p, .prose li { color: var(--muted); }
.prose p { margin-bottom: 22px; }
.prose ul, .prose ol { padding-left: 24px; }
.prose a { color: var(--burgundy); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.related-work, .related-services, .related-posts { padding-top: 72px; }
.related-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related-service-grid a { min-height: 240px; padding: 28px; border: 1px solid var(--line); }
.related-service-grid p { color: var(--muted); }
.related-service-grid span { color: var(--burgundy); font-weight: 800; }
.faq-section { padding-block: 72px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { display: flex; width: 100%; min-height: 64px; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; border: 0; color: var(--ink); background: transparent; cursor: pointer; text-align: left; font-weight: 750; }
.faq-answer { padding: 0 44px 22px 0; }
.faq-answer p { margin: 0; color: var(--muted); }

.blog-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 40px; }
.blog-filters button { min-height: 44px; padding: 9px 18px; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: 6px; cursor: pointer; }
.blog-filters button.active { color: var(--white); background: var(--burgundy); border-color: var(--burgundy); }
.featured-post { position: relative; min-height: 540px; display: grid; align-items: end; overflow: hidden; }
.featured-post-image, .featured-post-image img { position: absolute; inset: 0; width: 100%; height: 100%; }
.featured-post-image img { object-fit: cover; }
.featured-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(var(--burgundy-dark-rgb), .9), rgba(var(--burgundy-dark-rgb), .2)); }
.featured-copy { position: relative; z-index: 2; padding-bottom: 70px; }
.featured-copy h2 { max-width: 840px; margin-bottom: 18px; font-size: clamp(2.3rem, 5vw, 4.5rem); }
.featured-copy p:last-child { color: rgba(var(--white-rgb), .78); }
.blog-list { display: grid; gap: 70px; }
.blog-row { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; padding-bottom: 70px; border-bottom: 1px solid var(--line); }
.blog-row.reverse .blog-image { order: 2; }
.blog-row.reverse .blog-copy { order: 1; }
.blog-image picture { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-row:hover .blog-image img { transform: scale(1.03); }
.blog-copy h2 { font-size: clamp(1.8rem, 3.4vw, 3rem); }
.blog-copy > p:not(.eyebrow) { color: var(--muted); }
.reading-time { font-size: .88rem; }
.article-shell { max-width: 1260px; }
.article-header { max-width: 960px; margin-bottom: 48px; }
.article-header h1 { font-size: clamp(2.5rem, 5vw, 4.7rem); }
.article-meta { display: flex; gap: 28px; color: var(--muted); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 64px; align-items: start; }
.article-cover { margin-bottom: 56px; overflow: hidden; }
.article-cover img { width: 100%; }
.article-toc { position: sticky; top: 128px; padding: 26px; border: 1px solid var(--line); background: var(--white); }
.article-toc ol { margin: 0 0 28px; padding-left: 20px; }
.article-toc li { margin-bottom: 11px; color: var(--muted); font-size: .9rem; }
.article-toc .toc-level-3 { margin-left: 14px; }
.article-toc a:hover { color: var(--burgundy); }
.toc-toggle { display: block; width: 100%; margin-bottom: 18px; padding: 0 0 14px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; font-weight: 800; pointer-events: none; }

.project-hero picture, .reference-logo-stage picture, .identity-stage picture, .device-stage picture { background: var(--white); }
.project-hero picture img, .reference-logo-stage img, .identity-stage img, .device-stage img { width: 100%; max-height: 650px; object-fit: contain; }
.project-story, .reference-story { display: grid; gap: 90px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.feature-grid article { min-height: 240px; padding: 28px; border-right: 1px solid var(--line); }
.feature-grid article:last-child { border-right: 0; }
.feature-grid span { color: var(--burgundy); font: 700 1.3rem/1 Georgia, serif; }
.feature-grid h3 { margin-top: 44px; }
.feature-grid p { color: var(--muted); }
.process-inline, .live-site-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 42px; background: var(--warm); border: 1px solid var(--line); }
.provided-services ul { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border: 1px solid var(--line); }
.provided-services li { display: grid; min-height: 100px; place-items: center; padding: 20px; border-right: 1px solid var(--line); text-align: center; font-weight: 750; }
.provided-services li:last-child { border-right: 0; }
.identity-stage, .device-stage { padding: 40px; background: var(--warm); border: 1px solid var(--line); }
.reference-studyoay .reference-hero, .reference-studyoay .identity-stage { color: var(--white); background: var(--burgundy-dark); }
.reference-studyoay .reference-hero .breadcrumb a, .reference-studyoay .reference-hero p { color: rgba(var(--white-rgb), .78); }
.reference-bekas .reference-hero { background: var(--surface); }
.reference-bekas .eyebrow { color: var(--burgundy); }
.reference-bekas-group .reference-hero { background: var(--surface); }
.live-preview-placeholder { display: grid; grid-template-columns: minmax(260px,.6fr) 1fr; gap: 60px; align-items: center; padding: 50px; background: var(--burgundy-dark); color: var(--white); }
.live-preview-placeholder img { max-height: 380px; margin: auto; object-fit: contain; }
.construction-note { min-height: 320px; display: grid; place-items: center; align-content: center; gap: 20px; background: var(--warm); border: 1px solid var(--line); text-align: center; }
.reference-pagination { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.reference-pagination a { display: flex; min-height: 130px; flex-direction: column; justify-content: center; padding: 28px; }
.reference-pagination a + a { border-left: 1px solid var(--line); text-align: right; }
.reference-pagination small { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.reference-pagination strong { margin-top: 10px; font-size: 1.35rem; }

.contact-section { padding: 36px 0 58px; background: linear-gradient(135deg, var(--white) 0%, rgba(var(--surface-rgb), .72) 48%, var(--surface) 100%); }
.contact-page .breadcrumb { margin-bottom: 24px; }
.contact-intro { max-width: 900px; margin-bottom: 34px; }
.contact-intro .eyebrow { margin-bottom: 12px; }
.contact-intro h1 { margin-bottom: 18px; font-size: clamp(2.35rem, 4.4vw, 4.15rem); }
.contact-intro > p:last-child { max-width: 720px; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 40px; align-items: start; }
.contact-grid h2 { padding-bottom: 14px; border-bottom: 1px solid var(--burgundy); font: 700 2rem/1.2 Georgia, serif; letter-spacing: -.02em; }
.contact-info-panel, .contact-grid > section:last-child { padding: 30px; background: rgba(var(--white-rgb), .88); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 18px 52px rgba(var(--burgundy-rgb), .09); }
.contact-cards { display: grid; gap: 12px; }
.contact-cards > * { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: center; min-height: 82px; padding: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; }
.contact-icon { display: grid !important; width: 52px; height: 52px; place-items: center; color: var(--white); background: var(--burgundy); border-radius: 10px; }
.contact-icon .icon { width: 25px; height: 25px; }
.contact-cards span { display: flex; flex-direction: column; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid > div { display: grid; gap: 7px; }
.form-full { grid-column: 1 / -1; }
.contact-form label { font-size: .88rem; font-weight: 750; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 7px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus-visible, .contact-form select:focus-visible, .contact-form textarea:focus-visible { border-color: var(--burgundy); outline: 0; box-shadow: 0 0 0 4px rgba(var(--burgundy-rgb), .14); }
.contact-form textarea { resize: vertical; }
.contact-form [aria-invalid="true"] { border-color: var(--error) !important; box-shadow: 0 0 0 2px rgba(var(--burgundy-rgb), .12); }
.consent-field { display: grid !important; grid-template-columns: 22px 1fr; align-items: start; gap: 10px !important; }
.consent-field input { width: 20px; height: 20px; margin: 2px 0 0; }
.consent-field a { color: var(--burgundy); text-decoration: underline; }
.form-submit { width: 100%; margin-top: 20px; }
.form-status { min-height: 28px; margin-top: 12px; font-weight: 700; }
.form-status.success { color: var(--success); }
.form-status.error, .field-error { color: var(--error); }
.field-error { font-size: .82rem; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.map-section { margin-top: 28px; padding: 24px; background: rgba(var(--white-rgb), .9); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 52px rgba(var(--burgundy-rgb), .09); }
.map-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.map-frame { min-height: 330px; margin-top: 18px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.map-section iframe { display: block; width: 100%; min-height: 330px; height: 330px; border: 0; }
.map-fallback { margin: 14px 0 0; color: var(--muted); font-size: .92rem; }
.map-fallback a { color: var(--burgundy); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.legal-content h1 { margin: 28px 0; font-size: clamp(2.4rem, 5vw, 4.4rem); }
.legal-notice { margin-bottom: 48px; padding: 20px; color: var(--ink); background: var(--surface); border-left: 4px solid var(--burgundy); }
.not-found-main { display: grid; min-height: 75vh; align-items: center; padding: 160px 0 80px; text-align: center; }
.not-found-main h1 { font-size: clamp(2.8rem, 7vw, 6.4rem); }
.not-found-main p { color: rgba(var(--white-rgb), .78); }

.footer-cta { position: relative; z-index: 2; padding: 0 0 0; background: var(--white); }
.footer-cta-inner { display: grid; grid-template-columns: 110px 1fr auto; gap: 36px; align-items: center; min-height: 150px; padding: 24px 36px; background: var(--warm); border: 1px solid var(--line); box-shadow: 0 14px 48px rgba(var(--burgundy-dark-rgb), .09); }
.footer-cta-icon { display: grid; width: 88px; height: 88px; place-items: center; color: var(--burgundy); background: rgba(var(--accent-rgb), .14); border-radius: 50%; }
.footer-cta-icon .icon { width: 42px; height: 42px; }
.footer-cta h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.site-footer { padding: 78px 0 20px; color: var(--white); background: var(--burgundy-dark); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .72fr 1.1fr 1fr; gap: 52px; padding-bottom: 56px; }
.footer-grid h2 { margin-bottom: 24px; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-brand img { width: 225px; margin-bottom: 24px; }
.footer-brand p, .footer-contact span { color: rgba(var(--white-rgb), .78); }
.social-links { display: flex; gap: 12px; margin: 22px 0; }
.social-links a { display: grid; width: 44px; height: 44px; place-items: center; color: var(--accent); border: 1px solid rgba(var(--white-rgb), .35); border-radius: 50%; }
.social-links a:hover { color: var(--white); border-color: var(--accent); }
.footer-login { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; padding: 8px 14px; border: 1px solid rgba(var(--white-rgb), .5); }
.footer-links, .footer-contact { display: grid; gap: 10px; font-style: normal; }
.footer-links a, .footer-contact a { color: rgba(var(--white-rgb), .78); }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact a, .footer-contact span { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .icon { width: 18px; height: 18px; margin-top: 5px; color: var(--accent); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(var(--white-rgb), .18); color: rgba(var(--white-rgb), .72); font-size: .82rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-bottom button { padding: 0; color: inherit; background: transparent; border: 0; cursor: pointer; font: inherit; }
.floating-whatsapp { position: fixed; right: max(24px, env(safe-area-inset-right)); bottom: max(24px, env(safe-area-inset-bottom)); z-index: 950; display: grid; width: 56px; height: 56px; place-items: center; color: var(--white); background: var(--whatsapp); border: 2px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 8px rgba(var(--whatsapp-rgb), .16), 0 0 34px rgba(var(--whatsapp-rgb), .7); }
.floating-whatsapp .icon { width: 31px; height: 31px; }
.floating-whatsapp:focus-visible { outline: 4px solid var(--white); outline-offset: 4px; box-shadow: 0 0 0 9px var(--burgundy-dark), 0 0 34px rgba(var(--whatsapp-rgb), .7); }
.cookie-banner { position: fixed; right: 24px; bottom: 24px; left: 24px; z-index: 1200; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; max-width: 1120px; margin: auto; padding: 24px; color: var(--white); background: var(--burgundy-dark); border: 1px solid rgba(var(--white-rgb), .35); box-shadow: 0 18px 70px rgba(var(--burgundy-dark-rgb), .5); }
.cookie-banner[hidden], .cookie-preferences[hidden] { display: none !important; }
.cookie-banner h2 { margin-bottom: 6px; font-size: 1.25rem; }
.cookie-banner p { margin: 0; color: rgba(var(--white-rgb), .78); }
.cookie-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.cookie-actions .button { min-width: 118px; }
.cookie-preferences { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid rgba(var(--white-rgb), .25); }
.cookie-preferences label { margin-right: 24px; }
.cookie-preferences .button { margin-left: 10px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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