:root {
  --green: #304f4f;
  --green-deep: #182727;
  --green-ink: #0d1c1b;
  --gold: #daa522;
  --gold-light: #f0c34d;
  --paper: #eee8e4;
  --paper-soft: #f7f4f1;
  --white: #fff;
  --ink: #172422;
  --muted: #687674;
  --line: rgba(24, 39, 39, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(18, 33, 31, 0.16);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: min(1280px, calc(100vw - 96px));
  --header-height: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { margin: 0; color: var(--ink); background: var(--paper-soft); font-family: "Manrope", sans-serif; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: var(--green-deep); }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 200; background: var(--gold); color: var(--green-deep); padding: 12px 18px; border-radius: 0 0 10px 10px; font-weight: 800; transition: top .2s; }
.skip-link:focus { top: 0; }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: clamp(92px, 10vw, 152px) 0; }
.section--light { background: var(--paper-soft); }

.page-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 210; pointer-events: none; }
.page-progress span { display: block; width: 100%; height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; box-shadow: 0 0 18px rgba(218,165,34,.65); }
.ambient-cursor { position: fixed; z-index: 2; width: 520px; height: 520px; border-radius: 50%; pointer-events: none; opacity: 0; background: radial-gradient(circle, rgba(218,165,34,.09), transparent 66%); transform: translate3d(-50%,-50%,0); transition: opacity .4s; mix-blend-mode: screen; }
.ambient-cursor.is-visible { opacity: 1; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-height); display: flex; align-items: center; justify-content: space-between; padding: 0 max(4vw, 30px); color: var(--white); border-bottom: 1px solid transparent; transition: height .35s var(--ease-out), background .35s, border-color .35s, box-shadow .35s; }
.site-header.is-scrolled { height: 74px; background: rgba(24,39,39,.88); backdrop-filter: blur(18px) saturate(140%); border-bottom-color: rgba(255,255,255,.1); box-shadow: 0 14px 40px rgba(4,14,13,.16); }
.brand { display: inline-flex; align-items: center; position: relative; z-index: 102; }
.brand img { width: 142px; height: 58px; object-fit: contain; filter: brightness(0) invert(1); }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); font-size: .82rem; font-weight: 700; }
.main-nav > a:not(.button) { position: relative; color: rgba(255,255,255,.78); transition: color .25s; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: right .35s var(--ease-out); }
.main-nav > a:not(.button):hover { color: white; }
.main-nav > a:not(.button):hover::after { right: 0; }
.nav-portal { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.18); }
.menu-toggle { display: none; position: relative; z-index: 102; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: transparent; }
.menu-toggle span { position: absolute; left: 14px; width: 18px; height: 1px; background: white; transition: transform .3s, top .3s; }
.menu-toggle span:first-child { top: 19px; }
.menu-toggle span:last-child { top: 27px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }

.button { display: inline-flex; min-height: 58px; align-items: center; justify-content: center; gap: 22px; padding: 0 26px; border: 1px solid transparent; border-radius: 4px; font-weight: 800; font-size: .91rem; cursor: pointer; position: relative; overflow: hidden; transition: transform .25s var(--ease-out), box-shadow .25s, background .25s, color .25s; }
.button::before { content: ""; position: absolute; inset: 0; transform: translateX(-105%); background: rgba(255,255,255,.2); transition: transform .5s var(--ease-out); }
.button:hover::before { transform: translateX(0); }
.button > * { position: relative; z-index: 1; }
.icon-arrow-up, .icon-arrow-down { width: 17px; height: 17px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: square; stroke-linejoin: miter; }
.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(0) scale(.98); }
.button--gold { background: var(--gold); color: var(--green-deep); box-shadow: 0 12px 32px rgba(218,165,34,.18); }
.button--gold:hover { background: var(--gold-light); box-shadow: 0 18px 38px rgba(218,165,34,.28); }
.button--dark { background: var(--green-deep); color: white; }
.button--small { min-height: 44px; padding: 0 18px; gap: 12px; font-size: .78rem; }
.text-link { display: inline-flex; align-items: center; gap: 18px; min-height: 48px; padding: 0 4px; color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.22); transition: color .25s, border-color .25s; }
.text-link:hover { color: white; border-color: var(--gold); }

