:root {
  --ink: #090a0a;
  --ink-soft: #101211;
  --panel: #151715;
  --panel-light: #1b1d1a;
  --gold: #c7a44a;
  --gold-bright: #e0c16c;
  --caption-gold: #dcbc64;
  --cream: #f1ede2;
  --muted: #9c998f;
  --caption: #b9b5aa;
  --line: rgba(199, 164, 74, 0.2);
  --line-soft: rgba(241, 237, 226, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Barlow", sans-serif;
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 14%, rgba(199, 164, 74, 0.08), transparent 25rem),
    radial-gradient(circle at 8% 82%, rgba(199, 164, 74, 0.04), transparent 28rem),
    var(--ink);
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: var(--gold); color: var(--ink); padding: .7rem 1rem; text-decoration: none; font-weight: 600; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 10, 0.88);
  backdrop-filter: blur(18px);
}
.nav-shell { width: min(calc(100% - 4rem), var(--max)); min-height: 84px; margin: auto; display: flex; align-items: center; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; flex-shrink: 0; text-decoration: none; }
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid rgba(199, 164, 74, .55);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(199, 164, 74, .05);
}
.brand-type { font: 700 1.25rem/1 var(--serif); letter-spacing: .14em; color: var(--gold); }
.brand-type span { color: var(--cream); font-weight: 600; }
.nav-links { margin: 0 0 0 auto; padding: 0; display: flex; align-items: center; gap: 1.7rem; list-style: none; }
.nav-link, .dropdown-toggle { border: 0; background: none; padding: .6rem 0; color: var(--caption); text-decoration: none; text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; cursor: pointer; transition: color .25s ease; }
.nav-link:hover, .nav-link.active, .dropdown-toggle:hover, .dropdown-toggle.active { color: var(--gold-bright); }
.nav-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: .45rem; }
.dropdown-toggle::after { content: ""; width: 5px; height: 5px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  width: 295px;
  padding: .7rem;
  margin: 0;
  list-style: none;
  background: #121411;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-menu a { display: block; padding: .62rem .75rem; color: var(--caption); text-decoration: none; font-size: .82rem; border-bottom: 1px solid var(--line-soft); transition: color .2s, background .2s; }
.dropdown-menu li:last-child a { border-bottom: 0; }
.dropdown-menu a:hover, .dropdown-menu a.active { color: var(--gold-bright); background: rgba(199,164,74,.05); }
.nav-cta { flex-shrink: 0; }
.language-switcher { position: relative; flex-shrink: 0; display: flex; align-items: center; gap: .45rem; height: 38px; padding: 0 .65rem; border: 1px solid var(--line); color: var(--caption-gold); transition: border-color .2s ease, color .2s ease; }
.language-switcher:hover, .language-switcher:focus-within { border-color: var(--gold); color: var(--gold-bright); }
.language-switcher svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.language-switcher select { appearance: none; border: 0; padding: 0 1rem 0 0; background: transparent; color: inherit; text-transform: uppercase; letter-spacing: .1em; font: 500 .65rem/1 var(--sans); cursor: pointer; }
.language-switcher select:focus { outline: 0; }
.language-switcher::after { content: ""; position: absolute; right: .65rem; width: 5px; height: 5px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); pointer-events: none; }
.language-switcher option { background: #111313; color: var(--cream); }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; color: var(--cream); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .25s, opacity .25s; }
.menu-toggle.open span { opacity: 0; }
.menu-toggle.open::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open::after { transform: translateY(-6px) rotate(-45deg); }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: .85rem 1.6rem; border: 1px solid var(--gold); background: var(--gold); color: var(--ink); text-decoration: none; text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 600; cursor: pointer; transition: transform .22s ease, background .22s ease, color .22s ease; }
.button:hover { transform: translateY(-2px); background: var(--gold-bright); }
.button-outline { background: transparent; color: var(--cream); border-color: var(--line); }
.button-outline:hover { border-color: var(--gold); color: var(--gold-bright); background: transparent; }
.button-small { min-height: 40px; padding: .65rem 1.15rem; font-size: .64rem; }

