:root {
  --ink: #102033;
  --navy: #0b2742;
  --blue: #123f67;
  --teal: #0f766e;
  --gold: #b87924;
  --paper: #f7f9fb;
  --white: #ffffff;
  --mist: #e8eef3;
  --line: #c7d2df;
  --muted: #5b6775;
  --shadow: 0 18px 45px rgba(16, 32, 51, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
a,
summary {
  touch-action: manipulation;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(184, 121, 36, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--white);
  color: var(--navy);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.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;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 251, 0.94);
  border-bottom: 1px solid rgba(199, 210, 223, 0.8);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
}

.brand img {
  width: 54px;
  aspect-ratio: 1;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.64rem 0.88rem;
  border: 1px solid transparent;
  border-bottom-width: 2px;
  border-radius: 14px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--teal);
  border-color: rgba(18, 63, 103, 0.18);
  border-bottom-color: var(--gold);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.65rem;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.section-band {
  padding: 5.5rem 0;
}

.hero {
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(11, 39, 66, 0.96), rgba(18, 63, 103, 0.92)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 84px);
  color: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.55rem, 8vw, 5.65rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  color: var(--navy);
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
}

.hero-text {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.button.primary {
  color: var(--white);
  background: var(--gold);
}

.button.primary:hover {
  background: #9f651a;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.button.secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 2.4rem 0 0;
  padding: 0;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-strip div {
  padding: 1rem;
  background: rgba(255,255,255,0.08);
}

.trust-strip dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.trust-strip dd {
  margin: 0.1rem 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}

.hero-mark {
  display: grid;
  place-items: center;
}

.hero-mark img {
  width: min(440px, 88vw);
  filter: drop-shadow(0 28px 55px rgba(0, 0, 0, 0.32));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: start;
}

.intro,
.proof,
.faq {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center p:not(.eyebrow) {
  margin: 1rem auto 0;
  max-width: 760px;
  color: var(--muted);
}

.service-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.proof-item,
.faq details,
.contact-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(16, 32, 51, 0.04);
}

.service-card {
  min-height: 245px;
  padding: 1.2rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 121, 36, 0.55);
  box-shadow: var(--shadow);
}

.service-number {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
}

.service-card h3 {
  margin-top: 1rem;
}

.service-card p,
.proof-item p,
.security-list p,
.security-list li,
.faq p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.method {
  background: linear-gradient(180deg, #f7f9fb, #eef4f7);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 2.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.timeline li {
  padding: 1.35rem;
  background: var(--white);
}

.timeline strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.timeline span {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sector-list span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
  color: var(--navy);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 2rem;
}

.offices {
  background: #071827;
  color: var(--white);
}

.offices h2,
.offices h3 {
  color: var(--white);
}

.offices-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.office-visual {
  position: relative;
}

.office-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.34);
}

.office-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  background: rgba(7, 24, 39, 0.82);
  backdrop-filter: blur(12px);
}

.office-badge span {
  color: #f4c06a;
  display: block;
  font-weight: 900;
}

.office-badge strong {
  display: block;
  margin-top: 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.2;
}

.office-copy {
  max-width: 720px;
}

.office-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.office-cards article {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
}

.office-cards p {
  color: rgba(255,255,255,0.74);
}

.office-cards a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #f4c06a;
  font-weight: 900;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-item {
  padding: 1.35rem;
}

.security {
  background: var(--navy);
  color: var(--white);
}

.security h2 {
  color: var(--white);
}

.security-list ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.security-list li {
  color: rgba(255,255,255,0.8);
  margin: 0.45rem 0;
}

.security-list p {
  color: rgba(255,255,255,0.86);
}

