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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(16, 31, 48, 0.04), transparent 22%),
    radial-gradient(circle at bottom right, rgba(194, 160, 109, 0.05), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
}

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

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

button {
  font: inherit;
}

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

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

.display-eyebrow,
.section-eyebrow,
.card-eyebrow,
.hero-trust-label,
.identity-point-label,
.detail-label,
.alert-step-index {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.display-eyebrow {
  color: #dde7f3;
}

.section-eyebrow,
.card-eyebrow,
.hero-trust-label,
.identity-point-label,
.detail-label,
.alert-step-index {
  color: var(--gold-strong);
}

.section-title,
.hero-title,
.subpage-title,
.footer-title,
.service-feature-title,
.service-card-title,
.member-name,
.alert-faq-title,
.contact-card-title {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.section-copy,
.hero-copy,
.hero-support,
.card-copy,
.member-summary,
.footer-copy,
.subpage-copy,
.guide-contact-copy,
.guide-summary-item p,
.guide-step-card p,
.faq-card p,
.alert-step p,
.contact-detail .detail-value,
.identity-point-value,
.detail-lead,
.detail-list li,
.hero-trust-value {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 20, 32, 0.86);
  color: #fff;
  backdrop-filter: blur(18px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  padding: 0.34rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  flex: none;
}

.brand-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d2bb92;
}

.brand-name {
  margin: 0.22rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: #fff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-left: auto;
}

.nav-menu a,
.footer-links a {
  position: relative;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.nav-menu a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.22rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.subpage-actions,
.contact-actions,
.guide-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.header-actions {
  margin-left: 1rem;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
}

.header-button,
.btn,
.section-cta,
.member-link,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
}

.header-button:hover,
.header-button:focus-visible,
.btn:hover,
.btn:focus-visible,
.section-cta:hover,
.section-cta:focus-visible,
.member-link:hover,
.member-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
}

.header-button-primary,
.btn-primary {
  border: 1px solid #ccb07f;
  background: linear-gradient(180deg, #f4eadb 0%, #e9dbc5 100%);
  color: #0a1520;
  box-shadow: 0 12px 26px rgba(9, 19, 31, 0.14);
}

.header-button-secondary,
.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.section-cta,
.member-link,
.text-link {
  border: 1px solid rgba(10, 21, 32, 0.12);
  background: #ffffff;
  color: #173759;
  box-shadow: none;
}

.text-link {
  min-height: 40px;
  padding: 0 0.95rem;
}

.section-block {
  padding: 5.8rem 0;
}

.light-section {
  background: #ffffff;
}

.subtle-section {
  background: #f5f7fa;
}

.hero-section,
.subpage-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 15, 25, 0.96) 0%, rgba(10, 21, 33, 0.95) 56%, rgba(16, 31, 48, 0.98) 100%),
    radial-gradient(circle at top right, rgba(194, 160, 109, 0.16), transparent 30%),
    linear-gradient(180deg, #09131f 0%, #102235 100%);
}

.hero-section {
  padding: 4.7rem 0 3rem;
}

.subpage-hero {
  padding: 4.2rem 0 3.1rem;
}

.hero-section::before,
.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 15, 24, 0.66) 0%, rgba(8, 15, 24, 0.34) 50%, rgba(8, 15, 24, 0.74) 100%),
    radial-gradient(circle at center, rgba(194, 160, 109, 0.08), transparent 38%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.42;
  pointer-events: none;
  animation: float-drift 14s ease-in-out infinite;
}

.hero-orb-left {
  top: -10rem;
  left: -8rem;
  background: rgba(194, 160, 109, 0.18);
}

.hero-orb-right {
  right: -8rem;
  bottom: -9rem;
  background: rgba(38, 72, 102, 0.34);
  animation-duration: 18s;
}

.hero-grid,
.subpage-detail-grid,
.identity-grid,
.contact-grid,
.alert-grid,
.guide-detail-grid,
.subpage-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.6rem 2.1rem;
}

.hero-grid,
.identity-grid,
.contact-grid,
.alert-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.subpage-detail-grid,
.guide-detail-grid,
.subpage-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.hero-copy-wrap {
  max-width: 45rem;
}

.hero-meta {
  margin: 0.95rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d5c4a4;
}

.hero-title {
  margin-top: 1.05rem;
  font-size: clamp(2.75rem, 5vw, 4.3rem);
  color: #f8f5ef;
}

