:root {
  --ink: #071529;
  --ink-soft: #263754;
  --muted: #68758c;
  --blue: #123f8c;
  --blue-2: #0a2b68;
  --blue-3: #071a3e;
  --gold: #c89b2d;
  --gold-2: #f2d879;
  --cream: #fbf7eb;
  --paper: #fffdf7;
  --mist: #eef4fb;
  --line: rgba(13, 32, 67, 0.12);
  --shadow: 0 30px 80px rgba(7, 21, 41, 0.14);
  --font-sans: "Manrope", sans-serif;
  --font-display: "Cormorant Garamond", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(242, 216, 121, 0.22), transparent 30rem),
    linear-gradient(135deg, #fffdf8 0%, #f6f9ff 48%, #f8efd5 100%);
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(2, 6, 23, 0.58);
  backdrop-filter: blur(6px);
}

body.has-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

body.has-reveal .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

body.has-reveal .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

body.has-reveal .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.72rem 5vw;
  color: #f7f2df;
  background: linear-gradient(90deg, var(--blue-3), #0c4a73);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement span {
  color: var(--gold-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 253, 247, 0.86);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 158px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--ink-soft);
  font-weight: 800;
}

.site-nav a,
.dropdown-toggle {
  position: relative;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.site-nav a::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover::after,
.dropdown:hover .dropdown-toggle::after,
.dropdown-toggle:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown-toggle span {
  color: var(--gold);
  font-size: 0.82em;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  width: min(420px, 88vw);
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  border: 1px solid rgba(201, 155, 45, 0.25);
  border-radius: 28px;
  background: rgba(255, 253, 247, 0.97);
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  color: var(--ink);
}

.dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(18, 63, 140, 0.08), rgba(201, 155, 45, 0.12));
}

.dropdown-menu small {
  color: var(--muted);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 155, 45, 0.45);
  box-shadow: 0 18px 40px rgba(7, 21, 41, 0.12);
}

.btn-primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--blue-3));
}

.btn-gold {
  color: #201600;
  border-color: rgba(201, 155, 45, 0.4);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.52);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.site-theme-toggle {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(7, 21, 41, 0.08);
  cursor: pointer;
}

.site-theme-toggle:hover {
  border-color: rgba(201, 155, 45, 0.45);
  color: var(--blue);
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.menu-button span {
  position: relative;
}

.menu-button span::before,
.menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button span::before {
  top: -7px;
}

.menu-button span::after {
  top: 7px;
}

.section {
  width: min(1180px, calc(100% - 10vw));
  margin: 0 auto;
  padding: 5rem 0;
}

.hero-section {
  width: min(1280px, calc(100% - 8vw));
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 126px);
  margin: 0 auto;
  padding: 4rem 0 5rem;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero-title,
.page-title,
.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.hero-title {
  max-width: 780px;
  margin-top: 1rem;
  font-size: clamp(3.5rem, 8vw, 7.4rem);
  line-height: 0.92;
}

.page-title {
  max-width: 920px;
  margin-top: 1rem;
  font-size: clamp(3.1rem, 7.5vw, 7rem);
  line-height: 0.9;
}

.section-title {
  font-size: clamp(2.5rem, 5.2vw, 5.2rem);
  line-height: 0.92;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.hero-copy .lead {
  max-width: 670px;
  margin: 1.25rem 0 0;
}

.hero-copy > * {
  animation: publicFadeUp 0.8s ease both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 0.32s;
}

.hero-copy > *:nth-child(6) {
  animation-delay: 0.4s;
}

@keyframes publicFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.trust-pill::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
}

.hero-visual {
  position: relative;
  min-height: 600px;
  animation: publicFloatIn 0.95s 0.24s ease both;
}

@keyframes publicFloatIn {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.orb {
  position: absolute;
  inset: auto 8% 4% auto;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), transparent 0 12%),
    radial-gradient(circle at 72% 35%, rgba(242, 216, 121, 0.78), transparent 0 20%),
    linear-gradient(135deg, rgba(18, 63, 140, 0.92), rgba(7, 26, 62, 0.98));
  filter: drop-shadow(0 40px 90px rgba(7, 21, 41, 0.24));
}

