@charset "UTF-8";

:root {
  --ink: #080808;
  --ink-2: #0e0e0e;
  --panel: #141414;
  --paper: #f2eee5;
  --muted: #a8a49d;
  --gold: #d9a43a;
  --gold-bright: #f0c766;
  --gold-dark: #8e6117;
  --line: rgba(255, 255, 255, 0.12);
  --line-gold: rgba(217, 164, 58, 0.32);
  --green: #25d366;
  --shell: min(1240px, calc(100% - 48px));
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  --mx: 50vw;
  --my: 30vh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-dark) var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open,
body.chat-open {
  overflow: hidden;
}

body.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
}

::selection {
  color: #0a0a0a;
  background: var(--gold-bright);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--ink);
  border-radius: 20px;
  background: var(--gold-dark);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
textarea {
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 16px;
  left: 16px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.noise {
  position: fixed;
  z-index: 900;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  opacity: .18;
  pointer-events: none;
  background: radial-gradient(circle, rgba(217, 164, 58, .26), transparent 68%);
  transform: translate(calc(var(--mx) - 50%), calc(var(--my) - 50%));
}

.loader {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 22px;
  background: #080808;
  transition: opacity .7s var(--ease), visibility .7s;
}

.loader__mark {
  color: var(--gold-bright);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -.08em;
}

.loader__line {
  width: 84px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .15);
}

.loader__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loader-line 1.25s var(--ease) infinite;
}

@keyframes loader-line {
  0% { transform: translateX(-105%); }
  100% { transform: translateX(105%); }
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 92px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled {
  height: 74px;
  border-color: rgba(255, 255, 255, .09);
  background: rgba(8, 8, 8, .82);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 3;
  width: 210px;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 650;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line-gold);
  color: var(--paper);
  background: rgba(217, 164, 58, .08);
  transition: color .3s, background .3s, border-color .3s;
}

.nav-cta:hover {
  color: #0b0b0b;
  border-color: var(--gold);
  background: var(--gold);
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: white;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}

.menu-toggle > span:first-child { top: 18px; }
.menu-toggle > span:nth-child(2) { top: 26px; }
.menu-toggle[aria-expanded="true"] > span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 840px;
  height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #0b1015;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -4;
  background: url("../images/costa-villa-transformacao.webp") center / cover no-repeat;
  transform: scale(1.04);
  will-change: transform;
}

.hero__veil {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, .94) 0%, rgba(5, 6, 7, .82) 32%, rgba(5, 6, 7, .32) 67%, rgba(5, 6, 7, .58) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, .88) 0%, transparent 38%, rgba(5, 5, 5, .24) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 90px 90px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 74%);
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.hero__orb {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(217, 164, 58, .16);
  border-radius: 50%;
  pointer-events: none;
  animation: orb 14s ease-in-out infinite;
}

.hero__orb--one {
  top: 20%;
  right: -9vw;
  width: 35vw;
  aspect-ratio: 1;
}

.hero__orb--two {
  top: 36%;
  right: 5vw;
  width: 17vw;
  aspect-ratio: 1;
  animation-delay: -5s;
}

@keyframes orb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .5; }
  50% { transform: translate3d(-24px, 18px, 0) scale(1.08); opacity: 1; }
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr);
  align-items: center;
  gap: 9vw;
  min-height: calc(100% - 90px);
  padding-top: 105px;
}

.hero__copy {
  max-width: 790px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Aptos Display", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .98;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(64px, 7vw, 114px);
}

h1 em,
h2 em {
  display: block;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.7;
}

.hero__actions,
.contact__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 58px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 750;
  transition: color .35s, background .35s, border-color .35s, transform .35s var(--ease);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .38) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .75s var(--ease);
}

.button:hover::before {
  transform: translateX(120%);
}

.button:hover {
  transform: translateY(-3px);
}

.button--gold {
  color: #0b0b0b;
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold-bright), #bd8321);
  box-shadow: 0 14px 34px rgba(217, 164, 58, .18);
}

.button--ghost {
  border-color: var(--line);
  color: white;
  background: rgba(255, 255, 255, .03);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: var(--gold);
  background: rgba(217, 164, 58, .08);
}

.hero__card {
  position: relative;
  max-width: 360px;
  margin-left: auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(11, 11, 11, .62);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
}

.hero__card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 72px;
  height: 2px;
  background: var(--gold-bright);
  box-shadow: 0 0 25px rgba(240, 199, 102, .5);
}