.hero { min-height: 100svh; display: flex; align-items: flex-end; position: relative; isolation: isolate; overflow: hidden; color: white; background: var(--green-deep); }
.hero__symbol-stage { position: absolute; inset: 0; z-index: -4; overflow: hidden; pointer-events: none; background: radial-gradient(circle at 78% 44%, rgba(218,165,34,.13), transparent 32%); }
.hero__symbol { position: absolute; width: clamp(520px, 48vw, 920px); height: auto; will-change: transform; filter: drop-shadow(0 32px 80px rgba(0,0,0,.24)); }
.hero__symbol--main { right: -4vw; top: 12%; opacity: .88; }
.hero__symbol--ghost { width: min(66vw, 1240px); right: -23vw; top: -17%; opacity: .055; filter: none; }
.hero__symbol-orbit { position: absolute; width: min(58vw, 960px); aspect-ratio: 1; right: -12vw; top: -22%; border: 1px solid rgba(218,165,34,.18); border-radius: 50%; box-shadow: inset 0 0 100px rgba(218,165,34,.035); will-change: transform; }
.hero__symbol-orbit::before, .hero__symbol-orbit::after { content: ""; position: absolute; inset: 12%; border: 1px solid rgba(255,255,255,.08); border-radius: inherit; }
.hero__symbol-orbit::after { inset: 28%; border-color: rgba(218,165,34,.12); }
.hero__veil { position: absolute; inset: 0; z-index: -3; background: linear-gradient(90deg, rgba(12,28,27,.99) 0%, rgba(15,32,31,.94) 42%, rgba(16,31,30,.42) 72%, rgba(10,24,23,.18) 100%), linear-gradient(0deg, rgba(13,28,27,.72), transparent 48%); }
.hero__grid { position: absolute; inset: 0; z-index: -2; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 84px 84px; mask-image: linear-gradient(90deg, black, transparent 72%); }
.hero__content { position: relative; padding-bottom: clamp(84px, 11vh, 128px); padding-top: 150px; }
.hero__eyebrow { margin-bottom: 24px; }
.eyebrow { margin: 0 0 18px; color: var(--green); font-size: .72rem; line-height: 1.3; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--gold, .hero__eyebrow { color: var(--gold); }
.hero__title { max-width: 890px; margin: 0; font: 700 clamp(3.5rem, 7.3vw, 7.1rem)/.91 "Space Grotesk", sans-serif; letter-spacing: -.067em; }
.title-line { display: block; overflow: hidden; padding-bottom: .07em; }
.title-line > span { display: block; transform: translateY(112%); animation: title-in 1.15s var(--ease-out) forwards; }
.title-line:nth-child(2) > span { animation-delay: .12s; }
.title-line:nth-child(3) > span { animation-delay: .24s; }
.title-line--accent { color: var(--gold); }
@keyframes title-in { to { transform: translateY(0); } }
.hero__lead { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.hero__proof { position: absolute; right: max(4vw, 32px); bottom: 7vh; display: flex; align-items: flex-start; gap: 13px; padding: 18px 20px; background: rgba(24,39,39,.74); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.hero__proof-mark { width: 8px; height: 8px; margin-top: 4px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 7px rgba(218,165,34,.12); }
.hero__proof small { display: block; margin-bottom: 5px; color: var(--gold); font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.hero__proof strong { font: 600 .78rem/1.45 "Space Grotesk", sans-serif; }
.scroll-cue { position: absolute; left: 24px; bottom: 40px; display: flex; align-items: center; gap: 12px; transform: rotate(-90deg); transform-origin: left center; font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.52); }
.scroll-cue i { position: relative; width: 58px; height: 1px; background: rgba(255,255,255,.3); overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translateX(-100%); animation: scroll-line 2.4s ease-in-out infinite; }
@keyframes scroll-line { 50%,100% { transform: translateX(100%); } }

.office-ribbon { position: relative; z-index: 3; padding: 28px 0 22px; color: white; background: var(--green-deep); border-top: 1px solid rgba(255,255,255,.1); overflow: hidden; }
.office-ribbon__heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.office-ribbon__heading > div { display: flex; align-items: center; gap: 15px; }
.office-ribbon__heading span { color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.office-ribbon__heading strong { padding-left: 15px; border-left: 1px solid rgba(255,255,255,.18); font: 600 .72rem "Space Grotesk", sans-serif; color: rgba(255,255,255,.62); }
.office-ribbon__heading a { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 700; transition: color .25s; }
.office-ribbon__heading a:hover { color: white; }
.office-ribbon__heading a .icon-arrow-down { width: 14px; height: 14px; transition: transform .3s; }
.office-ribbon__heading a:hover .icon-arrow-down { transform: translate(4px, 4px); }
.office-ribbon__viewport { overflow: hidden; }
.office-ribbon__track { display: flex; width: max-content; animation: office-ribbon-flow 30s linear infinite; }
.office-ribbon__track:hover { animation-play-state: paused; }
.office-ribbon__group { display: flex; gap: 12px; padding-right: 12px; }
.office-ribbon figure { position: relative; width: clamp(280px, 31vw, 470px); height: 220px; flex: 0 0 auto; margin: 0; overflow: hidden; background: var(--green); }
.office-ribbon figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,28,27,.76), transparent 55%); }
.office-ribbon img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); transition: transform .8s var(--ease-out), filter .5s; }
.office-ribbon figure:hover img { transform: scale(1.045); filter: saturate(1); }
.office-ribbon figcaption { position: absolute; z-index: 1; left: 18px; bottom: 16px; display: flex; align-items: center; gap: 10px; font: 650 .82rem "Space Grotesk", sans-serif; }
.office-ribbon figcaption span { color: var(--gold); font-size: .62rem; }
@keyframes office-ribbon-flow { to { transform: translateX(-50%); } }