.faq-grid {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq details {
  padding: 1.2rem 1.35rem;
}

.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.contact {
  background: linear-gradient(135deg, #edf4f4, #f7f9fb 55%, #f4efe7);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.contact-copy p {
  max-width: 690px;
  margin-top: 1rem;
}

.contact .button.secondary {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.contact .button.secondary:hover {
  border-color: var(--gold);
}

.contact-details {
  padding: 1.4rem;
  font-style: normal;
  display: grid;
  gap: 0.65rem;
}

.contact-details strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.contact-details a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  padding: 2.5rem 0;
  background: #081d31;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.site-footer p {
  margin: 0.4rem 0 0;
  color: rgba(255,255,255,0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.86);
  font-weight: 700;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.js-reveal .reveal.is-visible,
.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .proof-grid,
  .offices-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-mark {
    justify-content: start;
  }

  .hero-mark img {
    width: min(280px, 70vw);
  }
}

@media (max-width: 760px) {
  .menu-button {
    display: block;
  }

  .nav {
    min-height: 74px;
  }

  .brand {
    gap: 0.5rem;
    min-width: 0;
  }

  .brand img {
    width: 44px;
  }

  .brand span {
    min-width: 0;
  }

  .brand strong,
  .brand small {
    white-space: nowrap;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .nav-links {
    position: absolute;
    inset: 74px 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.65rem;
    border-bottom: 0;
  }


  .section-band {
    padding: 4rem 0;
  }

  .trust-strip,
  .service-grid,
  .timeline,
  .proof-points,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .floating-cta {
    display: none;
  }
}

@media (max-width: 900px) {
  .floating-cta {
    display: none;
  }
}

@media (max-width: 980px) and (max-height: 500px) {
  .hero.section-band {
    padding-top: 1.6rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
    max-width: 760px;
  }

  .hero-text {
    display: none;
  }

  .hero-actions {
    margin-top: 0.55rem;
  }

  .hero-actions .button {
    min-height: 44px;
    padding-block: 0.58rem;
  }

  .hero-dossier {
    display: none;
  }
}

/* Contact v3: premium command center + branded WhatsApp assistant. */
.contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(7, 24, 39, 0.97) 0%, rgba(11, 39, 66, 0.94) 46%, rgba(238, 245, 244, 0.94) 46%, rgba(247, 249, 251, 0.96) 100%),
    image-set(url("assets/advisory-table.webp") type("image/webp"), url("assets/advisory-table.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 192, 106, 0.09) 0 1px, transparent 1px 112px),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 112px);
  opacity: 0.55;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 3rem;
  align-items: center;
}

.contact-command h2 {
  color: var(--white);
  text-wrap: balance;
}

.contact-command p {
  max-width: 680px;
  margin-top: 1rem;
  color: rgba(255,255,255,0.8);
}

.contact .button.secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
}

.contact .button.secondary:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.14);
}

.contact-secure-note {
  max-width: 640px;
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
}