.hero__card-kicker {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero__card > strong {
  display: block;
  font-size: 28px;
  line-height: 1.2;
}

.hero__card-line {
  height: 1px;
  margin: 24px 0 12px;
  background: var(--line);
}

.hero__card ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.hero__card li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.hero__card li span {
  color: var(--gold);
  font-size: 10px;
}

.hero__card > a {
  display: flex;
  justify-content: space-between;
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 700;
}

.hero__footer {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero__footer p {
  margin: 0;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #52d273;
  box-shadow: 0 0 0 5px rgba(82, 210, 115, .13);
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-cue span {
  position: relative;
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 20px;
}

.scroll-cue span::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 2px;
  height: 6px;
  border-radius: 2px;
  background: var(--gold);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translate(-50%, -2px); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

.trust-strip {
  overflow: hidden;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.trust-track > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 38px;
  border-right: 1px solid var(--line);
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.trust-track span {
  color: var(--gold);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  padding: 140px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2,
.showcase h2,
.faq h2,
.contact h2,
.project-vision h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.4vw, 82px);
}

.section-heading__copy {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.services {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(217, 164, 58, .08), transparent 28%),
    #0a0a0a;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 34px;
  overflow: hidden;
  background: #0d0d0d;
  transition: background .45s, transform .45s var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: radial-gradient(circle at 0 0, rgba(217, 164, 58, .18), transparent 58%);
  transition: opacity .45s;
}

.service-card:hover {
  z-index: 2;
  background: #14120e;
  transform: translateY(-6px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--featured {
  grid-column: span 2;
  flex-direction: row;
  gap: 40px;
  background:
    linear-gradient(100deg, rgba(8,8,8,.97), rgba(8,8,8,.58)),
    url("../images/costa-villa-transformacao.webp") center 55% / cover;
}

.service-card__number {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-card--featured .service-card__number {
  min-width: 28px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 1.18;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 480px;
  color: var(--muted);
  font-size: 15px;
}

.service-card__tag {
  margin-bottom: 14px;
  color: var(--gold-bright) !important;
  font-size: 11px !important;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-card a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
}

.service-card a span {
  color: var(--gold);
  transition: transform .3s var(--ease);
}

.service-card:hover a span {
  transform: translate(3px, -3px);
}

.showcase {
  min-height: 900px;
  overflow: hidden;
  background: #101010;
}

.showcase__media {
  position: relative;
  width: min(1450px, calc(100% - 48px));
  margin: 0 auto 90px;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow);
}

.showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,.38);
  pointer-events: none;
}

.showcase__media img {
  width: 100%;
  height: auto;
  transition: transform 1.2s var(--ease);
}

.showcase__media:hover img {
  transform: scale(1.025);
}

.showcase__shine {
  position: absolute;
  z-index: 1;
  top: -50%;
  left: -20%;
  width: 12%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: rotate(22deg);
  animation: showcase-shine 8s ease-in-out infinite;
}

@keyframes showcase-shine {
  0%, 70% { left: -20%; }
  100% { left: 130%; }
}

.showcase__content {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 11vw;
}

.showcase__copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.showcase__quote {
  padding: 34px 0 6px 34px;
  border-left: 1px solid var(--gold-dark);
}

.quote-mark {
  display: block;
  height: 54px;
  color: var(--gold);
  font: 74px/1 Georgia, serif;
}

.showcase__quote > p {
  color: rgba(255,255,255,.82);
  font: 25px/1.55 Georgia, serif;
}

.showcase__quote > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.showcase__quote > div span {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.method {
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #0a0a0a;
  background-size: 72px 72px;
}

.method-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.method-list::before {
  content: "";
  position: absolute;
  top: 31px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark) 10%, var(--gold-dark) 90%, transparent);
}

.method-list li {
  position: relative;
  padding: 0 28px;
  text-align: center;
}

.method-list__number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 30px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  color: var(--gold-bright);
  background: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 0 9px #0a0a0a;
  transition: background .4s, color .4s, transform .4s var(--ease);
}

.method-list li:hover .method-list__number {
  color: #0a0a0a;
  background: var(--gold);
  transform: scale(1.08);
}

.method-list h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.method-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.project-vision {
  display: grid;
  min-height: 850px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.project-vision__backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.91), rgba(5,5,5,.44) 62%, rgba(5,5,5,.72)),
    linear-gradient(0deg, #080808 0%, transparent 28%, transparent 72%, #080808 100%),
    url("../images/costa-villa-transformacao.webp") center / cover no-repeat;
  background-attachment: fixed;
}

