/* ════════════════════════════════════════════════════
   PRIVATE EXECUTIVE INTELLIGENCE — Obsidian V2
   Luxury · Security · Trust
   ════════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  min-height: 100dvh;
  font-family: var(--body);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
img, svg { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { text-wrap: balance; line-height: 1.1; font-weight: 600; }
p { text-wrap: pretty; }
ul { list-style: none; }

::selection {
  background: rgba(74, 143, 168, 0.25);
  color: var(--text);
}
:focus-visible {
  outline: 1px solid var(--steel);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ─── TOKENS ─── */
:root {
  /* Typography */
  --display: 'Space Grotesk', sans-serif;
  --body:    'Inter', 'Helvetica Neue', sans-serif;

  --text-xs:   clamp(0.6875rem, 0.65rem + 0.2vw, 0.8125rem);
  --text-sm:   clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --text-lg:   clamp(1.0625rem, 0.95rem + 0.6vw, 1.375rem);
  --text-xl:   clamp(1.375rem, 1.1rem + 1.1vw, 2rem);
  --text-2xl:  clamp(1.75rem, 1.1rem + 2.2vw, 3rem);
  --text-3xl:  clamp(2.25rem, 1rem + 3.5vw, 4.25rem);

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem; --sp-8: 2rem; --sp-10: 2.5rem;
  --sp-12: 3rem; --sp-16: 4rem; --sp-20: 5rem; --sp-24: 6rem;
  --sp-32: 8rem; --sp-40: 10rem;

  /* Obsidian Palette */
  --bg:          #070708;
  --surface:     #0D0E10;
  --surface-2:   #141619;
  --border:      rgba(255, 255, 255, 0.06);
  --border-hi:   rgba(255, 255, 255, 0.12);
  --text:        #D4D4D4;
  --text-muted:  #7A7F88;
  --text-faint:  #3D4049;
  --steel:       #4A8FA8;
  --steel-hi:    #5EABC8;
  --gold:        #C9A96E;
  --gold-hi:     #DBBF88;

  /* Misc */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --width: 1140px;
  --narrow: 720px;
}


/* ─── UTILITIES ─── */
.container {
  max-width: var(--width);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.label {
  display: block;
  font-family: var(--body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-6);
}
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: var(--sp-8);
}
.gold-rule--center {
  margin-inline: auto;
}
.section {
  padding: clamp(var(--sp-20), 10vw, var(--sp-40)) 0;
}
.section-header {
  max-width: var(--narrow);
  margin-bottom: clamp(var(--sp-12), 6vw, var(--sp-24));
}
.section-header h2 {
  font-family: var(--display);
  font-size: var(--text-2xl);
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-5);
}
.section-sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}


/* ─── BUTTON ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-10);
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.btn:hover {
  background: var(--gold);
  color: var(--bg);
}
.btn:active {
  transform: scale(0.98);
}
.btn--full {
  width: 100%;
}


/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7, 7, 8, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s var(--ease);
}
.header--hidden { transform: translateY(-100%); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-4);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.header__name {
  font-family: var(--display);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
}
.header__nav a {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}
.header__nav a:hover { color: var(--text); }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: var(--sp-2) var(--sp-5);
  transition: all 0.3s var(--ease) !important;
}
.nav-cta:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold);
}

/* Mobile menu */
.menu-toggle { display: none; padding: var(--sp-2); }
.menu-line { transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
.menu-toggle.active .menu-line-1 { transform: translate(0, 5px) rotate(45deg); }
.menu-toggle.active .menu-line-2 { transform: translate(0, -5px) rotate(-45deg); }

.mobile-overlay {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(7, 7, 8, 1);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-overlay__nav {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-8);
}
.mobile-overlay__nav a {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.mobile-overlay__divider {
  width: 32px; height: 1px; background: var(--gold); opacity: 0.4;
}
.mobile-overlay__cta {
  color: var(--gold) !important;
  font-size: var(--text-lg) !important;
}


/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero__image-wrap {
  position: absolute; inset: 0;
}
.hero__image {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 7, 8, 0.4) 0%,
    rgba(7, 7, 8, 0.2) 40%,
    rgba(7, 7, 8, 0.6) 70%,
    rgba(7, 7, 8, 1) 100%
  );
}
.hero__content {
  position: relative; z-index: 1;
  padding-top: 22vh;
}
.hero__text {
  max-width: 680px;
}
.hero__heading {
  font-family: var(--display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
}
.hero__heading-line {
  display: block;
}
.hero__sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: var(--sp-10);
  line-height: 1.8;
}
.hero__bottom {
  position: absolute;
  bottom: var(--sp-8);
  left: 0; right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.hero__label {
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.hero__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border-hi), transparent);
}


