:root {
  --navy-950: #071824;
  --navy-900: #0b2232;
  --navy-800: #12364a;
  --navy-700: #1c4c61;
  --brass-500: #c79a4a;
  --brass-400: #dfb86d;
  --cream-100: #f7f5ef;
  --cream-50: #fbfaf7;
  --white: #ffffff;
  --ink: #102431;
  --muted: #5b6971;
  --line: #dce2e4;
  --green: #157f55;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Segoe UI Variable Display", "Segoe UI Variable", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 12px 32px rgba(7, 24, 36, 0.08);
  --shadow-lg: 0 28px 70px rgba(7, 24, 36, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 200; transform: translateY(-150%); background: var(--white); padding: 10px 14px; border-radius: 8px; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--brass-400); outline-offset: 3px; }

.utility-bar { background: var(--navy-950); color: #dbe5e9; font-size: 0.875rem; }
.utility-row { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-row strong { color: var(--white); }
.utility-contact { display: flex; gap: 22px; align-items: center; }
.utility-contact a { color: var(--white); font-weight: 800; }

.site-header { position: sticky; top: 0; z-index: 80; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(16,36,49,.09); backdrop-filter: blur(16px); }
.nav-row { min-height: 82px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.28rem; font-weight: 780; letter-spacing: -0.045em; line-height: 1; }
.brand img { width: 44px; height: 44px; flex: 0 0 auto; }
.brand em { color: var(--brass-500); font-style: normal; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 18px; font-size: 0.9rem; font-weight: 720; }
.desktop-nav > a:not(.button) { position: relative; padding-block: 10px; }
.desktop-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--brass-500); transition: right .2s ease; }
.desktop-nav > a:hover::after, .desktop-nav > a[aria-current="page"]::after { right: 0; }
.menu-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); padding: 0; place-items: center; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 22px; height: 2px; background: var(--navy-900); transition: .2s ease; }
.menu-toggle span { margin: 5px auto; }
.mobile-menu { display: none; position: fixed; inset: 82px 0 0; z-index: 70; background: rgba(255,255,255,.99); padding: 24px 20px 40px; overflow-y: auto; }
.mobile-menu.is-open { display: block; }
.mobile-menu a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.08rem; font-weight: 800; }
.mobile-menu .button { margin-top: 18px; border: 0; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 12px 21px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; line-height: 1.2; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--brass-500); color: var(--navy-950); box-shadow: 0 12px 30px rgba(199,154,74,.28); }
.button-primary:hover { background: var(--brass-400); }
.button-dark { background: var(--navy-900); color: var(--white); box-shadow: var(--shadow-sm); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.06); }
.button-light { background: var(--white); color: var(--navy-950); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--navy-800); font-weight: 850; }
.text-link::after { content: "→"; transition: transform .18s ease; }
.text-link:hover::after { transform: translateX(4px); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; color: var(--brass-500); font-size: 0.74rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-950); font-family: var(--font-display); letter-spacing: -0.052em; }
h1 { font-size: clamp(2.8rem, 5.8vw, 5.35rem); font-weight: 760; line-height: .98; margin-bottom: 24px; }
h2 { font-size: clamp(2.05rem, 4vw, 3.45rem); line-height: 1.05; margin-bottom: 20px; }
h3 { font-size: 1.28rem; line-height: 1.25; margin-bottom: 10px; }
.lead { max-width: 760px; color: var(--muted); font-size: 1.12rem; }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 22% 5%, rgba(199,154,74,.15), transparent 35%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .93fr) minmax(420px, 1.07fr); gap: 52px; align-items: center; min-height: 620px; padding-block: 68px; }
.hero-copy { position: relative; z-index: 2; }
.hero h1, .hero h2 { color: var(--white); }
.hero-copy > p { max-width: 650px; color: #d8e3e8; font-size: 1.15rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 24px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 9px 17px; color: #e6edf0; font-size: .9rem; font-weight: 750; }
.trust-list span::before { content: "✓"; color: var(--brass-400); margin-right: 7px; font-weight: 900; }
.hero-media { position: relative; align-self: stretch; min-height: 500px; margin-right: calc((100vw - min(var(--container), calc(100vw - 40px))) / -2); }
.hero-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--navy-950) 0%, rgba(7,24,36,.58) 14%, transparent 44%), linear-gradient(0deg, rgba(7,24,36,.35), transparent 55%); }
.hero-media img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.region-stamp { position: absolute; z-index: 3; right: 30px; bottom: 28px; width: 142px; height: 142px; border-radius: 50%; display: grid; place-items: center; text-align: center; padding: 18px; background: var(--brass-500); color: var(--navy-950); border: 6px solid rgba(255,255,255,.22); font-size: .72rem; font-weight: 920; line-height: 1.35; letter-spacing: .09em; text-transform: uppercase; box-shadow: var(--shadow-lg); }