.contact-secure-note svg {
  width: 42px;
  height: 42px;
  padding: 0.55rem;
  border-radius: var(--radius);
  background: rgba(244, 192, 106, 0.15);
  color: #f4c06a;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.contact-console {
  border: 1px solid rgba(199, 210, 223, 0.78);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 34px 90px rgba(7, 24, 39, 0.28);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.console-top {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  background: #071827;
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

.console-top span:first-child {
  background: #f4c06a;
}

.console-top a {
  min-height: 36px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  color: #f4c06a;
  font-weight: 900;
}

.contact-console .contact-details {
  padding: 1.25rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-identity {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-identity img {
  width: 76px;
  aspect-ratio: 1;
  object-fit: contain;
}

.contact-identity strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
}

.contact-identity span {
  color: var(--muted);
}

.contact-link-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1.28fr);
  gap: 0.75rem;
}

.contact-link-grid a {
  min-height: 84px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  color: var(--teal);
  overflow-wrap: break-word;
}

.contact-link-grid span {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.office-route {
  display: grid;
  gap: 0.85rem;
}

.office-route div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.office-route h3 {
  color: var(--navy);
}

.office-route p,
.schedule {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.office-route a {
  min-height: 44px;
  color: var(--teal);
}

.schedule {
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  background: #eef5f4;
  color: var(--navy);
  font-weight: 800;
}

.floating-cta {
  min-height: 64px;
  gap: 0.75rem;
  padding: 0.55rem 0.7rem 0.55rem 0.55rem;
  border: 1px solid rgba(244, 192, 106, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(8, 29, 49, 0.95), rgba(15, 118, 110, 0.94)),
    radial-gradient(circle at 18% 20%, rgba(244, 192, 106, 0.34), transparent 28%);
  box-shadow: 0 20px 55px rgba(7, 24, 39, 0.35);
  overflow: visible;
  isolation: isolate;
}

.cta-orbit {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(244, 192, 106, 0.32);
  border-radius: 999px;
  opacity: 0.9;
  animation: orbitPulse 2.8s ease-in-out infinite;
  z-index: -1;
}

.cta-avatar {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  box-shadow: inset 0 0 0 1px rgba(11,39,66,0.12);
}

.cta-avatar::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 11px;
  height: 11px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #1ad36f;
}

.cta-avatar img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.cta-copy {
  display: grid;
  line-height: 1.05;
}

.cta-copy small {
  color: rgba(255,255,255,0.74);
  font-size: 0.76rem;
}

.cta-copy strong {
  color: #ffffff;
  font-size: 1rem;
}

.cta-wa {
  width: 26px;
  height: 26px;
  padding: 0.22rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  stroke: #ffffff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@keyframes orbitPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.055);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .contact-grid,
  .contact-link-grid {
    grid-template-columns: 1fr;
  }

  .contact {
    background:
      linear-gradient(180deg, rgba(7, 24, 39, 0.97) 0%, rgba(11, 39, 66, 0.94) 42%, rgba(238, 245, 244, 0.97) 42%, rgba(247, 249, 251, 0.98) 100%),
      image-set(url("assets/advisory-table.webp") type("image/webp"), url("assets/advisory-table.jpg") type("image/jpeg"));
    background-size: cover;
  }
}

@media (max-width: 900px) {
  .floating-cta {
    display: inline-flex;
    right: 0.75rem;
    bottom: 0.75rem;
    min-height: 58px;
    padding: 0.45rem;
  }

  .cta-copy,
  .cta-wa {
    display: none;
  }

  .cta-avatar {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 760px) {
  .contact-command h2 {
    font-size: clamp(2.2rem, 12vw, 3.15rem);
  }

  .contact-secure-note,
  .contact-identity {
    grid-template-columns: 1fr;
  }

  .console-top a {
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-orbit {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Visual direction v2: editorial desk, CRJ dossier, utility access. */
.utility-bar {
  background: #071827;
  color: rgba(255,255,255,0.86);
  font-size: 0.88rem;
}

.utility-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
}

.utility-inner a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.utility-mail {
  color: #f4c06a;
  border-left: 1px solid rgba(255,255,255,0.22);
  padding-left: 1.1rem;
}

.mail-short {
  display: none;
}

.site-header {
  background: rgba(248, 250, 252, 0.92);
}

.nav {
  min-height: 76px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 114px);
  background:
    linear-gradient(90deg, rgba(5, 18, 31, 0.98) 0%, rgba(9, 38, 65, 0.92) 38%, rgba(9, 38, 65, 0.52) 70%, rgba(5, 18, 31, 0.74) 100%),
    image-set(url("assets/hero-office.webp") type("image/webp"), url("assets/hero-office.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(7, 24, 39, 0.86));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.54fr);
}

.hero-copy {
  padding-block: 2rem;
}

.hero .eyebrow {
  color: #f4c06a;
  font-size: 1rem;
  max-width: 520px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  text-wrap: balance;
  text-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.hero-text {
  max-width: 690px;
  color: rgba(255,255,255,0.9);
}

.hero-dossier {
  align-self: end;
  margin-bottom: 1.5rem;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: var(--radius);
  background: rgba(247, 249, 251, 0.9);
  color: var(--ink);
  box-shadow: 0 26px 80px rgba(0,0,0,0.28);
  backdrop-filter: blur(16px);
}

.hero-dossier img {
  width: 120px;
  margin-bottom: 1rem;
}

.hero-dossier p {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  line-height: 1.25;
}

.hero-dossier .trust-strip {
  margin-top: 0;
  grid-template-columns: 1fr;
  background: var(--line);
  border-color: var(--line);
}

.hero-dossier .trust-strip div {
  background: rgba(255,255,255,0.82);
}

.hero-dossier .trust-strip dt {
  color: var(--navy);
}

.hero-dossier .trust-strip dd {
  color: var(--muted);
}

.button.primary {
  background: linear-gradient(135deg, #c98828, #a4671f);
  box-shadow: 0 14px 30px rgba(6, 18, 31, 0.26);
}

.button.secondary {
  background: rgba(7, 24, 39, 0.22);
  backdrop-filter: blur(8px);
}

.intro {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #eef5f4 50%, #eef5f4 100%);
}

.intro::before {
  content: "CRJ";
  position: absolute;
  left: max(1rem, calc((100vw - var(--max)) / 2));
  bottom: -4.5rem;
  color: rgba(18, 63, 103, 0.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 22vw, 19rem);
  line-height: 1;
  pointer-events: none;
}

.intro-lab {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  gap: 4rem;
  align-items: center;
}

.intro-statement {
  max-width: 540px;
}

.intro-statement h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.35rem);
  text-wrap: balance;
  overflow-wrap: normal;
}

.intro-statement p:not(.eyebrow) {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.case-board {
  position: relative;
  min-height: 620px;
}

.case-photo {
  width: min(100%, 760px);
  margin: 0 0 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 85px rgba(16, 32, 51, 0.18);
}

.case-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.floating-brief {
  position: absolute;
  top: 3.2rem;
  left: 0;
  width: min(360px, 55%);
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 24px 70px rgba(16, 32, 51, 0.18);
  backdrop-filter: blur(14px);
}

.floating-brief span {
  display: block;
  color: var(--teal);
  font-weight: 900;
  margin-bottom: 0.45rem;
}

.floating-brief strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.18;
}

.case-notes {
  position: absolute;
  right: 2rem;
  bottom: 0;
  width: min(640px, calc(100% - 2rem));
  display: grid;
  gap: 0.75rem;
}

.case-notes article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(199, 210, 223, 0.82);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 16px 46px rgba(16, 32, 51, 0.1);
}

.case-notes svg {
  width: 46px;
  height: 46px;
  padding: 0.65rem;
  border-radius: var(--radius);
  background: #0b2742;
  color: #f4c06a;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.case-notes h3 {
  margin: 0 0 0.2rem;
}

.case-notes p {
  margin: 0;
  color: var(--muted);
}

.case-notes article,
.floating-brief,
.service-card,
.proof-item,
.contact-details {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.case-notes article:hover,
.floating-brief:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 121, 36, 0.48);
  box-shadow: 0 24px 65px rgba(16, 32, 51, 0.16);
}

.services {
  background: #eef3f7;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.service-card {
  position: relative;
  min-height: 230px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  padding: 1.35rem 1.35rem 1.45rem;
}

.service-card:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
  background: #f9fbfc;
}

.service-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  margin-bottom: 1rem;
  border: 1px solid rgba(18, 63, 103, 0.24);
  border-radius: var(--radius);
  color: var(--gold);
  background: #f3f7fa;
  padding: 0.65rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-number {
  display: block;
  color: var(--teal);
}

.service-card h3 {
  margin-top: 0.45rem;
}

.method {
  background:
    linear-gradient(rgba(7, 24, 39, 0.94), rgba(7, 24, 39, 0.94)),
    image-set(url("assets/hero-office.webp") type("image/webp"), url("assets/hero-office.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.method h2 {
  color: var(--white);
}

.timeline {
  box-shadow: 0 26px 70px rgba(0,0,0,0.24);
}

.proof {
  background: #ffffff;
}

.proof-item {
  box-shadow: none;
}

.contact {
  background:
    linear-gradient(135deg, rgba(238, 245, 244, 0.96), rgba(247, 249, 251, 0.96)),
    image-set(url("assets/hero-office.webp") type("image/webp"), url("assets/hero-office.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
}

.service-card {
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 1.35rem 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

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

.faq details {
  padding: 0;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq details:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 121, 36, 0.44);
  box-shadow: 0 18px 45px rgba(16, 32, 51, 0.1);
}

.faq summary {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
  background: var(--navy);
  color: var(--white);
}

.faq details p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    background-position: 58% center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-dossier {
    align-self: auto;
    max-width: 520px;
  }

  .intro {
    background: var(--white);
  }

  .intro-lab {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .case-board {
    min-height: auto;
  }

  .floating-brief,
  .case-notes {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .case-photo {
    width: 100%;
  }

  .office-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .utility-inner {
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.78rem;
  }

  .utility-inner > span {
    display: none;
  }

  .utility-mail {
    padding-left: 0.75rem;
  }

  .mail-full {
    display: none;
  }

  .utility-inner .mail-short {
    display: inline;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    inset: 106px 1rem auto;
  }

  .hero {
    min-height: auto;
    padding-top: 2.55rem;
    background-position: 62% center;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 18, 31, 0.22);
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.05rem);
  }

  .hero-dossier {
    margin-bottom: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .intro-statement h2 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .case-notes article {
    grid-template-columns: 46px 1fr;
    padding: 0.9rem;
  }

  .case-notes svg {
    width: 42px;
    height: 42px;
  }
}

/* Final polish: CRJ premium trust system. */
:root {
  --obsidian: #06121f;
  --executive: #0b2742;
  --executive-2: #123f67;
  --champagne: #c88a32;
  --champagne-soft: #f5c873;
  --jade: #087c73;
  --paper: #fbfcfd;
  --mist: #eef5f4;
  --hairline: rgba(154, 172, 190, 0.34);
  --elevated: 0 26px 80px rgba(9, 25, 43, 0.17);
  --elevated-strong: 0 34px 95px rgba(4, 15, 28, 0.34);
}

html {
  scroll-padding-top: 124px;
}

body {
  background:
    linear-gradient(180deg, #f9fbfc 0%, #eef4f6 100%);
}

.site-header {
  border-bottom: 1px solid rgba(154, 172, 190, 0.28);
  box-shadow: 0 14px 46px rgba(6, 18, 31, 0.08);
}

.utility-bar {
  background:
    linear-gradient(90deg, var(--obsidian), #0a243c 52%, #071827);
}

.brand img {
  filter: drop-shadow(0 10px 20px rgba(9, 25, 43, 0.11));
}

.nav-links a {
  border-radius: 14px;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--teal);
  border-color: rgba(18, 63, 103, 0.18);
  border-bottom-color: var(--champagne);
  background: linear-gradient(180deg, rgba(18, 63, 103, 0.1), rgba(255,255,255,0.68));
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.08), inset 0 1px 0 rgba(255,255,255,0.74);
  transform: translateY(-1px);
}

.button {
  border-radius: 999px;
  letter-spacing: 0;
  touch-action: manipulation;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.99);
}

.button svg {
  flex: 0 0 auto;
}

.hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 200, 115, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(4, 15, 28, 0.98) 0%, rgba(9, 38, 65, 0.94) 40%, rgba(9, 38, 65, 0.62) 73%, rgba(4, 15, 28, 0.86) 100%),
    image-set(url("assets/hero-office.webp") type("image/webp"), url("assets/hero-office.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
}

.hero-dossier,
.floating-brief,
.case-notes article,
.office-visual,
.faq details {
  border-radius: 18px;
}

.hero-dossier {
  border-color: rgba(255,255,255,0.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(239, 246, 247, 0.9));
  box-shadow: var(--elevated-strong);
}

.hero-dossier::before {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--champagne), transparent);
}

.intro,
.services,
.offices,
.proof,
.security,
.faq {
  position: relative;
}

.section-heading,
.intro-statement,
.office-copy {
  max-width: 760px;
}

.service-grid,
.office-cards,
.proof-points,
.security-list,
.faq-list {
  filter: drop-shadow(0 18px 44px rgba(16, 32, 51, 0.06));
}

.service-card {
  border-color: transparent;
}

.service-icon,
.case-notes svg {
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28);
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(4, 15, 28, 0.97) 0%, rgba(7, 31, 54, 0.95) 43%, rgba(8, 76, 80, 0.86) 100%),
    image-set(url("assets/advisory-table.webp") type("image/webp"), url("assets/advisory-table.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.62;
  mask-image: linear-gradient(90deg, black, transparent 86%);
  pointer-events: none;
}

.contact::after {
  content: "CRJ";
  position: absolute;
  right: clamp(1rem, 7vw, 7rem);
  bottom: -3.7rem;
  color: rgba(255,255,255,0.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: 1;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(320px, 0.86fr) minmax(480px, 1.14fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}

.contact .eyebrow {
  color: var(--champagne-soft);
}

.contact-command h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(2.7rem, 5.6vw, 5.1rem);
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 20px 55px rgba(0,0,0,0.28);
}

.contact-command p {
  max-width: 680px;
  margin-top: 1.2rem;
  color: rgba(255,255,255,0.84);
  font-size: 1.08rem;
}

.contact-actions {
  margin-top: 1.8rem;
}

.contact .button.primary {
  color: #071827;
  background: linear-gradient(135deg, #f3c66f, #c4842d 58%, #9d641d);
  box-shadow: 0 18px 42px rgba(0,0,0,0.24);
}

.contact .button.secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}

.contact .button.secondary:hover {
  border-color: rgba(245, 200, 115, 0.72);
  background: rgba(255,255,255,0.15);
}

.contact-secure-note,
.contact-metrics,
.priority-channel {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}

.contact-secure-note {
  max-width: 650px;
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem;
  border-radius: 18px;
}

.contact-secure-note svg,
.priority-channel svg {
  width: 46px;
  height: 46px;
  padding: 0.68rem;
  border-radius: 15px;
  color: var(--champagne-soft);
  background: rgba(6, 18, 31, 0.42);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.contact-secure-note span {
  color: rgba(255,255,255,0.86);
  font-weight: 750;
}

.contact-metrics {
  max-width: 650px;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 18px;
}

.contact-metrics div {
  padding: 1rem;
  background: rgba(7, 24, 39, 0.26);
}

.contact-metrics strong {
  display: block;
  color: var(--champagne-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.contact-metrics span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255,255,255,0.78);
  font-weight: 800;
}

.contact-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(222, 229, 236, 0.78);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(239, 247, 248, 0.94));
  color: var(--ink);
  box-shadow: var(--elevated-strong);
}

.security {
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 18%, rgba(245, 200, 115, 0.13), transparent 26%),
    linear-gradient(135deg, #06121f 0%, #0b2742 58%, #103a51 100%);
}

.security .eyebrow {
  color: var(--champagne-soft);
}

.security h1,
.security h2 {
  color: #ffffff;
  text-wrap: balance;
}

.security-list {
  padding: clamp(1.15rem, 3vw, 1.55rem);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 26px 70px rgba(0,0,0,0.2);
  backdrop-filter: blur(14px);
}

.security-list p,
.security-list li {
  color: rgba(255,255,255,0.9);
}

.security-list li {
  margin: 0.62rem 0;
  padding-left: 0.15rem;
}

.security-list li::marker {
  color: var(--champagne-soft);
}

.security-list .button.primary {
  margin-top: 0.6rem;
}

.contact-console::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--champagne), var(--jade), var(--executive-2));
}

.console-top {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--hairline);
  background: rgba(255,255,255,0.74);
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cad5df;
}