.section-heading { margin-bottom: 62px; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .62fr); gap: clamp(48px, 9vw, 130px); align-items: end; }
.display { margin: 0; max-width: 760px; font: 650 clamp(2.6rem, 4.4vw, 4.6rem)/1 "Space Grotesk", sans-serif; letter-spacing: -.055em; text-wrap: balance; }
.display--light { color: white; }
.section-intro { margin: 0; max-width: 600px; color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.section-intro--light { color: rgba(255,255,255,.63); }
.section-intro-stack { display: grid; gap: 18px; }
.section-intro-stack .section-intro { max-width: none; }
.signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.signal-card { min-height: 390px; display: flex; flex-direction: column; padding: 30px; background: white; border: 1px solid var(--line); box-shadow: 0 12px 44px rgba(25,45,42,.04); transform-style: preserve-3d; transition: border-color .35s, box-shadow .35s; }
.signal-card:hover { border-color: rgba(218,165,34,.6); box-shadow: var(--shadow); }
.signal-card--dark { color: white; background: var(--green-deep); }
.signal-card__index { color: var(--gold); font: 700 .75rem "Space Grotesk", sans-serif; }
.signal-card__line { width: 100%; height: 1px; margin: 32px 0 auto; background: var(--line); }
.signal-card--dark .signal-card__line { background: var(--line-light); }
.signal-card h3 { margin: 44px 0 14px; max-width: 260px; font: 650 1.7rem/1.08 "Space Grotesk", sans-serif; letter-spacing: -.035em; }
.signal-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.signal-card--dark p { color: rgba(255,255,255,.63); }
.signal-card__tag { align-self: flex-start; margin-top: 25px; padding: 7px 10px; border: 1px solid var(--line); color: var(--muted); font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.signal-card--dark .signal-card__tag { border-color: var(--line-light); color: var(--gold); }
.section-closing { max-width: 870px; margin: 48px 0 0; padding-left: 24px; border-left: 3px solid var(--gold); color: var(--muted); font: 500 clamp(1.25rem, 2vw, 1.7rem)/1.5 "Space Grotesk", sans-serif; }
.section-closing strong { color: var(--ink); }

.method-section { overflow: hidden; color: white; background: var(--green); }
.method-orbit { position: absolute; width: 720px; height: 720px; right: -310px; top: -280px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.method-orbit::before, .method-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; inset: 90px; }
.method-orbit::after { inset: 210px; background: radial-gradient(circle, rgba(218,165,34,.18), transparent 70%); }
.method-layout { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); gap: clamp(56px, 7vw, 104px); align-items: start; }
.method-copy { position: static; }
.method-copy .display { font-size: clamp(3rem, 3.4vw, 4rem); line-height: 1.02; }
.method-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.method-step { display: grid; grid-template-columns: 54px 1fr 42px; gap: 20px; padding: 35px 0; border-bottom: 1px solid var(--line-light); align-items: start; transition: padding .35s var(--ease-out), background .35s; }
.method-step:hover { padding-left: 20px; background: rgba(255,255,255,.035); }
.method-step__number { color: var(--gold); font: 700 .72rem "Space Grotesk", sans-serif; }
.method-step h3 { margin: -5px 0 10px; font: 600 2rem "Space Grotesk", sans-serif; }
.method-step p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.65; }
.method-step__icon { color: var(--gold); font-size: 1.2rem; transition: transform .35s; }
.method-step:hover .method-step__icon { transform: translate(5px, -5px); }
.method-closing { padding: 30px 0; color: rgba(255,255,255,.58); font: 500 1rem/1.65 "Space Grotesk", sans-serif; list-style: none; }
.method-closing strong { color: white; }