.project-vision::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(217,164,58,.09), transparent 34%);
}

.project-vision__inner {
  padding-top: 30px;
}

.project-vision h2 {
  max-width: 870px;
}

.project-vision__inner > p:not(.eyebrow) {
  max-width: 590px;
  margin: 32px 0 36px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
}

.project-vision__label {
  position: absolute;
  right: -25px;
  bottom: 50px;
  color: rgba(255,255,255,.09);
  font-size: clamp(38px, 6vw, 90px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  white-space: nowrap;
}

.faq {
  background: #0b0b0b;
}

.faq__layout {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 10vw;
}

.faq__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq__intro > p:not(.eyebrow) {
  max-width: 460px;
  margin: 30px 0 26px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold-dark);
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 700;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 29px 0;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color .3s, transform .35s var(--ease);
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .3s;
}

.accordion details[open] summary span {
  border-color: var(--gold-dark);
  transform: rotate(180deg);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion details p {
  max-width: 650px;
  margin: -8px 0 30px;
  padding-right: 50px;
  color: var(--muted);
  line-height: 1.8;
  animation: details-in .35s var(--ease);
}

@keyframes details-in {
  from { opacity: 0; transform: translateY(-8px); }
}

.contact {
  overflow: hidden;
  border-top: 1px solid var(--line-gold);
  text-align: center;
  background:
    radial-gradient(circle at 50% 120%, rgba(217,164,58,.22), transparent 38%),
    #0a0a0a;
}

.contact__glow {
  position: absolute;
  top: -280px;
  left: 50%;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(217,164,58,.13);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(217,164,58,.07), inset 0 0 100px rgba(217,164,58,.05);
  transform: translateX(-50%);
}

.contact__inner {
  position: relative;
}

.contact .eyebrow {
  justify-content: center;
}

.contact h2 {
  margin-bottom: 28px;
}

.contact__inner > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 auto 38px;
  color: var(--muted);
  font-size: 18px;
}

.contact__actions {
  justify-content: center;
}

.contact__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2px 20px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.contact__phone span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-footer {
  padding: 80px 0 30px;
  border-top: 1px solid var(--line);
  background: #070707;
}

.site-footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  width: 260px;
}

.site-footer__top > p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
  text-align: right;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  padding: 50px 0;
}

.site-footer__grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.site-footer__grid span {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer__grid a,
.site-footer__grid p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  transition: color .3s;
}

.site-footer__grid a:hover {
  color: var(--gold-bright);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255,255,255,.38);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-grid .reveal:nth-child(2),
.method-list .reveal:nth-child(2) { transition-delay: .08s; }
.service-grid .reveal:nth-child(3),
.method-list .reveal:nth-child(3) { transition-delay: .16s; }
.service-grid .reveal:nth-child(4),
.method-list .reveal:nth-child(4) { transition-delay: .24s; }
.service-grid .reveal:nth-child(5) { transition-delay: .08s; }
.service-grid .reveal:nth-child(6) { transition-delay: .16s; }
.service-grid .reveal:nth-child(7) { transition-delay: .24s; }

.wa-widget {
  position: fixed;
  z-index: 1600;
  right: max(22px, calc((100vw - 1440px) / 2));
  bottom: 22px;
}

.wa-launcher {
  position: relative;
  z-index: 2;
  display: grid;
  width: 68px;
  height: 68px;
  margin-left: auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--green);
  box-shadow: 0 12px 38px rgba(37,211,102,.32);
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s;
}

.wa-launcher:hover {
  box-shadow: 0 16px 46px rgba(37,211,102,.46);
  transform: translateY(-4px) scale(1.04);
}

.wa-launcher__icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  transform: rotate(-18deg);
}

.wa-launcher__pulse {
  position: absolute;
  inset: -1px;
  border: 1px solid var(--green);
  border-radius: 50%;
  animation: wa-pulse 2.2s ease-out infinite;
}

.wa-launcher__badge {
  position: absolute;
  top: -2px;
  right: 1px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #e94444;
  font-size: 11px;
  font-weight: 800;
}

@keyframes wa-pulse {
  0% { opacity: .8; transform: scale(1); }
  80%, 100% { opacity: 0; transform: scale(1.6); }
}