.console-top span:nth-child(1) {
  background: #c88a32;
}

.console-top span:nth-child(2) {
  background: #087c73;
}

.console-top span:nth-child(3) {
  background: #123f67;
}

.console-top a {
  min-height: 44px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.56rem 0.88rem;
  border: 1px solid rgba(18, 63, 103, 0.18);
  border-radius: 999px;
  color: var(--executive);
  background: #ffffff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.08);
}

.contact-console .contact-details {
  padding: clamp(1.15rem, 3vw, 1.65rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  gap: 1rem;
}

.contact-identity {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background:
    linear-gradient(135deg, #ffffff, #eef7f7);
}

.contact-identity img {
  width: 82px;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0.4rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(18, 63, 103, 0.08);
}

.contact-identity strong {
  display: block;
  color: var(--executive);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.contact-identity span {
  display: block;
  margin-top: 0.25rem;
  color: #5b6878;
}

.contact-link-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.92fr) minmax(0, 1.35fr);
  gap: 0.75rem;
}

.contact-link-grid a {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.95rem;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  color: var(--executive);
  background: #ffffff;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(16, 32, 51, 0.06);
  overflow-wrap: anywhere;
}

.contact-link-grid a:hover,
.office-route div:hover,
.priority-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 138, 50, 0.54);
  box-shadow: 0 20px 44px rgba(16, 32, 51, 0.12);
}