.hero-photo {
  position: absolute;
  inset: 7% 0 auto 6%;
  width: 82%;
  height: 560px;
  border-radius: 48% 48% 34px 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  right: 0;
  bottom: 7%;
  width: min(330px, 72%);
  padding: 1.2rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px 34px 34px 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  animation: gentleFloat 5.5s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.card-balance {
  margin: 0.75rem 0 0;
  font-size: clamp(1.45rem, 6vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.card-note {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-item {
  padding: 0.65rem 1.2rem;
  border-left: 1px solid var(--line);
}

.stat-item:first-child {
  border-left: 0;
}

.stat-item strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.06em;
}

.stat-item span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.editorial-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.editorial-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  color: #fff;
  background: rgba(7, 21, 41, 0.48);
  backdrop-filter: blur(20px);
}

.image-caption strong {
  display: block;
  font-size: 1.1rem;
}

.image-caption span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  margin-top: 2.4rem;
}

.service-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 0 0 1.4rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-tile:hover {
  transform: translateX(6px);
  border-color: rgba(201, 155, 45, 0.5);
}

.service-tile::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 4rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.service-tile .number {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.service-tile h3 {
  margin: 1rem 0 0.7rem;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}

.service-tile p {
  color: var(--muted);
  line-height: 1.65;
}

.service-tile a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.7rem;
  color: var(--blue);
  font-weight: 900;
}

.service-tile a::after {
  content: "->";
}

.dark-band {
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(242, 216, 121, 0.16), transparent 25rem),
    linear-gradient(135deg, var(--blue-3), #0b3c70 62%, #17203b);
}

.dark-band .section-title,
.dark-band .lead {
  color: #fff;
}

.dark-band .lead {
  color: rgba(255, 255, 255, 0.72);
}

.dark-band .service-tile {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  box-shadow: none;
}

.dark-band .service-tile h3 {
  color: #fff;
}

.dark-band .service-tile p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-band .service-tile a {
  color: var(--gold-2);
}

.page-hero {
  width: min(1180px, calc(100% - 10vw));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin: 0 auto;
  padding: 5rem 0 3rem;
}

.page-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.page-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.page-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 21, 41, 0.5));
}

.page-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 1.25rem;
  width: min(1180px, calc(100% - 10vw));
  margin: 0 auto;
  padding: 1rem 0 5rem;
}

.page-panel {
  border: 0;
  border-left: 4px solid var(--gold);
  border-radius: 0;
  padding: 0.35rem 0 0.35rem 1.35rem;
  background: transparent;
  box-shadow: none;
}

.page-panel h2 {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
}

.page-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  flex: 0 0 auto;
  margin-top: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 0 6px rgba(201, 155, 45, 0.13);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.detail-card {
  padding: 0 0 1.25rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.detail-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  margin-top: 1.5rem;
}

.image-strip {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1rem;
  margin-top: 2rem;
}

.image-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 38px;
  box-shadow: 0 22px 60px rgba(7, 21, 41, 0.12);
}

.image-strip img:nth-child(2) {
  margin-top: 3rem;
}