.proof-bar { position: relative; z-index: 4; margin-top: -34px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; }
.proof-item { min-height: 105px; padding: 20px 23px; display: flex; gap: 13px; align-items: center; }
.proof-item + .proof-item { border-left: 1px solid var(--line); }
.proof-number { color: var(--brass-500); font-size: 1.45rem; font-weight: 920; letter-spacing: -.05em; }
.proof-item strong, .proof-item span { display: block; }
.proof-item strong { color: var(--navy-950); }
.proof-item span { color: var(--muted); font-size: .82rem; }

.section { padding-block: 88px; }
.section-soft { background: var(--cream-100); }
.section-dark { background: var(--navy-950); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .lead { color: #cad8de; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 38px; }
.section-head > div { max-width: 780px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 260px; padding: 29px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 8px 28px rgba(7,24,36,.05); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--brass-500); transform: scaleX(.25); transform-origin: left; transition: transform .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.service-card:hover::before { transform: scaleX(1); }
.service-card::after { content: "→"; position: absolute; right: 24px; bottom: 21px; color: var(--brass-500); font-size: 1.35rem; font-weight: 900; }
.service-index { display: block; margin-bottom: 42px; color: var(--brass-500); font-size: .82rem; font-weight: 900; letter-spacing: .12em; }
.service-card p { color: var(--muted); margin-bottom: 35px; }

.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 66px; align-items: center; }
.editorial-media { position: relative; }
.editorial-media img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.editorial-media::after { content: ""; position: absolute; width: 96px; height: 96px; right: -18px; bottom: -18px; border: 1px solid var(--brass-500); border-radius: 50%; }
.service-visual { margin: 0 0 48px; }
.service-visual img { width: 100%; height: auto; aspect-ratio: 16/9; max-height: 420px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-sm); }
.service-visual figcaption { margin-top: 11px; color: var(--muted); font-size: .9rem; }
.value-list { display: grid; gap: 18px; margin: 28px 0 30px; }
.value-item { display: grid; grid-template-columns: 42px 1fr; gap: 15px; }
.value-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--cream-100); color: var(--brass-500); font-weight: 900; }
.value-item p { margin: 3px 0 0; color: var(--muted); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: process; margin-top: 40px; }
.process-step { counter-increment: process; padding: 26px 27px 30px; border-top: 1px solid rgba(255,255,255,.2); }
.process-step:first-child { padding-left: 0; }
.process-step::before { content: "0" counter(process); display: block; margin-bottom: 38px; color: var(--brass-400); font-size: .83rem; font-weight: 900; letter-spacing: .12em; }
.process-step p { color: #bfcfd6; }

.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 34px; }
.area-link { display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: 12px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); font-weight: 780; transition: border .18s ease, transform .18s ease; }
.area-link::after { content: "↗"; color: var(--brass-500); }
.area-link:hover { border-color: var(--brass-500); transform: translateY(-2px); }

.faq { max-width: 900px; margin-top: 34px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; cursor: pointer; list-style: none; padding: 22px 48px 22px 0; color: var(--navy-950); font-weight: 850; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 3px; top: 16px; color: var(--brass-500); font-size: 1.7rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); padding: 0 50px 22px 0; margin: 0; }