/* ─── TRUST BAR ─── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-10) 0;
  background: var(--surface);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
}
.trust-bar__item {
  text-align: center;
}
.trust-bar__value {
  display: block;
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-1);
}
.trust-bar__label {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.trust-bar__divider {
  width: 1px;
  height: 40px;
  background: var(--border-hi);
}


/* ─── DATA SOVEREIGNTY ─── */
.data-sov {
  padding: clamp(var(--sp-20), 12vw, var(--sp-40)) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.data-sov__inner {
  max-width: 680px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.data-sov__label {
  display: block;
  font-family: var(--display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-8);
}
.data-sov__rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto var(--sp-10);
  opacity: 0.5;
}
.data-sov__text {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.data-sov__em {
  display: block;
  margin-top: var(--sp-4);
  color: var(--gold);
  font-weight: 500;
}


/* ─── CAPABILITIES ─── */
.capabilities {
  background: var(--bg);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.cap-card {
  background: var(--bg);
  padding: clamp(var(--sp-8), 3vw, var(--sp-12));
  transition: background 0.5s var(--ease);
}
.cap-card:hover {
  background: var(--surface);
}
.cap-card__number {
  display: block;
  font-family: var(--display);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-6);
}
.cap-card h3 {
  font-family: var(--display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-3);
}
.cap-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 36ch;
}
.cap-card--gold {
  border-top: 1px solid rgba(201, 169, 110, 0.25);
}
.cap-card--gold h3 { color: var(--gold); }


/* ─── MIDPOINT IMAGE ─── */
.midpoint {
  position: relative;
  height: clamp(300px, 40vw, 500px);
  overflow: hidden;
}
.midpoint__image {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.midpoint__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    transparent 20%,
    transparent 80%,
    var(--bg) 100%
  );
}


/* ─── APPROACH ─── */
.approach {
  background: var(--surface);
}
.steps {
  border-top: 1px solid var(--border);
}
.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--sp-8);
  padding: var(--sp-10) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step__marker {
  position: relative;
}
.step__marker span {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: -0.02em;
}
.step__body h3 {
  font-family: var(--display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-2);
}
.step__body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}


/* ─── COMMITMENT ─── */
.commitment {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.commitment__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-12), 6vw, var(--sp-24));
  align-items: start;
}
.commitment__content {
  display: grid;
  gap: var(--sp-10);
}
.commitment__item h3 {
  font-family: var(--display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}
.commitment__item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
}


/* ─── ABOUT ─── */
.about {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.about__layout {
  max-width: var(--narrow);
}
.about__lead {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-6);
}
.about__layout > p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
}


/* ─── INQUIRY ─── */
.inquiry {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.inquiry__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-12), 6vw, var(--sp-24));
  align-items: start;
}
.inquiry__left h2 {
  font-family: var(--display);
  font-size: var(--text-2xl);
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-5);
}
.inquiry__sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}
.inquiry__note {
  font-size: var(--text-xs);
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

/* Form */
.form { display: flex; flex-direction: column; gap: var(--sp-5); }
.form__group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form__group label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.optional { color: var(--text-faint); text-transform: none; letter-spacing: normal; }
.form__group input,
.form__group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--text);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-faint);
}
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}
.form__group textarea { resize: vertical; min-height: 100px; }
.form__disclaimer {
  font-size: var(--text-xs);
  color: var(--text-faint);
  text-align: center;
  margin-top: var(--sp-1);
}

.inquiry__success {
  text-align: center;
  padding: var(--sp-16) 0;
}
.inquiry__success h3 {
  font-family: var(--display);
  font-size: var(--text-xl);
  color: var(--text);
  margin-bottom: var(--sp-3);
}
.inquiry__success p {
  font-size: var(--text-base);
  color: var(--text-muted);
}


/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--sp-10) 0 var(--sp-8);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--border);
}
.footer__brand {
  font-family: var(--display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
}
.footer__location {
  font-size: var(--text-xs);
  color: var(--text-faint);
  letter-spacing: 0.06em;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--text-faint);
}
.footer__bottom a {
  transition: color 0.3s var(--ease);
}
.footer__bottom a:hover { color: var(--text-muted); }


/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  clip-path: inset(8% 0 0 0);
  transition: opacity 0.8s var(--ease), clip-path 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.reveal-fade.visible {
  opacity: 1;
}


/* ════════════════════════════════════════════════════
   INTERIOR PAGE STYLES
   ════════════════════════════════════════════════════ */