.contact-link-grid span {
  margin-bottom: 0.28rem;
  color: var(--jade);
  font-size: 0.82rem;
  font-weight: 950;
}

.priority-channel {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
  border-color: rgba(18, 63, 103, 0.16);
  border-radius: 18px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(9, 63, 84, 0.92));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.priority-channel strong,
.priority-channel span {
  display: block;
}

.priority-channel strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.priority-channel span {
  margin-top: 0.28rem;
  color: rgba(255,255,255,0.78);
  font-style: normal;
}

.office-route {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.office-route div {
  min-height: 170px;
  padding: 1rem;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff, #f7fafb);
  box-shadow: 0 12px 26px rgba(16, 32, 51, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.office-route h3 {
  color: var(--executive);
}

.office-route p,
.schedule {
  color: #607082;
}

.office-route a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--jade);
  font-weight: 900;
}

.schedule {
  margin: 0.15rem 0 0;
  padding: 0.95rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  font-style: normal;
}

.floating-cta {
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  min-height: 68px;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.56rem 0.78rem 0.56rem 0.56rem;
  border: 1px solid rgba(245, 200, 115, 0.55);
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 24% 30%, rgba(245, 200, 115, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(6, 18, 31, 0.97), rgba(8, 124, 115, 0.94));
  box-shadow: 0 22px 55px rgba(3, 13, 24, 0.38);
  isolation: isolate;
}

.floating-cta::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(from 120deg, transparent, rgba(245, 200, 115, 0.86), rgba(8, 124, 115, 0.9), transparent 72%);
  opacity: 0.72;
  filter: blur(10px);
  animation: ctaGlow 4s linear infinite;
}