.hero-copy {
  margin-top: 1.2rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.hero-support {
  margin-top: 0.95rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

.hero-actions,
.subpage-actions {
  margin-top: 1.8rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.7rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero-trust-card,
.identity-point,
.service-card,
.member-card,
.client-group,
.alert-step,
.alert-faq-panel,
.guide-summary-card,
.guide-step-card,
.guide-faq-panel,
.guide-contact-card,
.contact-detail,
.overview-card,
.detail-panel,
.related-person {
  border: 1px solid rgba(16, 31, 48, 0.1);
  border-radius: 1.45rem;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(18, 26, 36, 0.06);
}

.hero-trust-card {
  padding: 1rem 1.05rem;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.hero-trust-value {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12.75rem;
  gap: 1rem;
  align-items: stretch;
}

.hero-main-frame,
.hero-side-card,
.detail-hero-media,
.identity-image-card,
.contact-image-card,
.overview-card-figure,
.detail-hero-media-portrait {
  overflow: hidden;
  border-radius: 1.8rem;
}

.hero-main-frame,
.hero-side-card,
.detail-hero-media {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.hero-main-frame-home {
  min-height: auto;
  aspect-ratio: 3 / 2;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 20, 31, 0.5);
}

.hero-main-frame img,
.hero-side-card img,
.detail-hero-media img,
.identity-image-card img,
.contact-image-card img,
.overview-card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-frame img,
.hero-side-card img {
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero-main-frame img {
  object-fit: contain;
  object-position: center center;
  border-radius: 1.35rem;
  background: rgba(5, 12, 20, 0.36);
  animation: none;
}

.hero-side-stack {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.hero-side-card {
  min-height: 12.8rem;
}

.hero-side-card:first-child img {
  object-position: center 36%;
}

.hero-side-card:last-child img {
  object-position: center 46%;
}

.presence-link,
.related-person a {
  display: grid;
  grid-template-columns: 3.35rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem;
}

.presence-avatar,
.related-person-avatar {
  overflow: hidden;
  width: 3.35rem;
  height: 4rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.08);
}

.presence-avatar img,
.related-person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.presence-name,
.presence-role {
  margin: 0;
  line-height: 1.35;
}

.presence-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: inherit;
}

.presence-card .presence-name,
.presence-card .presence-role {
  color: #f5f7fb;
}

.presence-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
}

.identity-section,
.services-section,
.clients-section,
.contact-section {
  background: #ffffff;
}

.identity-grid {
  align-items: center;
}

.section-head {
  max-width: 46rem;
}

.section-title {
  margin-top: 0.68rem;
  font-size: clamp(1.95rem, 3.6vw, 3.05rem);
}

.section-copy {
  margin-top: 0.9rem;
  max-width: 42rem;
  font-size: 1rem;
}

.section-cta-wrap {
  margin-top: 1.2rem;
}

.identity-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.7rem;
}

.identity-point {
  padding: 1.15rem;
}

.identity-point-value {
  margin-top: 0.45rem;
}

.identity-image-card {
  min-height: 30rem;
  border: 1px solid rgba(16, 31, 48, 0.08);
}

.identity-image-card img {
  object-position: center 52%;
}

.services-layout {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.9rem;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.85fr);
  gap: 1.2rem;
  padding: 1.3rem;
  border-radius: 1.8rem;
  background: linear-gradient(135deg, rgba(10, 20, 31, 0.98) 0%, rgba(16, 31, 48, 0.96) 100%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(10, 16, 26, 0.18);
}

.service-feature .card-eyebrow {
  color: #d0bb93;
}

.service-feature-title {
  margin-top: 0.5rem;
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  color: #f8f4ee;
}

.service-feature .card-copy,
.service-feature .service-points li,
.subpage-hero .subpage-copy {
  color: rgba(255, 255, 255, 0.8);
}

.service-feature-copy {
  padding: 0.4rem 0.15rem 0.2rem;
}

.service-feature-figure {
  overflow: hidden;
  min-height: 21rem;
  margin: 0;
  border-radius: 1.5rem;
}

.service-feature-figure img {
  object-position: center 26%;
}

.service-cluster,
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.overview-card,
.detail-panel,
.guide-step-card {
  padding: 1.25rem;
}

.service-card:hover,
.service-card:focus-within,
.overview-card:hover,
.overview-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 20px 54px rgba(18, 26, 36, 0.1);
}

.service-card-title {
  margin-top: 0.52rem;
  font-size: 1.5rem;
  color: var(--ink);
}

.card-copy {
  margin-top: 0.72rem;
}

.service-points,
.member-credentials,
.client-group-list,
.detail-list {
  margin: 0.95rem 0 0;
  padding-left: 0;
}

.service-points li,
.member-credentials li,
.client-group-list li,
.detail-list li {
  margin: 0.42rem 0 0;
}

.service-points,
.member-credentials,
.detail-list {
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0.58rem;
}

.service-card .service-points li {
  border-top-color: rgba(16, 31, 48, 0.08);
  color: var(--ink-soft);
}

.service-points li:first-child {
  margin-top: 0;
}

.detail-list li,
.member-credentials li {
  position: relative;
  padding-left: 1rem;
}

.detail-list li::before,
.member-credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--gold);
}