.site-footer {
  color: #dbe6f5;
  background:
    linear-gradient(135deg, var(--blue-3), #092c64),
    radial-gradient(circle at top left, rgba(242, 216, 121, 0.16), transparent 28rem);
}

.footer-inner {
  width: min(1180px, calc(100% - 10vw));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 2rem;
  margin: 0 auto;
  padding: 4rem 0 2rem;
}

.footer-logo {
  width: 150px;
  padding: 0.7rem;
  border-radius: 18px;
  background: #fff;
}

.footer-inner p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links h4 {
  margin: 0 0 0.55rem;
  color: var(--gold-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(1180px, calc(100% - 10vw));
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 1.2rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1080px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    position: fixed;
    left: 1rem;
    right: 1rem;
    display: grid;
    background: rgba(255, 253, 247, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    top: 5.7rem;
    bottom: 7rem;
    max-height: calc(100vh - 13rem);
    overflow-y: auto;
    gap: 0.3rem;
    padding: 1rem;
    border-radius: 28px 28px 0 0;
  }

  .site-header.is-open .header-actions {
    top: auto;
    bottom: 1rem;
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
    border-radius: 0 0 28px 28px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0.8rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(18, 63, 140, 0.04);
  }

  .hero-section,
  .split,
  .page-hero,
  .page-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

  .service-grid,
  .image-strip,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .announcement {
    padding-inline: 1rem;
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .site-header {
    padding: 0.9rem 1rem;
  }

  .brand img {
    width: 132px;
  }

  .section,
  .hero-section,
  .page-hero,
  .page-content,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 2rem, 1180px);
  }

  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-title {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-photo {
    height: 405px;
    border-radius: 42% 42% 26px 26px;
  }

  .floating-card {
    width: 88%;
    right: 3%;
  }

  .stat-row,
  .service-grid,
  .detail-grid,
  .contact-grid,
  .image-strip,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .image-strip img,
  .image-strip img:nth-child(2) {
    height: 300px;
    margin-top: 0;
  }

  .stat-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat-item:first-child {
    border-top: 0;
  }

  .section {
    padding: 3rem 0;
  }

  .editorial-card img,
  .page-media,
  .page-media img {
    min-height: 330px;
    height: 330px;
  }

  .image-caption {
    position: static;
    margin: 0;
    border-width: 0;
    border-top: 1px solid var(--line);
    border-radius: 0 0 30px 30px;
    background: rgba(7, 21, 41, 0.9);
    backdrop-filter: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .header-actions,
  .site-header.is-open .header-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .site-header.is-open .header-actions .btn {
    width: 100%;
  }

}

/* Launch fixes: keep homepage copy contained and make the mobile drawer reliable. */
.hero-copy,
.hero-visual,
.floating-card,
.stat-item,
.service-tile,
.editorial-card,
.page-panel,
.detail-card,
.image-caption,
.footer-inner > * {
  min-width: 0;
}

.announcement,
.btn,
.eyebrow,
.trust-pill,
.floating-card,
.floating-card *,
.service-tile h3,
.service-tile p,
.service-tile a,
.stat-item strong,
.stat-item span,
.image-caption span,
.footer-links a {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.floating-card {
  max-width: min(420px, 88vw);
  overflow: hidden;
}

.card-note {
  margin-bottom: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .site-header {
    z-index: 1000;
  }

  .site-header.is-open {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 1100;
    display: flex;
    width: min(360px, 90vw);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.1rem 1.15rem 1.25rem;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
    background: #07111f;
    box-shadow: -26px 0 70px rgba(0, 0, 0, 0.42);
  }

  .site-header.is-open .brand img {
    width: 136px;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.26));
  }

  .site-header .site-nav,
  .site-header .header-actions,
  .site-header.is-open .site-nav,
  .site-header.is-open .header-actions {
    left: auto;
    right: auto;
    bottom: auto;
    border-radius: 0;
  }

  .site-header .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    display: flex;
    width: min(340px, 88vw);
    height: 100dvh;
    max-height: none;
    padding: 88px 22px 150px;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    background: #07111f;
    color: #f8fafc;
    box-shadow: -26px 0 70px rgba(0, 0, 0, 0.42);
    transform: translateX(105%);
    transition: transform 0.28s ease;
  }

  .site-header.is-open .site-nav {
    position: static;
    z-index: auto;
    display: flex;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 0.25rem 0 0;
    overflow-y: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: translateX(0);
  }

  .site-header .header-actions {
    position: fixed;
    right: min(22px, 6vw);
    bottom: 24px;
    z-index: 1101;
    display: flex;
    width: min(296px, calc(88vw - 44px));
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateX(24px);
    transition: opacity 0.2s ease, transform 0.28s ease;
  }

  .site-header:not(.is-open) .header-actions {
    display: none;
  }

  .site-header.is-open .header-actions {
    position: static !important;
    z-index: auto;
    display: grid !important;
    width: auto !important;
    margin-top: 0.5rem;
    padding: 1rem 0 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    box-shadow: none !important;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
  }

  .site-header .site-nav a,
  .site-header .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 0;
    color: inherit;
    text-align: left;
  }

  .site-header .dropdown {
    display: contents;
  }

  .site-header .dropdown-toggle {
    display: none;
  }

  .site-header .site-nav a::after,
  .site-header .dropdown-toggle::after {
    display: none;
  }

  .site-header .dropdown-menu {
    position: static;
    display: contents;
    width: auto;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
  }

  .site-header .dropdown-menu a {
    color: #f8fafc;
    padding: 0.9rem 0;
  }

  .site-header .dropdown-menu small {
    display: none;
  }

  .site-header .header-actions .btn {
    width: 100%;
  }

  .menu-button {
    position: relative;
    z-index: 1200;
  }

  .site-header.is-open .menu-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(226, 232, 240, 0.92);
    color: #0f172a;
  }
}

@media (max-width: 760px) {
  .hero-title {
    font-size: clamp(2.85rem, 13vw, 4.45rem);
    line-height: 0.98;
  }

  .page-title,
  .section-title {
    letter-spacing: -0.015em;
  }

  .eyebrow {
    letter-spacing: 0.18em;
  }

  .floating-card {
    right: 0;
    width: min(92%, 360px);
    padding: 1rem 1.1rem;
    border-radius: 28px;
  }
}