.floating-cta:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

.floating-cta.is-retracted {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px) scale(0.86);
}

.floating-cta.is-retracted:hover,
.floating-cta.is-retracted:focus-visible {
  opacity: 0;
  transform: translateY(10px) scale(0.86);
}

.cta-avatar {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(18, 63, 103, 0.14);
}

.cta-avatar img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.cta-avatar::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 2px;
  width: 13px;
  height: 13px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #25d366;
}

.cta-orbit {
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  border: 1px solid rgba(245, 200, 115, 0.34);
  animation: orbitPulse 2.8s ease-in-out infinite;
}

.cta-copy {
  display: grid;
  line-height: 1.05;
}

.cta-copy small {
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  font-weight: 850;
}

.cta-copy strong {
  color: #ffffff;
  font-size: 1.06rem;
}

.cta-wa {
  width: 28px;
  height: 28px;
  padding: 0.38rem;
  border-radius: 50%;
  color: #071827;
  background: #25d366;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@keyframes ctaGlow {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 1080px) {
  .contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-command {
    max-width: 820px;
  }

  .contact-console {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 110px;
  }

  .contact {
    background:
      linear-gradient(180deg, rgba(4, 15, 28, 0.98) 0%, rgba(7, 31, 54, 0.96) 55%, rgba(8, 76, 80, 0.88) 100%),
      image-set(url("assets/advisory-table.webp") type("image/webp"), url("assets/advisory-table.jpg") type("image/jpeg"));
    background-size: cover;
  }

  .contact-grid {
    gap: 1.55rem;
  }

  .contact-command h2 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-secure-note,
  .priority-channel,
  .contact-identity {
    grid-template-columns: 1fr;
  }

  .contact-metrics,
  .contact-link-grid,
  .office-route {
    grid-template-columns: 1fr;
  }

  .console-top {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .console-top a {
    width: 100%;
    margin-left: 0;
  }

  .floating-cta {
    right: 0.82rem;
    bottom: 0.82rem;
    min-height: 62px;
    padding: 0.46rem;
  }

  .cta-copy,
  .cta-wa {
    display: none;
  }
}

@media (max-width: 980px) and (max-height: 500px) {
  html {
    scroll-padding-top: 92px;
  }

  .section-band.contact {
    padding-top: 1.4rem;
    padding-bottom: 2.4rem;
  }

  .contact-command h2 {
    font-size: clamp(2rem, 7.4vw, 2.85rem);
    text-shadow: 0 14px 38px rgba(0,0,0,0.48);
  }

  .contact-command p {
    font-size: 1rem;
  }

  .contact-metrics,
  .contact-secure-note {
    display: none;
  }

  .contact-console {
    border-radius: 18px;
  }

  .contact-console .contact-details {
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-cta::before,
  .cta-orbit {
    animation: none;
  }
}