.team-modules {
  display: grid;
  gap: 1.7rem;
  margin-top: 1.9rem;
}

.team-module-head,
.team-index-block .card-eyebrow {
  margin-bottom: 1rem;
}

.member-grid {
  display: grid;
  gap: 1rem;
}

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

.member-grid-secondary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.member-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
  padding: 0.95rem;
}

.member-card.is-featured {
  grid-template-columns: 1fr;
  padding: 0.95rem;
}

.member-card-figure,
.overview-card-figure,
.detail-hero-media-portrait {
  overflow: hidden;
  margin: 0;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(10, 20, 31, 0.06) 0%, rgba(10, 20, 31, 0.12) 100%), #eff2f6;
}

.member-card-figure {
  min-height: auto;
  aspect-ratio: 4 / 4.75;
}

.member-card.is-featured .member-card-figure {
  aspect-ratio: 4 / 4.95;
}

.member-card-figure img,
.overview-card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-media-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.member-card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.18rem 0.12rem 0.12rem;
}

.member-role {
  margin: 0;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.member-name {
  margin-top: 0.42rem;
  font-size: 1.46rem;
  color: var(--ink);
}

.member-card.is-featured .member-name {
  font-size: 1.58rem;
}

.member-summary {
  margin-top: 0.72rem;
  min-height: 3.5em;
}

.member-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 0.95rem;
  padding-top: 0;
}

.member-inline-link,
.detail-value {
  color: #173759;
  font-weight: 600;
}

.clients-section .client-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.9rem;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.9rem;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
  padding: 1rem;
  border: 1px solid rgba(16, 31, 48, 0.08);
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 246, 249, 0.98) 100%);
  box-shadow: 0 16px 36px rgba(18, 26, 36, 0.05);
}

.client-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

.client-logo-card img {
  width: 100%;
  max-width: 10rem;
  max-height: 4.2rem;
  object-fit: contain;
  filter: saturate(0.88) contrast(1.02);
}

.client-reference-strip {
  margin-top: 1rem;
  padding-top: 0.3rem;
}

.client-reference-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.client-reference-list li {
  margin: 0;
}

.client-reference-list li span {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.4rem 0.76rem;
  border: 1px solid rgba(16, 31, 48, 0.08);
  border-radius: 999px;
  background: #fff;
  color: #203244;
  font-size: 0.9rem;
}

.client-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.3rem;
  border-color: rgba(16, 31, 48, 0.08);
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 247, 250, 0.98) 100%),
    radial-gradient(circle at top right, rgba(194, 160, 109, 0.08), transparent 32%);
  box-shadow: 0 18px 44px rgba(18, 26, 36, 0.06);
}

.client-group-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.8rem;
  align-items: baseline;
  justify-content: space-between;
}