.wa-nudge {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: 292px;
  padding: 16px 40px 16px 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px 13px 3px 13px;
  background: rgba(17,17,17,.95);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transform-origin: bottom right;
  animation: nudge-in .7s 3.5s var(--ease) both;
}

.wa-nudge::after {
  content: "";
  position: absolute;
  right: 19px;
  bottom: -7px;
  width: 13px;
  height: 13px;
  border-right: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: #111;
  transform: rotate(45deg);
}

.wa-nudge.is-hidden {
  display: none;
}

.wa-nudge button {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  color: rgba(255,255,255,.52);
  background: transparent;
  cursor: pointer;
}

.wa-nudge span,
.wa-nudge strong {
  display: block;
}

.wa-nudge span {
  margin-bottom: 3px;
  color: #6bca8d;
  font-size: 10px;
}

.wa-nudge strong {
  font-size: 14px;
  line-height: 1.35;
}

@keyframes nudge-in {
  from { opacity: 0; transform: translateY(14px) scale(.88); }
}

.wa-chat {
  position: absolute;
  right: 0;
  bottom: 82px;
  display: flex;
  flex-direction: column;
  width: min(378px, calc(100vw - 30px));
  height: min(510px, calc(100vh - 125px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  visibility: hidden;
  opacity: 0;
  background: #efeae2;
  box-shadow: 0 25px 80px rgba(0,0,0,.5);
  transform: translateY(18px) scale(.94);
  transform-origin: bottom right;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}

.wa-chat.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wa-chat header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 14px 15px;
  color: white;
  background:
    linear-gradient(110deg, rgba(255,255,255,.06), transparent),
    #0b5d48;
}

.wa-avatar {
  position: relative;
  flex: 0 0 48px;
  overflow: visible;
  border-radius: 50%;
  background: #111;
}

.wa-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.wa-avatar span {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 12px;
  height: 12px;
  border: 2px solid #0b5d48;
  border-radius: 50%;
  background: #4be173;
}

.wa-chat header > div:nth-child(2) {
  min-width: 0;
  margin-right: auto;
}

.wa-chat header strong,
.wa-chat header span {
  display: block;
}

.wa-chat header strong {
  font-size: 15px;
}

.wa-chat header div > span {
  color: rgba(255,255,255,.7);
  font-size: 11px;
}

.wa-chat header button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.wa-chat__body {
  position: relative;
  flex: 1;
  padding: 25px 20px;
  overflow: auto;
  background:
    linear-gradient(rgba(239,234,226,.89), rgba(239,234,226,.89)),
    radial-gradient(circle at 20% 20%, #b9c7be 1px, transparent 1.5px);
  background-size: auto, 18px 18px;
}

.wa-chat__day {
  width: max-content;
  margin: 0 auto 18px;
  padding: 4px 10px;
  border-radius: 6px;
  color: #657169;
  background: rgba(255,255,255,.7);
  font-size: 10px;
  text-transform: uppercase;
}

.wa-message {
  position: relative;
  width: 88%;
  padding: 11px 12px 6px;
  border-radius: 3px 10px 10px 10px;
  color: #202621;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,.08);
}

.wa-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  border-top: 8px solid white;
  border-left: 8px solid transparent;
}

.wa-message p {
  display: none;
  margin: 0 0 3px;
  font-size: 14px;
  line-height: 1.45;
}

.wa-message.is-typed p {
  display: block;
  animation: message-in .35s var(--ease);
}

.wa-message.is-typed .typing {
  display: none;
}

.wa-message time {
  display: block;
  color: #8e9991;
  font-size: 9px;
  text-align: right;
}

.typing {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 28px;
}

.typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #97a098;
  animation: typing 1.1s infinite;
}