.service-section { background: var(--paper); }
.service-layout { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1fr); gap: clamp(56px, 7vw, 104px); align-items: center; }
.service-copy .display, .authority-copy .display { font-size: clamp(3rem, 3.8vw, 4.25rem); line-height: 1; }
.service-visual { position: relative; }
.service-visual__frame { position: relative; height: min(720px, 70vw); min-height: 580px; overflow: hidden; box-shadow: var(--shadow); }
.service-visual__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.service-visual__frame:hover img { transform: scale(1.045); }
.service-visual__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,28,27,.75), transparent 58%); }
.service-visual__caption { position: absolute; left: 28px; right: 28px; bottom: 28px; z-index: 1; color: white; }
.service-visual__caption span { display: block; margin-bottom: 8px; color: var(--gold); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.service-visual__caption strong { display: block; max-width: 410px; font: 600 1.5rem/1.25 "Space Grotesk", sans-serif; }
.service-visual__stamp { position: absolute; z-index: 2; right: -38px; top: 44px; width: 108px; height: 108px; border: 2px solid var(--gold); border-radius: 50%; display: grid; place-items: center; background: var(--green-deep); box-shadow: 0 18px 38px rgba(32,45,41,.2); animation: stamp-float 4.5s ease-in-out infinite; }
.service-visual__stamp img { width: 62%; height: auto; }
@keyframes stamp-float { 50% { transform: translateY(-10px) rotate(3deg); } }
.feature-list { margin: 44px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.feature-list li > span { color: var(--gold); font: 700 .7rem "Space Grotesk", sans-serif; }
.feature-list strong { display: block; margin-bottom: 6px; font: 650 1.12rem "Space Grotesk", sans-serif; }
.feature-list p { margin: 0; color: var(--muted); line-height: 1.55; }

.focus-section { min-height: 1040px; position: relative; display: flex; align-items: center; overflow: hidden; padding: 120px 0; color: white; background: var(--green-deep); }
.focus-background { position: absolute; inset: 0; display: grid; place-items: center; opacity: .045; transform: rotate(-7deg) scale(1.1); }
.focus-background span { white-space: nowrap; font: 700 clamp(8rem, 19vw, 21rem)/1 "Space Grotesk", sans-serif; letter-spacing: -.08em; }
.focus-content { position: relative; }
.focus-title { max-width: 1050px; margin: 0; font: 550 clamp(3rem, 4vw, 4.5rem)/1 "Space Grotesk", sans-serif; letter-spacing: -.052em; text-wrap: balance; }
.focus-title em { color: var(--gold); font-style: normal; }
.focus-panel { margin-top: 72px; display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: clamp(54px, 8vw, 110px); align-items: start; padding-top: 42px; border-top: 1px solid var(--line-light); }
.focus-panel__copy { display: grid; gap: 25px; }
.focus-panel__copy p { margin: 0; color: rgba(255,255,255,.68); font-size: 1.02rem; line-height: 1.7; }
.focus-panel__copy strong { color: white; font: 600 1.08rem/1.6 "Space Grotesk", sans-serif; }
.focus-panel__copy .button { justify-self: start; margin-top: 8px; }
.focus-questions { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.focus-questions li { position: relative; padding: 21px 38px 21px 0; border-bottom: 1px solid var(--line-light); color: rgba(255,255,255,.78); font: 550 clamp(1rem, 1.4vw, 1.25rem)/1.4 "Space Grotesk", sans-serif; }
.focus-questions li::after { content: "?"; position: absolute; right: 3px; top: 19px; color: var(--gold); font-weight: 700; }
.journey-section { overflow: hidden; background: white; }
.journey-section .display { font-size: clamp(3rem, 4vw, 4.4rem); }
.journey-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); margin: 80px 0 0; padding: 0; list-style: none; }
.journey-track::before { content: ""; position: absolute; left: 0; right: 0; top: 17px; height: 1px; background: var(--line); }
.journey-step { position: relative; padding: 52px 34px 0 0; opacity: .38; transform: translateY(18px); transition: opacity .7s, transform .7s; }
.journey-step::before { content: ""; position: absolute; top: 10px; left: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--paper); border: 4px solid white; box-shadow: 0 0 0 1px var(--line); transition: background .5s, box-shadow .5s; }
.journey-step.is-active { opacity: 1; transform: none; }
.journey-step.is-active::before { background: var(--gold); box-shadow: 0 0 0 7px rgba(218,165,34,.12); }
.journey-step span { color: var(--gold); font: 700 .7rem "Space Grotesk", sans-serif; }
.journey-step strong { display: block; margin: 12px 0 8px; font: 650 1.15rem "Space Grotesk", sans-serif; }
.journey-step p { margin: 0; color: var(--muted); line-height: 1.55; font-size: .9rem; }