.page-main { min-height: 65vh; }
.shell { width: min(calc(100% - 8rem), var(--max)); margin-inline: auto; }
.section { padding: 7rem 0; position: relative; }
.section-dark { background: var(--ink-soft); border-block: 1px solid var(--line-soft); }
.eyebrow { margin: 0 0 1rem; color: var(--gold-bright); text-transform: uppercase; letter-spacing: .32em; font-size: .68rem; font-weight: 500; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); }
h1 { margin-bottom: 1.5rem; font-size: clamp(3.8rem, 8vw, 7.5rem); font-weight: 300; line-height: .95; letter-spacing: -.025em; }
h1 em, h2 em { color: var(--gold-bright); font-style: normal; font-weight: 600; }
h2 { margin-bottom: 1.4rem; font-size: clamp(2.6rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.02; }
h3 { margin-bottom: .8rem; font-size: 1.75rem; font-weight: 600; line-height: 1.15; }
.lead { max-width: 660px; color: #b2afa5; font-size: 1.07rem; line-height: 1.85; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3.6rem; }
.section-head > * { margin-bottom: 0; }
.rule { height: 1px; margin: 0; border: 0; background: linear-gradient(90deg, transparent, rgba(199,164,74,.5), transparent); }

.home-hero { min-height: 100vh; display: flex; align-items: center; padding: 11rem 0 7rem; position: relative; overflow: hidden; }
.home-hero::before { content: ""; position: absolute; inset: 0; opacity: .035; background-image: linear-gradient(var(--gold) 1px, transparent 1px), linear-gradient(90deg, var(--gold) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to right, black, transparent 88%); }
.hero-copy { position: relative; max-width: 820px; }
.hero-copy .lead { max-width: 690px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-note { position: absolute; right: max(4rem, calc((100vw - var(--max))/2)); bottom: 5.5rem; width: 185px; padding: 1.3rem 0 0 1.3rem; border-left: 1px solid var(--gold); border-top: 1px solid var(--gold); color: var(--caption); text-transform: uppercase; letter-spacing: .17em; font-size: .62rem; }
.hero-note strong { display: block; margin-bottom: .35rem; color: var(--gold-bright); font: 600 2.25rem/1 var(--serif); letter-spacing: 0; text-transform: none; }
.reveal { opacity: 0; transform: translateY(18px); animation: reveal .75s forwards; }
.delay-1 { animation-delay: .12s; } .delay-2 { animation-delay: .24s; } .delay-3 { animation-delay: .36s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

.page-hero { padding: 13rem 0 6rem; position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero::after { content: attr(data-number); position: absolute; right: 4%; bottom: -3.2rem; color: rgba(199,164,74,.045); font: 600 clamp(9rem, 22vw, 20rem)/1 var(--serif); pointer-events: none; }
.page-hero h1 { max-width: 900px; font-size: clamp(3.6rem, 7vw, 6.5rem); }
.page-hero .lead { max-width: 720px; }
.breadcrumbs { display: flex; gap: .55rem; margin-bottom: 2rem; color: var(--caption); text-transform: uppercase; letter-spacing: .16em; font-size: .63rem; }
.breadcrumbs a { color: var(--caption-gold); text-decoration: none; }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card { min-width: 0; min-height: 330px; background: var(--panel); text-decoration: none; position: relative; overflow: hidden; transition: background .25s; }
.service-card::after { content: "↗"; position: absolute; right: 2rem; bottom: 1.7rem; color: var(--gold); font-size: 1.25rem; transition: transform .25s; }
.service-card:hover { background: var(--panel-light); }
.service-card:hover::after { transform: translate(4px, -4px); }
.service-card-media { display: block; aspect-ratio: 16 / 7; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--ink-soft); }
.service-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,10,10,.02), rgba(9,10,10,.42)), linear-gradient(110deg, rgba(199,164,74,.13), transparent 48%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.025); pointer-events: none; }
.service-card-media img { width: 100%; height: 100%; display: block; object-fit: cover; filter: saturate(.78) contrast(1.06) brightness(.88); transition: transform .55s ease, filter .55s ease; }
.service-card:hover .service-card-media img { transform: scale(1.035); filter: saturate(.9) contrast(1.04) brightness(.98); }
.service-card-content { display: block; min-height: 265px; padding: 2.4rem; }
.card-number { display: block; margin-bottom: 3.2rem; color: var(--caption-gold); font: 600 .68rem/1 var(--sans); letter-spacing: .25em; }
.service-card p { max-width: 450px; color: var(--muted); font-size: .92rem; }
.service-card h3 { max-width: 470px; }

.division-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.division-item { padding: 2rem; border-right: 1px solid var(--line); }
.division-item:last-child { border-right: 0; }
.division-item span { display: block; margin-bottom: .7rem; color: var(--caption-gold); letter-spacing: .2em; font-size: .62rem; }
.division-item strong { font: 600 1.25rem/1.2 var(--serif); }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 7rem; align-items: start; }
.split-reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.feature-box { padding: 3rem; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(199,164,74,.06), transparent 45%); position: relative; }
.feature-box::before { content: ""; position: absolute; top: -1px; left: 2rem; width: 28%; height: 2px; background: var(--gold); }
.statement { margin: 1.7rem 0 0; padding-left: 1.5rem; border-left: 2px solid var(--gold); color: #bab6ab; font: italic 1.4rem/1.55 var(--serif); }
.fact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.fact strong { display: block; color: var(--gold-bright); font: 500 2.3rem/1 var(--serif); }
.fact span { color: var(--caption); text-transform: uppercase; letter-spacing: .15em; font-size: .62rem; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value-card { padding: 2.4rem; background: var(--panel); }
.value-card span { display: block; margin-bottom: 2rem; color: var(--caption-gold); font-size: .65rem; letter-spacing: .22em; }
.value-card p { margin-bottom: 0; color: var(--muted); }

.check-list { margin: 2rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 1rem 0 1rem 2rem; border-bottom: 1px solid var(--line-soft); color: #b7b3a8; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 1.55rem; width: 10px; height: 5px; border-left: 1px solid var(--gold); border-bottom: 1px solid var(--gold); transform: rotate(-45deg); }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 6rem; }
.detail-layout h2 { font-size: clamp(2.4rem, 4vw, 3.7rem); }
.sidebar { position: sticky; top: 112px; }
.sidebar-card { padding: 2rem; border: 1px solid var(--line); background: var(--panel); }
.sidebar-card h3 { font-size: 1.35rem; }
.sidebar-card p { color: var(--muted); font-size: .9rem; }
.sidebar-card .button { width: 100%; margin-top: .6rem; }
.mini-nav { margin: 0 0 1.5rem; padding: 0; list-style: none; border: 1px solid var(--line); }
.mini-nav a { display: block; padding: .7rem 1rem; border-bottom: 1px solid var(--line-soft); color: var(--caption); text-decoration: none; font-size: .78rem; }
.mini-nav li:last-child a { border-bottom: 0; }
.mini-nav a:hover, .mini-nav a.active { color: var(--gold-bright); background: rgba(199,164,74,.05); }

.faq-list { max-width: 920px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 1.5rem 3rem 1.5rem 0; list-style: none; cursor: pointer; position: relative; font: 500 1.25rem/1.3 var(--serif); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .4rem; top: 1.2rem; color: var(--gold); font: 300 1.7rem/1 var(--sans); }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 3rem 1.6rem 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 6rem; align-items: start; }
.contact-details { margin-top: 2.5rem; }
.contact-line { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.contact-line span { color: var(--caption-gold); text-transform: uppercase; letter-spacing: .17em; font-size: .62rem; }
.contact-line a, .contact-line address { color: #bbb7ad; text-decoration: none; font-style: normal; }
.contact-line a:hover { color: var(--gold-bright); }
.instagram-link { display: inline-flex; align-items: center; gap: .65rem; width: fit-content; color: var(--caption); text-decoration: none; transition: color .2s ease; }
.instagram-link svg { width: 1.15rem; height: 1.15rem; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.55; }
.instagram-link .instagram-icon-dot { fill: currentColor; stroke: none; }
.instagram-link:hover { color: var(--gold-bright); }
.instagram-link:focus-visible { outline: 1px solid var(--gold); outline-offset: 5px; }
.contact-form { padding: 2.6rem; border: 1px solid var(--line); background: var(--panel); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; margin-bottom: .5rem; color: var(--caption-gold); text-transform: uppercase; letter-spacing: .16em; font-size: .62rem; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: #0e100f; color: var(--cream); padding: .9rem 1rem; outline: none; transition: border-color .2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { min-height: 145px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%; background-size: 5px 5px; background-repeat: no-repeat; }
.honeypot { position: absolute; left: -9999px; }
.form-status { min-height: 1.5rem; margin: 1rem 0 0; color: var(--caption); font-size: .85rem; }
.form-status.success { color: #b9cf9d; }
.form-status.error { color: #e4a39d; }

.legal { max-width: 900px; }
.legal h2 { margin-top: 3.5rem; font-size: 2rem; }
.legal h3 { margin-top: 2rem; font-size: 1.35rem; }
.legal p, .legal li { color: #aaa79e; }
.legal a { color: var(--gold-bright); }
.legal ul { padding-left: 1.3rem; }
.notice { margin-bottom: 2.5rem; padding: 1.5rem; border-left: 2px solid var(--gold); background: rgba(199,164,74,.05); color: var(--muted); }
.empty-state { max-width: 780px; margin: auto; padding: 5rem; text-align: center; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(199,164,74,.07), transparent); }
.empty-state .mark { width: 76px; height: 76px; display: grid; place-items: center; margin: 0 auto 2rem; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font: 600 2rem/1 var(--serif); }

.post-grid { columns: 3 280px; column-gap: 1.2rem; }
.post-card {
  width: 100%;
  display: inline-grid;
  margin: 0 0 1.2rem;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--cream);
  text-align: left;
  break-inside: avoid;
  cursor: zoom-in;
  overflow: hidden;
}
.post-card img { width: 100%; height: auto; display: block; transition: transform .45s ease, filter .45s ease; }
.post-card > span { display: grid; gap: .35rem; padding: 1.1rem 1.2rem 1.25rem; font: 500 1.05rem/1.25 var(--serif); }
.post-card small { color: var(--caption-gold); font: 500 .58rem/1 var(--sans); text-transform: uppercase; letter-spacing: .2em; }
.post-card:hover img { transform: scale(1.018); filter: brightness(1.06); }
.post-viewer { width: min(94vw, 980px); max-height: 94vh; padding: 0; border: 1px solid var(--line); background: #080a0c; color: var(--cream); box-shadow: 0 30px 100px rgba(0,0,0,.75); overflow: visible; }
.post-viewer::backdrop { background: rgba(2,3,4,.9); backdrop-filter: blur(8px); }
.post-viewer-stage { max-height: 90vh; overflow: auto; }
.post-viewer-stage img { display: block; width: 100%; height: auto; }
.post-viewer-stage p { margin: 0; padding: 1rem 1.25rem; color: var(--caption); font-size: .82rem; }
.post-viewer-close { position: absolute; z-index: 2; top: .75rem; right: .75rem; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: rgba(9,10,10,.82); color: var(--cream); font-size: 1.6rem; line-height: 1; cursor: pointer; }
.post-viewer-close:hover { color: var(--gold-bright); border-color: var(--gold); }

.site-footer { padding: 5rem 0 2rem; border-top: 1px solid var(--line); background: #080909; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 4rem; }
.footer-intro p { max-width: 360px; margin-top: 1.5rem; color: var(--caption); font-size: .88rem; }
.footer-instagram { margin-top: 1.25rem; color: var(--caption-gold); font-size: .78rem; letter-spacing: .04em; }
.footer-brand .brand-logo { width: 76px; height: 76px; }
.footer-title { margin: 0 0 1.2rem; color: var(--caption-gold); text-transform: uppercase; letter-spacing: .2em; font: 500 .65rem/1 var(--sans); }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links a { display: inline-block; padding: .25rem 0; color: var(--caption); text-decoration: none; font-size: .83rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold-bright); }
.company-meta { margin-top: 2rem; color: var(--caption); font-size: .72rem; line-height: 1.8; }
.footer-base { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); color: var(--caption); font-size: .72rem; }
.footer-base a { color: inherit; text-decoration: none; }
.footer-base a:hover { color: var(--gold); }

.whatsapp-contact { position: fixed; right: clamp(1rem, 2.4vw, 2rem); bottom: clamp(1rem, 2.4vw, 2rem); z-index: 90; display: flex; align-items: center; gap: .65rem; color: #f8fff9; text-decoration: none; filter: drop-shadow(0 12px 22px rgba(0,0,0,.38)); }
.whatsapp-contact-label { padding: .62rem .8rem .62rem .95rem; border: 1px solid rgba(199,164,74,.3); border-radius: 999px; background: rgba(12,13,13,.9); color: var(--cream); font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateX(8px); transition: opacity .25s ease, transform .25s ease, border-color .25s ease; backdrop-filter: blur(10px); }
.whatsapp-contact-icon { width: 58px; height: 58px; display: grid; place-items: center; position: relative; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; background: #238b57; box-shadow: inset 0 1px 0 rgba(255,255,255,.2); transition: transform .25s ease, background .25s ease; animation: whatsapp-wave 5s ease-in-out infinite; }
.whatsapp-contact-icon::before, .whatsapp-contact-icon::after { content: ""; position: absolute; inset: -1px; border: 1px solid rgba(55,190,112,.48); border-radius: inherit; opacity: 0; pointer-events: none; animation: whatsapp-pulse 3s ease-out infinite; }
.whatsapp-contact-icon::after { animation-delay: 1.5s; }
.whatsapp-contact svg { width: 31px; height: 31px; display: block; fill: currentColor; }
.whatsapp-contact:hover .whatsapp-contact-label, .whatsapp-contact:focus-visible .whatsapp-contact-label { opacity: 1; transform: translateX(0); border-color: rgba(199,164,74,.62); }
.whatsapp-contact:hover .whatsapp-contact-icon { transform: translateY(-3px) scale(1.04); background: #1e9b5b; }
.whatsapp-contact:active .whatsapp-contact-icon { transform: translateY(0) scale(.96); }
.whatsapp-contact:focus-visible { outline: none; }
.whatsapp-contact:focus-visible .whatsapp-contact-icon { outline: 2px solid var(--gold-bright); outline-offset: 4px; }
@keyframes whatsapp-pulse { 0% { opacity: .55; transform: scale(1); } 72%, 100% { opacity: 0; transform: scale(1.42); } }
@keyframes whatsapp-wave { 0%, 8%, 16%, 100% { transform: rotate(0); } 4% { transform: rotate(-7deg); } 12% { transform: rotate(7deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media (max-width: 1080px) {
  .nav-shell { width: min(calc(100% - 2.5rem), var(--max)); }
  .nav-links { gap: 1rem; }
  .nav-cta { display: none; }
  .shell { width: min(calc(100% - 4rem), var(--max)); }
  .split, .split-reverse { gap: 4rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / 4; }
}
@media (max-width: 820px) {
  .nav-shell { min-height: 74px; }
  .brand-logo { width: 46px; height: 46px; }
  .brand-type { font-size: 1.08rem; }
  .language-switcher { order: 2; margin-left: auto; }
  .menu-toggle { order: 3; display: block; margin-left: .25rem; }
  .nav-links { position: fixed; inset: 74px 0 auto 0; max-height: calc(100vh - 74px); overflow-y: auto; display: none; padding: 1rem 1.5rem 2rem; background: #0c0d0d; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: block; }
  .nav-links > li { border-bottom: 1px solid var(--line-soft); }
  .nav-link, .dropdown-toggle { width: 100%; display: flex; justify-content: space-between; padding: 1rem 0; text-align: left; }
  .dropdown-menu { position: static; width: 100%; padding: 0 0 .7rem 1rem; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: transparent; }
  .dropdown-menu a { padding: .55rem 0; }
  .shell { width: min(calc(100% - 2.5rem), var(--max)); }
  .section { padding: 5rem 0; }
  .home-hero { min-height: auto; padding: 10rem 0 6rem; }
  .hero-note { display: none; }
  .page-hero { padding: 10rem 0 4.5rem; }
  .section-head { align-items: start; flex-direction: column; gap: 1rem; }
  .split, .split-reverse, .detail-layout, .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .sidebar { position: static; }
  .division-strip, .value-grid { grid-template-columns: 1fr 1fr; }
  .division-item:nth-child(2) { border-right: 0; }
  .division-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-grid > :last-child { grid-column: auto; }
}
@media (max-width: 560px) {
  h1 { font-size: clamp(3.25rem, 17vw, 5rem); }
  .home-hero h1 { font-size: clamp(3.55rem, 18vw, 5.5rem); }
  .hero-actions .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .service-card-media { aspect-ratio: 16 / 8; }
  .service-card-content { min-height: 250px; padding: 2rem; }
  .value-grid, .division-strip, .fact-row, .form-row { grid-template-columns: 1fr; }
  .division-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .division-item:last-child { border-bottom: 0; }
  .feature-box, .contact-form { padding: 1.5rem; }
  .empty-state { padding: 3rem 1.5rem; }
  .contact-line { grid-template-columns: 1fr; gap: .2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; }
  .post-grid { columns: 1; }
  .post-card > span { font-size: 1rem; }
  .post-viewer { width: 96vw; }
  .whatsapp-contact-label { display: none; }
  .whatsapp-contact-icon { width: 54px; height: 54px; }
}