.typing i:nth-child(2) { animation-delay: .14s; }
.typing i:nth-child(3) { animation-delay: .28s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

@keyframes message-in {
  from { opacity: 0; transform: translateY(5px); }
}

.wa-chat__privacy {
  margin: 18px 10px 0;
  color: #7c827e;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.wa-compose {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  padding: 10px;
  background: #f4f1ec;
}

.wa-compose textarea {
  flex: 1;
  min-height: 46px;
  max-height: 96px;
  padding: 12px 14px;
  resize: none;
  border: 1px solid #dfdbd4;
  border-radius: 23px;
  outline: 0;
  color: #252525;
  background: white;
  font-size: 13px;
  line-height: 1.5;
}

.wa-compose textarea:focus {
  border-color: #9abfa9;
  box-shadow: 0 0 0 3px rgba(37,211,102,.08);
}

.wa-compose button {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: #128c64;
  cursor: pointer;
  transition: transform .2s, background .2s;
}

.wa-compose button:hover {
  background: #087757;
  transform: scale(1.04);
}

.noscript {
  position: fixed;
  z-index: 3000;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 12px;
  color: #171717;
  background: var(--gold-bright);
  text-align: center;
}

@media (max-width: 1100px) {
  .main-nav { gap: 20px; }
  .main-nav > a:not(.nav-cta) { display: none; }
  .hero__content { gap: 35px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-column: span 2; }
  .method-list { grid-template-columns: repeat(2, 1fr); gap: 50px 0; }
  .method-list::before { display: none; }
  .showcase__content { gap: 60px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 34px, 660px); }
  .cursor-glow { display: none; }
  .section { padding: 100px 0; }
  .site-header { height: 74px; padding-inline: 17px; }
  .brand { width: 176px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 90px 10vw;
    visibility: hidden;
    opacity: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(217,164,58,.13), transparent 28%),
      #090909;
    transform: translateY(-15px);
    transition: opacity .35s, visibility .35s, transform .35s var(--ease);
  }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav > a:not(.nav-cta) { display: block; font-size: 30px; font-weight: 650; }
  .nav-cta { margin-top: 12px; }
  .hero { min-height: 800px; height: auto; }
  .hero__media { background-position: 61% center; }
  .hero__veil {
    background:
      linear-gradient(90deg, rgba(5,6,7,.94), rgba(5,6,7,.52)),
      linear-gradient(0deg, rgba(5,5,5,.93), transparent 58%, rgba(5,5,5,.3));
  }
  .hero__content { grid-template-columns: 1fr; min-height: 800px; padding-top: 110px; padding-bottom: 110px; }
  .hero__card { display: none; }
  h1 { font-size: clamp(56px, 14vw, 86px); }
  .hero__lead { max-width: 560px; }
  .hero__footer { bottom: 19px; }
  .hero__footer p { display: none; }
  .scroll-cue { margin-left: auto; }
  .section-heading,
  .showcase__content,
  .faq__layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .section-heading { margin-bottom: 50px; }
  .section-heading h2,
  .showcase h2,
  .faq h2,
  .contact h2,
  .project-vision h2 { font-size: clamp(45px, 11vw, 68px); }
  .showcase { min-height: 0; }
  .showcase__media { width: calc(100% - 24px); margin-bottom: 60px; }
  .showcase__media img { min-height: 410px; object-fit: cover; object-position: 63% center; }
  .showcase__quote { max-width: 560px; }
  .faq__intro { position: static; }
  .project-vision__backdrop { background-attachment: scroll; background-position: 60% center; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .section { padding: 82px 0; }
  .hero__actions,
  .contact__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button,
  .contact__actions .button { width: 100%; }
  .hero__lead { font-size: 16px; }
  .hero__footer { display: none; }
  .trust-track > div { padding: 17px 25px; font-size: 10px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card--featured {
    grid-column: span 1;
    min-height: 300px;
    flex-direction: column;
    gap: 0;
    padding: 28px;
  }
  .service-card--featured { min-height: 410px; }
  .service-card__number { margin-bottom: 62px; }
  .service-card--featured .service-card__number { margin-bottom: 46px; }
  .method-list { grid-template-columns: 1fr; gap: 42px; }
  .method-list li { display: grid; grid-template-columns: 62px 1fr; gap: 20px; padding: 0; text-align: left; }
  .method-list__number { width: 58px; height: 58px; margin: 0; }
  .project-vision { min-height: 760px; }
  .accordion summary { font-size: 16px; }
  .accordion details p { padding-right: 18px; }
  .site-footer { padding-top: 60px; }
  .site-footer__top { align-items: flex-start; flex-direction: column; gap: 25px; }
  .site-footer__top > p { text-align: left; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__bottom { flex-direction: column; gap: 9px; }
  .site-footer__bottom p:last-child { display: none; }
  .wa-widget { right: 14px; bottom: 14px; }
  .wa-launcher { width: 60px; height: 60px; }
  .wa-nudge { bottom: 73px; width: min(285px, calc(100vw - 36px)); }
  .wa-chat { right: -1px; bottom: 72px; height: min(500px, calc(100svh - 100px)); }
}

@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;
  }
  .hero__media { transform: none !important; }
  .project-vision__backdrop { background-attachment: scroll; }
  .reveal { opacity: 1; transform: none; }
}