.cta-band { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 46px 50px; background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: #d7e2e7; margin: 0; max-width: 700px; }

.related-services { margin-top: 58px; padding-top: 32px; border-top: 1px solid var(--line); }
.section-kicker { margin-bottom: 18px; color: var(--brass-500); font-size: .74rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.related-grid a { position: relative; display: flex; min-height: 154px; flex-direction: column; gap: 8px; padding: 19px; border: 1px solid var(--line); border-radius: 14px; background: var(--cream-50); transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.related-grid a:hover { border-color: var(--brass-500); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.related-grid strong { color: var(--navy-950); font-family: var(--font-display); font-size: 1.05rem; }
.related-grid span { color: var(--muted); font-size: .9rem; line-height: 1.5; }
.related-grid b { margin-top: auto; color: var(--brass-500); font-size: 1.15rem; }

.page-hero { position: relative; overflow: hidden; padding-block: 80px; background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); color: var(--white); }
.page-hero::after { content: ""; position: absolute; width: 440px; height: 440px; right: -120px; top: -240px; border: 1px solid rgba(223,184,109,.35); border-radius: 50%; box-shadow: 0 0 0 78px rgba(223,184,109,.045), 0 0 0 150px rgba(223,184,109,.025); }
.page-hero-inner { position: relative; z-index: 2; max-width: 940px; }
.page-hero h1 { color: var(--white); font-size: clamp(2.7rem, 5.8vw, 5rem); }
.page-hero p { max-width: 760px; color: #d5e1e6; font-size: 1.13rem; }
.breadcrumbs { margin-bottom: 24px; color: #b7c7cf; font-size: .88rem; }
.breadcrumbs a { color: var(--white); }
.breadcrumbs span { margin-inline: 7px; color: var(--brass-400); }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 58px; align-items: start; }
.article { max-width: 790px; }
.article h2 { margin-top: 48px; font-size: clamp(1.8rem, 3vw, 2.55rem); }
.article h2:first-child { margin-top: 0; }
.article h3 { margin-top: 30px; }
.article p, .article li { color: #495a63; }
.article ul { padding-left: 22px; }
.sidebar-card { position: sticky; top: 110px; padding: 27px; border-radius: var(--radius-md); background: var(--cream-100); border: 1px solid #e5e2d9; }
.sidebar-card p { color: var(--muted); }
.sidebar-card .button { width: 100%; margin-top: 8px; }
.mini-contact { display: grid; gap: 10px; margin: 20px 0; }
.mini-contact a { font-weight: 850; }

.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 76px; align-items: start; }
.about-lead { max-width: 720px; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.about-facts > div { min-height: 116px; padding: 20px 16px 20px 0; border-bottom: 1px solid var(--line); }
.about-facts > div:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.about-facts strong, .about-facts span { display: block; }
.about-facts strong { margin-bottom: 6px; color: var(--navy-950); font-family: var(--font-display); }
.about-facts span { color: var(--muted); font-size: .93rem; }

.area-overview { margin-bottom: 72px; }
.area-overview .lead { margin-bottom: 16px; }
.area-directory-head { margin-bottom: 24px; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: start; }
.contact-visual { margin: 30px 0 26px; }
.contact-visual img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-sm); }
.contact-visual figcaption { margin-top: 10px; color: var(--muted); font-size: .9rem; }
.contact-cards { display: grid; gap: 14px; margin-top: 30px; }
.contact-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.contact-card strong { display: block; color: var(--navy-950); }
.contact-card span, .contact-card p { color: var(--muted); margin: 3px 0 0; }
.form-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 6px; color: var(--navy-950); font-size: .9rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 13px; color: var(--ink); background: var(--white); border: 1px solid #bec9ce; border-radius: 10px; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(199,154,74,.18); border-color: var(--brass-500); }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .84rem; }

.site-footer { padding: 64px 0 28px; background: var(--navy-950); color: #c9d7de; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 42px; }
.site-footer .brand { color: var(--white); margin-bottom: 17px; }
.site-footer .brand img { filter: none; }
.footer-grid p { max-width: 330px; }
.footer-grid h3 { margin: 3px 0 15px; color: var(--white); font-size: .93rem; letter-spacing: .02em; }
.footer-grid a, .footer-grid span { display: block; margin: 8px 0; color: #c9d7de; }
.footer-grid a:hover { color: var(--brass-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: #8fa5b0; font-size: .86rem; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 75; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--white); box-shadow: 0 14px 34px rgba(7,24,36,.24); font-weight: 900; }
.mobile-contact-bar { display: none; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-bottom: 0; gap: 38px; }
  .hero-media { min-height: 430px; margin: 0 -20px; }
  .hero-media img { min-height: 430px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .hero-media::before { background: linear-gradient(0deg, var(--navy-950) 0, rgba(7,24,36,.15) 35%, transparent 60%); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .proof-item:nth-child(4) { border-top: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 42px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 26px)); }
  .utility-row { justify-content: center; min-height: 36px; }
  .utility-row > span { display: none; }
  .utility-contact a:last-child { display: none; }
  .nav-row { min-height: 70px; }
  .mobile-menu { inset: 70px 0 0; }
  .brand { font-size: 1.16rem; }
  .brand img { width: 38px; height: 38px; }
  h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .hero-grid { padding-top: 58px; }
  .hero-media { min-height: 340px; margin-inline: -13px; }
  .hero-media img { min-height: 340px; }
  .region-stamp { width: 112px; height: 112px; right: 15px; bottom: 15px; font-size: .58rem; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; }
  .proof-bar { margin-top: 0; background: var(--white); padding-top: 13px; }
  .proof-grid { grid-template-columns: 1fr; box-shadow: var(--shadow-sm); }
  .proof-item { min-height: 86px; }
  .proof-item + .proof-item { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding-block: 66px; }
  .section-head { display: block; }
  .service-grid, .editorial-grid, .process-grid, .areas-grid, .contact-grid, .field-grid, .related-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .process-step, .process-step:first-child { padding-inline: 0; }
  .editorial-grid { gap: 40px; }
  .editorial-media::after { display: none; }
  .service-visual { margin-bottom: 38px; }
  .service-visual img { max-height: 280px; border-radius: 14px; }
  .about-facts > div { min-height: 105px; }
  .about-facts > div:nth-child(even) { padding-left: 12px; }
  .cta-band { grid-template-columns: 1fr; padding: 30px 25px; }
  .page-hero { padding-block: 60px; }
  .form-card { padding: 23px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; padding-bottom: 62px; }
  .whatsapp-float { display: none; }
  .mobile-contact-bar { position: fixed; inset: auto 0 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; min-height: 58px; box-shadow: 0 -8px 26px rgba(7,24,36,.15); }
  .mobile-contact-bar a { display: grid; place-items: center; font-weight: 900; }
  .mobile-contact-bar a:first-child { background: var(--navy-900); color: var(--white); }
  .mobile-contact-bar a:last-child { background: var(--green); color: var(--white); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