.client-group-count {
  margin: 0;
  color: #516273;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-group-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}

.client-group-list li {
  margin: 0;
}

.client-group-list li span {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(16, 31, 48, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f3144;
  font-size: 0.9rem;
  line-height: 1.35;
}

.alert-section {
  background:
    linear-gradient(180deg, #f3f6f9 0%, #edf2f6 100%),
    radial-gradient(circle at top right, rgba(194, 160, 109, 0.08), transparent 24%);
}

.alert-section .section-title,
.guide-summary-card .service-card-title,
.guide-faq-title,
.guide-contact-card .contact-card-title {
  color: #f8f4ee;
}

.alert-section .section-title,
.alert-faq-title,
.alert-step h3 {
  color: var(--ink);
}

.alert-section .section-copy,
.alert-step p {
  color: var(--ink-soft);
}

.guide-contact-copy,
.guide-summary-item p,
.guide-step-card p,
.guide-contact-line,
.guide-step-card h3 {
  color: rgba(255, 255, 255, 0.75);
}

.alert-steps,
.guide-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.7rem;
}

.guide-summary-card,
.guide-step-card,
.guide-faq-panel,
.guide-contact-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

.alert-step {
  border-color: rgba(16, 31, 48, 0.08);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(18, 26, 36, 0.06);
}

.alert-faq-panel {
  border-color: rgba(10, 20, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(11, 22, 35, 0.98) 0%, rgba(16, 33, 51, 0.98) 100%),
    radial-gradient(circle at top right, rgba(194, 160, 109, 0.14), transparent 24%);
  box-shadow: 0 24px 60px rgba(10, 16, 26, 0.18);
}

.alert-step h3,
.guide-summary-item h3,
.guide-step-card h3 {
  margin: 0.72rem 0 0;
  font-family: var(--font-display);
  font-size: 1.34rem;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.alert-faq-panel,
.guide-faq-panel,
.guide-contact-card,
.guide-summary-card {
  padding: 1.25rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.alert-panel-copy {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.faq-card {
  overflow: hidden;
  border-radius: 1.15rem;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.05rem;
  color: #f8f4ee;
  font-weight: 700;
}

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

.faq-card p {
  padding: 0 1.05rem 1rem;
}

.alert-panel-actions {
  margin-top: 1rem;
}

.alert-faq-panel .section-cta {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #f7f3ed;
}

.contact-grid {
  align-items: center;
}

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

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.contact-detail {
  padding: 1rem;
}

.detail-value {
  display: block;
  margin-top: 0.48rem;
  line-height: 1.6;
}

.contact-image-card {
  min-height: 36rem;
  border: 1px solid rgba(16, 31, 48, 0.08);
}

.contact-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.site-footer {
  padding: 2.2rem 0 2.6rem;
  color: #fff;
  background: #08111b;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  gap: 1.5rem;
}

.footer-title {
  margin-top: 0.62rem;
  font-size: 2rem;
  color: #f7f2ea;
}

.footer-copy {
  margin-top: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-legal {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.65;
}

.footer-credit {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.92rem;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.72);
}

.subpage-title {
  margin-top: 0.82rem;
  font-size: clamp(2.55rem, 4.5vw, 4.1rem);
  color: #f8f4ee;
}

.subpage-copy {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 1.05rem;
}

.detail-hero-media {
  min-height: 24rem;
}

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

.detail-hero-media-portrait {
  min-height: 28rem;
}

.detail-hero-media-portrait img {
  object-fit: contain;
}

.overview-grid {
  margin-top: 0;
}

.overview-card {
  height: 100%;
}

.overview-card-profile {
  display: grid;
  grid-template-columns: 8.25rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.overview-card-figure {
  min-height: 11rem;
}

.team-index-block-spaced {
  margin-top: 2rem;
}

.detail-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.5rem;
}

.detail-main-copy,
.detail-aside {
  display: grid;
  gap: 1rem;
}

.detail-lead {
  font-size: 1.06rem;
}

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

.detail-panel {
  padding: 1.15rem;
}

.detail-side-value {
  margin: 0.7rem 0 0;
  line-height: 1.6;
}

.related-people {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.related-person {
  border-radius: 1.1rem;
}

.guide-summary-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.guide-summary-item {
  padding: 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.guide-actions-compact {
  margin-top: 1.1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes float-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 16px, 0);
  }
}

@keyframes hero-breathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .identity-grid,
  .contact-grid,
  .alert-grid,
  .subpage-detail-grid,
  .guide-detail-grid,
  .subpage-hero-grid,
  .detail-page-grid {
    grid-template-columns: 1fr;
  }

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

  .presence-strip,
  .service-cluster,
  .member-grid-secondary,
  .clients-section .client-groups,
  .client-logo-grid,
  .contact-detail-grid,
  .overview-grid,
  .detail-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header-inner {
    flex-wrap: wrap;
    padding: 0.85rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding-top: 0.55rem;
  }

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

  .header-actions {
    margin-left: auto;
  }

  .hero-visual,
  .service-feature,
  .overview-card-profile {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section-block {
    padding: 4.5rem 0;
  }

  .brand-kicker {
    display: none;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .header-button {
    flex: 1 1 0;
  }

  .hero-title {
    font-size: clamp(2.55rem, 10.6vw, 3.55rem);
  }

  .subpage-title {
    font-size: clamp(2.3rem, 10vw, 3.5rem);
  }

  .hero-copy,
  .hero-support,
  .section-copy,
  .subpage-copy,
  .detail-lead {
    font-size: 1rem;
  }

  .hero-trust-grid,
  .presence-strip,
  .identity-points,
  .service-cluster,
  .clients-section .client-groups,
  .client-logo-grid,
  .alert-steps,
  .guide-steps-grid,
  .contact-detail-grid,
  .overview-grid,
  .detail-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-main-frame-home {
    min-height: 24rem;
  }

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

  .hero-side-card {
    min-height: 10rem;
  }

  .member-grid-featured,
  .member-grid-secondary {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