/* ─── PAGE HERO (Interior pages) ─── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-32) var(--sp-6) var(--sp-16);
  background: linear-gradient(
    to bottom,
    var(--surface) 0%,
    var(--bg) 100%
  );
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .label {
  text-align: center;
  margin-bottom: var(--sp-5);
}
.page-hero h1 {
  font-family: var(--display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-5);
}
.page-hero p {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.8;
}


/* ─── CAPABILITY FEATURE SECTIONS (alternating image+text) ─── */
.cap-feature {
  padding: clamp(var(--sp-16), 8vw, var(--sp-32)) 0;
  border-bottom: 1px solid var(--border);
}
.cap-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-12), 6vw, var(--sp-24));
  align-items: center;
}
.cap-feature:nth-child(even) .cap-feature__inner {
  direction: rtl;
}
.cap-feature:nth-child(even) .cap-feature__inner > * {
  direction: ltr;
}
.cap-feature__image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.cap-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cap-feature__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  pointer-events: none;
}
.cap-feature__content .label {
  margin-bottom: var(--sp-4);
}
.cap-feature__content h2 {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}
.cap-feature__content p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.cap-feature__list {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.cap-feature__list li {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: var(--sp-5);
  position: relative;
}
.cap-feature__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* Bespoke section (centered, no image) */
.cap-bespoke {
  padding: clamp(var(--sp-20), 10vw, var(--sp-40)) 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.cap-bespoke__inner {
  max-width: 600px;
  margin-inline: auto;
}
.cap-bespoke .gold-rule {
  margin-inline: auto;
  margin-bottom: var(--sp-6);
}
.cap-bespoke h2 {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}
.cap-bespoke p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
}


/* ─── FAQ ACCORDION (Process page) ─── */
.faq {
  padding: clamp(var(--sp-20), 10vw, var(--sp-40)) 0;
  background: var(--surface);
}
.faq .section-header {
  text-align: left;
}
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) 0;
  font-family: var(--display);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.faq-item__question:hover {
  color: var(--gold);
}
.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: var(--sp-6);
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.faq-item__icon::before {
  top: 50%; left: 25%;
  width: 50%; height: 1px;
  transform: translateY(-50%);
}
.faq-item__icon::after {
  top: 25%; left: 50%;
  width: 1px; height: 50%;
  transform: translateX(-50%);
}
.faq-item.active .faq-item__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
}
.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: var(--sp-6);
}
.faq-item__answer p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}


/* ─── ABOUT SECTION (About page blocks) ─── */
.about-section {
  padding: clamp(var(--sp-16), 8vw, var(--sp-32)) 0;
  border-bottom: 1px solid var(--border);
}
.about-section--surface {
  background: var(--surface);
}
.about-section__inner {
  max-width: var(--narrow);
}
.about-section__inner.about-section__inner--wide {
  max-width: var(--width);
}
.about-section .label {
  margin-bottom: var(--sp-5);
}
.about-section h2 {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
}
.about-section p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.about-section p:last-child {
  margin-bottom: 0;
}
.about-section__lead {
  font-family: var(--display);
  font-size: var(--text-lg) !important;
  font-weight: 400;
  color: var(--text) !important;
  line-height: 1.6 !important;
  letter-spacing: -0.01em;
}
.about-section__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-10);
  margin-top: var(--sp-10);
}
.about-section__values h3 {
  font-family: var(--display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}
.about-section__values p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
}


/* ─── CTA SECTION (shared — bottom of interior pages) ─── */
.cta-section {
  padding: clamp(var(--sp-20), 10vw, var(--sp-32)) 0;
  text-align: center;
  background: var(--bg);
}
.cta-section__inner {
  max-width: 480px;
  margin-inline: auto;
}
.cta-section .gold-rule {
  margin-inline: auto;
  margin-bottom: var(--sp-6);
}
.cta-section h2 {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}
.cta-section p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
}


/* ─── CONTACT PAGE STYLES ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-12), 6vw, var(--sp-24));
  align-items: start;
  padding: clamp(var(--sp-16), 8vw, var(--sp-32)) 0;
}
.contact-info h2 {
  font-family: var(--display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}
.contact-info p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.contact-disclaimer {
  margin-top: var(--sp-10);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border);
}
.contact-disclaimer p {
  font-size: var(--text-xs);
  color: var(--text-faint);
  line-height: 1.75;
}


/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .commitment__layout { grid-template-columns: 1fr; gap: var(--sp-10); }
  .inquiry__layout { grid-template-columns: 1fr; gap: var(--sp-10); }
  .cap-feature__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .cap-feature:nth-child(even) .cap-feature__inner { direction: ltr; }
  .cap-feature__image { max-height: 360px; }
  .contact-layout { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about-section__values { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .menu-toggle { display: block; }

  .hero__content { padding-top: 20vh; }
  .hero__heading { font-size: var(--text-2xl); }

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

  .step { grid-template-columns: 1fr; gap: var(--sp-2); }
  .step__marker span { font-size: var(--text-lg); }

  .trust-bar__inner {
    flex-direction: column;
    gap: var(--sp-6);
  }
  .trust-bar__divider {
    width: 32px; height: 1px;
  }

  .about__lead { font-size: var(--text-lg); }

  .page-hero {
    min-height: 40vh;
    padding: var(--sp-24) var(--sp-6) var(--sp-12);
  }
  .page-hero h1 { font-size: var(--text-xl); }

  .data-sov__text { font-size: var(--text-lg); }

  .footer__top,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-2);
  }
}

@media (max-width: 480px) {
  :root { --sp-6: 1.25rem; }
  .container { padding-inline: var(--sp-4); }
  .hero__bottom { display: none; }
  .hero__text { padding-right: var(--sp-2); }
}