.authority-section { color: white; background: var(--green-deep); overflow: hidden; }
.authority-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(440px,540px); gap: clamp(56px, 7vw, 104px); align-items: center; }
.authority-signature { margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line-light); }
.authority-signature strong, .authority-signature span { display: block; }
.authority-signature strong { font: 650 1.1rem "Space Grotesk", sans-serif; }
.authority-signature span { margin-top: 5px; color: var(--gold); font-size: .8rem; font-weight: 700; }
.authority-portrait { position: relative; min-height: 600px; }
.authority-portrait__backdrop { position: absolute; inset: 30px 0 0 35px; border-radius: 22px; background: var(--green); }
.authority-portrait img { position: absolute; inset: 0 32px 32px 0; width: calc(100% - 32px); height: calc(100% - 32px); object-fit: cover; object-position: 50% 38%; border-radius: 22px; }
.authority-portrait__card { position: absolute; z-index: 2; right: 0; bottom: 0; width: 230px; padding: 20px; color: var(--green-deep); background: var(--gold); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.authority-portrait__card small { display: block; margin-bottom: 7px; font-size: .61rem; text-transform: uppercase; font-weight: 800; letter-spacing: .11em; }
.authority-portrait__card strong { display: block; font: 650 1.02rem/1.35 "Space Grotesk", sans-serif; }

.contact-section { position: relative; overflow: hidden; padding: 0 0 clamp(90px, 10vw, 140px); color: white; background: var(--green); }
.contact-marquee { overflow: hidden; padding: 30px 0; border-bottom: 1px solid var(--line-light); margin-bottom: clamp(80px, 9vw, 130px); }
.contact-marquee div { display: flex; align-items: center; width: max-content; animation: marquee 25s linear infinite; }
.contact-marquee span { padding: 0 42px; color: rgba(255,255,255,.18); white-space: nowrap; font: 650 clamp(2.6rem, 5vw, 5rem) "Space Grotesk", sans-serif; letter-spacing: -.04em; }
.contact-marquee i { width: 12px; height: 12px; flex: 0 0 auto; border-radius: 50%; background: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }
.contact-layout { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1fr); gap: clamp(56px, 7vw, 104px); align-items: start; }
.contact-title { max-width: 780px; margin: 0 0 28px; font: 600 clamp(2.75rem, 3.6vw, 4rem)/1.02 "Space Grotesk", sans-serif; letter-spacing: -.052em; text-wrap: balance; }
.contact-assurance { max-width: 520px; margin: 30px 0 0; padding: 18px 0 0 20px; border-left: 2px solid var(--gold); color: rgba(255,255,255,.72); font: 600 .9rem/1.6 "Space Grotesk", sans-serif; }
.contact-form { padding: clamp(28px, 4vw, 48px); color: var(--ink); background: var(--paper-soft); box-shadow: 0 28px 80px rgba(5,19,18,.24); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form label > span { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(24,39,39,.24); border-radius: 0; padding: 10px 0 12px; color: var(--ink); background: transparent; outline: none; transition: border-color .25s, box-shadow .25s; }
.contact-form select { appearance: none; padding-right: 28px; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--green) 50%), linear-gradient(135deg, var(--green) 50%, transparent 50%); background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 2px 0 var(--gold); }
.contact-form input[aria-invalid="true"], .contact-form select[aria-invalid="true"], .contact-form textarea[aria-invalid="true"] { border-color: #a83a2f; }
.form-span { grid-column: 1 / -1; }
.contact-form .checkbox { flex-direction: row; align-items: flex-start; gap: 11px; margin-top: 25px; color: var(--muted); line-height: 1.45; }
.checkbox input { appearance: none; width: 19px; height: 19px; flex: 0 0 auto; margin: 1px 0 0; padding: 0; border: 1px solid rgba(24,39,39,.35); cursor: pointer; }
.checkbox input:checked { border-color: var(--green); background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='m5 12 4 4L19 6'/%3E%3C/svg%3E") center/14px no-repeat; }
.contact-form .checkbox span { font-size: .76rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
.form-action { display: flex; align-items: center; gap: 18px; margin-top: 30px; }
.form-status { margin: 0; color: var(--muted); font-size: .77rem; line-height: 1.45; }
.form-status.is-error { color: #a83a2f; }
.form-status.is-success { color: var(--green); font-weight: 700; }

.site-footer { padding: 72px 0 30px; color: white; background: var(--green-deep); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding-bottom: 70px; }
.brand--footer img { width: 180px; height: auto; filter: brightness(0) invert(1); }
.footer-top p { max-width: 420px; margin: 0; color: rgba(255,255,255,.58); line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.45); font-size: .72rem; }
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom a:hover { color: white; }

.floating-actions { position: fixed; z-index: 160; right: max(24px, env(safe-area-inset-right)); bottom: max(24px, env(safe-area-inset-bottom)); display: grid; justify-items: center; gap: 10px; }
.floating-action { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(24,39,39,.1); border-radius: 50%; box-shadow: 0 14px 38px rgba(5,19,18,.24); transition: transform .25s var(--ease-out), box-shadow .25s, background .25s; }
.floating-action:hover { transform: translateY(-3px); box-shadow: 0 19px 44px rgba(5,19,18,.3); }
.floating-action:active { transform: scale(.95); }
.floating-action--whatsapp { width: 64px; height: 64px; color: white; background: #25d366; border-color: rgba(255,255,255,.34); }
.floating-action--whatsapp:hover { background: #20bd5a; }
.floating-action--whatsapp svg { width: 34px; height: 34px; }
.floating-action--top { color: var(--green-deep); background: white; font: 500 1.55rem/1 "Space Grotesk", sans-serif; }
.floating-action--top:hover { background: var(--gold-light); }

.spotlight-surface::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0; background: radial-gradient(480px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(218,165,34,.07), transparent 72%); transition: opacity .4s; }
.spotlight-surface:hover::after { opacity: 1; }
.spotlight-surface > * { z-index: 1; }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@media (max-width: 1080px) {
  :root { --container: min(100% - 48px, 960px); }
  .main-nav { gap: 18px; }
  .main-nav > a:not(.button):not(.nav-portal) { display: none; }
  .hero__proof { display: none; }
  .method-layout { grid-template-columns: 1fr; }
  .method-copy { position: static; }
  .service-layout, .authority-layout, .contact-layout { grid-template-columns: 1fr; }
  .service-visual { max-width: 670px; }
  .authority-portrait { width: min(620px, 100%); }
  .contact-copy { max-width: 780px; }
}

/* Tablet e desktop em orientação vertical: evita uma hero de quase duas telas. */
@media (min-width: 761px) and (max-aspect-ratio: 4 / 5) {
  .hero {
    height: clamp(820px, 70svh, 1000px);
    min-height: 0;
    align-items: center;
  }
  .hero__symbol--main { width: min(78vw, 800px); right: -22vw; top: 20%; opacity: .62; }
  .hero__symbol--ghost { right: -34vw; top: -4%; }
  .hero__symbol-orbit { width: 88vw; right: -38vw; top: 4%; }
  .hero__veil {
    background:
      linear-gradient(90deg, rgba(12,28,27,.97) 0%, rgba(15,32,31,.82) 46%, rgba(16,31,30,.27) 86%),
      linear-gradient(0deg, rgba(13,28,27,.58), transparent 58%);
  }
  .hero__content {
    padding-top: 150px;
    padding-bottom: 48px;
  }
  .hero__title {
    max-width: 790px;
    font-size: clamp(4rem, 7.2vw, 5.4rem);
  }
  .hero__lead { max-width: 610px; }
  .scroll-cue { bottom: 28px; }
}

/* Em telas quadradas/verticais, cria uma zona editorial limpa à esquerda. */
@media (min-width: 761px) and (max-aspect-ratio: 6 / 5) {
  .hero__veil {
    background:
      linear-gradient(90deg,
        rgba(13,35,33,1) 0%,
        rgba(13,35,33,.98) 36%,
        rgba(13,35,33,.88) 52%,
        rgba(15,32,31,.48) 72%,
        rgba(15,32,31,.14) 100%),
      linear-gradient(0deg, rgba(13,28,27,.62), transparent 58%);
  }
  .hero__content { isolation: isolate; }
}

@media (max-width: 760px) {
  :root { --container: calc(100% - 40px); --header-height: 72px; }
  .site-header { height: 72px; padding: 0 20px; }
  .brand img { width: 116px; height: 48px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; padding: 100px 24px 40px; background: rgba(13,28,27,.98); transform: translateX(100%); opacity: 0; visibility: hidden; transition: transform .55s var(--ease-out), opacity .35s, visibility .35s; }
  .main-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .main-nav > a:not(.button), .main-nav > a:not(.button):not(.nav-portal) { display: flex; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); font: 600 1.55rem "Space Grotesk", sans-serif; color: white; }
  .main-nav .nav-portal { padding-left: 0; border-left: 0; }
  .main-nav .button { margin-top: 28px; }
  .section { padding: 88px 0; }
  .hero { min-height: 850px; }
  .hero__symbol--main { width: 135vw; right: -56vw; top: 23%; opacity: .32; }
  .hero__symbol--ghost { display: none; }
  .hero__symbol-orbit { width: 135vw; right: -88vw; top: 12%; }
  .hero__veil {
    background:
      linear-gradient(90deg, rgba(12,28,27,.84) 0%, rgba(12,28,27,.7) 54%, rgba(15,32,31,.22) 100%),
      linear-gradient(0deg, rgba(12,28,27,.99) 10%, rgba(15,32,31,.76) 65%, rgba(15,32,31,.45));
  }
  .hero__grid { background-size: 54px 54px; mask-image: linear-gradient(0deg, black, transparent); }
  .hero__content { padding-top: 130px; padding-bottom: 80px; }
  .hero__title { font-size: clamp(2.9rem, 13vw, 3.8rem); }
  .hero__lead { max-width: 94%; font-size: .98rem; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 14px; }
  .hero__actions .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .scroll-cue { display: none; }
  .office-ribbon { padding-top: 22px; }
  .office-ribbon__heading { align-items: flex-end; }
  .office-ribbon__heading > div { align-items: flex-start; flex-direction: column; gap: 5px; }
  .office-ribbon__heading strong { padding-left: 0; border-left: 0; }
  .office-ribbon__heading a { max-width: 130px; text-align: right; }
  .office-ribbon figure { width: 270px; height: 160px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 28px; }
  .section-heading { margin-bottom: 42px; }
  .display { font-size: clamp(2.5rem, 11vw, 3.6rem); }
  .method-copy .display, .service-copy .display, .authority-copy .display, .journey-section .display { font-size: clamp(2.5rem, 11vw, 3.6rem); }
  .signal-grid { grid-template-columns: 1fr; }
  .signal-card { min-height: 330px; }
  .method-step { grid-template-columns: 40px 1fr; }
  .method-step__icon { display: none; }
  .service-layout { gap: 64px; }
  .service-visual__frame { min-height: 520px; height: 135vw; max-height: 620px; }
  .service-visual__stamp { right: -10px; top: 24px; width: 92px; height: 92px; }
  .focus-section { min-height: 760px; padding: 90px 0; }
  .focus-title { font-size: clamp(2.8rem, 11vw, 3.8rem); }
  .focus-panel { grid-template-columns: 1fr; gap: 50px; margin-top: 54px; }
  .focus-panel__copy .button { width: 100%; }
  .journey-track { grid-template-columns: 1fr; margin-top: 50px; padding-left: 6px; }
  .journey-track::before { left: 13px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .journey-step { padding: 0 0 42px 54px; }
  .journey-step::before { top: 2px; left: 0; }
  .authority-layout { gap: 55px; }
  .authority-portrait { min-height: 510px; }
  .authority-portrait img { object-position: 50% 40%; }
  .authority-portrait__card { width: 205px; }
  .contact-marquee span { padding: 0 22px; }
  .contact-layout { gap: 50px; }
  .contact-title { font-size: clamp(2.6rem, 10vw, 3.4rem); }
  .contact-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-span { grid-column: auto; }
  .form-action { align-items: stretch; flex-direction: column; }
  .form-action .button { width: 100%; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { flex-direction: column; }
  .floating-actions { right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); }
  .floating-action--whatsapp { width: 60px; height: 60px; }
  .floating-action--top { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .title-line > span { transform: none; }
  .ambient-cursor { display: none; }
  .office-ribbon__viewport { overflow-x: auto; scrollbar-width: thin; }
}
